From 6a57e883dbbc81d2f8cf19b8fe99378ccd34107d Mon Sep 17 00:00:00 2001 From: bin liu Date: Wed, 24 Jan 2018 17:44:50 +0800 Subject: [PATCH 001/329] Make more precisely --- docs/concepts/configuration/assign-pod-node.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/concepts/configuration/assign-pod-node.md b/docs/concepts/configuration/assign-pod-node.md index 55e8190fcb..8cb0ac9e5f 100644 --- a/docs/concepts/configuration/assign-pod-node.md +++ b/docs/concepts/configuration/assign-pod-node.md @@ -187,7 +187,7 @@ value V that is running a pod that has a label with key "security" and value "S1 rule says that the pod prefers to not schedule onto a node if that node is already running a pod with label having key "security" and value "S2". (If the `topologyKey` were `failure-domain.beta.kubernetes.io/zone` then it would mean that the pod cannot schedule onto a node if that node is in the same zone as a pod with -label having key "security" and value "S2".) See the [design doc](https://git.k8s.io/community/contributors/design-proposals/scheduling/podaffinity.md). +label having key "security" and value "S2".) See the [design doc](https://git.k8s.io/community/contributors/design-proposals/scheduling/podaffinity.md) for many more examples of pod affinity and anti-affinity, both the `requiredDuringSchedulingIgnoredDuringExecution` flavor and the `preferredDuringSchedulingIgnoredDuringExecution` flavor. @@ -196,10 +196,10 @@ The legal operators for pod affinity and anti-affinity are `In`, `NotIn`, `Exist In principle, the `topologyKey` can be any legal label-key. However, for performance and security reasons, there are some constraints on topologyKey: -1. For affinity and for `RequiredDuringScheduling` pod anti-affinity, +1. For affinity and for `requiredDuringSchedulingIgnoredDuringExecution` pod anti-affinity, empty `topologyKey` is not allowed. -2. For `RequiredDuringScheduling` pod anti-affinity, the admission controller `LimitPodHardAntiAffinityTopology` was introduced to limit `topologyKey` to `kubernetes.io/hostname`. If you want to make it available for custom topologies, you may modify the admission controller, or simply disable it. -3. For `PreferredDuringScheduling` pod anti-affinity, empty `topologyKey` is interpreted as "all topologies" ("all topologies" here is now limited to the combination of `kubernetes.io/hostname`, `failure-domain.beta.kubernetes.io/zone` and `failure-domain.beta.kubernetes.io/region`). +2. For `requiredDuringSchedulingIgnoredDuringExecution` pod anti-affinity, the admission controller `LimitPodHardAntiAffinityTopology` was introduced to limit `topologyKey` to `kubernetes.io/hostname`. If you want to make it available for custom topologies, you may modify the admission controller, or simply disable it. +3. For `preferredDuringSchedulingIgnoredDuringExecution` pod anti-affinity, empty `topologyKey` is interpreted as "all topologies" ("all topologies" here is now limited to the combination of `kubernetes.io/hostname`, `failure-domain.beta.kubernetes.io/zone` and `failure-domain.beta.kubernetes.io/region`). 4. Except for the above cases, the `topologyKey` can be any legal label-key. In addition to `labelSelector` and `topologyKey`, you can optionally specify a list `namespaces` From 80b13fa76b0c1fa24325fe9da00c9b2734f3cdf2 Mon Sep 17 00:00:00 2001 From: Alex Contini Date: Wed, 24 Jan 2018 12:10:46 -0500 Subject: [PATCH 002/329] fix spacing issue under "solution" column --- case-studies/blackrock.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/case-studies/blackrock.html b/case-studies/blackrock.html index fff28aa92a..f4610c842d 100644 --- a/case-studies/blackrock.html +++ b/case-studies/blackrock.html @@ -30,7 +30,7 @@ css: /css/style_blackrock.css

Solution

Drawing from what they learned during a pilot done last year using Docker environments, Francis put together a cross-sectional team of 20 to build an investor research web app using Kubernetes with the goal of getting it into production within one quarter. -
+

Impact

"Our goal was: How do you give people tools rapidly without having to install them on their desktop?" says Francis. And the team hit the goal within 100 days. Francis is pleased with the results and says, "We’re going to use this infrastructure for lots of other application workloads as time goes on. It’s not just data science; it’s this style of application that needs the dynamism. But I think we’re 6-12 months away from making a [large scale] decision. We need to gain experience of running the system in production, we need to understand failure modes and how best to manage operational issues. What’s interesting is that just having this technology there is changing the way our developers are starting to think about their future development." From 9bcc29be911c03044f4683b396d6493339a9c307 Mon Sep 17 00:00:00 2001 From: RaviSantosh Gudimetla Date: Mon, 29 Jan 2018 09:30:49 -0500 Subject: [PATCH 003/329] Update documentation to include priorities. Updated documentation to include deprecation for rescheduler and include priorities and preemption. --- ...aranteed-scheduling-critical-addon-pods.md | 29 ++++++++++++++++--- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md index 85c387f0ab..f7fd8b0d6c 100644 --- a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md +++ b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md @@ -19,6 +19,12 @@ and becomes pending (for example when the cluster is highly utilized and either vacated by the evicted critical add-on pod or the amount of resources available on the node changed for some other reason). ## Rescheduler: guaranteed scheduling of critical add-ons +**Rescheduler is deprecated as of Kubernetes 1.10 and will be removed in version 1.11 in +accordance with the [deprecation policy](/docs/reference/deprecation-policy) for beta features.** + +**To avoid eviction of critical pods, you must +[enable priorities in scheduler](docs/concepts/configuration/pod-priority-preemption/) +before upgrading to Kubernetes 1.8 or higher.** Rescheduler ensures that critical add-ons are always scheduled (assuming the cluster has enough resources to run the critical add-on pods in the absence of regular pods). @@ -35,18 +41,33 @@ while the other pods shouldn't tolerate the taint. The taint is removed once the *Warning:* currently there is no guarantee which node is chosen and which pods are being killed in order to schedule critical pods, so if rescheduler is enabled your pods might be occasionally -killed for this purpose. +killed for this purpose. Please ensure that rescheduler should not enabled along with priorities & preemptions in default scheduler as it may cause unwanted side-effects. ## Config -Rescheduler should be enabled by default. It doesn't have any user facing configuration (component config) or API. +Rescheduler should be enabled by default(unless you enabled priorities & preemption). It doesn't have any user facing configuration (component config) or API. Rescheduler may also be disabled. -### Marking add-on as critical +### Marking pod as critical when using Rescheduler(This will be deprecated). To be critical an add-on has to run in `kube-system` namespace (configurable via flag) and * have the `scheduler.alpha.kubernetes.io/critical-pod` annotation set to empty string, and -* have the PodSpec's `tolerations` field set to `[{"key":"CriticalAddonsOnly", "operator":"Exists"}]` +* have the PodSpec's `tolerations` field set to `[{"key":"CriticalAddonsOnly", "operator":"Exists"}]`. The first one marks a pod a critical. The second one is required by Rescheduler algorithm. + +### Marking pod as critical when priorites are enabled. + +To be critical an add-on has to run in `kube-system` namespace (configurable via flag) and + +* have the priorityClass set as "system-cluster-critical" or "system-node-critical", the latter being the highest for entire cluster. + +or + +* have the `scheduler.alpha.kubernetes.io/critical-pod` annotation set to empty string(This will be deprecated too). + + + + + From c707b24b1f9a3ea11a9f0e0dcf3a045097377220 Mon Sep 17 00:00:00 2001 From: RaviSantosh Gudimetla Date: Mon, 29 Jan 2018 10:43:15 -0500 Subject: [PATCH 004/329] Updated as per reviewers comments --- .../guaranteed-scheduling-critical-addon-pods.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md index f7fd8b0d6c..e8daab72b8 100644 --- a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md +++ b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md @@ -41,16 +41,15 @@ while the other pods shouldn't tolerate the taint. The taint is removed once the *Warning:* currently there is no guarantee which node is chosen and which pods are being killed in order to schedule critical pods, so if rescheduler is enabled your pods might be occasionally -killed for this purpose. Please ensure that rescheduler should not enabled along with priorities & preemptions in default scheduler as it may cause unwanted side-effects. +killed for this purpose. Please ensure that rescheduler is enabled along with priorities & preemptions in default-scheduler as it may have unwanted side-effects. ## Config -Rescheduler should be enabled by default(unless you enabled priorities & preemption). It doesn't have any user facing configuration (component config) or API. -Rescheduler may also be disabled. +Rescheduler doesn't have any user facing configuration (component config) or API. ### Marking pod as critical when using Rescheduler(This will be deprecated). -To be critical an add-on has to run in `kube-system` namespace (configurable via flag) and +To be considered critical, the pod has to run in the `kube-system` namespace (configurable via flag) and * have the `scheduler.alpha.kubernetes.io/critical-pod` annotation set to empty string, and * have the PodSpec's `tolerations` field set to `[{"key":"CriticalAddonsOnly", "operator":"Exists"}]`. @@ -59,15 +58,10 @@ The first one marks a pod a critical. The second one is required by Rescheduler ### Marking pod as critical when priorites are enabled. -To be critical an add-on has to run in `kube-system` namespace (configurable via flag) and +To be considered critical, the pod has to run in the `kube-system` namespace (configurable via flag) and * have the priorityClass set as "system-cluster-critical" or "system-node-critical", the latter being the highest for entire cluster. or * have the `scheduler.alpha.kubernetes.io/critical-pod` annotation set to empty string(This will be deprecated too). - - - - - From 57c9a5bba745a1ebe67f76db63171d24bf32482f Mon Sep 17 00:00:00 2001 From: RaviSantosh Gudimetla Date: Mon, 29 Jan 2018 11:32:26 -0500 Subject: [PATCH 005/329] "Updated the priorityClass changes" --- .../guaranteed-scheduling-critical-addon-pods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md index e8daab72b8..c992e26935 100644 --- a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md +++ b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md @@ -64,4 +64,4 @@ To be considered critical, the pod has to run in the `kube-system` namespace (co or -* have the `scheduler.alpha.kubernetes.io/critical-pod` annotation set to empty string(This will be deprecated too). +* have the `scheduler.alpha.kubernetes.io/critical-pod` annotation set to empty string(This will be deprecated too). This ensures that the pod gets "system-cluster-critical" priority. From d05d3f620ce5168e48964063d78486c372f67e6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=20Garc=C3=ADa?= Date: Mon, 29 Jan 2018 18:47:31 +0100 Subject: [PATCH 006/329] Fix partition value expected behaviour explanation (#7123) Fixes issue #7057 --- docs/tutorials/stateful-application/basic-stateful-set.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/stateful-application/basic-stateful-set.md b/docs/tutorials/stateful-application/basic-stateful-set.md index 2ef3ea627d..d631fbef1f 100644 --- a/docs/tutorials/stateful-application/basic-stateful-set.md +++ b/docs/tutorials/stateful-application/basic-stateful-set.md @@ -615,7 +615,7 @@ k8s.gcr.io/nginx-slim:0.7 ``` When you changed the `partition`, the StatefulSet controller automatically -updated the `web-2` Pod because the Pod's ordinal was less than or equal to +updated the `web-2` Pod because the Pod's ordinal was greater than or equal to the `partition`. Delete the `web-1` Pod. From e98d5701f3e863e29dd996ace14f07450c8b9bf2 Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Mon, 29 Jan 2018 10:12:49 -0800 Subject: [PATCH 007/329] Correct "On-Premise" to "On-Premises" --- _data/setup.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/setup.yml b/_data/setup.yml index f91170ab95..3d4a257c04 100644 --- a/_data/setup.yml +++ b/_data/setup.yml @@ -55,7 +55,7 @@ toc: - docs/getting-started-guides/kubespray.md - docs/getting-started-guides/running-cloud-controller.md - - title: On-Premise VMs + - title: On-Premises VMs section: - docs/getting-started-guides/coreos/index.md - docs/getting-started-guides/cloudstack.md From 197a375b9b5d48ddf1ae6079fa6e23344346dfb6 Mon Sep 17 00:00:00 2001 From: emanic Date: Mon, 29 Jan 2018 10:38:33 -0800 Subject: [PATCH 008/329] Updates the Calico installation page (#7094) --- .../calico-network-policy.md | 67 ++++++++----------- 1 file changed, 29 insertions(+), 38 deletions(-) diff --git a/docs/tasks/administer-cluster/calico-network-policy.md b/docs/tasks/administer-cluster/calico-network-policy.md index 3620e50052..ead5675a02 100644 --- a/docs/tasks/administer-cluster/calico-network-policy.md +++ b/docs/tasks/administer-cluster/calico-network-policy.md @@ -5,57 +5,48 @@ title: Use Calico for NetworkPolicy --- {% capture overview %} -This page shows how to use Calico for NetworkPolicy. +This page shows a couple of quick ways to create a Calico cluster on Kubernetes. {% endcapture %} {% capture prerequisites %} -* [Install Calico for Kubernetes](https://docs.projectcalico.org/latest/getting-started/kubernetes/installation/). +Decide whether you want to deploy a [cloud](#creating-a-calico-cluster-with-google-kubernetes-engine-gke) or [local](#creating-a-local-calico-cluster-with-kubeadm) cluster. {% endcapture %} {% capture steps %} -## Deploying a cluster using Calico +## Creating a Calico cluster with Google Kubernetes Engine (GKE) -You can deploy a cluster using Calico for network policy in the default [GCE deployment](/docs/getting-started-guides/gce/) using the following set of commands: +**Prerequisite**: [gcloud](https://cloud.google.com/sdk/docs/quickstarts). -```shell -export NETWORK_POLICY_PROVIDER=calico -export KUBE_NODE_OS_DISTRIBUTION=debian -curl -sS https://get.k8s.io | bash -``` +1. To launch a GKE cluster with Calico, just include the `--enable-network-policy` flag. + + **Syntax** + ```shell + gcloud container clusters create [CLUSTER_NAME] --enable-network-policy + ``` + + **Example** + ```shell + gcloud container clusters create my-calico-cluster --enable-network-policy + ``` + +1. To verify the deployment, use the following command. + + ```shell + kubectl get pods --namespace=kube-system + ``` + + The Calico pods begin with `calico`. Check to make sure each one has a status of `Running`. + +## Creating a local Calico cluster with kubeadm + +To get a local single-host Calico cluster in fifteen minutes using kubeadm, refer to the +[Calico Quickstart](https://docs.projectcalico.org/latest/getting-started/kubernetes/). -See the [Calico documentation](http://docs.projectcalico.org/) for more options to deploy Calico with Kubernetes. {% endcapture %} -{% capture discussion %} -## Understanding Calico components - -Deploying a cluster with Calico adds Pods that support Kubernetes NetworkPolicy. These Pods run in the `kube-system` Namespace. - -To see this list of Pods run: - -```shell -kubectl get pods --namespace=kube-system -``` - -You'll see a list of Pods similar to this: - -```console -NAME READY STATUS RESTARTS AGE -calico-node-kubernetes-minion-group-jck6 1/1 Running 0 46m -calico-node-kubernetes-minion-group-k9jy 1/1 Running 0 46m -calico-node-kubernetes-minion-group-szgr 1/1 Running 0 46m -calico-policy-controller-65rw1 1/1 Running 0 46m -... -``` - -There are two main components to be aware of: - -- One `calico-node` Pod runs on each node in your cluster and enforces network policy on the traffic to/from Pods on that machine by configuring iptables. -- The `calico-policy-controller` Pod reads the policy and label information from the Kubernetes API and configures Calico appropriately. -{% endcapture %} {% capture whatsnext %} Once your cluster is running, you can follow the [Declare Network Policy](/docs/tasks/administer-cluster/declare-network-policy/) to try out Kubernetes NetworkPolicy. {% endcapture %} -{% include templates/task.md %} +{% include templates/task.md %} \ No newline at end of file From fb9015428a574cb79207d9dafbbdba1648f14166 Mon Sep 17 00:00:00 2001 From: Kaitlyn Barnard Date: Mon, 29 Jan 2018 16:21:05 -0800 Subject: [PATCH 009/329] All files for Haufe Groups case study (#7051) --- case-studies/haufegroup.html | 112 +++++ case-studies/index.html | 13 +- css/style_haufegroup.css | 468 ++++++++++++++++++ images/CaseStudy_haufegroup_banner1.jpg | Bin 0 -> 494149 bytes images/CaseStudy_haufegroup_banner3.jpg | Bin 0 -> 147162 bytes images/CaseStudy_haufegroup_banner4.jpg | Bin 0 -> 640586 bytes images/case_studies/haufegroup_logo.png | Bin 0 -> 5794 bytes .../case_studies/haufegroup_logo_feature.png | Bin 0 -> 5841 bytes images/haufegroup_logo.png | Bin 0 -> 4649 bytes 9 files changed, 587 insertions(+), 6 deletions(-) create mode 100644 case-studies/haufegroup.html create mode 100644 css/style_haufegroup.css create mode 100644 images/CaseStudy_haufegroup_banner1.jpg create mode 100644 images/CaseStudy_haufegroup_banner3.jpg create mode 100644 images/CaseStudy_haufegroup_banner4.jpg create mode 100644 images/case_studies/haufegroup_logo.png create mode 100644 images/case_studies/haufegroup_logo_feature.png create mode 100644 images/haufegroup_logo.png diff --git a/case-studies/haufegroup.html b/case-studies/haufegroup.html new file mode 100644 index 0000000000..c7db9b4703 --- /dev/null +++ b/case-studies/haufegroup.html @@ -0,0 +1,112 @@ +--- +title: Haufe Group Case Study +layout: basic +case_study_styles: true +cid: caseStudies +css: /css/style_haufegroup.css +--- + + +
+

CASE STUDY:
Paving the Way for Cloud Native for Midsize Companies

+ +
+ +
+ Company  Haufe Group     Location  Freiburg, Germany     Industry  Media and Software +
+ +
+ +
+ +
+
+

Challenge

+ Founded in 1930 as a traditional publisher, Haufe Group has grown into a media and software company with 95 percent of its sales from digital products. Over the years, the company has gone from having "hardware in the basement" to outsourcing its infrastructure operations and IT. More recently, the development of new products, from Internet portals for tax experts to personnel training software, has created demands for increased speed, reliability and scalability. "We need to be able to move faster," says Solution Architect Martin Danielsson. "Adapting workloads is something that we really want to be able to do." +
+
+

Solution

+ Haufe Group began its cloud-native journey when Microsoft Azure became available in Europe; the company needed cloud deployments for its desktop apps with bandwidth-heavy download services. "After that, it has been different projects trying out different things," says Danielsson. Two years ago, Holger Reinhardt joined Haufe Group as CTO and rapidly re-oriented the traditional host provider-based approach toward a cloud and API-first strategy. +
+
+ A core part of this strategy was a strong mandate to embrace infrastructure-as-code across the entire software deployment lifecycle via Docker. The company is now getting ready to go live with two services in production using Kubernetes orchestration on Microsoft Azure and Amazon Web Services. The team is also working on breaking up one of their core Java Enterprise desktop products into microservices to allow for better evolvability and dynamic scaling in the cloud. +
+
+

Impact

+ With the ability to adapt workloads, Danielsson says, teams "will be able to scale down to around half the capacity at night, saving 30 percent of the hardware cost." Plus, shorter release times have had a major impact. "Before, we had to announce at least a week in advance when we wanted to do a release because there was a huge checklist of things that you had to do," he says. "By going cloud native, we have the infrastructure in place to be able to automate all of these things. Now we can get a new release done in half an hour instead of days." + +
+
+ +
+ +
+
+ "Over the next couple of years, people won’t even think that much about it when they want to run containers. Kubernetes is going to be the go-to solution."

- Martin Danielsson, Solution Architect, Haufe Group
+
+
+ +
+ +
+

More than 80 years ago, Haufe Group was founded as a traditional publishing company, printing books and commentary on paper.

By the 1990s, though, the company’s leaders recognized that the future was digital, and to their credit, were able to transform Haufe Group into a media and software business that now gets 95 percent of its sales from digital products. "Among the German companies doing this, we were one of the early adopters," says Martin Danielsson, Solution Architect for Haufe Group.

+ And now they’re leading the way for midsize companies embracing cloud-native technology like Kubernetes. "The really big companies like Ticketmaster and Google get it right, and the startups get it right because they’re faster," says Danielsson. "We’re in this big lump of companies in the middle with a lot of legacy, a lot of structure, a lot of culture that does not easily fit the cloud technologies. We’re just 1,500 people, but we have hundreds of customer-facing applications. So we’re doing things that will be relevant for many companies of our size or even smaller."

+ Many of those legacy challenges stemmed from simply following the technology trends of the times. "We used to do full DevOps," he says. In the 1990s and 2000s, "that meant that you had your hardware in the basement. And then 10 years ago, the hype of the moment was to outsource application operations, outsource everything, and strip down your IT department to take away the distraction of all these hardware things. That’s not our area of expertise. We didn’t want to be an infrastructure provider. And now comes the backlash of that."

+ Haufe Group began feeling the pain as they were developing more new products, from Internet portals for tax experts to personnel training software, that have created demands for increased speed, reliability and scalability. "Right now, we have this break in workflows, where we go from writing concepts to developing, handing it over to production and then handing that over to your host provider," he says. "And then when things go bad we have no clue what went wrong. We definitely want to take back control, and we want to move a lot faster. Adapting workloads is something that we really want to be able to do."

+ Those needs led them to explore cloud-native technology. Their first foray into the cloud was doing deployments in Microsoft Azure, once it became available in Europe, for desktop products that had built-in download services. Hosting expenses for such bandwidth-heavy services were too high, so the company turned to the cloud. "After that, it has been different projects trying out different things," says Danielsson. +
+
+ +
+
+ "We have been doing containers for the last two years, and we really got the hang of how they work," says Danielsson. "But it was always for development and test, never in production, because we didn’t fully understand how that would work. And to me, Kubernetes was definitely the technology that solved that." +
+
+ +
+
+ + Two years ago, Holger Reinhardt joined Haufe Group as CTO and rapidly re-oriented the traditional host provider-based approach toward a cloud and API-first strategy. A core part of this strategy was a strong mandate to embrace infrastructure-as-code across the entire software deployment lifecycle via Docker. + Some experiments went further than others; German regulations about sensitive data proved to be a road block in moving some workloads to Azure and Amazon Web Services. "Due to our history, Germany is really strict with things like personally identifiable data," Danielsson says.

+ These experiments took on new life with the arrival of the Azure Sovereign Cloud for Germany (an Azure clone run by the German T-Systems provider). With the availability of Azure.de—which conforms to Germany’s privacy regulations—teams started to seriously consider deploying production loads in Docker into the cloud. "We have been doing containers for the last two years, and we really got the hang of how they work," says Danielsson. "But it was always for development and test, never in production, because we didn’t fully understand how that would work. And to me, Kubernetes was definitely the technology that solved that."

+ In parallel, Danielsson had built an API management system with the aim of supporting CI/CD scenarios, aspects of which were missing in off-the-shelf API management products. With a foundation based on Mashape’s Kong gateway, it is open-sourced as wicked.haufe.io. He put wicked.haufe.io to use with his product team.

Otherwise, Danielsson says his philosophy was "don’t try to reinvent the wheel all the time. Go for what’s there and 99 percent of the time it will be enough. And if you think you really need something custom or additional, think perhaps once or twice again. One of the things that I find so amazing with this cloud-native framework is that everything ties in."

+ Currently, Haufe Group is working on two projects using Kubernetes in production. One is a new mobile application for researching legislation and tax laws. "We needed a way to take out functionality from a legacy core and put an application on top of that with an API gateway—a lot of moving parts that screams containers," says Danielsson. So the team moved the build pipeline away from "deploying to some old, huge machine that you could deploy anything to" and onto a Kubernetes cluster where there would be automatic CI/CD "with feature branches and all these things that were a bit tedious in the past." +
+
+ +
+
+ "Before, we had to announce at least a week in advance when we wanted to do a release because there was a huge checklist of things that you had to do," says Danielsson. "By going cloud native, we have the infrastructure in place to be able to automate all of these things. Now we can get a new release done in half an hour instead of days." +
+
+ +
+
+ It was a proof of concept effort, and the proof was in the pudding. "Everyone was really impressed at what we accomplished in a week," says Danielsson. "We did these kinds of integrations just to make sure that we got a handle on how Kubernetes works. If you can create optimism and buzz around something, it’s half won. And if the developers and project managers know this is working, you’re more or less done." Adds Reinhardt: "You need to create some very visible, quick wins in order to overcome the status quo."

+ The impact on the speed of deployment was clear: "Before, we had to announce at least a week in advance when we wanted to do a release because there was a huge checklist of things that you had to do," says Danielsson. "By going cloud native, we have the infrastructure in place to be able to automate all of these things. Now we can get a new release done in half an hour instead of days."

+ The potential impact on cost was another bonus. "Hosting applications is quite expensive, so moving to the cloud is something that we really want to be able to do," says Danielsson. With the ability to adapt workloads, teams "will be able to scale down to around half the capacity at night, saving 30 percent of the hardware cost."

+ Just as importantly, Danielsson says, there’s added flexibility: "When we try to move or rework applications that are really crucial, it’s often tricky to validate whether the path we want to take is going to work out well. In order to validate that, we would need to reproduce the environment and really do testing, and that’s prohibitively expensive and simply not doable with traditional host providers. Cloud native gives us the ability to do risky changes and validate them in a cost-effective way."

+ As word of the two successful test projects spread throughout the company, interest in Kubernetes has grown. "We want to be able to support our developers in running Kubernetes clusters but we’re not there yet, so we allow them to do it as long as they’re aware that they are on their own," says Danielsson. "So that’s why we are also looking at things like [the managed Kubernetes platform] CoreOS Tectonic, Azure Container Service, ECS, etc. These kinds of services will be a lot more relevant to midsize companies that want to leverage cloud native but don’t have the IT departments or the structure around that."

+ In the next year and a half, Danielsson says the company will be working on moving one of their legacy desktop products, a web app for researching legislation and tax laws originally built in Java Enterprise, onto cloud-native technology. "We’re doing a microservice split out right now so that we can independently deploy the different parts," he says. The main website, which provides free content for customers, is also moving to cloud native. + +
+
+ +
+
+ "the execution of a strategy requires alignment of culture, structure and technology. Only if those three dimensions are aligned can you successfully execute a transformation into microservices and cloud-native architectures. And it is only then that the Cloud will pay the dividends in much faster speeds in product innovation and much lower operational costs." + +
+
+ +
+
+ But with these goals, Danielsson believes there are bigger cultural challenges that need to be constantly addressed. The move to new technology, not to mention a shift toward DevOps, means a lot of change for employees. "The roles were rather fixed in the past," he says. "You had developers, you had project leads, you had testers. And now you get into these really, really important things like test automation. Testers aren’t actually doing click testing anymore, and they have to write automated testing. And if you really want to go full-blown CI/CD, all these little pieces have to work together so that you get the confidence to do a check in, and know this check in is going to land in production, because if I messed up, some test is going to break. This is a really powerful thing because whatever you do, whenever you merge something into the trunk or to the master, this is going live. And that’s where you either get the people or they run away screaming." + Danielsson understands that it may take some people much longer to get used to the new ways.

+ "Culture is nothing that you can force on people," he says. "You have to live it for yourself. You have to evangelize. You have to show the advantages time and time again: This is how you can do it, this is what you get from it." To that end, his team has scheduled daylong workshops for the staff, bringing in outside experts to talk about everything from API to Devops to cloud.

+ For every person who runs away screaming, many others get drawn in. "Get that foot in the door and make them really interested in this stuff," says Danielsson. "Usually it catches on. We have people you never would have expected chanting, ‘Docker Docker Docker’ now. It’s cool to see them realize that there is a world outside of their Python libraries. It’s awesome to see them really work with Kubernetes."

+ Ultimately, Reinhardt says, "the execution of a strategy requires alignment of culture, structure and technology. Only if those three dimensions are aligned can you successfully execute a transformation into microservices and cloud-native architectures. And it is only then that the Cloud will pay the dividends in much faster speeds in product innovation and much lower operational costs." + +
+
diff --git a/case-studies/index.html b/case-studies/index.html index ba42783c54..d17c34b502 100644 --- a/case-studies/index.html +++ b/case-studies/index.html @@ -14,6 +14,12 @@ cid: caseStudies
+
+ Haufe Group +

"Over the next couple of years, people won’t even think that much about it when they want to run containers. Kubernetes is going to be the go-to solution."

+ + Read about Haufe Group +
BlackRock

"My message to other enterprises like us is you can actually integrate Kubernetes into an existing, well-orchestrated machinery."

@@ -32,12 +38,6 @@ cid: caseStudies Read about Pear Deck
-
- Buffer -

"It’s amazing that we can use the Kubernetes solution off the shelf with our team. And it just keeps getting better."

- - Read about Buffer -
@@ -71,6 +71,7 @@ cid: caseStudies Ebay Goldman Sachs GolfNow + Haufe Group JD.COM LivePerson monzo diff --git a/css/style_haufegroup.css b/css/style_haufegroup.css new file mode 100644 index 0000000000..1a8dc502fd --- /dev/null +++ b/css/style_haufegroup.css @@ -0,0 +1,468 @@ +#caseStudyTitle { + margin-top: 1em !important; + font-family:"Roboto", sans-serif; +} + +p { + font-family:"Roboto", sans-serif; + padding:5%; +} + +.header_logo { + + width:32%; + margin-bottom:-1%; + margin-left:10px; +} + +a { + text-decoration:none; + color:#3366ff; +} + +body { + margin:0; + +} + +h1 { + font-family:"Roboto", sans-serif; + font-weight:bold; + letter-spacing:0.025em; + font-size:42px; + padding-bottom:0px; +} + +.subhead { + font-size:26px; + font-weight:100; + line-height:40px; + padding-bottom:1%; + padding-top:0.5%; + +} + +.banner1 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-top:12%; + padding-bottom:0.5%; + padding-left:10%; + font-size:32px; + background: url('/images/CaseStudy_haufegroup_banner1.jpg'); + background-size:100% auto; + background-repeat:no-repeat; +} + +.banner2 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-top:4%; + padding-bottom:4%; + width:100%; + font-size:24px; + letter-spacing:0.03em; + line-height:34px; + float:left; + background-size:100% auto; + background-color:#666666; + background-repeat:repeat; + +} + +.banner3 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-left:5%; + padding-right:5%; + padding-top:4%; + padding-bottom:4%; + font-size:24px; + letter-spacing:0.03em; + line-height:34px; + float:left; + background: url('/images/CaseStudy_haufegroup_banner3.jpg'); + background-size:100% auto; +} + +.banner4 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-top:5%; + padding-bottom:5%; + font-size:24px; + letter-spacing:0.03em; + line-height:34px; + float:left; + background: url('/images/CaseStudy_haufegroup_banner4.jpg'); + background-size:100% auto; +} + +.banner5 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-top:3%; + padding-bottom:3%; + font-size:24px; + letter-spacing:0.03em; + line-height:34px; + float:left; + background-size:100% auto; + background-color:#666666; + background-repeat:no-repeat; +} + +.banner2text { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + width:60%; + padding-left:20%; + float:left; + text-align:center; +} + +.banner3text { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + width:70%; + padding-left:15%; + text-align:center; +} + +.banner4text { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + width:65%; + padding-left:17%; + text-align:center; +} + +.banner5text { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + width:68%; + padding-left:16%; + float:left; + text-align:center; +} + + +h2 { + font-family:"Roboto", sans-serif; + font-weight:300; + font-size:24px; + line-height:34px; + color:#3366ff; +} + +.quote { + font-family:"Roboto", sans-serif; + font-weight:300; + font-size:22px; + line-height:32px; + color:#3366ff; +} + +.details { + font-family:"Roboto", sans-serif; + font-weight:300; + font-size:18px; + color:#3366ff; + letter-spacing:0.03em; + padding-bottom:1.5%; + padding-top:2%; + padding-left:10%; +} + + +hr { + border-bottom:0px solid; + width:100%; + opacity:0.5; + color:#aaaaaa; + height:1px; +} + +.col1 { + width: 43%; + padding-right:8%; + float:left; + font-family:"Roboto", sans-serif; + font-weight:100; + color:#606060; + line-height:20px; + letter-spacing:0.03em; + font-size:14px; + +} + +.col2 { + width: 41%; + font-family:"Roboto", sans-serif; + font-weight:300; + float:left; + line-height:20px; + color:#606060; + letter-spacing:0.03em; + font-size:14px; + +} + +.fullcol { + width:77%; + margin-left:11%; + margin-right:10%; + margin-top:4%; + margin-bottom:4%; + font-family:"Roboto", sans-serif; + font-weight:300; + float:left; + line-height:22px; + color:#606060; + letter-spacing:0.03em; + font-size:14px; +} + +.cols { + width:80%; + margin-left:10%; + margin-top:1%; + margin-bottom:4%; + font-family:"Roboto", sans-serif; + font-weight:300; + float:left; + +} + +h4 { + font-family:"Roboto", sans-serif; + font-weight:400; + letter-spacing:0.9; + font-size:20px; + padding-bottom:0px; +} + + +@media screen and (max-width: 910px){ + +h1 { + font-family:"Roboto", sans-serif; + font-weight:bold; + line-height:36px; + letter-spacing:0.03em; + font-size:30px !important; + padding-bottom:0px; + width:80%; +} + +.header_logo { + width:35%; + margin-bottom:-.5%; + magin-left:10px; +} + +.subhead { + font-size:18px; + font-weight:100; + line-height:27px; +} + +.details { + font-family:"Roboto", sans-serif; + font-weight:300; + font-size:16px; + color:#3366ff; + letter-spacing:0.03em; + padding-bottom:2%; + line-height:28px; + padding-top:4%; + padding-left:10%; +} + +.logo { + width:8%; +} + +.col1 { + width: 95%; + padding-right:8%; + float:left; + font-family:"Roboto", sans-serif; + font-weight:300; + color:#606060; + line-height:20px; + letter-spacing:0.03em; + font-size:14px; +} + +.col2 { + width: 95%; + padding-top:2%; + padding-bottom:5%; + font-family:"Roboto", sans-serif; + font-weight:300; + float:left; + line-height:20px; + color:#606060; + letter-spacing:0.03em; + font-size:14px; +} + +.banner1 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-top:15%; + padding-bottom:2%; + padding-left:10%; + font-size:18px; + background: url('/images/CaseStudy_haufegroup_banner1.jpg'); + background-size:100% auto; +} + +.banner2 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-top:4%; + padding-bottom:4%; + font-size:18px; + letter-spacing:0.03em; + line-height:24px; + width:100%; + float:left; + background:none; + background-color:#666666; +} + +.banner3 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-top:5%; + padding-bottom:5%; + font-size:16px; + letter-spacing:0.03em; + line-height:23px; + width:90%; + float:left; + background: url('/images/CaseStudy_haufegroup_banner3.jpg'); +} + +.banner4 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-top:4%; + padding-bottom:4%; + font-size:18px; + letter-spacing:0.03em; + line-height:24px; + width:100%; + float:left; + background: url('/images/CaseStudy_haufegroup_banner4.jpg'); +} + +.banner5 { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + padding-top:4%; + padding-bottom:4%; + font-size:16px; + letter-spacing:0.03em; + line-height:23px; + width:100%; + float:left; + background:none; + background-color:#666666; +} + +.banner2text { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + width:90%; + padding-left:5%; + padding-bottom:1%; + padding-top:1%; + float:left; + text-align:center; + color:#ffffff; +} + +.banner3text { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + width:90%; + padding-left:5%; + padding-top:5%; + padding-bottom:5%; + text-align:center; +} + +.banner4text { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + width:90%; + padding-left:5%; + padding-top:3%; + padding-bottom:3%; + text-align:center; +} + +.banner5text { + font-family:"Roboto", sans-serif; + font-weight:300; + color:#ffffff; + width:90%; + padding-left:5%; + padding-top:3%; + padding-bottom:3%; + text-align:center; +} + +.fullcol { + margin-top:6%; + margin-bottom:8%; +} + +h2 { + line-height:26px; + font-size:18px; +} + +.quote { + font-size:18px; + line-height:24px; +} + +.logo { + width:35%; +} + +@media screen and (max-width: 580px){ + + .header_logo { + width:60%; + margin-bottom:1%; + margin-top:2%; + + } + + .banner1 { + background: url('/images/CaseStudy_haufegroup_banner1.jpg'); + + +} diff --git a/images/CaseStudy_haufegroup_banner1.jpg b/images/CaseStudy_haufegroup_banner1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e12bb41148c65bdeff00bc672c0fe9a7eac9e43 GIT binary patch literal 494149 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%0AF${Tx&>}}1u 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

  • mslxs#FRJjYN{(l?<7l)V994 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"#3 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

    9eItrvCttoeJRYuZT)-%sT!HE~ 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

    @AMeX=EdX~Mg||o9DTwhKa|*j{;JgltAEuO%|2g z!||nbQGPBcbT6O2{{Yz=E8n}P6vg+=o!2guhV-m8Zyqc*+gJ}&LHV)BaBDAGdmVzj z+MFEOS;f}Q?-;GK+Sk8-+n5XR!Oi9)A9Ki4b2Yj#{6W`5hC?JwdCklRy=V03@D3O! z*Pa-o=PdC;s!1kE5j?!e>7^Gme8d6LQHt;tO*8i{3JykG&4{7dBe_|ek>rZit#sF! zZp=g3p9c?hP#XUL3GPhO`+?gq3MJ&X59JgtwI2qMD(SahTMP*&sV_swtpcU{{{Xl# zece3J*vBF=Vec*FNuDCoi9JS*_@k1lk3qim)h^|670@xoT8Nx6r%xp!2D&l{r_2u( z9`-}K`-020#v;cLK14$C%_YoM*B3u+D2Z()ie3t1QR`ch2_wf*wmZ3*VH|8@pGFFh z(r9uur$|b=jlWX;L;zfAQ%a5=#d#a=ac`5K^0l^r(~GQ@P)IuN(X_@&3V4d@>`S=F z29{F2L*rE+OfBQ>B?xxseBROS^L7zL`}#&}wv{W;6BIs~r@+%qn|;DVSIHP@;a6AK zD1dxJ?z+8*$o;yxkcYhPdzU2Dp^niV2Za_%W(+@8m-I4mlDzk*d5NI@aS8CnR>QDLXGSXw+X;jbdC5-|1y ziutj1kj@#SvXXnZmF^zTo!qw)A$VBFPvSEc`jpa@sn?5cE_WA6^z*&$aCV;&CoC6p zV=dUSP^w>G)ZxE>KuGQ$t{-WyQ z)=V1qw2n9yxF2u}5xvGEhB=09sO}(-d07kG%U6RRZ6j>hjOIfg+(4-}6Me!~op?uY zu5at;9~G=OA9^`l+W!DEtL_U&>4|mEBpe+WJ;I+A0nJ|7+h5z=-1>F6w6t_~kJLZF zQ4>@Ct*c#f{{UDzIQK~I-IS5D8h#N)s@a<(?HvO?9AFFrkt9ZRkEo@?ayPc_zX~PO~P~_T7w-02XP_*=;r}x7%ExpBz&`UHj z$0Sa&-LV`^K^%BfuTAw}{{Ynu#I?}O&21uvt~mP?cKS-#5cax zs>bA8X}BAgysf5+?Sde%BYg3X*6K!=|6dFpx8<<4IX4DtRjK--o7zacTj%1-wrB zRdMM~3=wL@c?POcsJn*XXey!jnJNe-z%X%xRRPu(R{0L)L*LqZ#3DrvPe zwzzTmlO?OjS%Q;87-L3KH#9A~5(rhNUk;j47-RDEB$Jv&kaNo)b3^vVR+U?um?H(3_(j#O2K%f^2x%MTsCO5(w#Q8G4X#5o+08o@ ztn-3mX&`n4m-&_D!FR^vZe~U0!ds9mVqQQRnC>{uB@aTN*HMn)aWO8jh0-^hya09_ zPg-~BBaaKY10Bh}FLnwwHI_{GBi`LTnQN$R@{rp`?)ETBV-}3zokP9EX>17;pshz; zP{U<-H@8W1q=&c75!S2@`DN{kcH!~XHiW*oj1r~2*;YYQaoKWA#AJFgQocjEGEwz?OO>OArlqZw36kJf-PkwMT6wZgq$w9LzBHtng7u5sg_ir2AaHVd%~<{3=`upiA@ds2KxD0emw6=3o#bK~Z`wDlgmy)#RJ zzrZ~Q%T#+l*Zuczj@{0ru(-CQcJb?0mzQ5ba`_rOFQND=A0HI9aoG=48;f}U%2`Na zrQu*AECA$3q{vUtT~5L`TiL}6jc1LzN$CdE&$2++hQxL7h2A>Fvpz)_{}cT~$5_ZMP{}?K)+Spkyn;ouODZM#*ZzD^?nG{?sX_ zA2iVAA(G)@M7RMd3%MLz7#N;PIaHdRCv28jcNRKe0~{%V<|vbL);a)u{+ob(V@}Pqvp+^J9>Iq>3DSm6O?`L9)|y(>^c(0OZPIJBG7u+L~HBBA&?s;1n^-Oce$iG4*qp+qfNZ~J>MXc!Z0 zAj;dVPc~uvJA$4{6a(R?LX%j@9dT$61Ky>U(q^8L55Yn0=4oBf04YX1K^5{eC+alS z9lYAhqX!yG_`a`!HKS@V3$BI`I*b+% z2`BPKqMk+fJO2Rb(he`|PH@336)Z|@D^EU~)68_xbB0M2!xU&ANZ;Y|_NfE_3x5KC0~P<7kL{{X{8am_0sL^I)|Bb8{0cS{2VNV0eH{{V-d!%Y$aO5lb4 zl=$`k01XO`IHF$CFhO(=?)^STN&^HC&>Df~;aYx`(rb+ZI$)>1-$PqG#pxgX>niAn z&O2ygh||aYMLN9L8>%^G{8ACz08lqaQSrt&GQH}4M~{c?)&7u025PJx^g{td`05PI zA1?&xCp5=<0=QvH*0reGy){j779=UrJd9HuSg1iPR1;EqZPK1PhTCurd8f>!L%WX^ z6~vK7BL|CaNdEwZX{NM>yn#w5qj4g&Ro8Q4VY9GesyULOMLc;8hvBIaQ&2n;tZ_N! zp;oy0q~hFn@B_g4eDyRqP!t?gh74WOFD@sgH?4gC0A8JJjXiy7hft>&A(k`s3Rimc z*zH|NVW`12RvG@OrnbKC%uYJu7_Ju^+qRCS)9Q)uWSOPl;*A?0MRy)L&Tp1>m)A^X z%XMgG7?Dcni0V?UE@!um&V|&}d+4)_Sg{`VSJ$?H3h;Lq(Km^&-g0D7B=h$eI@ z>aN12_YWLqKFk#R+!+gNfQWldQn28Te2qgD2Blbv0Ycpk2g>anDsE{ zfg>M^k}js84x^ivASZ}>r@Ae`5@gpc0w45mRgujBq-fFq01Q-txzRG`bcvw4K`RFW zF+Bra8x=x`Df6DQc6)_mcNWf41u?!o~$jT+`|W$pD_Z zw1B(l<>K$C2eSm0y_%W-0NVEAwe5|$it5JPe(bjK_!^We<={X%mf`;ZBS;t*d{d+P z0pG$s%R*Sd7aMYDHuX(>z#Dx30KZoeuxKRos%Mj_eER;RWTlsHS*Qcm?sk;#v0t#4 z^A7?TYbUvix+V|&?0?c#y{-^S{!#o@DcTl}*?~Ga2?27z?%Sx1M;6(ZtEn~&CUW3> zEqCrvE*w0dDTxXGY@c!2%FPp(fXj5qD8v}vcWA=br2*A}n(8NbF%>7g;Gj8?lZc_i z+?!LmKKb$yX7TXcQqAZlht(>G88H{D!mB+ge0hb7&kjI5w3e0YXlF zG+GOJt|f@aa792Sv;dP_7jZ0&jnDHb6`Xc4u0ls{3S+r$QGXElA^k^FEnjN;YpAYB zZL?wVxS9Vsq=6b$W`py4@uY2L2~%4W}gEd5gb?F@=_8XN7L8(n;g1L zF8Z$AHjDVLt>k-4njQgg7<|JuGQ$4WTWMI*1B*=>PB|2&_9c?)Xw|B+WSk)cl0#$y z1|DLErmZg638io{f8wHM2XUv|{{X_JnGVIb@1FZ?aWY%SZw0W)UqvwWZEV&wR(P$O z=#z(z+Rl2fYlCs#n%7hYvNwyFM>Ew;<);&CxH;lLA_rE%qoo+o|PzI}+(<-H0cXI zSV(Z>R$Bg|I|H?_`K(FCW1z&zducS+BFO|%OCfQ^y%GF6`H`+8`km(Fm?2 z2D(WApXJGPe@O4UlbZOZagsJtmCO#j)@p9hxwW{0IYP>3vySy6UO|dYAE^>ksbZ#| z9dWq*6LA&HVg5G0JzxMq#8eKoxjW=fiN(GeJ55bHN_+09@B4n=v|7N;j=5Y^k2#F8 zmUg+B*VGl_-$?^j{-?Rz{XGWS>mukUY;GsMqP5Qj4`+_kbA8yKOtBY%?8b@93GW6@ z)lw|Yu)jq=>p{ZaUAn7`RaB(9n5TT_2S6{Odk6*dmg2T|o8uI#-m%N~<*i-^FWwbx@ zrgs7xhY^~Ic+;XVd7py1rnodOPzLM;1#7hcr{-b(nz?g|h8h8<6oKXpO$}%{622{7 zpAGuy8Td+4Ow;VNamnb%WBXsmax`y&EHDaeJ?XuMZ) zk@#AXJG8{X(o%V^WIsTl<<-e9cnT9hE5<`j{#uky6f~&)yVOlpH3+T5m1s&X)Co=RiqqELE=9lQYlb;4SM+Khz9~wZaCEBlk)?b*N_WNXJW^Y z`a>@D75!QuTad(}q2ZF^$;IgzC!ni^41rHYuH+3DSG52zNPS>3lMx}~{Jt8R56o_) z*dG9O0J@uxN0a{mh^ei{$eLs3)7X{D#I-pw9BSsHWoidp$evE0uHD9Zj6k^N4q7|VZK#&T3ENjSy+O^nMryU{0aKQ8Zzibn& zcZP^pvjQx+ablS(Ft7P}db2DMzhl$h+;r$|Mgw4mS(M_~VBMJe0bcC;LX)jarja^#fi) zqJynhO}Hl-aZ(FTQMGGORPKK%=r%fS;{>{j@>U)Rc|2hFj}kh7506c>!-o^eD!3A_ zEE*(s$|?aq9|}{bJ#`keb|oa$J4*fl6Y>O-2ap~bQ%NqMNh6A<{nYe-{X?2bqlDXc zvPgYNV~6Q{24*j)$jd~lkH=DCm9byi$srA-`H}$nAI%LebQ3kAwPz~*;HwzBSl^0 zzp75xQ0a;7&f?0+xsA|U+M)5Oj!qMC z=79G5!Z=DLw7S8(L=coq_`aE)PgY*1TX_9Jv&$Qp)8!sDjIfXMaqLt_YQBxYk*o~7 zLEgnocdxRYf!)n;J7eFz;>Alx;fy`SZ;-~L1uaQ^c3Z^YJOQq<`?k$*yMiqDYna@A z=C+pmaqd?ZH`CbTJ&aCoJtQ8^3nXJdrkkARPT~jd>)hc%e=Kcj9n*dEIQ{36+DnO^ zDL$GIHtViwZRi%=?hb-`nP$v_(&{)j6H1k+lhlra5cWdW3@{*JUUUm(`)_||?N_&! z7%yu(2KaXlMdh~6_ci5`O)U8#BZVHa)ZWPqOus-rlxCx-*GAawV%fIV+Uz!u^PEV0 zjs%kG;o|$m3Sp3{%VwV>b!R}6bqLHyshaCvC2{ldw24|HdH&UO(; zl(&}YCy-x@Nv(LX`)q7B(h{H%(MF)TkXy?f+neW_Ta$*imsiE4wz)I|f|Mt8j4ZQk zak3GPk_QUcnX20_?FVJa_IHnlPzE> zGyeb`p{&Hvb39Wa?|v^No|PS%2v1nu!% zcH2pW_K?oszY|ZeEL4%0q-Glz8m@J`su*tk}>K+jn)!>+oYuJ z^)mvr>#*6Y<6Si-qC7ft;*Sb(2y!`g=jo(10Yb(&C_X>4$47txw8NnfYQX;h)U~(r z{^0HWx)m!2c|jwQ^#K*#xn>-Nev;@l%DsBuD)P?hxeMmksD-E42$CC^dD|ZFR>AGw z>%p!A2`$c2(Ir?a8XKuFca194nO@0aCZ2DCe{rBDZ2R~uj7a}uWGqt7Esp0`*%o3IH14i4+ zi9e?f70!-LmN!-|KE<5<@wCle;5(M*IcT<*i3Oft(oldHtR+cOMG5rsr9%V0vmU2p z&)epbP#YsdUNNuAYhSfmZ4PJFM#hp_>bJc)dwe~{?krR`_zR&XCdL@!jw`&#wMZbB z>VYDF?o=V#n+}?>+a%oXZJYGRR3W1|G=L6NAF$w|PA%h^!b~0=OdDLfRh<{Lo#}cO zd+y`L+3!}j^zN?Y72ckzw*y`EVg0)LL8KfcIy?` z)K5*z<-T|;gIq;BOTEQCxHK6fcp0+3z&;CFEwN=i1rGHlwb;|~8q#@&wF(tFP}1Lu z(6vbLA3Xyn5R;~*2*9Iq+j;CMpj>H!EhDuZ8pMpP^wCHp*TTE}>!gz7nq3DKle^Z@ zEc00~MH0s`9ob$qPB#)TAGYju)^_=tWq3FSxO;!aOo$TJpTrNd{1?tobu+fB-8bF3 zuv`p>ZfB>ssaRu$lmT*LgrE+^i>(Rr*N;72BOvu1&elV`=q^d*GSxxe7iZd7U$#Yb z2=e5J4~8l|b?%E#ZnlenYkPSd3GQwtlHzoXu;(JF>frPqI?LSpfSY3rAT437Nji^O zv5Rj3;oe{;fEWbtjBM|7@{8M?e{kpLvXLdrUYt#|c>5@2`eH5s7cse$YOx@VNZBIZ zH&?nnf+^=LJ~w$|OF_!Kd(tl7X=W?9x;VqWQK;0Pa+7wyZu^&o%ih{&tmU_!_8+>2 z8I%^{U64wV0YHSQTKqMt+xCA~?Nhv5wvLgtp>89kRb5_e_fa*`8nvdGtp(Z^8Lrds zp3}O`Rv9~s4|ff+@${%8ytTL^$=)k?9Q>PIi_%QJu)Vjq+z9ihiOm2CWZ-h@2fbsr zlW%ovBzEGgjo_X+f<5I^p7>&go>#sxpaC2i7_ycifH{4{$pVxgyc!AE)Ocx+Us{J* zPjAJJ4+E^z+)6)8%cAL$9GnYJU|F*KDbSuv+Vk`ipM5 z-S(R~Y@&RVd5;7%RDcF&qN{Va-9=-6aUAb!W75(pXfgPw%s*mYNd$4^uHmwIxHNY0 z19x;vux+4*v^#j6O4_{-b1kb`dn00dh#{0E*mMNN?*9M-CN6=c?H_w4_myB{dj|<@ zT4P}?^~bBr*2+1K7A^Uc>>{Iv40@iL-0l8_*`OYC;d`!0`JUsa{Q+mL{X=^H01G5* zW2Q|4zv?PoV~Dm~l&LCPpo-4i*~bDcv!~{c<|bqYS#8moLf38epoedXm(FAK(Xls3 z14$eYNeZf4m%7+FnuCkYNyfZKQBoCx3t$r6B8Y|!#S|be4-o!muESRhia3Utz#Sbw zw*_AJz30YiQSRkHA%zM3_G-|NtW(LD_3+cA3=c{$kZsR{6{ChSGZI4@)iz( ze};~yjXP6-U^-Def!~UrBY|)Lldi=<-T0r?qo~9qrEsd~`bcWlgn+S?K_eO(3hsWR zxa(a2+E9c?DjZMvznfcL9#epD>bOm4bZKG)};wqBhDT3sD0Aoc1mw?}9A53KI z2t8@D4LH-Q91|`HJ?la&FBVx!v{5@nQm94DOdc|(p#=uy_0?|UBqH6;l+nx;6*RA{w3ij-n0P2QV9O>4_MI3evp! zbg53Uk*+>z5w^Lz3iTkZ&SK;iiq6u-I5Al-W)n@YRXh^k@;y3p=}KtC`<=!xv9JNg zPZ2#pd{P|CD2I*aM{;f+{{Vs{=x(wUommR`a zNb3FH0PUuK6q9z?{{Z%^4IMr&eqD)d7M2!?%G%NhWE2djp_)U=jU$(-1Xssa7WQ`5 z!1*l=_Sd~fp5|%sdx`dYlE~y$Q^|o)z$i5)gQ((mE5AXh7=W0_^ro!bp>A;(BA%Mu zO^=xk7ykgCL<|HDfn)nq*Ts&hcOdvLV7sXD@r;bVe7mTvtbaP%SP%68);gP?y%}pM zhUNz@KrXz^c#le<))a`;H;w5FC;LP3UaueO$vvJ)bj5S0tSLuyux0xrz>&l*@-mdrU!S{Cr=-@vH z<%bp5w#z7X`&Ppid`~i_*K7Rmw5{hwCE>LQ&Ua^;(C|BrzLsEIM@YWL1h5Jm< z(z7+qaOX^l(9U$;$0z-=2tNg){j+E?kK1wNdHtqE8x4>OKrD_8yOPJDp$Fxz<>`52 z+%{Wtb6+jZbZ_kNm4n?_>ucFeIf5MDdgfCB4{LWOLc-o4ki-&bz)mG*v6S1~07WWI zH}lgYZi{H#zMc_CoY3ypniTKVKJwT|^H)}#_@gp0A6|JQVpc?o@nWYD>QE%yMSiL( zCf<6{N-HCX$bjHI{{RJ0=U^+C!|XurTcFV3va3RE+*^_X+Bf3yE7$2XF*iKSZ>2C`W}!-&L0tjzH$**J0FD zwmVa4%qPh%#iuM2`4YgT*hg0X*ua33*^BZv1mk$K2q4=sx2N;}1d`)#iUD?*rt;1Oa zqQ=Egl?+tK4H*gC5#i&gUZ09MUTvBv*5EsMguTh;KqYo%T0Mn?k1L7p-rtcz$!9Iv ztUe+elxd;Z@39~O(z?)X5wzP+wV#=;cXP1{4eQG$itV{L4`yn$?RkFI`|YlkxWC=u z?y7f4cid3Pt9 zaOd$QYGH1OgLxwXt$(+}{B;nh; z9VrKrSrXQre@_pdh@2>aI8iHAsNeQ(O=(TK={2fNcqK}-6eho?#OP@pQB@ZRtIXbV z6&^oIfzWi?r%V&#CxuhI07`x%pxU$m{{VjU(Nz*S5~#cQZ%|KDwuUJ<5{;)$r{aDa zei~TjiyBpX<)WrE2$#MZ1n?Q7Uf)Tpvc(0%^56S^=cGG4QLhaFf+f*UJr=f%lBm01 zA*7d+k}wxTaH}4QtmovaTl)ruX^F@Lbg81W`yL-hwrm)RHOpMxx5QjeB&dJ*9BWar zus3dD{6xFF)l+Ux)pkeW0Cy>2=yh(Ow=|u)AIDH-H8tR!39{vfhsSRp`RbEMRc+kM>$DM?l`?)`mrpK-N{z== zM>OkA63k9I-WbEU6`?iq`ES=!<8dPsK$wxnxFvV53~?}CBmO=;G~;Sc2^gjcCK9r$ z56S@Ao1N?UYIHz~qATX_zjxnz?$>jnZ>Jpgn8acEc)@ENpbB)OOn)6xUAnuR&Bl#* zAM}IqQW=H22;$oNO03`jC=?$OO=-Ts)NV=XT}p|70HDfAHBRvbWnr})lrn`Cp#xxd zAP+4|06U>VaXIo!;{ksn>?opyhNVuxitK#)>BmPC#+Nh^(wY)T(^j~H&}h3R8yk4Y z*ESZR+MK3=KHBH$+_T-=nC=e1P;%?2bL`uE`1x&($L}x(I}hR%KGiNg&hjh^%f)hW zE^l$c1u%14Ei5wm8*;$UvJ2Wm-QmZLXjxwa(PT~1xWvO80IaMkTj zoyG~O+n6E%@ndwmvxl*8r*Yd=r?pK+98TOVrxP@cPm_x2LVr-(n%%{1 zBtwe}gRuS+TAtKiPR~6=5=_VN4g#H|Qj4F?ts!KOA!(DwNlJ+?ETj;&)Tbzo!qL3R z6wn@_vSWj88F3TO;*8VTUuq|8w?q>YqI*Z-c(1`a+FwCB2DZ9}b3zqho;e=A3S$lG zAr$c)HE|8yywotr$5e1|uXSn^2f;Lc85rSCgHLij+>q6agK`DA9*Itfrlj>X^V8K7 z$u)@WMVg1F<=I#Y^5#hl09L2~0aN<44Qo@u6*wl#10jix7<0V7m@pu3HPgtf1qBqL z+f{pYNR;D@&pqaRqyny}9m2y)_r2`R7yu&F;t zuYgt_BzS2}bwvn8LtIw~kcB)0Qol(f=>&K%rlY62(R%G(oesnoe>=p`<+8;xf?9#2x7}FqBuJ z0MzM;EiL4&TcyYEHwRO!VxErXb`j#J90{oI$q8&O((c0E&gdz-zk=Cfm8Fg)G4 z$!jDRQ@mV%ecOFOxw3t@V_|u4bHJmkPP0l9M@d#zmra!)MxFe3gE-{mwtBK zw$ibeC2egdB{WQu$YVd1qCSn>3qnTj$4-adMCO-*SU9vb)$BAQyr=&FEx@&o@l)>- zKXL9?_6z!&!nKUndHgiilL+K#uB;_35;0nFHkWA>tmDKhwydDtt(**RX#{c9DcnFk z#YB?QR?+%_u0R5Ppscy?S9#$(w)3|C0Fzxk#8KT%JgFotZ!}J@x>88xP*sYzUBB~_p_ z0QJ>%>x6p_?E2y@Tkfit7$Fc>-u>7~Zk8`WxBz9rLp=q~BnI*y2*0=%00-X};Gm*}JCbya?A~sUa@=U&&jyP@P zxNrh-PsAe=yr3) zlUg*$?4{rUMmaaA)5K7PuJk*TvDNEkh)BaYItgeL#}Y+9#X*)iG(XBCPz2-11664D z{(l*U?^n%TUNF3gBv-XoM0t{1a~XnkkOg?(tvZ9GZWea4ZvJa!0_1(t=Clz^jY4YD zdEv3~FqmD$0(j;qss8(p>gMY!lDDy%+TQ;FFE#X5+{FHZObIn;z#L0-@*2kP+hyby z0Lef$zq*?l(q?n0)2fvmz*qZa<+StAxM~rANffO*)RQG7kYsJ$8HADI`+4IkXvret zEgWz=5JRub9c<$-i^}F9hpxU`ekzIDWNY%Fl0p9fQC4hy{oOsZsr-`W+9~q3cDEN- zw=k{6*R2}3A~t%0t<07Npwn8r&C_zUjx%WHhseN5IGXf+*sSyxwvs+iI5>v7fD8pX zRZ-uW?9X-G!*|>l=Ob|+(vtddLBT{UL{Y^EL_x?`ruxBpp6cgu&~Klu%{kBx2Ot)w zWr`bM<8IwG8DeIi-^}?0@|SBeCjmhR;~KDFsKnmKk3OTNt`WY z;B~v+r1`9VKKWAK^4c4fiq;iVG)To&qYMOOgTSfs)~9saHrwdDtGHv322g5fBvgIc zj23dr^6u76a6RoM+zA!OjWbkEN3*SGx?5~>$sN?k=z*xwl`S!2%c$b1uRiadjI#60 zRt|8wbFgWkZ7O*M)VBTh;K#1yG{y!e8rKAew=e|dE&WIY<}2SuKxoUw12aDwZU+i# z7p6TqD>qh&SRJLr9y~M2NZq$EESy^HHEl+fT{hL=Uo} zF|2F<0BtoEPgn2z4(~Hyk?w)7ATj0Tl&=9?I~0cO+jik($4JJB9KcJPO;x8pDp`y7 z4$;btloDIY0bf?!86o6OB~K78h-n<&rh9Ijqv> z5YThtO%^9~vADJJ;&WVO1=Rp*rdiQkP26@;#vVJ%2{{^?WGx$tiU7eDV$?qkX$|$6 z6>QLwc}UN-Re2L}WP|*!`w}^Gw!l?xV<47R9-;f*mqf~=k zOwM9^#xhWs)n9N^x!lM)V_g2Z#hv{X;>u zp*<-spb0#Tr2b-n@?saOf%(&+1AWGfni?j_sj5!pXm+AeLK4QI4NVCqwXJF8qW=JD zNu_DUCwHhkg9<6}I3oI8fpIkYvQH~{Sl}BVD~2tsZ})P`B#@fD@7hH zw)ND?<4~d+kbzKkVOkMTDb&;I18UT1UFeTAO;|7lg0kb5SsDS+U)ZYpk}7|0h0uXph#bD6rKwO9tw1~U+}BAh7}qMJ=tN&d zNUfb!QDMnqfp#2dPC^QB>&e*cK02+xZk9$x1tws}`GTKjYWL?;8?x#uX9TjDDz#9p zSCLAZ4pjPLYj`>pNvA*pxWSkmE0G264xEkHZ*NZ1;k zsa;Ur`oq(fjr`lVwF8q)PqA8C?3<+cvKP~*1YNhkU6pfhm7fg;V>B?9D}R6KSc_=Z z4_Z5L$nrZGDI}m$gU?lM_2$iY6wk11(|HWk?*#=bObu~Uo$34doWXKqX17pytBos) zj@kbJRyR|(9@qBgD}Ldqk8yOwm3OV4Hh09T#Y8opn=4iO{+)Q;9Gd{e?(_f_oe109d~ zwLU9vTV1dVncW{#8sBR|Y)|Ryb4ElR{$gw1QPF=-9rc9m&icxGgWNZr+_@gozp%!~ znQM%K@RA2mHgKom>DSZI8pa=PM5HYDQ#ZhTgHan zqG^k(p9ULg{{Tq-n{E569?Qcix`=8gSS_J60+g?{F}(Vk>e5hP(d4@TC~I0*ojr?V zV!xyR0B$Te{l&Gd!2+g5hU?X*n=JPdK+RqEU3IHJ(=SZgfmmXDshMf`l0Azjaq4Z- zbA#T|&_~#;%xAD3++zX+#6vhr53bhA7a)K3TX-Ur6X#uMA@ruhZUAMxR3F08?En>6 z{mS{~rdQXjpL&+udv)2i_^gB}g0^)QH$@V6n&c}a4$5K^yNKKs*sUq4=WE)_41PmP zG@K1c%L-JaHsa8{BKUm)1ZMPCzMt>+83`o*5!k-nKyue(?fPemvVctp2S>V-Pz); zuy~BEwT+92zW(CykGzWFI91QUiq^fgFwPlq!x@p4Fe)M4Ai&VPidvL#o;a= zxU&Hxovxs=n*RXQv$UF7+F7DYNYP~o(lb>{njL8EcU#+Aro{xZh+~j|33UO~Yk)ad zr9is!9vtT}rOs|9gAq(ID<^+Y{*cXJvJhJfFXf%zna8X^7D%4nYblb1kZSE${{Yvm zj^R6Z4X)F00Jrnr06YjIo;l;%tF7a8z09#zpv2SHfnQZ{%^m&^5ptuS++wUHubFE| zxoy*PtxcWF%xrijgau10X!1Hy(82cdNI3BlQK{ikw%;+Uw!FTi=Wd8awp`XM1z+CML_< zZpycw-5&A|-?F!nn(=t^;V#cpFLW;bCKWEZBH;Npf#;OHXUM! z#Lau3l&e{G)?mcdD<|98z=LhM8Ay-~52@WG`68E3Fc?32UYl{7*bn)U>DzwnWT<6Z zTNEq2ce!^D)4~{+iu|jfV%+37fYHg$`x1lUVay(-n|=AiWo&y>I}TBxn*RU~l*HY< zmi*c(8<^6l?NY!i9sIS0^~JQ!+Ftil%!XDw3Zyv&Adrmr>GBn5o+>eO1>#@aQF?yt0{+TL>| zNRl*(eJCSHmV_!IDj?fnKmZD9_Pl{WO%e-RT9M*HNaU{KhLj^}VG^mgCxsVr_ zsUmhD%Yw#wW3MSK8KSr+r8gDSZ%9rg+t_%z26v3nZj8};BY8^h?h9R{F;LdD+o|eD zkDo)WX?7S46aWB9zksSXHTcw%^U^9&(*@OdP@XGOT8+LG@zK%9@X1yF>c%F;V{Q?5 zw!R^lkSLNy2K_p=t9KAYLEJ%4LGutfDi7N$!-w~qFKa;>=OMG6A^WVCHc4#6F4U}; z^Yc2-ZB8-ovqEt5bdlQHd)idnrWaYp@%KRozP}Z+#Nk0KK;^im!n^qVb+7j-)RiQ6 z3`-I@8VdLi3iTs>IfopQc%kuP2bZ6L^XpvwW7N?i+j$luR1qK~Y*z z)b=i)vTnApY;Cu=dstafiJ_%=DK8HClH@D(yfHbxuGUZW4PV1&N0TednfD?&$Q>&~~_Ti=81PoG}&Te`2B*SZiB25GzT* z3M5I!1*toc=>>TakA#Gpclho<| z0BA`Wq|>>FHH(zg8Pf9~)DT0cy9bb^NDzGWTRmdjBbec+82gL+(kjwDx=3p&=I5#iL07Gk8_5?E&#T-Cc80~PE6v0v@6q4*||P?i%6d5^LWzU^zpM~Lsi4t2k@Gn z<>MY&>ObP$#b%&@BeaX1#~sZ*NsC9scraDabX$$XK$-20pZb3{dBfP7544Etjiu-K z^7dklx5VSQpt@6j?n#i{yWAp%`cLrKm}6zHAXI4o0JU2dxw4l^To2B5Q?TF@jlP#y za|2@o@QQzmKNgThX*Hd*E3Q7~doftdCBEKfKzgulYAeY8VZMuOY%GD$#04UGW>m=j z*zreyt0jK^X}7(?x~E2^#LIVG|t zKbekevHlZN?5eTb92s^s{H|-8-CPH0Z1gpN_I`RXjMH~E1nTlpk#>~o= zI8-L&jnTZu@0q5E>*?W&Lw9iTBuxrj$V<^U(vmT4woo@3E31g0jNDuhA_Gy!hZMLY ze6JBk32`(EmwxA7iI z)&uvPK35P;E6A>d&6w?*QMedhYH4vC2M`W)P;8tw);TF`+7_gesYVnF###ftHVVgB zJ?7dA4cbd0-wAM`!jvQ6uk2)&=FPK%hz7lib=nH8VUonlP;KWd1$lFh;4-@?JtLwo z>(<}VrLtJuZ8Bj(;yRotehWG35LvJFu(TGm>{fj07^BXiu)8ex@#JFkAKoU+| zdK`^G^ez>8bO%vC_{+Ba$)Ub085@b?j|{jPC;tGu3#&3+g~Lt*tB-P+cKWV9&M&m( z7u#GU=n3fj$0q<#)0*p|?DnwRSbaUUbOT&z$1Z}UZr}vDAI#W)<@K`l)@SoeQGbr&oonbf3pK*Z5+t7N}vHFomN{YbT zn5bfR^to5ZQSYPkw#irk*1@QMmmhUgwyx81-bB#$sNK|};>ON##xo_Dgn%pjTXDsC zc^5-n^`3NsYe?OZG0^peWE-MaHFOJZZ&_h# z2yUjAID#@bfO0ifwtHkxw>LA8O$Y#c%I;R$D{Pd`k%jfxTqA%-CAy7eQVn_u2_G@0 zcPOKWaCD4l8r@K7z~k>uK<7H#M&nuvQ>jT-PrAa!^=5lnKBHQNM*2+$?v7uMwq9q} zY>bpt$is=~r4qbob{ukW_a)wn z!-oZX_Cu~4-35nrw(eX9yh?{KrWkuRrjeJnYPBl!hq0o|6q3wIM5>J9a|v)v|y8ZpF3-rRrO3Y}{& zon*(HT;B=(x|Mm}F)TToY^Ap&9!A>Q{x`2#s1o9brqU*;_qG_X*?Aw!BSVKtr9PUyikYbYDmHTr^jO8-_t0nYS-@khc zvat%ee&)qmIDsQbBb;2xP=JW|+X;9uB#)|tUDoGw+cww(uBMHVhK?Zc==iKmHkWr# zErK^W#MdG{>a@%M08`zo0BE~!36{^#x~X*gJ7+xuMLLPm*1lzRLocm%$Bi3nCAhfY zDL{ITAzHIyyl;x^vM9Kk)Q+)%P`eL#z0>aO_9qo(jK}unmP03LZ0xJb{cYu)7HYeF z#7=!OcL8-IuxR0Gd<6NbVtRWvZZG-lDC1 zYM=sqHzaA73K|U5x=|Rb`pB)Zt6!PdaW2Gc! zm&Agbox1)SON|m-c=1Zq07WPdO}g#jrp9RksC_DY6c#@v1fSS6PVnL~2|*Wav`A0p zZccjd$klw0O-Es?Yt20D($Li*XhlZ*0s6MmsE~Q1etI%_q^{{rBZg>~X`?h~Lp9+_ z{+pU?epS;C{#bp!Cz2Jw~Bz~^-*1-riW z0s*|sO+gK$R`uxfN$M>;=s1v0m9FW+tzd6nDEzov^AdWHE-kVRZ#&&y$Oi(xggiuT z>QO7m1$EuJS4_dlz z>l*Vd>MK19cmu7?j@;{OSmTCQGzJcwY0|S-7hY|{-y>S;xc7D^BmBh%?{9VFI5o9D z^;TM+!%|4Sk0RMmFPH62H^?roE%yD1B$t!LUs}d+0INw6Nn-=deM=#y{k7B=+|JsW zVRJytf(ZM4iQyD(J_m!@MA1H99M8nvM-iw5TywSD_$jzpgPr^!ddUhkX((}%u_ zTP@}Sx=9@v`;q08!|E#rkBOtH45x0PmY|I;ptDdoQ6ukA=AbzXxYl_KuoNbrhM?*M zk`%^+MOWwY(2K-HU_t`jK@}(G*HR&g$FDvgYH$Qf_Y{jC7{yP84?|Dh^RA{gJ_kSB zr68~qibB`-H-A&H0Q3Nz>*9B=ontAMAGcZ}0Kg}lY94WhGz{vdrl9TtC*i4#1a%a| zhXwN2zHk2kn|Hrl`t$g+)M?p@+k%Bg_LZq`S zga!lh$TmNgflWDh*G-m(G>3ey&!sJ{EpT&wVUlmUz~Qc(Jeccle2De!l-V>zXc?L8 zOb%OZ%U6F5R>`pKGCN<8#!1b!2d~0MwNGa2xJESjt}NtedocwfI2))wtag6#B&nsn z^ikxkk!!O4TWOJeH;|q6ANyYC5&r;-dmxX4T-Lk}jt9J_KEBFN{l&9M;zNr`>Eb#B6vS>Onh_PTS~(IOY;g zIB;G?6eNHH6UhGYBvknwsqq>%HK!bsNj!62SKDE@Ayl3D0CoUuIRl|e3XH)-GsGp9 z+~mq(Rm$y=igs$$sevA^zl}`}+nq$a2h4@0n!Lb!g0Qm6L;N1~ZYu@@>ZcNSKS@f^ za`R$Xl6U!PK?9HYCxP!p&1VJg5qAVvVF@4ZBS!#{yGHJ$MkqEShe>>K%mYB8fd|&@_o0(Q>QCEXzoqsqkYUBT)sN^|Qn6$Z;;I z;0WS0^XaNv=e2t&D5ex2ZGIG1J-@lww~jkZot@q?RX~7Bo~$YtVDBn_2?0I?nrlei z>e0Rnrn(n_kre~9U=cp z=$PDtrKs&{)L1+ip66ymD0|d)Wp(!ZyZJW{y2@Kdgbm6ij}jQxwEQ~jJGeyS>CMun zhCl%S07|%kwC;993g{&Fl~iN$_qJBaYYdCQN#n^uWe0P_?Mm0CxlNVK_R%&5pAH-r zw&ED&kjO@Ab=o%*P2AVFaxrml+jr7R+)3T--UY1&%~_}`t*57?lMKp4JZqA21Cdbd+eh}CqP?&r6`7tzY#9`YRA2p|lx1x$-?v$~n);eeJj5aCco zdX(0Cd91FI3%iw`f3&cgX(+%V+}SP11*TukIk+^i>`ZQD5j-*8YJjkCK`-f~rnelfC#TWG*q5I@mUYfyJ5 zug6!roWehp(cz;G#Ybfsel8vw=h~}`7pXURvLm>L0`+KQviZKW3Jfb@0*Z!V% z-83c5ubRT@AG=2pO!_lh3q8nQM(P@9a24lKTB}m~3TF1wC|)Fm&GtUzNCa%b9y!~H z2kN2ZJZY}Exa?-<^!5vCXmBlca5SkWDy&tm<>h*&M*>_Z;ZEeykM@@{b7g0HXFQAd zaS5aU0NZ{nNK^ixrAY9us4Txrw;632b8RuJ+h3Fe{^etF>nm91bTTk_O*8$;9#gXW ziwANoE;6_A%u+T{9P)9bzvI@&20cKo)k~_1j8+q`h-$(;=RA#szCu{{ZzPZuhauLmd=l z#N|)iowHH*9fk|HF0nZ*f?r-oaB^1*aWs-nB4zZNRc4WRitRzRuJ_1&MYnAhPupje zmyc)WI|5zS4Mu7Ogu7MU<-~W9u)^1P20(REiM9-vx`=_G%jMV*NME)O^!Sh(-GLO< zOjn<&vBuX!cW_#GX=nccN|gJ5NfV{;MgFIKsJXkV-3waQ(tcvABZc!HI?wS_*#W3RHF4 zx()q6_4ow&rb=`(>_qQOdR+ei+tb?bwMeD!{_V8wyKKbCVr>9}v^G$*?q&cGMLS;^*8 z)CPuvqNRm))ns3*9;a&olFhC?4+G$(N$7o$p9ICHsFb07+{_|@FK+XqkQpwXGuEc3 z(IAbrA)l;UvrQ)33F-4`{{V$Ycc5&Xe=h2u^(p8jRf|w7_xoau> zHTZ!wZ;9N<=GZ7BKlXBki7W$OK_C&j`0$kfKJCpweJ3}-)|iT z<0Ip?40D^LHwS@M9Jo523Cq2^V%x3!%T@1o+ zzN*eo>65x8$4{2Y32uJWv6|Lvuy2B)PHeHSuFp?U9f>s3o#^NUF1x*uN*S1Ttw$~Z z9%zR6;^7=k(oZT=;F&R=)!HU@%L@1gX|A#nSR0GGiNpxfN+J?6h$AYM->#~lvf7(? z%T`+gT_A3v=Tka<5Tr?Wa`+6US^(P60rsolc3-x*j2C!f@Gm4?&uwLYjLTR$v`I7; zsAiITb|z0&5px>TaB0*Iy6YPpKAC)1HamNC-}!HBjj6;mR-&U3P&kgIl)jsD)g05B z+ZO`U$ew+P5A?^5wtUZXVj2+eLum!wtRwd4#3amu>eR z6xN!3z9?MR27useUOD7Rs-_dT)K;w{C8Q<(C6QtDhKU>n+JJ>Sbk@p7huc(O3qe#Z zG?%qje&AaD*JtM8{{S_G(5}RSZRJ3B__nC-i(ipg(t7~DOy>E%vwGWhidx=v#Zh(6?@g)5y`$iH!|+RNQs-wEZk zX>PI4`514`f0Boz*2a>~oKFi|!mg_HTZ()_Zwu||0MeVKOQ+F#P+(RGn2P9!q z7;UXC=@q@c`#dxGp}uR6f%-tJjwDv9qAxl2Y?2Vd;=!1y$YfS#{-CioILsDaEN$eO z3k+|$Gf8WCJ;=P7?Xno#YlQV~Pt_p~tN}aF0pYFvqZ=Qim>A;dV!bpa+KCPo6)LpI z=k8#<2FUAiQA$vQ$#1^F_dm1X_WuC0ZZESo@Xsf1W13hvO(cloE)0j$jmIEY&s#eS zc^hQ}l)=$7@Z;L3ZdzS&BSt~RN-%!o_P2NB=f&XeWuETJ54xX}YN%p%F^)f3epMCS zM%uTxb9Fg`P;da6(wO1EpK^})-o}SIlsIwgR3&$AKUvhXFik{3E1d~K?by^ z>G*u~ToF}qj^FVA038fz$rfcJkZwWo>tB|G@=84m=il{9iw)hd$^Z+0gUH$nfx)D@ zz~vZJ?n`>mB{f05MqLZX7eym~)f2uTD=QLO_PdkVd!E#X`a4{G{{Xj__V-p8`>UK* zX<+qkZ0)Wmjc#FScq7dlylGVE2pXCCX!gnJ#zf|^&W+TmYe~nfSAtKfBc|x*<3|dL z5(lwu8+1rhgeZ`q=^QGsug{EOKpN-=lSKz0DehV7a>j_(JVxv{_!|DOei}}01Z0U6 z#=UAPHr~5@It_-N0=ajh;Ic3E5sdqb9`S`mR({qw2*&g?*~IdZ^QsDK8S6N_&8F?A z7aMmtb+lDl?DA;bAa!u_06n-V-}J~^DeV3_?9Qj`L`q@{Q|d_ol3JRYRgHBc(RU_a zP1+m@@`ZX26rJUoH(7xH0L&`+wSrk%h?OFv=0^VjO$7}H;jLSZFeWNe{+n+$|~G% zC57k*<+!$F0PRZiZM9dsN2(@~m1uiK6q{TgMRCu$W}oS@?XkJn#Jf;gUUw!GrvCt* z8@Di1!0`j;tZ$k1@TfOewRtMca+Q==`QcDgm(8v^ZSgd~1=1E}n zE+i{%?=oCC0a%gatdsXxEjRd1pih={V}PMFsW@X(kyeegl3NGhX{!!qx#7`8p{~9B z?Li$Nx0>XFY4*|HT~eltU$nKEdU-L{ocfx{qOA^dc>quQK~P55aA{f&vIo3`*C)NV zQ_x}iXDfZZDwYN&0FI#FPiId(#@cD#r;?*hUvz!L zy$mdSee7GJu2SyS*dO}8+okmY(+7For4)t@2l(6vyHWd`50HG{WS{y*81kwM$K{I)Aw3NM;vt%+*GS+ z?ctfOWO!GJufmC5BeLwxg_t?K{q?iK7tuB3QAEq>AyT5&-r8OTPSquV>U5}f<}x4* z)4h}!7XS_ekOeg*$$O0%8(qu~w3Q-`nQKD!bCJYDDPgR9JJ!`Dy^fhUeebelvJ?eF}0}ofl zW_TEq1pqvG3NO@EKQT2tNIoK+bwwEm4k_Xjge0_w@~ISKPDYdz3ZT=FG~cKibW)@b z+wDj#O3;;4#3*Jav;?mcurgMF9sI_QxL`2|X*H@zll~RGt;(wUmYEASj1Wv*WSL>O zaCs5}!y(?iH3M-0vBxMFvR2cUCWQADHp>|v%HZhF?oz<38iGYjv1a0V>RG~sdk|>Cg#gD@G$B;7p#Uj7hUThwrFN}oG(eCr=91yikWR5f8F^h11x&3gaR_Vq zd2RymJ8mnaK1RnLr%*Izo6uhEEySq&*}DZkowV5sN+V<8<`0Dn}^8CVgL;tw8z?z>$qF}2%5+9Ca3K7BkgP~tzBe_D3O>|rCD(VbH@!xRD((1t_SvH;&xpB_hYsNP_0qX2L?r1znK019}3No3>5SLve) zih^s@b@I~dQ;!r?pusl4#yplzA`EcMmRE}vKXqajk3uNKywI^AdFsB@2yZ5b{{S+Q z0myu(uMn&*51VTg!|n|SuRn21In>ZE6`^W|=|=wmGksr8cK~X`AQ}b=y0yoG1dURy zxo%Znq@NC81|xv^X)bnD&cCrr0Rf0!RbEQK5X?ae%-u+(1xJ9c+D%BWBzgCshE2r{ z6jWDWIDxXgM!@(`?V}HEDa0ZmlhV6GCn(r}CyGe93Iz))vNYXEgM`90H$J(Hs-ITk{!9FJt@t70wH8Fw}7u5;@x-s5_XU8iS# zZQ&J^kG+O1p&0|23t6yO#kUq--;d0Y_y;bWIgW)^Sw(kab7zr7WDwj%Adz>V<`Ju1 zs0O(OlP+v;BD-z@vNs;uEwu7OaTD#$Dq4NYZ{9egB=(n<@tIk@L}ftC#xgmh?NdMr z-{G!->z%MmaRueL)JY)Ikf8-lPqx zw%159Hl*wcKCQ12^V?l6cs$*xah;O5b`hw1Ld#p4U2_%9a?o)~q zKh7!$tv4;?4x!k;OyQ#zI8wc8T+Q(R01#HzOO|iiyJbdayY0){>~w&TSR|xmY>4AP z6&^-W;wj^)yNo8|X%LT|CqLh*zT6a8ALZT>epi9^6;%Dl+(NFMC%1;>Vmi(*i6!rT$O3CXI_kI7R)E?4L{0qWN-BC2yL6?q z7~Fp>wD+Okx7}j#_nVnfB(s!{18+$!$>=_=P5QMO?oX)OZSDv4G?4DhlhF+q4rkr1 zd-F~mvnpIA-H~7f@IMgMVq1x2*naVp4PSaMx0X#=b&Z}kU@ib#7) zyRE>ICI=UDH&DwmEY?NH-h`}&ua2hrmKOg2$J`^KVLA_PE%>H(mpBP+js#*l#(xE! zb8Gj#zXOG=n0v>B9fu1$!RkbtR-t55`t_aNS?BG7Ks-=7pXGK+*4AAYLNk-w?Fpm# zf&T!;eGYBveb3wR+wxbHDN56a$56ho{{Uk0{{Zi6r)7S`e@*`Y;=1YK(O%js+Ahw- zTe*>KOw&<|TwJqFB!-~YQs;wL#-m-z-_yHQw4P&F=Sj`()n2;c>|E}B-*B0pTbvso zCW=$4iPk)9XgI|Z#sxlvRa7Iys7eZrT6uA>QH)>%lR)<{{SD6&^4h+;FqNUt!eT7D_u5v zQb^#BLs8O|r^oi_R)|uF6So*7_^%)SFQ;$Ure<(#WbsZ$D&P^ZaSdZg` z=1nP~r~y)F5CEK$eA#?;xg743!i6g0z5|ki2Kr_9P)CV)KGf@AmDvP@=Yx{A)^p0# zCa*<}fZnShC26L9yHG8Sjy~@6@6yv3xFqj+o1Fa#ZD|?Uhb;0Bin@X{+n;+O!%JK3 zN({GWGE!#8&u}SyeQ|N*5sX}Z9FT&-zIsWvbc6GrTzW7|^P1o3v;?jkb(9PpAV-mU z%OK?Y)2&YCzYRFsSQu&rUCg8zUhD}pPKp!;DypJ{RX_le2TB2{Kn@9`UMTe(r~&Iu z{{U{3a_B^G2-6UrTRUI=+Pt;4ru6!x1dr63Z%C2NkMTGT@`JfNm?L%AwZ=R z06sudT?wEDfzYz25=r7$81?hpLlKVzZ3#1wppt2-`3pvA_JU3dJCT~uk?W)~(3*O& z#~~jsVAJr`CDY+^yg(knr^MHRKuUpUuJD$Y^GqabDY&s07MBu3DjIb_S>sb*`gK(- zFu(d?&3`aY?d(&cGX3mFA_C7@Z2n`_llg9LS<&0_efM zlrTKXh6=`pyn#IcJV~LU(y7OSLya;@V+?tcX~-`U4S0}iLtea=w9=|5YL?On!6+)g zZmYx*A#iCz!|G5sA&2>N9m0bIvDcdDH6h6)Fj{>ig{Y+)a1_+nNfi`4(Ha~ARUBce zfPfe1Pz@Mvd4fmgB+{L0p-gGP48>6-AFqinszGIP5VI3S2DGZL9-cZ;B;|@C08CkT zTYPp-W%EDb-VzvUwsyAPNm$~I zeKSW=s)K;xAmVA#glU^rG}%JeHKYi~0C;qSE*{}?AqCaec%Esx=M|5-0ou_PQcoG} z+`#Gv+YQFft+2QnE0nd6_B#qG2JXt{zf}*9n>+)%8lXM? zRt=@cMS779rG)oWf}a%Jur;RRLEsZZO*G;vqBNG8gO5UEn;&ZI(<(K* z!G+;va8S$VcE+Z_{{*(+DJrly>L_LXV3 z+=kpX@62n9e(A!UbyY>jXWpSE&UkK60DU@P17dCg@+VezXiF--?IUE&PBp0?3af!_XH6?9@cGZT- zX?bV6UHP%NTbpbgL7~N?1KL!3>8qZbcbobH!ds5Hl4O^69F}Z%}S;d={mPloFk(G^FL|_<##-tV-YfS09iGi2ILE+Y`Lp<1zmp};OojZnE zZZ8aLcNMJ02>$?qAOdErbW*HMPcMMmQg`>dYl9PJjyGu@6M;A=J4+cH0q%{@8jd3@ z(?@MuT-*1SK5La^w_JWpoXz<|j5bDqw?G-_2gK_oZ@1mW>KJBwTy4Zgt^m@yAIBx2 zeZ&vi-o}yUmx>OJP2h^{JA)p2!a9NK{qqw*O%}#-PmQTZ{{lROWZ2Ml(yCXev(1O$7TXQ8r=f9{ZXh_?A_SXAu+F@mk#+bR|+lt0d zeJidR(9*J3x>kY=mK`b5+cW@Q%SFxJsGvPI8|#qzp3g<}9SoEI0LnRZU4mU!k{{!5 z`$Cjv_{Z50BPk5ci8UX-pJ_!Lf9a{|tM~L$o;HYlf3AvHaeOz90 z>s6P0NqqT~hVDfBh}O*&t-~UufBRuWo=wKI-+Jo->hC@Kh>B7?&kZ!;PD@R(wl-Rq zupI`u^HRHuN?RCiE-o%)Qy&u}l34m@pClDDQ|C=?9cUxA@}zT~?ISbM#ZWTiRNB}8 z6+ZOYn{T$j;nfI?n_Hj=TDT@vE7y7vtmml1Vz9RYgTj64e%#|N+@#~;SGQ`%4em0@ zpL*Ls%vDt?1WU+!{xA^2Px|(d`9nHX_k#3E)bW_7}I-`CJZG;q1dLmKyH%N!lU)q;Qr+ ztqlN^Ky1HT`!st7)d{hAa{+T>CZr70Tb1*pkO1sUz@mWKS;Dx^--<+uqg>3AKQN_2 z6>dej0yvGjja$!a1a=k;kT=U@&L+8HIM)vKUkvg~eRHIpWsL)xn6;N|`YzWo*tEW^ zYLTU{`jNM&B$B8otrGw~HPiCHV`G0XL{1n0+;gs6ldWa@kA%DmaV0`0!CGDA9$Q>o zZ(|g|@hin8RqB)u4-?dmy1-sRZ8qlVV2Qs@A6!NRQD~r*@!AGR^XF+#iQ3q!%F_vB z00_-UQPH+iXylR@YR=xu#^ONNLl9{^08k~lxQT_q?mcN2Yj&lEa|tFk=H2cU^3NcS zK1xra5OfPgH5G1}mnPe0eKRx{0C`5>JC-0}(4w~LZ|>~4VLo7pj>DR=VD@9M@-QS{ zX_xKnho-CRyFNn`Jc6Q=0SLLbB=z8~2cEEo(`jR>Kx26T9uHp;*;RUOFI|z<)^w5f zsNP@L1jfnAYe{Zw*b8lm*!k6%`*7{WEw___ zM!1)b9xDFzTla^ymOZs?h`zRIB>SuOw~=OvSJNuKqVM^O5Ijbf?Tc@1#16Kjoarf$ z>)?!T7dj*oVMg?)Uv==*!S=Mu#*p7$SP<$6A~+V|Tj{L{uT69x)QzdLS=hQdRgyWT zqxeBte@EQDIqr4Vg@FG6)zYkQZvCW7p4#p1;>}tt&}8o?5`a{v+ay(m*#eKu!0lR* zrZ!!IICj`>u48Mw#~R=Wr7*!syxjHPNenJEXdF*!(>M;n?3+0=VD|np7~#%i78i!t z%jw40*d^e~?#vP0*{B68zM8s%2pxCj!xLI2Whm2@kZ{K%(2^#Z{#Y+@@Ep%dw>!_W zdq&%_Gq?DgJ3DLTvQ}Abk|>WAy0&=~gaGeN#-(l6>~7-ML@8Z3iqjVgs8h=G32Vt9 z1D{b@C;C6Jw3pp{wY|(ki{o-^71#HoEcGM6jaA&l$S&k~8cA`jderHpbL`{BqyWB? zU-o7qTX~iUzx=a3-`+oabX$&Tc1~#u+Y_ zAkf~$5-jnwWu{g%06Pa!@zFXMog1W(10^ta6&zFX%~ zvAc}08ay_=bQv$Ky`y(&ePee75|6otM3QS+2wRwWM67uwYRg{{QLWwE48JHf0};!u zXB$>foR76$*2mPvz}=*Q{Y9~t8r z_tihWH2FaCaQ7|eHcK0A{=NOAEx!>Z#A;8S0cx5Jbhk?jK6f;Am7NjD;o$^?!*kyK zt!Nw7$*T}*Rw$;IfBTUN>7#jQ(N{i+6Dq(au>V4H@m+*cO>8h-FtsZSkoU(`qh zthfU|B%bz@@LNw#NJFC>HIH};KSPjfxua&dSY(K(4J#~SG6xq{VnGyL_2;V?8+QYt zbJ)YFxVX>^IF->ZALPg!8eAxH#ZNmYJ7}WtI~Nnyr~6a!6gBDB!{e&J6U&E0 zLN&vpB8Vc-%jR~k{PaSZ6qFj$r^xiK-FEruVw9&8bV;PI`2PUUeI??ftr@DuU)42_ z8=lj@AwoUPtWvq~Lwf~_Q{(C05%See>mI0Bcvs%w-~38-ld4D@GVUkfsbA>A_#~d; zV4LY{Y>ZdMPSjZLWU~kLHmm;tOXMOO+asJ$2A}3FRvxTx=0PyY?D$o0YO0zO$w98i zsPO65n(BNOLx)N(SycT)ro*VOpHCB`U;_>$`w?^^M5C$V7k$`)x0$T~r^8NDf=xwL z4etCF*%pR4<&I%}hRN7Y5!K29geN6ZcO%bP&HaK{40sUuUenyCSi4N2{95*vT>k(^ zz2#+L*|~fz?C>gE+&rZ&W{xDPT)mcs)5*6iI{vCh`;*4GTmq7lew z8Y*efq8Wd8`%=}tON^zoU@(4M(gLT$>79_#w8OWJy4dP;jiq`0v`@Cm;z2;u`*kQq z*S>v{fSX&Pdnr7MTQR)xH34jd#1c-T$?Bc0xJ2;t$as(aHBUEbyC$w_1E&vqhW8J< zvFCBmX=U4)xr$32+(-Fs>=Bo@CPfBoxS&9cR)&O{YO?dxtht283^J2}`CKx`G6Itp z*yvxW@-T4B9QvxL{=~8F_;2q!rqdTCs%EmcS?f53^f1S0*UA>0s&3EJ3sA-=N!B}R zk8%9Vu^DKdQ!8lTG}ou*_A6_*TNkn|V3^n#a3-|&dsW18zT#ZeT;5`1LbN5WuWqCO z)b6cs5+1%{y1D~&c>KpSb-B*?1rVDsY6FSr0DMwWVck;H%iO#}5mkd78ilV_M|+lX zK2X~>xg_d->$p3HLdLJ?-$!na2Z&UG=mk1fx!sf zN%s(w^;6fvY19YrPEdC47St-iim+5KQ(JVK>hY(q>U8U08tLZRTF3o3*aua8^-P&% zajTr}{{XQ%!)pv7RtQoc91<Jh4ro<16qz}A2m0P4XclJA=zYF?4K@g$m& z%B0hE2Y$39X~0i3iV~GaYBgt!y;V-zZ=hwMtx8a3QK=OdbK~_A zci+TyttnqUGG{ccQp9+w*WN5BzU<7Ts+{Gvw)=!{6&7->?1!$vq*|-oX4MHa`={BD z!AgQWbn_$ZSb`31^>Y-UAwHj=SL>}vuKj7MW`a#g>_jT6;%pLy}^m3Ku1&uZA7)*47Tx@A(_OqVnqjOG_PW@lGH~lgs)(s z=U;MLBstr#uPxoKHZqK@9i&Zg?;j#T6Wj=zH&N7pbs)vLN@K)GuDT2Rvz1$t5FjP%kMylR${dO$R~OZdLI;J~{%e#GDeTUI?Qir4JP> z8nP2c_$UB3)}zdH_-RGjai%p%Ag-B952*kEFXd5JQVk7BpbJiiMP6gM5$HsTX;uf3 zVmXb#O{ux2BD6L*A$&E!SKQ#fbQ@4hft+c2ji1d?zMa_M0Y^e7V z#SCmoV=RdpDI=j`cy4|>YCPMOjj+{qG*ON^oEz^c*zIm*G=-0Ix&bP#?ylrEsgztx z8?U=$mMhD3GTK|Lh$Edu%k;Car?n4_b;>RBxzx@OKDD42rTST#n_X{wGLTsW<^ z&9pLiK^aXoSHPTNG2PeuHX^zuDREuZX_F| zv0M{Lrzbc)z*LFD@bG2JsN&%81LJm0{IE-tCDdcV{{R+gngM6inE>YIkm`3- zEZ>z&h}caClS%40d)98f?qgwZX^p}Q<5 zvlfxXpk#ZNt(#D|k@0G$hM@CTXJ_W2j}P6}MH+ao@bP8sViY{2v6I#MK_hu#o}VGE zi}g+Z-8I`rralI|0pEuVipzOUH*ARD=EywUDsg+YOkJ(Y(aRkwHq(nvN>+dk0A-fZ!hHgIsA)hXv}~+FM?tl~|rg zM0HUjtZrQcl{`p3p{D*C(Ar$K=FzuI1PYNun5HE}wy@ zAaOsrNt?25Ft{9Fb=YLu?s*>FvNmrSMublzM>7^Amskg0x`DUNZD+VcBP1?yb9Dnj zOMDC#>_9(Z+REoTFE6ChT!yC{B>cm%>}073|bn)R^ifWD^j6c2g?JSAtchc^k%4A z$ix{Lla&@j>LK_^^&uyw+P1!oGV#NMi6f~uZv9XL#0o2$3mDG!c2gL{G>vBLsFW0Km`sENJKjMLmbsh5#wywv{yP44zP_m!9No|WC5?VRov zZ*g+4H31gt)lJM~p9&%o`0A0GCAEAmBTSKJ!lMwUxH*%Dv|`u$4hpxR;p_5$N1vnW zRlOfmuO5Gs)u-c4VZ5_nKgHzMmB&qaa;nl}Un-tDR-9!%aQ4R<^AgPhY`bio{o@=A9|ys`{x!Bh=EHQ}&;q_-I!OaX~1Ft5Qt| zkBRB<&}qdH9MXIH z%V<&+ns}o!$`o>S1%)bU*T$NOcQkBZ1;7&ItLM{IQozB&g{UAzJR@y!?5Br$?Cq!eresXCP;1CAgxi+Vz0AmoJR(p$?r2>q? zLY)2#tMsrs0@a7a_c*y3mY6gE)Tu12=h={hN4b$-yM#oba(5p5ws5 z)kW-=XKL+b7pN=vww$wPnYcjC8q2@Z6H^@)lDm$IcdO)|Gei1st=|Qi7^Kros0l4k zpNSt0M7X(Y8_=GOg~o~x+&$Z2iGk#vbU=XYTATRLcwLk6n?a-0osbahm3V63=s0VRft4_LjI8y|N4k}4*u`+}xjHC*N z0hXR4iR-7>?73Ak;%iZwJ+RojkOSGk%U)X`S{n8GIOsYUWciv3Pn#o71gO7$2=HBp z-Wez|m)OL$!Ci`(%+_j?sJ4ILOY{KgHyZd>x?<(gT3X9+WOQ-0hPc(VBAFaG(HPe} zjf^#}d2pr}lb&nmJ{7Fzf+1^rV{$^Guu0=TNMDNsP&FHCyRf*3eJruPpbGea;nGw+ z${VPraGp1|r0^<8u`(!b0;l(tsueuzQZ;|(!jeW|Q&Oa_GTqlzf3aL;6o&KT5 zm9Os;=ck%AWk5%@H(Fpqa*i^`ZYF>d7hnR9-6No&ufXX*W;#<&=9DUuy$gA;Ka@8k z^p1r<1Ae+OT4jns#PlPPc>PEUsH*Pd?rKNErkymbHDWMJ7zM=URI^bLy+WmcCZK*m zde*xQ5b5bl#Vd>wq}DXsZXu`u97QY8o+ED!013wgMDj`yy(0{(PErKm+EYd*}Sjc)wWh|Dmld-E5>+#!AB-w17b=w1PB|d2U zC$&s&>2d~{$eEm<;vI+v+b?bPTICGt4LvLPm6b?40do*D8u=ac&(ZFdznN`t>5t)( zl>Y!w#XK%H`NoOi5&r-aD_-M*=*nd+*o*9EAk|YPgzG;sPK$2;0PYQRf84h?2D|Ha zi1?V@sQ&<`G=|t%P2see#!BS&>GtG~w$9?&)g_$UJA#b`)K70RpWUL!v;w|*dL8p^ zbHfYV*&HwqX=(Q4ktWf8z+I)TU^#~ZJ&Hkykq%_<%p1c(~w?WEQYqCoCe#4bvJc&Kon0NZ^fiLVkUE2)RrgAG6_au(!5 zveeUXIv$Kb9XCHM3gd!w1WbqkKf?r;Zc8UBxEq=`gOkwt=z|Hzr4zF0QCz&T7}y>G zkb{lo&aUV6IzC#Jg7?5YCORVI+~5Ert999$Dtw)%{3XT>D!4s z2M}f8z?0xlO++NVeFWeeUxJsQHXTC(<4jY+RvCD!)u zseEnEmp&*7r*F$6srz7>?lE!9NE1uLWg+PyYKq9;V&WmHVZq`xTM{N8a#(`Q?9+FcDvAav0Boe_lF_4U&O3VVa#4E{|R8Vx* zYUal7AEk;`xV%k|9wU;rhT<0q*v_-pJ<9^%VP`lzqbV`ev@APZQ58&aJ&)^FCYrsCGq5W(4iRvw>j zyE1qepL#>tVeWggwA3jfb9U~;0zh9?MNi^&QL>j!xY@C}iNW@%`+#g#cLbc`qIJA+ zE=u9Uk{b3-q*kABKN=q&J#60K`D#skUlmHhNV5CC1U~nXKb~EhZn2;QfIlh<(D(yQ zLiKcw8jIGdzviItN2)YbsY?dZ$e8yPT+b!w_P7NE}W$x}`S3~tHJQ6E!=dN$+S4B1S zCL>xk_2{eIeW0zD#>c~G@gSkp-(x`csYX%{xWQqq2I6b%JS-NhpSY@Yc6+ zgU{OSEk-SK*gG_Zowk!k;c+RzwXQzZb43-EjN&9@5kUkos=JB+k*G93l$CAw`D>!Y z*y4?>6b)lQ&yb?Z*Hg>0B$9hd&Yk;z4aauPBn~7&J-f5TS3s#i)FPnM;jT04`-Z!I z{IX3P+^TXbpzM(mw(55fX;k)e_Sp-_VTw6{mDN3W6sZVme8(zlS^f6j^5L+;9aj)4 zK^zqi_PK51bgv@;T6UzJ;P(rO!7M6dCM%T{G~%SM)Ir#f3hJBI26o!pHW5=orfe;U z&oPkDR4Es3clJik&eFo(!WNPk(l>dfY92dLLY=|#)Qz*$S4^^s)v&kBV`xbw70%ro zZXGFk((`~%7tv4Mciz3<1(=8<^kIxFWGEpht@Rca+?_|fiQC1;n?4T|6ax$tm~K9b z9TAF-WUYzWJ+}@o+uq|ujVe}2_n>xHtV?StxbiLcJ^~d){p5C>{M4*E|%qv zIcp0LTO?-{2q+ts)P&Z76xZ^fHX~G9m~Zxm0xI1_Sncj3b9t}b3Bmyorxd8=$79B| zA5$@J%odu;xvd{4!}j+rF(j2F!a)S>ByRixnZr=g0)_fpiQ2X6<*08U14B$oZRCPE zE58Yaz}(~RWS$6&qQc;;$w12K8x<`Wua8|7jIR2~+TwJV4kz5B+=3u+6s;5=`f9{j zW;>qa8GSd~#U;LZ;JBi>g6=ywe%fS;N+T3L2dLHU`P1q70VD$;7367wryiwV*OuOg zfl?cnMR8w5@jZ##QP|qUFoOQ#I8i3LFvSU;MFW(E7{{iBp8>Y8vBevOb&}u*M{PJM zubxoiS}5A!GhDj%{{R9>Ye?4J%Ad-3sTBsLKPj)rO+ML;bz^Z3rgcs>>GY$q3nG72 zJ)LQd>}*~_D@dc7+qrGWuW$S?Qdn6JIKbjbuJrNLy|wcj`*ysSA2jj)9$6=R&|;JS z0Jq1jWN&jE&D!{d0gn#iy<$(~r`V)JiRz?*S{-#iTC~ZxTexTS4(`wu2d7A7#G=3U z$GvPm*Rl2eg~3T~eHr7lw+k$41c>b&2>||MP<4A1rxPs+b zW3Ds!Yiq?9*SSfra+bL{Zr$l{t#1&A&?tY^Ur&fyeo(a50oJlb6pbXz=g1sfeqljM zbm5mOEkopFjuZibtso8^YSh2)%WU11_83T)S0e$Fmf~o`TDl~1+cHOW3jY8OZ%_st zm+Ay>t6jJ0rQRcBJWmZI;ii;xa~yuvUvnGTXy@e8dh3D7XTRyL<1q)k^GAlYhVu0w z&LdddUPopwVHV6}Sf`kX#lk1#4Y4|++}QbUZdk_ZdnKhfoN^Vyy=rLk*=rejqa4wV zGX2Zxoyn85L~Y#tW+fa{@U z91`6)ObLKAngdMhN_2yYkujB!)r1KN80X90wnO(OAv=LDMtQLJQ#2`RkxBe_F~q8> z2>N7a3sck`Xs5n{R|5C7vJfebHK(;#M{M@DNNIC%t{5#vi0)qZ$zm*@6^)i_N45eR z=eLCg$^b{K48KiYmD^Gxzun&xV}dearVgOQbH|#B`)$3CCRYIJsXh7B9wzi|41b)-sQOZ?Tsb5=9;5 z_I}=JQ9+lFrEx4_Ic&A!2cDhuz<>8YDdw8B15Q|wm%ET5FKEi21-y^9UAEs`sef@U z;F+)H;A`ROim3cNHPRblX8PfrH0i;#r($TdR;7H& z{->;(4)e&!gdw=Lw?RNaSt7H&^|20zv-Z zv0f_Ld$_Vtda;?@+cM22!V;4KAqBtb+iiJv#wjJTxr9^AFKr3oOxISrk*v6iQ&AXc zz;UigZG=Y=pT_!^0LgEVvX(=#hT(GzpsDx~^VM~duhP!X-AcfoHHIaE~dtsTr@K|z&93cfORW64fS z3RAD(Df%5zlY)~&TA&)&^?to1*0`e!no2ZLWd#1S{hA~wPf{tHuTPm8P{|kwrmo*F zm!Ip_K=C8(byd67wl8`4Skil(9q?0j@%iDS zGHKoj_^eIrM{-{FPk48}d0-G@v(c*Kjr>!_w{W!a+=(NMDSljm+gYDQ+)ZJ+ZWknJ zwwc30a3fHtH3P4Lx8GYG&9$s8I;M%IRX7~8T4sNGJBn}wHdm%6BrKLV8RP}Ly;%SX zy5F7h8j)0KKHypBDBe}G2LGF%Nke9W}|QAsPEl32{B_H zThdy>p89Kc8W%RbM5bA?edl{tcD1*u04_rQ?&_rVs@a|)Kst=+cL_XHV}F^%{{Xct zw%ND>O7EM+ydEUY+#SLEB@|i z+bl7;4BU{+zGBHB#&nnoMv8^48s%p;?_U`FPc@ck zM3wwa2iT;-ChBMu><-1KL7_f$)SA#F0fG|1SPJdENv6aKR+QeRnh8K)j}QueVoi1? zn;*wZ7-Vq?I%Zsf1JnK&%Ek_qv)gPB! z0*m7D<{5HUK{mC$mM)tfWK0cwe>R)9lxZOFar;x!GZ1-%_O=WNpk?c@6$8YzK7KlP z&KcsH(cZjl!qsRRfVRe+dN8k2beBjR4>SW3Ll(f(b5aLS4uB4n(|u8DL^S@>--SgY)0liP;AhD>!Dc$bIYM%K*CjMd_S_XBgP>#11i z{I-#-_;aVtf_e}`wNTJwmn>J!H^|!9+)rw^18HAv~+GFii8bOe|EHu z-cWO$D8PWyO+tU@=QMc$F!LZKG2LXRP$962)oHWd%u1eJ3PT6htaqSoINOcILXfX$%q!wDV_?}7R2OhGOMU9?zA9<9xU_mbgBkdFErp(d(ObKrtC|Jt()@z9f zKXhO^uuYq&+9=4IUS|~TYmdiTNLnj65>)_lk}p*AI|5kp+>_MxCsJ8uXB~9L-E_=~ zn*Q8VKT$J?4s(d>OE5(jA1#UokNJJo<(Vi+JZ+@n8m-hgH3R#!)rk#++ksCh&Tny3 zESCrJ%;Dsn|yoN_?=S&U^|P=X1e=7(SaAD9Am z(bA-Yl1b<(I{=`O#J4r%LlVrTY62GBNUbTP(uV}#7$m&ZJM2L#UNSH%#Si4*HmR=1 zrjDYyP^6rYDpH2Li#H&<0&0G$h47*4@X}oJ)7p_r=7?u%kw8dd+=p5N&=1|EE9P{9 zBKY8)VJmGTK@o-%g0IcC^5hktpxRiizOdHWRdJ_U}K2)CLy$zX9h8@FFgfCZ+q_pY0I78tbcYZRB8EF&DUfnSsUNf zA5K}+ODmlI0j(~tXvto|>0Q=xD8Sb9E(6%2ci!iy`f-@T!h~|Xkg2Kt;puPq9b<35 zRy5(Z+cp0H&RjciSI~MLzct+CbTk9+QEQ&??yLHwQ#G0znpvqvq27i{a@IcY*50bW zt74JRF#iDMxQ}YThtvBlu&dZ4ckuw3<+aLP5ck(p$QV?#^D*m68WT-X%r{%ps`_~( zsQb>Zy;#KiI6M~dwY20Yt$a)gd)aW>fRZ(XO9K^3@(Rq~QJ@6zbNaQ|{XGO1-i>Xr z0nde{rws8Y9`%LXrIz1*GZI5yYBA^mRhC}8o?hN5D3QZ>6p)}53iYK&T7#}nVkfZP zB4oHRlaG4Z+;&=vLDKQYv^pPN;HxaAFkBeNOMme<;+T6tTlTkpVB>kd z?#(8)vYLNNNF$oZDHyk!u}%ZDLOH3wP%Ej{@iI5X77mPQ6&MXJz~FdOnvCZe8t0rG zYI))^%ZjNx`?aRU=lhqpCWWK)uU_KZJqVbjr4~j10H#RX5PY@E_kEquy13iOplgX} z!x9ZR^IE%0)`+6H2DKQcF2l;lin+sGUItrhHk%)jMP6mC3{qP%g{RaOCRX{4Y<)j5 zJ8V$gWf2j(kAw<)h*W!n2h_ds{r>n6VR-+K0*o<|Upda*E`Y-n{=xVZEP^ch$8 zOWUa|JpNj$lHT6YlGwG{oa&ZfDruKhMrz5jzG_WM0YG^Q=j}{=yAA5tPWOh9Tu3Fh zw^|m6C1d)@{{T2`!1B^PH8s(SNbe08acf3B9@LH2ICV6@JYxcR@l(8S*mk|`mS)x% zVYTiYQrld|!~oa$`KfU2U#U!tLD=uAjrP*tZ@w3n%xfc^v>;(uG~!Q5Qf()a>f6YW zmp&thQ5Yl{%=%eDdy035?5@qj+pj8!;>ZCo^pAjv^`G1r>utx*VHyj89YhS2*cc{? zrn;%_O>kaU`F2GrSylq{BnFb$gVUkiIvsRza4ziGJqDLB0ytKbSlZr8{qY)t4SSt}erQ`X zB1Z8Z@Rr}Q%>{+Zuhe2Ny9WONQlC_8DY)P^*G;{o@I!RW%P4zs3pF2tM?`oPBJ8Y{ z-L>D_$25b~FBFN&is>MrG&@p;nqJR$G%|TwjWRg!DZAL1=4+s@*t8F_nJBTh-Q(JM zDg6r)&6HC+1c=$+Le|%X`R&3nAO8SVtv{w-*lwSq2GwXsIrw^6pJrnrM`klV4| zb>WctakCbX4jP@4M_y{&Li?a5aPr{NH96QC(;5uP>OuRC>ieJO-nEb3dfu<{AGMG9 zUk+8Lug9O>)A#yUZkk8X@A`hSvHeb}{XQN|IqJ_}8vGKzr*75cQQlUXdARGZR$6*F zEnVnw0I1wh*QI>R9rmWX!EvWr=OR8SH2VUz6cqj5l&KpKd3DnUq;{uTum1pR?R^g3 zYlBeNmy=1jp)te75sC4yBdYnF3%Z;~xmiL8V6IdO%H_V>4xV)%9YwA*PiApLY1Ti? z$cx}vf{nat#AyzDMkLTBX|7qKPG-g}jlw%@I7Av(C#Jyx-%+1=3jxRCmLQPuMy_3m zBHqg4ZT4rRD_{LpG}8{et}(I1_apK@6M*)mF-w-X1Cv_Wj=YzZ!=3gNs8OO1yOWDp zJJR&R-flg~M0PVVEpdHwD<8~=L{X9A08kAyffLEp_qd+mi&)8^1U1K5daKR^kR@Dt zpT#Q8vash`9gg}yw~JjU4Kc?bdIm?4nstd4Kmk=i=oXY79RS!JO8_(`TxxMgFb17} zO6Wb+z+{WwgIapbbk%MUHUbI?7^ z=G>189x17NWQ}Iz3-V+{*R0VodeUs@KJ)3^DyP|w?8ahaX)bPJj3_&^t$sjOr&iZH zn_FKm#Cj;J;j(l7YyzS?o8CTRNN~`!q>{e8pG;!46;ai<`D&J1iS7A z%+sc&H-Q)giqK-D7KtGs@-^$R>EZQL;p3&W9Mdi%u|L~}6;oQ!ZC?}NzVy@VC*|Oo za-;tMsZ4`ddokWof@_kB&lI$%AlzNWHE2AAu^*1IzPWj4rEc0YkTrv}gYZ_H8*95l zcr=sTKYIA*EO#j(Xx)PXXjO=%Kd|e`v$Eb^*Ebd&^j$y7H&ILrd*tUD|`S7*JqM-XIrnVmO=k1D% z>uWpk0;#M**~*V22L-A5YjI=x&FULs2IAJwO#CfpxGeR@pmup$ew$QhhAwdSl{&}! z*N2;e-(zm<$P{^2RGkPks1c$gkJqiv-TK?J&d}T2X(Bvbt)zDbtj*Wy&HHL?=3}}v zk?pFT*?W=N83t63H*FI*PB7hikvU*$5Q-7VF!4L5Whx3IEPlUztWSuEAp zq`g6EPyBfv(Z!%s-lj0$THMC6THM2R%$5Q zC9}Gr;rT}#ia-RDxdUNZk+>X>j-`<71rtDurD-WBiZ);?B8DnhP#ukU zhvi)u#D5YzvEYnJP*qXJ^^pGn5U~b?l|t34aXXHONvT6Dk!ETw3y-MqQlt2QHv6g& z2;av@bEt9RhBd`8cNCm#Z6W7DahJubo=2MSxl;5X@d?0wy;E-FwXib3J=sFq=CPI@ftAP zQ4`4omLQ~e5k)1Kl*RXJV zeSo%|>AhA?6?9H(kKs6V(AT*skGQh79-`&DcOwc=uiWCMOr&IhKz~g=DPtZrC8?&{ ze|rg~#jLt<@i2#ux?o4OIxS#$tWz?)oC|)`rXKFV-H{SxVunx;sc&{7rADhpi@!fw+_!ANG-r{Kds~ z*p5`xXvsHE2mb&pd(@`_Et_2RpK=hTIr8JZN|qp0?M54t)%|*V!aP-?Ys7E?d8x@> zjI`Ji)gB#b(z+*n)gumQ3hAK5aI&yHNnTz8fb?EKgXgx4k&jY37MdjTBCsKVXwJi! z*l%7W8iT*#sPB!h1Uz^;Q_Xp4tA22sp4ufUVXP$@phkX$DnSqFwPUKV9v&L6lFHn8 zVj6m~9W=>JWz3}3PZ0K=+|pLHD>L3t8edBD8Rcn1B(qA+Ua~bzXOo^=E}@;cHO6Tv zAtt;*Cp>Ydu}K$tnjwss#VO1I(Z``iyN?|ud2V6 zlxv_vSE)2QuyLg{jCGIqD8P6r!$-j<_X6?-?mV1raGd$@3Jn+)`ae^g5u~OsCaMV~tuZ zUVr`DmA&SHvy(%s&L8dx!?TcoJFGD8BU~!Xed#29<&}m%Nusp5 z1dXmDV_rJ}Kt{l77yke$+=D|OrPSsEd~CLQwGBh4qQ`c$fyu$)NfI~L=tx|SgMM3v zI*vU>BkEmm5jD<<=WTJc03?$xXmIxgS2u7W#Ms)i$;8P56)_TxM@8HcI(h0%w(}jt z(Z=W)*E!Uv;nJFx!STfB30&X>Y0WLn&2J7r2rdvzp>6;HNgx(poe2~hZ%tV4@>|CY z2I0De3W;GHvPmzLbegW??|XOw!qRn{{L35ApNTSbP<~pCZ+Ws)2p{HkpS2?5+jOmb z*68XA!ovN~EjBL~e>qZ(ES`e8FjXv|2XnwO)}(K%cz%cGf+qvV5_l+%`oIHZcsfTT5ShLtyhMQm(8ao@?g| zdYLpPt2+^gKL2r8!s(^WNrMzfY%yg!u+Uz!Q%Gu$$Y^?^kHbIwgOi6n_g4rQ0t{9f6 z&t`W`-)Q~TPR!Ek3*v%LPDZ7@+-n?fGtM*^g4EXc0XmB2?(H&V~;HSBp$4K z(irpo!Z!eDSa8GRhwXyV_&@3{^B*OgQO$MSF*AC1cJo+EjJ&t}yhWU$o*SiN-<6l0 zM_pk50JSjG!#L^J8^IsT;-T)Ux+J^ik54K&q#nF5S8c!bC)*ZEjh(^wc0G6pl4-ko z^1n0R&U#E4@DfuYCT-%SnNiz5*K0B?CO ztj0wGgMKaLtLxdDYiljT=6fE|QLe5hsJghQaYpGRWKgxfE+YZj1r^PI?Z0Ao#f&$e z*>`*3vvS&7UJlsqtDm*xCbL=A8++MUBC82UCy=n)U^Pd%H*j^heWa3kj?&;I42`E# zY5+a8sqRnP+z4bWx{Nw7NYu)>iW*`*#aQ;vDr_#xDLd(;5gvioM9MPk+X1vI)Yt(Aa#zr>$$VLH=6s33(S|}50 zb-8Fbk~%o8>Yb&Gk0)^`vbE(6q%hgYutp8JgouQ&Hy@yp<-V_Av}2^@a0avaC`c>N*&~^rU>tRFhsY&Ww#wzV2R| zdFr2Lm_xZoB{2?fw9#E(Gt9Gfa-sGLub}slOJO@jaT`#UG0LK`y4S(H55rwX8<^%K z4Exqdu#84YKd6LOl?3^G0j{M1#3Xys6GIz)L2F*S9lk%WN-i`AP!;og`mnW2KJJO7 zi6xDdu6-vAt187ktVIjPRz*URkV=r=TkDwm?Y?1fXsuf6a;^i0JaMAZ`hCH)94bCP zV#FP(hqdk=`iHmHM#I6L$_o-BhVolHTvE9zZRWd{Nv@JIHsr;Pdh5*lPTtw~x9zeL z#>)V-KufeZow zMmKhH*b}|X4Y~_}fsoYJy3NVAxwj3tYuZ7P%^)8WOL>kJ;H`Y!F}gQ3!i@&Bz}J^j z*q_u7Z{;(XpKG)D>lyD*_C^(Mg}iSy${DPnSW7~HyC7sCkAc^2^}VF`mK$vL@wxB% zSnEtqEdXJiE5%_pNuq{pnB;J4eAiOBU{4hp_Rk5N!r;BclQW3E$K$WNA1<+6T)`|+ zOLq~9XkiG|XPQq>=@h9wHD~C3y8CRizmsu^@j~lYP`D5Yz>0L>pn8IME~d6^yW01O zn_3)#ynm#A^u%EM6Syq%^G%OooVA+GC4rF56WTu~RhgpO)Y_uE>!W_3Zjm=I6F$Tt@GKs)lyXmT~^s?=6~?Dn(f@fiDNnrUxx5L-szjsc}^D$VJn zi^t|hwf8&CjYL3_Uf?VK6;)B$O+xcZ0JKRzhM<#;Mgb~|gy|&J1P1coe;+L+7g{Wh zjQ{}tzsJs+2*Je?YI=U3@zRD#WpILge@b-GoKX-KfBvMgf6P6y$q&pTo9eFo1;i3s zhWOQ`r9L`=xWpf2D^JQ<@5ADxT0FAhq-GDfX3oI7H(j0E@+@(vd}Y5N5-_2VvM?JO z8m6UfPHXna9MAwUkFiF*1YXJweqyAOFCYL0m8cy?-G3JN>Qlx8l4M|$G6D%3({gyw z8Ue%s=kf5z648Qaq>6x8^{qTN>q_;~2ucSOC5&xQq|k!C6zjR#wF5wmGT?_E zC~lRg6G$=^qQk#N0G!z5@KzNWjP}G`{(2qR~fJzB`aR5L78j2DJ z!l2MnwDHq#DZyOAa<{fDH(K~|+sEPZ(?#TB6U}XNPcT_O`DiLAKj{OleDxg2+Ma2_ zA3}>`ERDWjxonU6ab#`o5`&<;vx??kG#x!xHPky-&T;N!+LIX+oleRjP1eX%nFmk={1d{`b&s_iozG(R z5Mq0V=||G9Z--`yyg*iIVd9Pi6y#|{jy#3g+sgEvMGOR-F`O_Dimoz0dK z=2f}-Hv1d4dH^u+WD1TtjKok*#?px){W54sfWh zAQRb|a5mlBa0^9eg~y5-$9Fu}&U}DtQvj#or^V&#n}cFyKNE|+)J=w4wBqNxr~&V) zX}iUDL$C4j*sCrzHOARU@)7`{{{VXPA^loIuCH9$7sk_E+AIF*rvq)qO>yf#Vvby3 zvU5~jcUDQG>FL|r*jlk0Y-NfClXKA5Z6J$@JTlKA9RZ`-1yc3KK1kczNlY{Lm6XJ+ z`F`Y?Re>nI!IFY938&aTUT2QOL7Q&cW5U-nur}+ehMS0gz-)BpwE*iUQ(eKwU=h0|8E@g)?@) zXP(R3l|=NiH(U__16v4)FLsZeG>N@JS*TH{r8;8u`;nRjb z)nzFTw}_0xNIe+fo@bIZ1y~Wp5ZzRIb?HC|>*eFCEkGz|B#J@F)TwBGpg|+(;4G>&Ni3hl{TZGi`oZvZJu{Pag4N>*nC-7Ug$Ap$nGNLFzXl=EXo2@zy_Z{Y3QbrV!5AoymtEXjgWg zl-;f|d}cQP01*A^AARnDc41+PcBMkS+{(*S)xty)l^zDP)-L_U1`mLqMBI>tcuJQDCzWq zdKv;LU0Ff4Zg(R<2T2?Pi7ow{Mx=_4WleGZ(B&?DDK1u0?Z;^e-kuA+e0=(9_SeyO zQx?8fy0qi|Dg@j73p32ja z!NF$SG|fGk$-&g@#1$^@Ofum+*EeArgBRRfdL&Q-1dr=l(9?)fZs6_bs|Ui%eZ}oy z@VvXUR}W%s(wS{TtB@bR+N|EvlyF=W$P(|yRkwG=)azB;su zF>!D7nTNqRPnR>|;i{vl*reX=$0hb(w!5k@Js#x1OS9h2bnFSTm{MT>8?E~cQDDJvk-i&s-APbq}{mPx7}@g`53a%!!pdv zM7NION$qF1R5ca1bR)oiy;W|zf6!k;yFKPYXi4Q-w2E{o)^~qXZu>U0G!7i;LtfO9 zFwxz5NQGmHR*jju(pD<1#B2>59WK{fFI%K|byNLc;*~y^KuP(j?oZd2&5`WW`H;U=e}tNQ=%Q`&c~?LmmPXUGWA0VH zS}}cvvb$nhTX`n6knhz`s+1%1e+YrBZR|qtYKC)+t#gCBGWILDALU#+F_8eJI62x} zYs6|ryxgf;l?(tTy<4ExqtlZacEZZnL-ORQw?=5Y4j*}`4q`ARf^ox;98{1&twSwa z_qVMzMe0aExn%9nhp|}gk0uu|)`(doZ{`;FO219y5X{T~r#Tagp){w`Q+-0*+VOhH z+w#c9@Z(HEk!nG=a}I5BPgbnb2C!Mr8uEWbc%7X2M zm!OP8k|=I3Z7!DWZ<5BqC4TAYK*~rWBfCn?;0KPY*!zonpR1Nu!?$pG%M1+;Wk@WJ zSbUboUvyGPom zw==jkX(x92Q|2+O!DQ|pFWiF>8nqpZdi5x^%q;~T9o|zDcZXaItm{zjBv~M!D z{j-UREK*y4vyNVOv+;NJhp4U~i5k4ofdiLKXC%FrU(95BL$Ml<1CBzu^{d9f$iR*6 ztDAwRM^Elg47sb8{{V565TjPHSimAb0nSq~*dDuTGu?A1&m{*YihJsv1{UPno|Lj2 zEwdWjJoij#y~NT#%mw5lr{FY!Z5hT*PCX?Vncs8(IuwG|-V0U!6iFBYgMx)LKM(;l z)4BsbPyy&oInH)?rQt&wkO8k!Keywc1yHF@5d~3A{{Xkl`FQEkgK$YTOX6CoHK+Ge z$`!6?B!S3Ns0N#FUmriGP6q-JjA&N{YCJj$?c@Id zEf_{`@U zFVH%2^@-GG7y0sNG&l5JtL)xKDIuEv>RXp%TDzVD$LT>u z15*69;7uHPkUqrdXl@O_AV&4sn_)`sYtw2U5mTj%@yQ^7g(CpK4e8Vx(!D{aO&xh4 zGDNdfnpbjuLw^&ZK;=M$t6C9X3fFPD*lqC9(1bWtW}GcmiLd!jmc(vG-A3AWE_@Si z=}-3C75EWdsX~7qnwB^Ygu{jyDJ`WyUjxT#RMW*m#>Sqn1y&?Id8-D)89BJ32CuY70)a9}Q4?ppWg$j)0d= z(m~3A9(`(N-(Nk?2PPkB3kXYy#^h=DRyH+qD)B@ka%w0Kq!0m5*Q`X_PThPzIw*yB zhJby6S+@4-+}1b04rHHtYoFV^1 z6WZq1nCI?S);^+a(g@^hgSs+Ro7qezXhMB!P)AW-yKTO?)9hywn7}%RTGR`eiv#O| zu{#U58sj;HlHvt;r@2;9Bz)p-4N|VGrCX;%u9fI7PB`wimsbqc3*1NqRB_A^P75pQ zJ=8YJc%XG28%zxkWeRWaTZ`*H@XwrNlUTtW{D~ZPGCj0P5CQbZ14f{J8mIMr-sx%T zi??m^OAI0O4UNuYMLHTlQ}$>rXWAeaO=OQO#JmR_dQDMy?{WLb78MgEB(bTej_Cy4 zjVbjzgDDjM0INf6{YUkF*FeckjT|J@?)sYhQC)glW4s4cO>2)9&>wXa^BwP&MFOT* z5od6!yh~acEuDetTbs(H{sV1pcK-m^4b8M0oxCn@9StD+Tvl%9^ycxWmp*{q z;;Dhry`%Vzd#I*1J?VhFskF@4NUW+zc~Tii6IDPRQ;H+UDtth$D?SrAsT2pvp2sR005kEDU|KfS+AB)X=ev>6})102_Y zAeGn(@d_(bN_{o(6+f%TKw;tGUeuc4j8Fqm5+8+qI)DkT;Gcr|@1;-=4R~aVrkx5y z+2N$gsu?iL}UEF?d550)qYD&L3YV%36>cqi2ncs$Q{O_orphloB+ug6pbH=wLSP18@Pit zY}{?{ZLg!D`fnf*%tC-kH&Oino|On|rdJj_IvmZ`U5B<7p`>gijm(WS9ag1tjeh1j3e{P0v z9h|JEC!H?t#CuV&<}tHuw<*%8UAF2R zOLcU!#5=`Nq1EmrDB${tipoFfeo98$a?^~FkGgi316GWUa>oRhG3|k&z=8?jjru^K z`k2(6!Jq`5K+~-?Du51UG2*X62Py&eSCAleEmK;y`w|CUnoVdk%_xJ~xC?Or)KJo( zYqE;1TV$Zh3j$}{@ z9fqT@>WZfpl|i&-dR)J9FKR=_8NSxPoc&;3zm(t!VcB>9&?a(SUhF zE_n8%J9f%jPV5;8iY2heAx=xU;28^VYxPP z(j#ndsUU%iO)*uw#l(L~<^l_x=F*hlLfjZ^Qd|3BbV||KM&uFsThk|-QiLfTHQ0Wf ze`t9%292+B=S_WY0O>yUihb53_g$h_VcPw%Ls}394$hS{2d9p>Z>kCY^w8QL$cz1f zbp4D|ZLj{L{{Y-n$1(o^+#7yoqtwTM0AW-7x((@8QA++g-(LR!{31I1z7O_=kGHS) z7t@=++*B2fc?FG_fOq4v)27FIYbx_rI}CB*lD%l581d$j#&{5E`^jc z0a~4?rF^+{=r+|=ghB5ZczLNe4=0M!{fB5STHzCtTEHUpHYjFj!QvHp9x)Fe^J`gb z%7WI^G*h?td(}n3pdX1^UG6Kca|0z;cb#+n(`RtjhGPBc$|+4S6Geq(i^?D-r8}h6L!Es z$kc&O<)GUx9}V2HMrj~{)I6{&>ZUi@e`~Oe>0#JiwGu|mv8>qWF9=Z7U#jd(O#mHE zyN$o4Ju_wlZR~A@IkB!i=Bph2*L0g1E+sYoB0b7u2W$4tvW2(p%me^Ziw++h5EQ3C zmg*`Ftedy(@%Ur6fDRO6N4O});&*({dFyfeQ%8DO*~8iy*zN4?ZT|q-NyNi#3}q@B zq!`h6(|55)^p9&=8rpCGArqWs6(p~ZlHLCRE4A(m#trGgGBbK&rE4Kwg+&-pEHwa=MF=@?4t^4-pn!T-!`?8TNQpSZ{93Dzh({((+HLqQA zG3sgOHMfT0&8`GA{1)KtjA*0Z80Uyq_AmO4_a@53TITKK?rz$*j<+~2>5Z?fuaT)A zq-T%|)sa=Iht#5x(@41WFQ^>}Hv;6@v|`CMHLmEb1G>CPv9oQZ{{WO@ZNbUSrAJLN z_9ss9?_X*=-TUpR@|9TeIbDBsrwz# zy<}HHDIjLEMwuTgU50gbL}$rByn<_D=p6RS-8j2QYlb*wnuB+$341FUI;j2~-ab{Q zKyEFSTBG6z|65 z=78gpLZrGGeK22OtTk=vxZNhvGsQIraR85$dlhc)PwouE1KGtxB98hJP0T@|s6MrV z^Hc#!lO#V&M7}f}^&eF6wz7)1n?-xZW7@169B%nYuOs%SL`zAMH;(K(E13W;h~tWy zvqZ$m7@q@8KNPHc#+PM{IOW7Tn-L8=|w zYd6*{fus-}P#r=ADgetRV{3RJoV$-2VOrv)J-yra*emRn#qf&S-fUgOVr1g6NjQo9 zG$5a;Jeplu#0A7czN#JWyUoCQ`^5Ah?Vw&m4r8jgTl2mo+7|4tecb*M4Jh1ZQ533D!j^ zb4Y2RBZB#%4tm2A{ZB^^-9i#B<;TM~Q_RK5;SBA^ksnJ{ytS0Kx`mswZS^-$k(C^= zAF;t{CW-FbjG9dg9DR%F7E8XnDj1}PA(Xe0CMK#pG55H8OGsw7nprHMcAwOeDUp^ozKzhKhjMFOW_QM3 z?@}@GvC+mgRL~mKf+#f#WUOpWwSaJO)bmPWMJZl_i0%IXYB2a$$K0o7;;!&;Bpvl^yYaow3?E4#FdFK;GQ!^*{&iRYR>uaP^`R?zHragzApvtz1GFtz#g znkbU)7cyY!CU67)05FecDtVd4+(DWk@nLArIjia|~c=)iNb4^9uE#nr!^B27Nj2O86=LXP$LB%_5Bg~{UGz~7u z4h<)bRE8ee?fX?RrY^~m3m{qJH(@|KDEpsKtv(vIj?&Sd2FBVBc#myVV=Sk{Txxqg z$z`p*u0HC`?QLzXM0b|b0c{FEgZRh@A~jy1>DNaa1tVx^2Dku|sGM9$TTD=>VM;Jk zI_?MtqsM&;iqeUSrQ4|B?`nvC5hn9jQLEBu-~-P7VQg5 zaz3jY?2Usbg>CMep{YF^QT;z5cGkvmjm~FrO5Izg_0Au8p!*e&-@Gb%`1RYuqsLb! zssKfh)TY!lp&PL9>DNsVMhMYl zYw6l1O8#Pa`Zk!$-ejKu(?JwQq;=(|KfBwUB5`}U0Pl?gX||H&@Eg`e5lw%QaKg{B z`=WQ->XI7>A|6HFOa4RQ^qnAXvi;k6+(+_{d;SSuO3%G4W4!zqRQIF*0HfMAP=?qW z-0H(3f=A~_?4|^tE?R8v*WY&BQ>H;)&;d#ow%lbsjs59NIR5>23@&?H9Uu7~+V3R7 zy?(X0vlU;KiQA6jAS4)=I$B-sa7X0Y4iY=G4}nfmV0(%FtFG^s7W~C=c-wnetH18u z8^&NOw*55AroVnJxgpg1tN?pUk&$jbSgY3R`>2f_wG@OlM?aj%ky?o^*3~QH^w~vh zYvsP9xsQ^be6l~bpY5VhkPIVZTiIWIQHk1pwvu|YTisr@e=X)qA#j7oc%`~%=zr}x zN7Gu2T*CghJo^bl&YLEXI)EPp=?)*ZU|{j#@kro(F1C;s_)(cj{k74u-ra{&V_-c= zE|Oz`dx+~#(A?Uk0tnKB=nA_4HWcI1nwZy-S{y0TnJgzX;T`Nv``ri?6{U9bK6+DL zd88H)nl2)nu}`NfZ?cG^sQ~9zukdMJAN+Crmhza2>$3`^6KjACgBJ{{V`4 zmf;g()azcLgW=HW!s=jhO*N#b#r@ijYz=5S_1mW1dTG60BSi3K6i~a%^iEu=+Zt1$ z@S*%poz-0OqCGs58(;DzLD+**SPkj7g-rO)ryN!p@3YnOYCJiXgOi9&-F*6vWCX

    2(~q5(rvUmKEd=E{Drf+R>i{44xcQ)D{crimNo7N}cu{U!!@b@!$37=EgtF zlnCOymg*X@{U9j{RDS8)v+@R}yZ#yifcS7gjs-`rqc+*Q309?UtuCz#DC9ZB-*~mz zM?NF~1sjInh^dPAy2GyviBGo-W>8lM| zsa$BH(H#Ds)o)QtEocZWKuUpM6(e)k!$~qw;zpXGrnwAL4o59zW(=1%cF?M~CiQM3 zSsE(t0A@~}RIZ`i?z?@cF1Vg1)0^52I*AGR?CxbWjyImBpRqzRKIV44m#V9CCE;zt zT1IC2hRTi1#uN{MBUvl|0MwsNSZZ#mB|pFevHt*2SC;;i-KV3ATE_nX5hLJKWjpf! z04;5jp9^6ME;b*zoZra&q)*ApIHMe@zZTULf2doA>u)sMEHQ?{DtypEBAI{>#aO%3 zHnx&S9sG{0hJ!^YJ4pB{?&rF@t0KV`?V(vwh)Y%U=z#q|Jxq&A`Rkfqdc)N_nbGEX zdcpplruQ0>wGeE(J)>)&I-FfY@J(kOdvrry-pK9wfSPxfKzwS2nSnnoP|0t&PVf1b z53*S!w{N!Gup;I>dd45NCz8u;k2dU*(;v!y9Y+-v#=s=7$XTxLf>RjiD!)>< z&a15bji8fmxVHnu*0{IeeTvrVV#}zdITG5ZD_L&7&fU)vB534014=NcBp(WN)-+8s z8Vl)Gm1yR$lT3=;eZ7sdzr^D*5L?IT-(&6PrF3*wUc;n!R=w$+(Y{9N*-yyqehTvMiH2I&vOBM+%l76yCzo~yQ=FMZI13v-kxMzn6vTb zFp(JksqHh?zj)$3%_D+%xSxs8^CE!FWJnJ4wXjn*$lX|U0uoDJ;>o}?(WLdX)7rDA zb$4adLlcUUX|83q4-Je{F*epPNhditEq{5s(|YySJ@sFxf48~|X4ThO3Xcm~aqG=# zwq3N{GD+P*4;mav2-`R;lI3TFB3#`uZPlE}lEktFts9DA$r9G5WZi$Q*o(}eApF3ZSxm(;kz;VywFLCOv^n-WlJ6Q%BnytzL0qLtv zB6hw9XEa5ltmR(S1h}=$c>9j8XCGp%Bes!Y%;Q;keYh8i`=J&WD?J59<}yAyz`+xQ zR~Bv+3>t@iD)vYIWK(lAKLn4rXqS^)6sN5eimFb=Kq@O;t5K=mn0J+Q_#Km)aOq8M zta{5zAXzyKt+)FM$9}vmp zW}?a}20G7=<~Mg6qc{Bmr&gO>^2AQvWY0eOL!AkQqmH*_UPBcY>NY%!i-&o3?Hx~d z@{V08+QYX}8CL5k{{VS=8K{ejiyLkCOM7q1ybVQ8=i#kZ+3BXj_T6rd^KONF8N}b^ zVHhe~-P!MNk!CbNc;xfe;HH+caC)hs6d{zIfu%m4y$0QNvWH7BV4xhhb}9!|+2hu= zKekyhHJ92r4#=f}sOA-@38|o=ua{k3L*i&TpYTHsAk|xZBjwZo0B?_tD_*^N)5FhF ze(y?dr`o=IC)IdWE#@&f0g+W(iQu5D70#^({a*Hk~#}iLm8fa>+c*k8qnQdS!8myRxC0y`tm#y z+(whlNW?}yFw}ulPa5kbaq6kJjm@?YJ@VQ};LjP%6GG}xQw|E^Eut$cXI#ClZ0&7) zJsdOUzOUQ2r4&#oK9mtf1ZJCYw~b*>fvTpuz%&7wfB^0kSt2S+xSV^^h|PR9JuBn= zl>BtqpveF*=}vJH0058G@bf(eogXhsMH7r|^o_^tKQE4&c4z_Kl%ePiH`{&cKMLqn zaYlL)*og2RKzuwa*L^6QIub}rqi!Oj@}Dq&yWye~0VMlSBX6X&e={*YXMMgDpwTpn zSEU&N9F-?y{u|fz>B2!tDB(~yBBc3vd1*WmV7y1wUG@WE`gGB1L!*Kk_5T15JpgJ_ zfJ*7pV0`Q0w};0_I2;lX8IK^nDn51c@X-`wDy|9x*L}7${5BQnG+hYJT?@`CK9Rk8 z(|RABGIaLs$E1FtU+5LTXa-kMuoTpWf;Qlawezy6>2=~-rxP#21TMGsB(r8fTI zO%+;CQZbHUW}f+**3G)|C89R~)w+Xn%^Cjy^K_@fQD7c2M>FqM08xN&!`!1_kfXx1 z9{>i!;k`9Bv=}6s@Jgd&TJQO3Q~vHuTK5y2SJvpE!QKni*Je6(7L?@6a} z;*!)Ap|0kJoqTKKqZHtQ6e(;YsNC<47EiXgfUprVRa=z`mjo!;b~V<1E7(p9J|!*o&lr({co#AK4fTmbY@!EJ4%Z4M8OA2g6xkRb4gqZHcGEU5HkD zOeg9K$nb%hu5lRQdvz>@YN{Lt-kSh71A6V(S#6hUW&OkCc<{6y{`GUX-WzC|(0oLN zdiHiUD{G$ILKpaE@>f-%q-hhz%y5M4nEb2+-EZhq$fIj zKE#Ia2iv)O%#Fp~KG?|j(g7%tEagFIlTs_J;b?v?e<)jw(GTIVD1!osXwH2ZIR+RbES=*mQ?Q>Vlc7k#IO5!c< z?SK~zUd0%`_Nr*bZE{u$R%dbHee?~?;9%D)Os~EjPKkhZn z>cv+Xj@!J$+%>(-BbWn;hD4cOq|m8GZJXn)UgfadZPJ+LV6O@geZ^f`Zc$w~Qw|+9 z37+1?=9y3)G7=On+=EwO3Gvlz77|M!YfT-%V5UoO*qB^?RcqMe4Toptb3*3x?`#=X z(&1;2eXYZ=N-7dlp`rL|uI=_O+r1+`?#X2O*n^85kz>XJoIQ&Xb9wcfLV!*2R& z1bofu;-hvx=67A7Q8m)v1prd+HDgL`LV-6Pddt}Usd~1~f_YtV2je5)6}8W!wi(GR zh(>>gzY?WZUhh3PU*c2~LF?PxF>p7nBXkSBeD$=k{cUlhFRYq5xJcrAw5FX<7 zX~-Xhv{SySTW9WPY~9ghx|Y&P02X+pr!V@Q6^Bi2cK-m?PfA`;PceotTkuu zeG|Mv{U!+;T)}Ae5~Y^8>}~N=YkO}cPRSIiUB{V5Jgc_0He3GHxR5O7Yr)Eu_~NLp zHhcR(O!2sMo*l{HH55?2K&Y=43~FoRx{n_btD;D66<7v2E(eUTtx5nZPa2KsO7a6m zP-)bLlb;k8kW=$)DMjN-jmIk1v>GDeKncYtG@cl)hbNFGfYOA}5nmcsfN3GefZ~X> z1Te?yEyRKWEJZi1de?uRlu4l{B$7EPFK3XF=I$hFD899YMJvz!lv04iQlRqN$m%Vy zch=nM$T^+95LJ_?+gNGI-|i}SC0Bo`tHz{qJDv6nHdZT6p!n*3s+v1GCWa!QBRx(` zPbCZfK|%EzP{;KSnggWZj1Kfo)5s$(w020?vs5n?9x6IHrus2~2Z{uM4HOFgTC;Kw zK~fsDBoR^#0ZP-$rj+_<;;Tt6cS?>+C@Z~4YLBRj@%_~Xq*upLT;gk7lk8?S7*RLK z^{Ro$(xY=vq<&I5jkJe5fX<3TSxin9NhY_ox?0>@#W|rrRBGmff1$Qz=|Vx&D~nrO zsycYs^GwK6VY#@s@WS^sy%;8C#lVwXHKdm|Or<`Hc~2Ucxlx3^qVf41Qw^>*+&%VB zeY=1dGpmhitj+w6g}+qR$_Y5T_fZTS#lICvt*?f}Ea+{Rick+$FH@QPI_Y7%&8xgJ z3y^p^jHhU-NB;naP7bD+dRyZ58X=4O$oIO&Ttu||@bSAr=f}_{PzW7L*GBEu<_{J8 z1~|Ectamo2*oawM$|-9wd-)Nk-+~lbOKXQ%*5Oq25IAV&3P{`2aIaJG8g>ol#_mBJ zQiAS85PhLHCf{)jOWe;7JP7tB4D4$|;ww^XP<9>_+fyGQaKj|XU>TxJM3y9xxg7~0 z*Ky%R9vT8OLgT?N%%ukf!l7xorr?Djtw23S{{T_a96TnNVUklxC#I;YWdazgq4}^P(+)EO+7p zkxsSoQ&Ca2n{cU4Hle)APP8lyE6`MK2>FhxH5h!uiB24-y);qF`NALbR8)2FG^nnG zkVPgA0UIQdpD8J}Rg&H}7S|J7avXT87lo8pt#=>;(z|N9cnndwu)WM_;4unpPi(IS zRyFP%awK~iEZ!IV(=vC%Vi-R&TCvs@;KkG=58 z2{!Gzc|_VwZyd5!-*eww_a0gtg~CN>>x;%>iv49cV=SSvjza7L@{u9rd@6eD6S>1B z?%>;((Vhl0^l1UV1*5TZEp2?3)xbEB(^FMpTwU4U<71B6UtQyp(l-ce#KUC-Jg9dZ zo-#UkYj__8)r(?*+RJo~;00DV#c>7Gq?x)ys(qz498L4980}r^59OhuBd9eSwxP+i zUO9(Eb;Bx;wK&`RcDM&Vn507ul7=-OX*l`^Bq%`}?N5NNppBybD1h?LSt&;T)$$Xl z6I2^(8^|u8l3RIWSmhz)F|qJ!^X2-yG;mm4$8j6wVGRz%l({aUd`@dz2_q!0xY^qq zhFDa{=#zaB(4WqFS7Sp@*QfnO=RVdCBx;ZYl5c7Z6Ut=4r-?)D+l$+IV{?v|Vfp7} zROBdrt}VE)>(ou9yPmd#ZfQ)*huWRIb)zaopq@Y#d-jiT&tSA~v5BstfjwC#j0hzx z#g<-f2M|1Z4Q!x_;gNzv1Bex=7-w4IsAZZdAEy$~c^|P|9m8>CJ*>~eCvf2Bykvq; zwzR*tmf}(+me@a3u$KXoT+(~0qX%l8rLA~vb0E{)vUWCfwY0;@ zFDB#OUAo0mo0E{Y2(4NQxvt~OS#8RZ*uY**ey%U~3M+dWzVb%1{{SK0;=a$a^LJpR zRmmXl;!fWkclVk*1&SE}a$NLC2XEKE{B%`DeTpyMP@nu`I4F3F37Cp>3XDk~Jx07g z@t%4T;-{M4weg2CBW!PX#O0&em~#B2q{e}~w(;=Soqa;k{fhODsBJ;+E1_+qw{n5a z$1tp3*~ZwnZ{a3udv^Pq1PW3#1i0y13i2U-XHWWS(%fuT?+tBBICH7ZO57%pUC7c- z4n}vLHr#fmL8FK-rq=QW03FMPH6&MWEk*UEv~SoXpvZ!p+9h|_wx@wrJV^fl{Vw1D zIs0zomZT{PqF7u4O*(QvEnv1Mfw4vgY@VIrTwk;PV~^sG;-tOQIQAWvsA&9qdQKs? zWP5dGb_b@%Y7O<%_j9k)5J>E3V?M=_+YL9#SU9!IPX7Q+hAW?KJJR3OK{wyd-j^UG zSk5LOufUqnwRiK@m(nc`*(VhmwPn$yVyic*w{T}K-c@WNjyLq&ng$Ba&OsCagFr=3 zTKH-pXcz@JJBm+xYmE{?B!UAfN z5F|++*6L*D zyM_fJWL@dFtpU?Q8@k5N3yBiW!MtYhc#JtPhodXKf9ssi4?R}xfi{(OnW3# z#O~bVaBqD8vZH`?M`>et%g5YL;*Syoa5(kT6)t(8F*Z29dJ2=#)m5-@a`%2-ad9lI zDLhFTY^13(P;m;)VFa;I500%LCCxRmfDR6EAMFK3(*toM9)LbHR|Yp1+(~As_xS4y ztx7|0K1B(jsV3rEdY!ySO*BQ^hMJ>ocmP~Iq#>#Sj+YbG2fC;S1CW|PFLReHg|`^% zTU=n?pH+X{o{;A1Rq@{De36 zw@YvLa?fpdDl4?HLmbN9kWpS$(d}@@Et_PLu9&&NlS+~gFagS(Qm-E7%vjn604N1% zi0h)0LyE-0##FIM7_|YKTbb6Rbm2U*FA{p~t5(4rX02^cNhjV^Qumw*_YZPBhBy>J4b@A7U!HnVNN!=OkiOY7#%~BXB%`I}Nn^Ug1QF z1lv7}@#X~qU{2NAlpZ|}q%uH9Sx9qANA~Ux>S@qZb5XxfExvTrwmcrC9pMdP8*M|> zQ*e3;ll}T}t{the(o=?FA}o7GdJj%JoX$F;l@BsoP85OEY)+lm{Q{hAF;|SXR&Cgy5JZ|mN@~W|BC*iBJcWX+S8{bu2E#|_lAth|?JxhP{ z!|_aY>yA~f&aiQ6>N~IP>O)KE{Eqt*pG_|scZ5r3rgj3~3zWJ|sUoekAcNu(=2)1q z`E8>5x4Q;KBbs>NJ%ogz13>XTp!WO_1@>x3rM?sG_?p)xc^VQc(SF<4rACO&a!-OP z58^cURTzc_in>akKz*p;{{WFq#E9{BK5Vj0cz^EUB18Z`JtV&I*?Da5cd&qkAaCM# zu^knreT5$}Y?1!)hZvDLsHh>@cOOrkG>sQ}v6Z2{459b?QuRUiSbx-wuheLQ-H0C}sL!{3YU!ov6(3@Kt{73Q?#tSwR(+X-m@8dJb#}y((#w5z z9H}F(r7T1CYQAeY4ldMx%zo7^lE~BHAa(^j#`eE&S*nQfcBY%wWj8E-ni{pil=S%T zsGd|&k^@CLarf0YWR=4c@b@Fq!owNd_-SoyY^~$T*yQae^x%#&TV#&r76DU>w>d~P z+zmmQjD~hOfuqb0X~1yDmr8ww@<8C?NofZ@cqyaJ96-~G(__cz@FS?EkV)WEVWg&O zjH(7G92O)G%)3x+wP{cA(*zpyb|(WVifNlJpjVRacc~;$Z=@V6PHA9QsUe#zR;65y zgK8QYd`R0yYgC}hl##Ns(xsUE$P@%^9HfJqxvQ_N{((*!gQ)zr?+yhBL96IB50I#-v+eIVnWXlUk@-eyd3<8Ne` zdRF(~%HAe9VU{Fc`bVzI_~|m51~{Ap@#-Mc+eD@}7dMG-$LvZjJEM~jyvgJT=h%bL z{#~0+o=LqF$u-<%q?ru}+pgP@P3S=t(Nm3miBzJCUR}z;im_fz#1cylfcikELUiqL zuQUMWqqi3>pf^41LsArjzg_FU%ch4B%_xrK-ZBz;Dhu!^#3&o7Jgc=@rAQha0CAv2 zOnO#*?@Mx>+kGi9@w>LQxK$M9uB*a%7*?CO>(fF3Nu1M45mE6`Zd>6Fr$UPp#IZDB zTpnvcd8n#}`lvuBW8dkp~1*Zx(Ii`si3hWR&0_*r{zVmdk+nKKNM#j;^pW3Qjy|u;J({94^(4e`l z{lMQfv>027ve))gHQd&=5W3RVHKpMaNU0P500VuSSgY?^?6*?39hyUPe9E}Bq0R7* zpBDf!SN7Wt^h_?kZCQoc$(%mj^Q__i| z^u;T-02v8G$Mo@!)$dw{{W1~Zy%W`8fjXdU5YRFXUOU><5a7*V6=}VCO#{1 z92eF%P&EPmDfHOIQChGrKOJ29N@yFoy1+J&%LJamf`huUN5Cg8tJv}HP}`dUZT1oX z%GUF|a++~0eL{r|2(1eEjY59jAuzlO7C7qZQW-m>5;WxIiYc#ecIBpDy6x>|1x3xU zk|L#6u7!CTlR{|yHDmpjD~;W)r30b_95e4w&HRyA6PXVqu~`{kYo@fBo;Xa9RJzee zsX{+^RY2uWo}b)3F)ThdipT9uTki45G`P{q8+Y2zXk8??bY(!nxUf>JDk(r{6nN`7 zHs1J&4g?x2Cfv33Ej37n5PEFEh>wq`Xaz|gJMIBGWLx-ZD@rB#*!1L$%fMR&k8xgB zS4|%$BBDEhYx7XRQ2Fb76rWM)+hJO|+>wtBM5-qbFL9IrxIjn0@Q@E;hhs>GCp2}U zO0^6C;&%d+K0>EacCgl7zCXD3l_u=#wQKmb$?DF}Yq%-&$26rtBXljwGRkOo8pLjP zW(~%82=ECB9V3FawwOzA9GpuV!b;6<82K1!uKxh~ zeR1`Eor$i-NXwdfC~)>JdFmLvoz3U&xB@$|_N$2?Aew+`Ley+V=fKd4*ITb9ri5k{ z33Wp4#gMwSxwK^hJD4Z8W@b}QRyIwK?{Tek1Q=)|!a*JBI`p_WW(vT$>}xD}taO0` z+f67T$tV51q_qc^6(6ryJ>JvKwVD${PJIheV>KpY#z*3-j?H#Svbf_~vKhp6p;d&I zmYp{Wb%gYshAW$kBloK6bPUz*`oQ?3xEwI=SB5H6lJ>sh%$4JnCr{$JQdF|pfkDgJTH~?l9JeCdD;y6vAr&Bq%C76NR!e12H80aJ zHty~*1q*<4K{;SP#5YMii+33^t4aO3)s^jd%@Ij)cZZ6`*CiW z0kpBxLK;DIqm!}lgUDi|&3$iXYQiVEt^|rThohMt$^Hv_TymwgoH1M5qw`gX4M|?S zwOxF|LyUd-%(sL=s>vs;LlFo@CDo8BNMt&jnhv{Z*vH@Eqqv$=g19}m%bPp@ z07-}|G6bjQJgQ29YtwI*t*xY~r(%xx8iw#%N7O!_tH}OdRP_fR%gfHaHEW}f8Yb#; zt}8fN_9kf|`ztSS`xCtIZaB$<&xsylpaqO1l7J&Iit%1SYp!AorFWMF<)zJ;`J zJv1AWwxB!GB0Hw;duEs~7;4e1Nf|wuit@-O{{Xw{jN4sSNC=@cEqB;`>ig_Y{O>#a z`TKXiyE0r3Le3s>=j`NJdw(eFBB5Jpj^A-FE$y!ktoK_(46PVQ4P$;Z z!1FoKa85;V|NI>tazO^3(N{(260B^5Xnt~!zpN#Dc3?sR9N1mzag^ZlO>?b0h!2uL{K zlsf>M_=C{?71E1^D2j`Sevl7>uj{6OI8hNtDKzWh;p6`RA*GCIR4G(q7ABS0d_{ji zdgzJZh_oX?si`yruHW8vril$8b)!^uHQTT4r8Fx{QKbT(9-U8s1XLX(6oP=%=kXK+ zps$!G!>*2rKzL9_v-nk0DyWmK91ck(`U{kjPl(x`EO8GZz9`uu)0(YG*x zHA+K*Nv$bbP<|BsnsT6;BGZB+hPb6HD0aA(Y2 zF{dOkMB9G!ND-@FGB>WH+M2{G^Knzo4g-Qu%o+{%6%`w7Yx@5Hvr{XD5JrM%0AM%q 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 literal 0 HcmV?d00001 diff --git a/images/CaseStudy_haufegroup_banner3.jpg b/images/CaseStudy_haufegroup_banner3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..715a2b7e8fc6f8723e162e3feabeb7dc3594ebc6 GIT binary patch literal 147162 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 vwIB2Po`F^+U_^nE~DM@ZbhN4GG z0!rSJ^3sNxMx`M=Me3*oihyau8J?%=t*@l)nSZ*wO}vt}FmWp9DhvTU3HoYXos`$| zm|+Uw(obL+nqI`nuehd~kkX!Nh1NpQUTac9fN`)&kaUrYEwgvq_h`J^DMR>>gb=*J z0Q)LDw({G#Bm@q8>JPg2h39X}R9IU|W$~9_IU$J<=EZ79xM9SHT0~bIQ?Ikra0MwT z)Pg~w6~`p}%<7K6*>771OISL4BLOAB_TZ=`QL=*K5e5N4#;^8Wzihf;b>zX42aE`M zB6Ape>KC@Vi*4RlwqQ%N$lF)==y@@iyforpxG>sCkqvJ9c2T9b5*8_$DX0L9`N!qQ zUbC#X8Mc0=TVA0W!$aAN;sK%26B`=9j#H~vqr)oDZu>L#%VBk9M7CuKEjTsY9f>Eg zD$PTZBD!PFVbn0BDG=ng>yM?v=rxWMkX%dY1JYKSFE3W0N$fUzHKxxa;e1YQw1nuC zJ;XSl^?Fp0LMU+va#hbaB&K!;u=vNs)E>3V&@!ej+id&PZsS?^7R{Fq6~;x)=`yXG znjHIdMcZF&Gcr6$O?4f4_mYC30n%1$krc-o+`la@cJ8f*tTqYT9n`l=BvP@>X<-Do z2kSVL$Tu>)60~28!7kM8y78sawlof51gObEWGdM1e#P%w+rIT9XH1|f|M=oo4;F0Z6m|(t<*+G#96?eU}Q!laH$IS^{Ks?bB|=dZR@@N0DUg~a5jsi z!)jq}%4OGCNOZX>G%Kt~EjCIDP?

    k5v_kQuQ|57Rf!8jl>gf8-bQW$CAL0QZYK3 z*M@`DS(#RUv^bqY&;;w3;P6aaV zR=SUEiYX1nt0YG_mncLW5GU7KRrnF-B~M3n2=`5?w^W3;A{^$H3JNAhHEK#Jl|f3t z$S7m5%WDnOOPEHNf*r-K2Ly2A-+}F{z@bnOS4+^6f+wHHk*xoGP;js4D+_6&2 z`+4E3Zgkt$;eITc0c&RD;?JRnl$vB4QmKwtYtb7YOMW3G%LBHn#-V_hc|i$raC4mF zsPJh-`y|!z-7fD;9zi1NBZJ4s$p{=fN2Mzj_S1GpnR~m~#mq^Cw`a_^Sz%mP8cVYF z@Gac>RbVou?S9hmk#ps9)WN(;A0m35Nish17JtfE7Y#7Lr&RFo$w zo;arI%dOX}`jXBa-Zrv0E%gA>3suCOK(|OL(a#F8+@iJGtR;1`iF@QsbMU4F6+|_6 zZ@tNUu-Ru^Vps*<(%WceQqe6<&Tb=(Ei$ACjx<#2W1v^kwJAUxvDv;srg*8l=I>2phpb}H6KZ?v?#oHA*2ToR)N3&Rjo8p)T)H%n7{XL%uROR}Ou zS)C&I!%cvIxD)DvHlm0f%#iX6KX%WUiz88{Ef;DMr zP`DysmC`KT6p=pEgq#dCo-O6UNcHyBJ!`ve3A@tcX|hTXVqWgBpR#U8%h6+67ZLPB zgE8f@+n?}-xJr6ULK0TsB#}a9Nd>cKb(Y!SvUGvXaddz%ss|V1bQdp$5lG;bJIiY= zTQtpAHKaMA337!YKU=quts7{u+3lloU#Hxfzg(>aa<>HH!$miV65DUyA{_SgEo>zt z@^lb19V$sst}k|(tuH5aub3iyMaA-w=IbsB;M@Tt4-bf8feTbulFoEBfV4dWMp{70 zMoZ3_JBw_Cyf$Qw;cUN6xNZAuZKga&B{A)-6H-#BvE;`~EX+`0;n5n3)|S?Jgp)^R z=5O~CPc)B~7{CEs0BIQl)_{CDW=a#-YIU=Xo5i!389TEmRl|y6nCD7%F67+}PjMF; zp|h^dYlRlyb+tOTqXbP#U5ge&WEfW>*Qlwb9FmmhTx?lu_;i!ab8+N42-q4}9!HH3 z5~Z$1R6G-nMVdHej0Q7Udz?si2MoyKJL+4%_X@Wqk}aQjJ#B??xJwJPZo3>-L_3RZ zRI}Fiy>?pH6V6GqJ~cq9P2)i6ak;u8u+-xtfy zU2Gg<1H{K1Tk1l42d1bhj4bz&9^MkwVEc~RVIwREXusVPvT z-|nw%cKGd|H{Jp@l>$Jeqy)tHNGC}gRN?^=%x&{!b0b*E03WjK!R}Q7LE(mVYgi#| zyL%QtWVv^V>bpX^LAW_>xhaeLOc#aP6zGM;CMCo~ZM24x;10ApsTCN1VzjlkY)`ij zeC>F12@WCo>uZ9bawZCexQecw)5u;VMzcu-DDeKN2Z&Y0Gr-roxYTLUT-@-ZGk1e* zb~{!}zS`=?W&nvTZNF{Yk1-;xi1J$@ttd+MC<@S(V(Y1QcrG?b?=E5wzq2iCCWw#+ z-Yc6ZVA2r)7%y%no3LSyPbtqWe1MlR!B-5}yvB7G8>6+Gy6bPbT^@GF+!jnDAk9R$ zzc_iOQrTs0)7wmiB`GutQfdx$$xWd{4N<+_?Sjaq}g^r9B2Mi#gZSb8cy zk-J#6@UUy!ilQOXIr9Wmxx2Q@*?V(w+^m-Sea_b0+k1D1W4heAp>pQ+rP^Z0S53%C zVArI&xXEM`l#Y3+H(j0$lK%kY?c;1>c*KM}NbFoo*wBMYWD1a+DJ+Ka=IR#6_X!If zr9un>0(q|-iqZ|Z`Y-kuE!O64_ZBZuT@fzKu-tYmQdc9W`h$sZr4pMuYS<|h^>E>Y z+pUJz7MQPAyf`6AwjCQNFJGC73a;i|Ivb z+@~eoW;2QErniH1I;`|5khBLlwZXbT z4kZr~xMnK4D=07ZJ}-|_27`bZsl$gZG*0N>bJ^SwB~P~AZWbHmzSQ}h72xc9Yb`mc z^~ZH6kr^yUK}m5Aqw^I?5yu)`^K;%d>EXZFW0dXJaI#HcwZVWKhnS%NLRFzpEa^73 zkk1q0dzda`dw>T5>^PzoCnPvjf@Al)*6m`}?3nvzGGfat81E&?*Ld$GFEFMH&Ax^N zhERQN7f!N8P)05-`rmwY%Pn{2wh3Ggk{r!aMssisW12AJrBn?y3|QO4Zs}qL?hXnH zqe$n7R6NtuPS<_067y=4VwYzPNs3uq7*CWof+9%jM7i~r&Znag6hLUHOC?Do!ar5X zvvn@s>pM1x?k%1g){x?;R7kFCa83b9#2&-5e74hznH~3T1za)AV$=r%+H$D%y8ZGS z49HV1kkKyFcy8Ym&q~{iA|tSyk{OHADNnd%VjN(DW^9JKbyH^ku>OY6s9B@DRvB?bA4Z7CqtwHlo@0~4+Kvtr*LJW@Rbvpk(macM7!z@aVh z>Tv)Nh^vJN?IpBh-VQndKykst0-S>P)8axd359f$3kc9I+nnq9VH5?f2_vJnZqczI0(&_`^OeF4V3GgRm>{15EtMWR8Ic z%#w7R+Et8o5K#<^(^I~nGXRDN{Rmfx^;Nhjmph*OiWKFCxYC00(>X>q|`%iE^J2* zZ7b}|dO)cHRFx$vO0@%+P$5YpEhG`d98Ec4@U1h5DceRSgdZBxzB%VZ!}@Rm28_|8 zl>qRiJow;KONt!UhxGdY0A>K8U8WUAlv~ZT<1YtWZPavKB@QJkNddJQ5THjaCO``u z9E2gyx|GsE34u{i-M?mybK7=l4?86FIFrKtOxA4qr`nM%b3k6vs|L1OCK@oFMQ>W%X!PKfGTb z3|>RKT*L>Q(Iz>98|>5ml}1S2#R~WSo~l5^b;XjxUj>z!45p7IY}EBqDA{!>OVs92 zR6Oxx9`9u!(C2B8k%128IF^8Y3rKV?MHsiy_0?7Sl_A~Xvl0{(mG?pw6bK-M#D&6~ zczw9Rerk~?;oxG^y8i&8+Pvvx5Zo?*DfF7TWBOoCq5lByrup|cjA{C5q&8#z`QG}e zxhVFh`!@Tiqv|Cj1t*E96hBunjX%WgJSs5u(|eYvCDlH|PFv)tf~gkwoQC6sf8T}* z5g>nsz@+$$K%Z)|xH_D|*RE|Pr1$9|dy3P|o>qiV=JFwZ`FblpcV58tvJURPJ9B#E zt;)rwEA7i+ggF_@W#-k;b)~R|+M>|zk^&NP-xP?+X!Yx63PhbVjIPu}@qugz2G;y^c(;z_=r#$k- zn_ky|TZr|0>97*BXLwKkGwk{^&w0mJ{{U{=N5;71Uzs2IzRc180M#FSb*R`s!QOwt z`W;#x8j1zXih?f4$Y)>pC6^6`#BQk*4dtip73yONs1S!L0*Y1Vh+SbF>|I4A%mu)CP@-Y}rJlNTVm8ukjfP+kjsF0~ zXzi)`lrQqw?a0%cV*S_$w&fj(GsZ2ZCM9ju7%ALm8-uM3y$ zd_&M^UG&D;b_=2!9(cD8W?stF`!DrvvhP|L-0)>>xgiyDQ%B}j!bK{owvX#CLHE|Hsq9d7fP_}T0lg7+HA-t>+2zlzw2TgxN$A6Tt7V%?j6b4C)Z7praA zl7y(L47Q$IVM3|vGLzR~N5N@H^2bH6+-x@%dDb$=Bxm(p3U`dhq*h*gS?!&s;f`VL z1b;!P3SHny9v%k1IG!910+=lvDDb~NKUc#G52V+Yv!!Q&(7qq+oF(rihni7=id1)P z#EU;@*(1)3#Ks-BHXLS4NPVS_tEWnk;#3qqtV7%3ihZsa=WATe0|SUSo)rDVogLfD z32U`*p`EzoPgRQRGS~;fAiQJd5;UdV*-1@pc|Fy-<8(PxeOSxR+2L%-bm$TxY0_7tI|QPSfIMGo!8J^gfYb1h2~7e z5rS|cr$==kkt|s{LmF}#0Up(>H@7=-9p7h{ANNqMaj$!j9xT4w4__`5BL^8>YTJxS zO46k9)yANKs_AgMXlc~fiKJ10A!Kucf(`@_LUXFk%2!8of)*Aty9R)L)e+oHxGmC} zlCb+C&onfL09J-dCMT!s2maA2SJ#WHq;-SU3rsG+;+Q+1uhT~cpEzm2>K{dA-oveD zZ(ajxTOqBb1-6PblF~!h#emXQ6p#YcO(;jGj$#3^0khY_@lMEJV(TNVkqfy_F|Y}TcTCH+gHDU+FH7@<4&`5eg2iH z&u-#6t+*v9CAU&Eg&)O)ZrhE7w(*U}Kx-v#58&g23MP88BO}I&DDK+x^1cnD0ku9NQZb?{tqk9n#+c*aeqmu!LP<1<6V@ zM|Vn+py58El_H~-C_3k&U$u1f_mN21po>XYGzYa@m>gHN6S}RoP2^l|42{h#dx6OK zP8@3}c4568>)9XS-6%BzpZpIfpN2UPNkyltEXV%AwE} zOx?WQrRfl29k+0BsX_ZnP?&|o&D&!1$I=del36Fm7(MIq_hj6IofABnPZnT3Ez8xW zv^E_{xLRQMd5rz6{dxMtfZl9Oi?$YxupWi|;8Wg+xIr_DC*1pfFHtWXexcj*e>t*Z9)|9Kazp5VYcDhO- zIdYoxHXRMWZM+4(-=OJRYA%Ad+{&JyNaai;XY0B&5&J?1b_wfKxX^7Q3OzUjTI za%qu(2a$np74%28f3AMt?v%%eyV_pZxH+W?lU}X4OFzU^Nn1(yl23*^HpTg|vu+`= zZcA@5Pk+g z)Is2&4mxG6<*n>uYe^X-XNyYz0F%>MS)rB}XqBa}9KuuRBkjbnQkf!!g(#x0VCYw{ zC{sn+$!Wf{VqNX=ZVVJEiIU0|rpY7J(}ZhjehNtha=|J;QUXRw0Z&~muX94Qki3mj zJA<*zbmu#@=N6SAq@@~W@=EUP?`z=;9h^kF+MHEW|VQ%P72}xXi$F3 z7uK|(=D2vm70hCCdUX%w1TgyaAo6!7@rKpf2qT7=L6TH(fnNX*jK+o-AM zzcF8w1Mc(B%LPSV0=$2(?Z94C4GZbV_k1u^Rqh#_fEl0PUknkUQH!SY z+ctWMmsrYlRC{=;GT+n*^eMRE&YHj4DaCEh?YG)tG_4NgJV(?OJvAyT8>zkql;&{v z)pK+26JDfQEh}*6rcK4b+Cdo)^sFgLQ0M+&#&+wgqYB$d$-_5c>>piO#j}uxclrSO zf1<0qp8MT5bf`OZdNV8k0N{84LvKkm(xo*=TuB_1qm2E={kdHfG8VIwaP)INl4{B; z3rMkR0e3TvM3SW_6|G8A%}SQ4m6KCil@dv=Djf3Srx#~a5Dc=S%}b5fkSFcz5kttUG2;gP2@26VtEa2ZjqD@Ugwk>m%|DZ>g?6iZxK^pWBZ9v)Z;Ln;6O z4EQI;rz&`Gz!;xJ3g$ppohS_|GXkK}pqv;1RAoZAYfOcB4@t{~2{bjxd0^;J=t!py zempYZNC2OOFh>kXS_eAfML?*gMAOWgamaGvmI-O>eG#uv zP;flPV>9pvkK2QxT>8Z_2beS!%Af#17!+$<&Ybh{39w9$h;7H+v0xwB;!Q5)0W*7+%`kZ-Yvt4=O809=Ugh^{8VR@toMp3 zPu)0i(0$dj>}Iw*I*xj+a1WMoS~%;rr~9;L_8aaMj=27N{{VRV>Bx$VNyyU%lPn*H z)5i}qttP0x{GB^Zw>dWXQAnnx5lSQzz~h>JW)JQWIOGZXD^1g1;vPAHUp(&5mr*gz z8cU8hM$yPoTBrf_DD%kUi_GKXImwA|!nYB$Yimj1YNNZ+#krv>O+8uXMQ2Kmbo0hv za3$&nXBxS;1-au}v-GvHAYGlYN}R$TLZfvG9ZFWvC~~0aAk|rA%Ns6`+ab7`CrT6$ zxb{|Kf4h8P;e`&W-kbG?*ttVPXi6JQ6s0Il00}~ZMF0bU$EG@90R+q+2y;{WCb`|$ zh%}t>s44n=KD=r{QH?@G?xGerW%T0tv*of{N`M#mtr# zjS;lVB$y8nzzo6d6%^h3O3ks~k+|d8AB}Rnt<+d97M2;gwyCld3n^j=klwY+L!OsX z$fq2RW!|X#sj}O=-Q#R=V0lOy#s}(gArn-f_?JC6P_W*ox-GPw!NH@)sOi9VhVbOI zA?$U|=Pld5#oVUjYH>BVu?j;j!JQ%3R97I#aHTJLO%$C96wbKZeo$D+xxsn)d(;K? zdz?T%CXh>s0LbMnAYf31e-x_zrE_5s?^YUQg!o)SAm9;wSyi`rRO4)&W7@FMWZiJx zY53?=7GI5ZX)8TN2@if!n{~g$qN1cIjO&iEDeGB!QeBH=OJ26IEJbV&7a>cXi@xeH zr5b!h@y%;2mLl<&mrEwwASxBWvw+LQamOl{?I&)|Thh(?I?;2El%?0z5fRezRw`0D zZaUh_XCgrWoQm>ElszT2(sDKiYp+nlj%}Uc;tOg zxZiaD0AKEK?6NxD@)0A54J~_10COB3*MuQLgm7F4HFImCUA6;qJjjQI4q$_U1R?j1 zb(5iYs_nD)Lt7toS>iQgH<#hSx!c`bl`z8GDNsOkb&P(gD-A4lP?M6>1~5Gl`N1C1 z)e>!coDH|x?k-bH3#8Cbgn0C7AYxMt4rMD**0t!?JG$4WjsHF}pZ7%KaZQFBd?NGcZIE*`r5$P1m*y!9? z@QxK)_ionh&tTt#MLL=A8*1xsQ#CFoWJeNP0B~_G1&~r|2;+=5=8b^dIx^uG&VkIC ziGsQ^NE|a>-s4vtJvoDSiBm(>hq>9(j@#~88>?(Vmp0Kh%|0_s#FrLhA+)&S8ciic zP)b{NGvhHpG@OVB6TdIF`MQgxt*`EF-)}f$TIQ0fK=_(K0S|T*TkVro%=>T}^)kGdOwxX((1fWSP=iX0&OCkj&(Ob_Tb2CZfH2(j)c!pL!>Tz3BT0MPAOv8cQo0XJ zZaXAVG1sp0@0)_7fOAhY1*G?)({FF~)zTZ%yQjD=mpfJAi0WefwqZv^tt~U9w|&%S z6kXJ$pgK~3l_NS6o-BVWx)J>$YW~06E@ZddSpjX$t68l80J%=L^3~yL@}a-(klr|K zw#;mn<;uwkOw|(s-HGq1w0`Mqjn#Fvh!+zY?QfYjG!;x~NQWu+ndpe>T>_Ham6Q~m zl~mAxa>kn5^M|B5vwVinZFy$w%}tL`ewUns716W+;zlIkh-$u0o830+S4%rq-M|+j zC>gE?g-Lb(j z<$Fe&c1UGwVTYFEY&`lBRMK8kUa*qBV==^Mjki(lExX$;A8NpN0Sk<3N^1b=TtLk; zs=G^q$yuzQDMI9_#-4jAxvz8gRkP;S#M-S++T^zHyF+Eh=BebR4F>~>QdthRKy^)o zxv4*eM;>$ONqW}9cWhlx7nirn$00sZA;jhPWR$?-KnDx~HLKjC+h1s1WbIRj1x;Be zX!Z)z+s+(z?N>=JN|w#COmN-RiWv;_(NKpNO4qL3=>~U%R8e{Vu%ybhY z!D%6?2y=n$HMg^Swq^^+qG7t3+DTLgkAxM(@c{PnW!sw(97V(P*I~80(F`3oG|OYa?>Dwu{P^KnZS= zJQ6vqa<$A-3xPeNt^~4A02e^p$uZQ%l7&I>G!hVpBB33|u20fl(ArU_%AA?V`Sf&L z`A@R#vD}&Ea5t@twm=*UO5)cL zpJySKc#~9}S9@~k!y41%5(`QYLSRDn@%k%lSa;stz1+7=md@%WemOEzO)Z10$*LJpU4rPi73qc?f3DStF6N1(*;=<+#;+kNF zbc+c@i!!wK)rJOm^F4l-vt(V}&S+EVDvrq#6%A^$yKr zZ@k>@n`};LGZ#6nX)bc+7vjlIM^9+Wb+_EyNov?G90~H!E3gTX<%#w8)nB`}rMYt& z*$g{B`7?Y#ejUE*ZcwM%CWSoLQOHx|vZ<`hY>Fx??*|%KpbAe1w@vTJux`%;Zf?PS z8I6zg81@nqQEP}V4hQTw;Brw<+E~5Po7a|`+jj>Mq=ybl0YvQq2&*G&+P2SRty^l) z)!KCF+n#gK;=6G@Lk2r(q$eJAatF&Hl@i)|DFUkS&lQ%tg`ef~-~sQN=H%%C*l1`T z5?zjva`1{p;GcYSk1Y+3Af-5-C^()t)q}ft`i9!Nu)Au(hNQ>3F>+-AQPmyz9WtZduo$y*>znBUhdYR8Lt$} z(^(gEuF<{r?Uu!4+!72+Ea)-d?f32uu50pNn%7asp~^?Qax)0(S5nlF0Md#Yo*>Px z!*<#&=d!tQk|%#8l3e9>L^!H6E+f!5*3#Zd>~0?E;~p?o=nw!85rXCQ(yQll?fZUA z?X9-q!Ic$kwA`s`jKXBv-C=8sDjH<;wMuFB5|RSzp;=}QS?$ZH9dC6sJ9`>f0P!PL zgdHWSn1T~ELsBEKGBLL|4k7#klyc$@BG1WFcr`a}$K2qY{?v7?_1zfFGkmL+$M=4z+ha4)3 z;?8@C8zY|4D_n=QF&XANY9C~{G@XmM_QZ|9ag%zSL_6GbCrM}J$&O*%R@-!O)HvWr zRcY3=9cd&0G0gWH;M;>g%D!o*c@jsfN{GPH;zl7s3QBSG%UR(Y%t7ahF2a#Z@CCZPpIi}ODfG8sC1jH&AaYC zO3knU=)>F$g!r_z4lO#1P-38};ufkOIyY3pLeNkhDT3p~BCmISB;J;kF>bbPn}D}G zhg_EBu4@l1=`CFxdATmcR1~}J8A@DnZJ|w*{%S!=s7i5rjkKR6-MqDhx{j9zDbz}) zoW^7VIgAenZ00VN*9|V!f`mXqBCc5{s++dO!tJ%LP%P2=nN29q zW#>yvc4SzpkE)`eB_mQvLU6sb-r8NaZ;Y2)f>1rJ4*-R5B!wZQE_r4!6+U?3you72 zrN{|IAd!*<2ul8oRt)=2(6?>?_1szF6F1(%x=psFsMlETTh^!9UEMKE7UVMPuNO2a zUx;eR>BhF|4Zay!^KFbXUad}O0zjCLF*JfaN`&SY3@WZCT{IUEZiA)6I~XPuTT%A0aL@@L4|eQ9kfp9xlG&k ztG?ddNVhq2v81|=lz9af>x4L{RF$_Fkk3_z6qmYc^b!!YVrKc$JD*PNcNZ7YM>gJc zd4OPn=SzTSkfuu0;zNNzO&6bMyE-N^M>6Gv>34P@oH67^3!Y+=LUPv@*(-VOYcehO zEs-7Pb_AAEg||NKGD_fE;@n&>IG@RkvDB&*guIP?S`89(<{l&xa&QVU0Y(aH7WXq+ z){Aml*0>bJI1HDxd%0DQ+lPXm+_uX~0}&dUT1Bnr(Al=gbpbLxx>#k&G2$nsMsh8Z zDO%xs1K$&-jyCymYw&_sN#cQ^mVlTp6$b1%(MKfsy)))JcrQLQhk17oV8^u0nRQ#Y zZMAKxj4C;_cbCxl@$gmJ3i{xEEc7-QL$~ zlqXARZoL%|q)CwwQ%FjEN}`H#P{&?$v$tsA+#sFi(g=$h5HvZgI`nEJY9wH(#}meh zl1T*8GDeM0a;9iVMa@D}jhDHdys*uE+soU(q1J94l1$~fC^KwyrR21wJoApV1|pmR zEhTOQ=0T=dq`A7-_UN1QjJjpR8XC<`F4WakT|_mbAka@`E^9r;?SZfuv}WJ{7>qe$ zPdq7o`sKIpQ`T*c#=I_Ia_6)ozL@tW;?GN+0{k^Q9mvS{C0#dKaVc8JD;cCHSGDk5 z7d{;`K2>}zI$Rp;m860($btbmjFy)TywS!yz*-xF$X2NB#c<%6Wkf@@-y~idmfLR_ zmH@-IcM}>sdo(M2_LnH$Q8Y;D$T613MMwxsh*F5Ab;9XCSzd$3(2LT%f0$792C8;DyI zA%!UkQ|+ZnEU8GL)~zXUEK@vp9);_Ow;3-wTYF;}G);LLNpN&P2Dx-K1_w1)E&{Xr zhTd)49n>VFfK}jsPf}Dtjg@@b+mV_3L8ucgR|lOzeZYrYw8Wh;5@oaMb(A=U!YGO; z9Uv!;SjO#rE4*~iTeooOGRZb8rE2(AHc0SGQSQ`H0%T21mipfE&&s~k+1dxBfPmpw zqMJj^C8-Ux?NCtlQC6NLoXburz>rdCMM%e{ZR3F%gB=}ERL^F7(Svj`7}E1^x!Dafc4T1u04ti+bGNQs22go*Tx~~~<$!lM zYsHfr^E+n zrX8F|^1X|n`Vw;g02GJM48h}wn{fXCrox}7zSB#)2j*Y<-$hD=e9mK!JhIGJEK5>} z!lPG~hTTbR#3gA^AxT<7l2URYgHT770yMO!QAP?C8Prnmvi9}o+L>@!Qs7EN$V9f= ziH9ws3LlEg=z2VNvdw5pR(x>+>us~V4Q$K@L$xTgVY{9c(ocvX?HrFk zO%ScWagLd3M6Z6tna^BO!RbbFGtYn?Omvi}J|0p+k5TXvcu-}D+jN&3Yu<;=jqcQn z8baon6<*g-NhDIH8e9S{Ysr70Q*+I^7KwSc7+qPJQ9aZSbb;z07j)^`VHFM z$4tbr{h<5N51^W4#N<|?AEylK)u)I)2B7_%acs#MBXu<4O_9#2KJ^ret8RteT$_Q_mMY zAMwh(+x#M`uhm+dkG_{khi;hIRJiReP3D)1XzNG&?LL|~(!A0^#@2gFYqq594or?j zcMybB7D*!tu#rTzn}l?$+1#ITk(y&&Tlte3f5PgVZr}+V)avQsil^+Qg>58rQ-i^f zddszX$?m6w;QVa}Ie1UGJ(ZdF*|>i^Y=OAkZOJb8644`SrrfluEL&RVHg1t;1+yMU zSqd@wM5S2;dbneeb)+}2ZyR%WM+Zo6L5E5pZl>!F2nvq^XU7`U?Issl+ZSmfco2g_aN*7eCMSVy94QCub=;NUD?aL!<&5-9PO#c8;oP}pDnx%(^ zpY)9o@?T(-yxWK;`^iwwyhc zXP(+P7v1jds2Y!989()AFrTv?ezSJ2w%!Rmz3r`?;*FBb9%t#TAv?8D_dSlybGhxv z*GSUrR&^OHAbaGY7TC<4ZZK0Mgp{5-lT3AZdVgu%_NWd0yJRkbn2lPnXw0<_yjECl zliFOpu*g`FI}RD1cvgSipQURR!>aDwxvt*v3O>%{*ewNA`a10=&<7#XuZhMNc>JHU zxdu(HUo5A<;fJko^;VA0t7l*W<+_J4^?yxd9^&?Abawp;mvgr~n|L66)*$OaL0YKV zTz!=|+bVGI3n53t98;;f7kBB#`S-CAZTjs(-o-*ucr9(Vz53U2A(1$FpQ>;^(N+e> z*&Cl^_WQXTuI7g=w+oKO6E@Pqo@VcEavkmoZs#4~lo)1Ick0sGUZtY7pv3K)Xxz4a zi*VfL20N)N!=cPQrLSr{9tsWw6(XSD-&$X8Hnx$YqHO5@0M#J0;CZ1KtrxUERlUXA zeJHo%A9KTRN>rPpWtrgufP`G5BrQuc{7#|V4Xg7zf7{Y4?KeyxuiFvk{TshYBo(}}K`(P)m3dvsdw&!X|j0suUpQ!x{S}Nanw_YNNR=LpbF`jKjsW7Cq zDTRWPeJ(P!q>3LLZX&pX<}Wtc?UFJI7LZ4*8qPi$A%2+}THtaaD2=45ZF>q&5pHZ8 z@~=_eV~!QJJboJhIr)D{rCt93iFy61kp*ISa?=P63@gt+rwj$<&WMU^xLGY%LWd?p zX>uAGS(w(i)8mD4_VeQ@sgcR&p=qx?M!2)JxGO6GlnfjcICnT99)nItJh9-ybn?s| z@NhKPZI{>?+b*cMuq#M6)E=Nn$TrR18+~@tkpt0sPjw;$~_ z$F`jFV3YZb((Y~l0K#zf5nTRYL{CNT6uT)I884+T+SQP%h0-dWjLT|2gh(v7f4VTA zoDq0$80e2Pi$As$4$WFmWgn1Tj6^@MV0}j)QjXd#(Bp1iw+pPe+pRhBms@eC5b6|# z!YK+#K_ZGN%fx4fty~>>IcgT21Q1v3(aZ>nFh)KveMz+%d3~6%sQ70?2QR1Jfx?K2 z4w@`Fg0`I*CFWdPFC=&+)|7?mJjG~mL0au?C9mc%KDrBn9I2A+Xp=fDhFg>rr(r)4 zzPdormyq&7)Y3p+g*tL61oKuU8@sUsq1C84g`rR)gNlKUd3$M5n8bm^A`oz@7h>!S z$8Rlrf+f{$NN3~`A;y;#E+|M;RNU6^4Fr`X!XzSyNl`h0Tyy=GX}HOb2T<*&D0yHif<4sOU2U1jH0)SIgNxq1jIT8_1)R3xgtIKy8lORtQYqHkM%@%cv!Tfzc0s^+D+obq)4*LVl+A4-fLk@$y8aa zlNuzZ)Tqxo;9WpNiXaTeEjsSvY5Gp`(&es+`Wo*NAx8`W7!&1Ln%y4641DE`T=hrFNqEWqdG z{UW}-wR>d+D4f)bTZE-3RMezJSyci9bJ<(4ikNxuoww{u%2DRo0%za0J#GrWarii2ZX>qerP&2Bt)5wrTDTNrr z#yL?bUfQjTF91^`~@;J}#oi(*?z>BzA z=cmLlaQ?8z&{S28rt5oTL4o8qmSfaw=l6a)6C1R!?c0XUb$V^G>2h2F21_9l;;b^M z0Y&zYLP7#lN`y9ij~sCRwdlzDY9?P=$X#zFnsl7T3z)$Ag>(&veRl05t>w{< zOPdb)8n^Y?pLrjrePOo_iY*392X{36b-#8;c6JwV;28#R1;0scRK=w_aH|vgR_>0F^*$zv6{Gbz}u_&y7C1 z*B47r5`~3>&WeD4823Ni7g@KRzJqm ziBeVeU>vakj?^R6aHRzWT1Y*ZRX4diDPg#EBv@ZvmQkvNVif(gYvVxK{P@*B-BOaC zNyPYf8Dh+{I zrjAN#XaV|u z+#oBBC%%-Wth3ALDVK&6oJ|tfO$R@#hnJmm!G@9-g%t@k;mgnO^TW+!XbyCGbD{e1 z=%kXAp((<}C23+sJ~?pm!=No8cv7a*pTrvYjQ-3xi$a_lK^gEA$Y5vT?WCV=FKHFb z@cqA590S)#G~(I^F`YQ_{@gkM1qCFUR)n9YI(gw_D5T}zOHkOz_~*xmJ{f-eDWNgr zLscnCNh9{0D=cX##+0S7KYyMRsI3-xQOQ9+9$C}F2qzjC14_Qh`P#Ja`WtBza(#i#ixj&}a2?@WC29s9`@(x5GRm zQ8Y_K39ptApku~@8W>NA70aFmG-*Qpm>?2`cQ2^6DPQL4Gwv5!{t4nA|9LkhH0|JJb<`VOw}i>9+?p5Lm$s)vwq44H zPL`f04`y{@2DxW{E5J~Wge~M5WO)JdmBBw0Bb`TYDG-o8C zgn%e1nfUpA*g7f@8B^n)S$I%Vm;)T>R|xf2ojCEQ!v<6e7487#pO+uHq?{+Rj=C}e zgM}y$hF(1Ic+pphKTcm9>q_8bLWAnzPmc<5p{`?=3?^oRP=Btbpi_Y0a>ADiD(-Y5 zwWTXxK3SZ&U{Tj{G|ZgpoatI}<-^Ye0vZ+WeCR8~DwEGD5@~>_C{RePE5rf^ioV_> z#|Pa*g?gTRs57AS!0UT+N6y!w(GZZH=pN<6u#=B361H_+*ry6D9#{z=- z>x3Nh9MKk(+UNksLQkIXlscqchI?(;l|QVbwqdZ3I0sfr0OVtD%VJ;%$#$d z%(Qmd7(c8}y0pD8f4w`nSI=2!Q-VX9eH2Pn#5RR0zK}r`SxNW|alIwXar-Mx z#U3DV1C}=Z7kL8=F%quQYbn$)NKB9WI;(1T2RnoXjtYgx$Jbte9C|CJ3bJlR&HfWu zOP__lnt&W?u@wmAMX5he>ZW*BR6wOBP|uI`eVJh{rzo@i7-=X`N~fRG&k6--&pITE z911X2xqy@_m?RW+gl{{SaPGKpuF@p!i)^HaBm9=pe?_x##zG#W%t(~5Sq?PtRU2`) z0z#?jIpgKf>yDwaxQ1zDfsn=?-zAbYk^oc?U!mDJl7tk?4C}RgrI0R-t&z%yTbfHx zBp7hw2&-l7iTvTTEU9hPS}u{IAVRt+sIo4WcPc1TaD_2Z<}3~>q7<~MppF>oT^adz zbJzAy-Yl+8-WWh*!x<~uTndHr8o6d#6>uRcmg{|wY@EdAdCe!p)h%m>cAPuADkAS} zH{=^MhY`D5zHW`MiBtC7Z3<1~xS&+H{{5+;>9FOdpa&A*3N-S@g5&a+dFjYz->x^a zFHvpBTtnqXvPd2sZIpu73^8kwdnlRIR#!4I811xJ&EbFEcvB@p+z9LaOWvQmFyPQyyd>;pHi+r;?O0t?9qb9<1q&%Gw?B@wJ;Oa?gcYH>o!pdA?e5OssGUzMwz|MOPR8 z=H9j~%E4;Bz?(m6sxlZ}=Ju^N;9<0XrF!6q>S42Ri;!6gqv;xeu2|%o&hv9(#`Kl+ z(m$fy-weVKpn>;A&1yeTaZ;~G0Hju$(!wjozWN~6?tuInvtNk`!4Gy7Z|&RkX|Q12 z5q5`kfqQW&w%i(hug-Z@A%M~p@(a3Cz$g()D?D_s$}OjMd)Y=#LE~uR6|ezbzw+bP;gCu4xV$PkswZ?`w+;$6ea;xKXBEBS(&{EcDT?u5=XB zx=|q{wZTN1aK}LW%z@BsZj$=!wmGijV+Mw!Lzly!h+)SZYO`b^_dr7uxsj4_IHw-W z>R$WeOPye*oC(6~ZQFKkm9n_%h~Pi>4W_0LBzQh!G`r0jwKNiQW12x2j#P;* zuXhQVw-P>0=s_(6X*g-Y3UVN*ICj;Av$yAVE}MqNyM>{nXS_x#OHZ(fESRjNEB6s3 zYhI~uwyi-fX-#Sc1r9ge5!WA^TenkMO}N0rvRyzNBQJrYK|&rJ8Xc&QvQnydO{1qR ztfg!cADfNHpg7~mjF288wFm@&bdgXh4FLr4284=(k5vaNLWCqQcV%HSm4Xp-CW&aedRSTeLiVyP zu-}Uf_21#Jr(;S>a>un&X2vT@(4dqqfEw2szK`Ce>FxSS*@RcDLeZtC%o!Y7g+i*} zYGwRCh;80emtDC~N|B`IFvkPwp?2E!KF{4HxhB(X4DMNS;Z2DSLrytvEUCtq0#j{j zjuSEx)az(P0zst!#*3qRj&}7^h1^l4#Exr#AzBpp2mvt|gzlzyJ61`xBOK+8pn`a> z+8l5=Q`YjhSiepC*5SK0eWkfp?ZqP97WuZ}Umkf8%%@0d&SLycM>u#1%p;q`3Z=EWHdDIN?j~HsMx7zp z6v*HXBZfw>9_4#;qV+Q8VB8jGJCU(2a;Dy<*<6a$4cOXL9}=cUW{j2H?cjk_Bx?jv zWO2zZM(rercG{9nZ#WyPaBb({Ett&SrpiPcg~G`p_scUOIoIu97>iynm8d$pKPW z0=2FKA_heID^Pb&aYeITHk-2cllP$#&lc+@?1(6pYl9e-HrgI(Q6wd&o^%~3P)Jbx zCb?qss;-XRyhDFJ-fry$yBznZ4P!y91RaHHipmGi3);!VZghpAyh-m-fagzF z4VP=bZL3}4MEh);MdoZaDwF%nN)f!a>Wqy%a!u4imPW4r}C!L)SrEM>$5K3BEQ zV)#ae0Q@uVmkm06|l-ukq)~eVE`) zOYc1Mtv2MMqTxdU!=NIFAd^bsp7WrsI(7?-%W2yrbIQ`@2=tItk@uS1N-0DDdg^Va z;U(SFY>}jCjDd~^(42U!Sy$b;xS4^suKQ_lBSM91_R=Cg>d@rWxZ8$9DM>mMq_of| zs**`j6{T^M{KWjezPOc}*3Y4k`AunR;!&VGH{+Kfo_W$X&B6j?x4G0_T%duMvXX6u z+pe(@x7l>RxgjCw@*RJ!ha8JJCgSp1Q?5u~NdiJrTv0+bgoF+>nbW-~Z+o{5s`UQ= z)}v|%6(}9!D32h7ASoa!B{_L>EK>Z#f5M!2W-uHFEQUF)BHkN5dZXShjUm`E;xyn; zOQ~9-2&}?om~1%NDF}2n7I+r|>r%Y1H|~n_AfER2Lcs{l6pR`JMwcf5dsTCxYq)}0 z3}6>H`tu}}ALQvc7$ z!0`#9c#2_JV|@GgCWbe@^fyM5)-*TEYYBN=U4d0yTn7r1EFqTfjnXtgx{1V-sGkpJ zNs?3j?N)d9m%p5)|X1#AT3KipHS2F z4Es|q8g1h;!RHvxhmglOwNV_YsG<@<#F}Q&lez;KaBP8r-XY=vd5q952zgYCb{lL9 z2Hx5GuI4uEMNd@e5avllr{uLCrnX_3up4>=RkqHC=v+@ygH;JNsl2<}+YP?eewOzB zXeU#PiVT8*q+o#*Dg{Eci%&32`^#4OvS~m-L|!OyKCCKda@)H~bVxFsyvl^8qsNcy zd9|?NY1N4GB)u=JrMk*A}VzdMhTB@oO7iNpf zqb)#I$8I7n@|=7)!}ES_<++7NdNNRg(xt8xbTvJuR8_4{3Yw6$5-W!6U$ArxBExY7 z&ALYkOI|>05url^gU5>!;tw)vQ@rib#z+blVWoJUN^oA!MOQMewwd~N#2CieE-b0i z8Ir}(t83y^$xKN1aIGpa)WCQswuXw5rx3kK2N-?VW!P``r&tM05UiRU6cXnUjuGl< zYPgnwNKjWQvtzC!xA~`yN&=Vz zPU?$kQ%2<;sFz1g#G(Nv5Qz*GRkAB8PYAshevX=AIXM&uRyAM!BvnYlsIOE^=lLDN4PX zS8g%2<*^daEu~0Iu>}+YoJV1*W4L$AeeQLZ=!ni(;6i1PATuR4QukSx(IJMF(`Clc zmzEZU^wy?@QcjaxbLg(_K4i@tT4QFP4yMJ55K|6#q7(`bI=r)q(M0Inb-bL@QeqJP zhaBl*?(gmEWu4C7%idnfTELNoA>Jfc$hV#^o-Jw#t-%QVvcfLlzgi zwd4@6+DUYbm8Lg6!$ErxlpfCEY4j-Y8GHWx@P+X#@ft6DrkrE||L$@f#v>F#CX z;V)}h_oco?&K1q~W5Kxe--ixN_a%t(q0P56#5Uy^b4pM;PNZl8pq%kzx%CbI09Dw- z4(i7~cDqYng{^yu@dD5o+#G`gfE5PAZ;l@|_Rb9;0$YI~CIlQvQOs1?+x@CG>Rqn! z7TvXlwnHqc{T}eKYGNYfzcomS9ZxXSlrqDKKrXmkLa0(T(46G9)|Y#r+T~<$UB*zz z9zy^GxPY!}NJ0XaDB+DeAdoKYu8$WXf*q;N!{OC9kXG9(l-YAu6Y`W_}W#- zxPl&VJP0*W4d8-S&3cVFmW1%|1YoF{fsI0T2FC6TJ=qTDxzRNcCfk^y6cPUb552c> zXl5ecqM*7*Cfm8&Q5j624r`A3yzq~gzk~S`2?y%P2di6AJuPvi86cD6W|PgQ{Sv;y zD~{hMMUNpjdj-Nj`e_L=?R34tQj0DRN@5^f+d$^0V>XfFf|B-l;&{7(?HW&spLpEA zWNY=X3O2yUI2fMOh`{(yw+~S?n`2z9({|07xN~DjTM&?knnTU0)>qVU^xbSIsSXO} z4tP$}b8j}^3u1FzLjWOh2OJ3CXkN!7E*@S81=Tf4KW7n``%f%d7U9}zDai#7S1m(6 z6y$s=JUnoeD722+5YLgR1NQuRoEv^2-$qV7lx7@FAr4fU?Gmh%0+Mnd(u8vcxo3p{ z2r3jB6xQ{U+~#ezsLG{5ic;EAd7grjxTQ)wR9ml}5XhSuSUe8wPjLi$DbF>>ZwYvqYfM;8+x*RQf)6SxIe9blzK@#3s7hNYqU-rYpDoy6b$g7II0E zP*5+#(~==wDVWZuSYI;EVK$x#>?7&qX~H30zHI9}=2aQTn}>0V>y9&_<{4oST}=YX z3rp=96zf3*dV#3K&YrlA!uCsB#bJ9|=A6_38b%$Xw05o(#nVjjHdbQLNIjUXIJ$sn zlU*q~sludw8jk^97~hAr><(e@)p1tfXta`QbySW+EPxnLRZ*Crd#gD2T`E1s?8rP7 zx{$6O6Rn(0D~>h!mPzUjkPNV+e$c5s4KB{tv z?&CpILC80zP%0Xp*^4ZS(31Nob%&Qu1E$J+@n&{==#Hyd8z316H4pZbgX$E=n*+Wu zSngn`^>Fo?OMjmZ-DTRa3VG+kS^P&l*~=^)@SQCfTV0k=T{ zV-$si^TAYl>**hFo7b}Ty%Z1p0@?@!5|w*a$plv{vE4R;yH&bpTg6m*+)Fk4YvS!SyXDY!$m1w7A}-5$XhFe6eCcEe^{w>K)k8TfDR$YCW};yYID* z>g|5+ip-|rxox!@?xi+dZbB_Jkf_9`G#799ir~SpSImQdj>qVLbR2%sPGp+st^cJ2Z7;=ZKrIt z-Qa@4?YgaHu>r%-)TeG|me%3(!ctaFNIsKPe(U`!+9q`#+V^7_M5v|}!5v2O^e zD4!DAMk#lX$+%t%_KC6J$AF%)@2air`od-)x?=W^@>X8m-HqOxQ(N;bjyDOldZ)0o zxd|eM0ggYt^bYs3xVq*N*vHxgIjPM-_bqGedWy#H!pAGm1A(aTZ|3jo ze&k{{)Sr8b<5C)tbNO4+8VR(s0j58tBP%kZSvc4WIJS%w1Nxt zDDVOUi?|{lH7{{y-7Tq-?W{N>SM`V}ovT{bSL$+aZugGh*w;H#cU`}?F0R`xvVzQe zk|8t@v=`rPwJ{}QsDJE`Pcx36FXlA62Jt@2aS)cm-a^JXQQATrP!MzEJL@3Mmm7tg zchJ8~@-tB!7qf`<)%CPLQ9ZNWftJyIMVf2b2v^XUN-C{1re3AOQBmMJnvaGy`&V9c z=IR>8P32DR5_o;T54NZ;I(u`pB)UCK99xgGKV@Ca%xUx?)?7oZtszKprKQHyk}3*T zf>NZBz>I8Tk*{cT2qUv9r7SHdR36$`7w5-@9S=IkW~7&yaOP-5 zaYY@JM($${sGs4*g)#kiY-F#iC#D7D=} zL7+%!_Z4lH;o_y2qYngPQ2F=*xHfplF9ZEV=_j>Y-A(@hc9RTP{{UNkd5=+}BJL|| zucjmJJ8Yi3lLG3?kR-TA;xWX4hUPY!em0b}9z@{czqWh)rxP5F9@dR?j?I7Y03TA`|CzqEDB!nn3q|ni&OG;D$3Q|D? z0y85blaU7js7f3~3`Qe`L~L-_nPi6Rfn7zpbgIgV$~Rhy{EDO81|%AlIZ24%6WY;3m1R?sY|es$&9?0x;PpXqOKFzhK}t}R6?GJ+ z1qNcAP9|SmOLrVhdqPJjc`Br!I3OA0NoJPnOx)Dz~xt>_Dh{kdLt4F*Z`c?XpaVzZJ=L4>mZ=wxwFE2YHOFla|SNo(07bw)#n(?~5XI$eRP zU%tCt?b)`iaFK3$Om&5I#Z4%j#xfmiv`xJ2vBMN*K*yIk z5kN!*4t|Qa*zTKWa_70hrOiN3eSG}feVaO*a@1DSsV7uLA!&KCNdYU0>VwEpr|>Px zcw>X#^t7!cz`B>=I1&9*kEovN=oZ`31eX!d`bYFtaj-Tt{pG%5Y=-AI3RK6g5s@Y2 zx~5xt40%ub!V}d9adD|#B!GAx7^vAcX}4|Rn@DhEk1h&T0ca;4C`jd2TaMu!rGdWE ztpF77BkQX&_uG!}c8X`rT4Lgu(Uw$;&6)Qfh(ZV`Q;$bAXcL~7l7$}(XfHZ?u_e#^7={S}})UHa+Yn^{rq+rgo^ZS84oe(tSY zTR<7+cHJcCS*6+7CTkfqB#4sy^hjFTH$D=In0g}x5Z#=T~SJ6J({-}FZ z+;lR`OXF5+qkw9*-By_7EYhh%>e7OcO)9N5JTcmKPP^&t@Bs|MD}(l5hqV1ESWEt& z+^h*QFupOxxce(Yp~O3()|^YNt+1rH+QQJJlTe_f)g>exY(Wkhn~QmhrA`Kv4j4K~ zt{Q&Y(~bgj%7CsYbNYB-8ZdZQ2ui|`w54cJ(zK`om8De#DJrT|DU~Un1q`aL+?}G@ zx89@i88#{EsW01*gvDBpV7~zAWP*6~%VhI7mv4D3x(1YteU^r_dVD9@jW5h3Bm6_O zl6?hz^`CbqYd2oq4nOTaZEr~=O|^#~DM0=y5wwXcP-ae&f&Jr)m^Ucp1I!*Wa19Q3 ztmz5vqSDjwlN)d^ywa7+420of>-Uz*N?re{Y_DRvglJ(n-RUAv`kA3j&h7 z=|WTG!!j_jNI258BQM)S^>M?EZyHMQ<4RD9(wPkY;7%O@CcWb<&g05!GM&4P*V2C-Sia0>=;rqrKlV${XDSZ4iug=v9$b2@&wRe5sFcE(!eR@ zhX7hCP}*sk<}$!{E;K~ol%XRH95SQGQluuIPrKoSXGm3}kedCNZN)LA90eXS^TSFr z6p9$n%LIv!8d}k#>Gp8KP8d=~I8lIoKAGVprgV8_L&A7bP}83;ugl}(ggHUNfS~|B zgMr~s91x``^w&YNyt=Ez8AKmAu8c+TB*UG$&GYh!P$`p8dZSw*y4u?&Q~`iHaYs?v4N?RJor z-7XU5o}r+W`;H+L77T}fx>|8uMh~Pe9bHUI5i@LclP}}@Kh4K1wOJ*+kr-_ zUckuMw38GoQfy zd1Zqb9?BK$>q_#-4mo-AI459eSG;oNxPu$!C9U_{{Ugal>*SN4tdu)3WHyWrE7!2 zj<{={bf`HW9P*_z&yEEWP-;_J`5s<%`p@jZpq#6Of=`7q;m0b3=S~L#ff!>zJUlq% znZhlU-u{{RyZIT@M!LXj`> z-Ooe4)wFi#rGm(s@U=h#>Wa|)nCf<^@{xY8mfztOkGlT=6DKWa-%ct9zYnW3o+b<_ zq~k>>RDC?~p@F2Hbw~HvKlml%{nt`xK|FpHCZint^CSNNC~D=a>a8D5{{W02a<88u zkhoG-v{WWTc_l}M=M_DcEPzH(`cokIU zR7o|bjx(F5mcZu6&aG{A6fUg~*e>jB{fzaItC~Y{5T%JP^vlF+a1d2W>7snGE2lTT zvu>I(AW0Vzi&gu^-*t4?xt|XT`dxp$+jlEATg|3IB|w`1IK%DNLegk*sRUE*$EkWo zcHi|6k3IUf5R*!DxjrsN+^N-KM$)85QQkRqRtaau3(mqzHxTxp4Dy3+xJ=9 z@)Fl_h_9C2Zm?GGO5~LqM3}WaOKOmnB}rbOssacEQ2eji_8yt@BAR``4>hh=Ix^uK z*TT|u1=cZ8LShYfYsc<4Fqor&s}3y%6muQbZf)JyyLPthi)!5Pu2%?~g~=w_GS&mz za7I`Qj{Fy+Db>jfXw_lRmm9AvcAbNC+&?C_C?ei1-E(PtUIdIJL5mYhv}Vo+ed&@?1# z)&R><%N?t$C6Dt5q@{zUW@(*(wT>stb9G`+O`}jw)f^PoYi)aW>)>xe3?)tq3T5!B zRyW>JEt2jKE<2qPEmzmxa@95KN=lr&LuGm?AU3T}N_i=(4+J&}y(<}1eEYtJZMN&> zx2CzbI*SQv4=^;QA*+e|Ck{uQb_-XRL`AUB&2)-nQ;bZuqe~E(5Pcx<_TS+^mnOp!^gnx?E`` zVJ^l8GNh}AFmc|$Dtfv-=cg|ED*IG6@Z|UZ+b()fWZori=)&O?Z?|J((i%&^mFz7Vl@aeJ9|@y|($fBR-dx+Xz<{`i z672Bsf({*nzM{Khe8joB#7)s|ZL3r5D#yF+w|G(HBsdaL75xZxMW`xxl;hP2S;|th5OAqSma||^v%8$9D8cpciA5JM7A$KHpFyAr7%?^ z92br?+1GV;##2)}ZEi;4+7c$Ro7K15N(XPbtteCN%}Xn4OA2LG2RBnp^?odLm^z-< zqwZPMzn1~meI+A+xVJG$7=V-r*(770_UXq^3(a$?wp%-RjM;CbMYx8Y4^VaYv=9Mb zM|EgUxm1}xeOIXeCmeM&TXBunFEE<1+Cz%Oiv%CrN}}MgrT&AHk5#b zjtNK}kSa-_81y3{5kw)22DPX=0Lrp2d3(#j?Y*M*169FU|XO( zD^!As!nxMrwOhbLS>ch-Ma%$uRVu^%JZ@3DWG?J&Q|#+g4z{RQ2A12&DIkT7XhBj` zInx>)x2oOM`%8BTEsd+$aOP+()No-T-wSh8%A#Ia9lBEvu^=r4M}AeSra*x`DMa{C z=OMqqnUPtPlvGlvOYN*DFAg|4?QO1rZOm+VAFKiQ)K)$5;~6a{kxzAI*;@m)y_)`R z-P@6K?p6)iC1O>nHUv$!*xZovUQ^K9gu~9lYN(-6(vglqCrWgmKnwlrb$pWT_s=2B z5SKPBPSxSjsDXkm0<^8%cP-<|v$hRn@QfX;3y>x%i&*RR1-|S%$#xmNzn>c9t3A@! zaf>OFKVx%f*S7o?hqb_sVZjK`PGcSvJ7&<`m(Ju!8#j4b2I~oc|{{Ws8 zZdU&QF5za2ZFQ)o^9mfKb(GLjUkFB3%9U3=D*fMdYpoJ}#5ldo{{UEJ7&Ti-Nb>Q{hb^fNL?h17b@7Bom&E5Xzp89^}VNB%!sR#cQBNw7fWQu zsJWK5;mcTZ*r#4jfXj-_UxZZ9_WSs{a^Ikx)BCOLj4x?2X=!Vi{0pN+@MDH29unc` zRSdDD>fPcyZj(k%1;e6gV>GxF4)LKJNc$w=o;g)k-E3ssylg&DaSk{T2^c6m7m8EG z)3{N8lD56>Yqss>v^OJhEwduUVN6_Mu0u_9U6_#S+V?S>N|0MUH#&$)kf5#`z2mFx z?K)!0{{V4wH!X_sjg8;}$2Y>?h&4*C1YlGG3e_wdYu&iZ3<1zy#7luCLB!;|J8=lB zS^m#@+pq2|-*dY)9@#c^(AaHPC=gx>oo=$nTvbYti65Gos_O+WsA{)RN=Y@xo1%)! z?(XMSmcB_{9Byk-SkQ`f71fAcMM(+@*6rfrD`=S2b6VX_1ms`=?^?HUk-JsByW@xk z0QR|c5DQ}Vja6ATUo?JaudVIfsM2l@pR;zWwEHqmx{HI-n zz*{aJswKA_Jw(cbC9s(dq$N)xp&;u65n~ph5cosYkocSDS8->G7yjnr>06JF? z;5%_gbEz%S`73thrtVPg7Nc^I>rKy$uWI8l<41+pSdRR6qsU2$b9bmvML@1+PiNC` zZWlL(;zk>A_LheNTZ43y;d@9v9x8_}bzddhqHJM}aFb61jwMqNRAa#wovn~ zS2&U*-7ixfj|MYR68w3#)?>$E667~EOsz3rb%Fs(5VaZtXlsm{cF5Z`#`?%ll*c2H z*gcw1IJM_eD^J1{pj-;nm(2D7X{aaw<%n{sVS=IJQlXpgb=X~Q-4Ux*vJL9PH5X~u zc+psfrr(UwjRMy^6a>E>?Btg<1qG0#5(=nJIi1zVO7#ufHx0F|YlF;>aE;9IF}hmU zYtl%2l;y*S#;t5^?=71D05#4rylD+3bHtFDX+i6zeZzIV-mbfOdz#;Bn%vtn?AZ47 ztFjj<=Y5$Fp{Z^-(Rx^Ri$aJic#zmtRZLfI+L?CU!ulxgEMF2b2RyaF=|+WJPICBy zg(t$a{iIEf2e#eLV}txp0|Z=8VBy)H3b!^M*|fK7m$xt5cI&mTQ5MYk4g1NnQ7N_q zV@xOBTks)9>o^qZ5{F3!g0u%4o`>n~lj?|HX@9rA({Z&edij$-R$mD&3}{dkBbKPQ zYpcj46TvHGf%s(5o%~7UaIIM?8MN*9t`>zgZMuj}%8xo?Ta?qTMQAOs5aPpeKjFge^{gAoU#@%r)-z?VfY4aRW%2a`pH?cVJHIbg}H0k#? zJB=dtqTTlEIq2*n1CriRw@N~rFFc2XNG~#^q$rBf6`-atE&Q(?Q@KsM-Ch<4Oh`zz zl3Ii**3d9P=v1vFoAYfgTVTk7wS(;-3!e|sYed}Nwf8e_J+f{Ki5B+MH|{%M-${!i z?q@_P(!(s3brlj}{I?d-)6=LYDq|bgy*WIRzohpv*1WOO+Q>^B^=3m$Tu?aRamzfa zC6V$TH#=1^>J5|tLvigqMtNsd#>tU8Vz4$Y?6WG&)X6Tf2K8!ntE3evarHRUjz)C2 z{FbCAFf(njm=wc5l^sg%mbrgUZ#KpE4tja5CrNMGQounYu&QvYUDs{=N&~pr$PSRY zT!80>c@KH1f;M*2cHMBcU+wl->fBNvoWYZBRMBz}+EZ(l9z(6Im`=(`NeV`VEj;nj z`&ebWzkAE0c#)%ke1b^=E}swsPOOww8*VoUt;B*yk0bz~j5vTm%rAOX zUA4P=U~6L$0I7(^h^w8Ahddu>< z+iu*$HmyvJvbDxSd?ytEvCl04U>ta1g;~YD%W-Sx$^+hnAi(lCfTx(I{{YlaWp{m# zeA#!+sdnl6ZApf0vF#CGFf3D;h=0|t&xo4mg6+iWOF@_Fc}}duLleQ)IEW8i^zaD^H=_m3z6;i{hZ)ZC3dSl;9!)6r}g&?@4IFOKYq^+m(H>jbI!*n8?hN%x$ynqREX=-2_ ziiJ`UX*-8a?M>47-1x)F0^C}pfB{mtuRaxMZJ*U{!@LI3dW~}1&#s!5<9_-bPDYNf z1M~{#(-_`uf0|nz-~#coK;y^aZ>$CORW091?hs=MY>n)|{a)I>Y&+v=?qof%v>3ei!iSC1|pUI&E*DTPrHMuS}WQ;*qB9~>1XfgsW} zqn1%*nsWaDAY5^3OHay`>g@l>UO;fIB!(4e-N?P~ll9%Fr^Km7Ae`OJUwn9_N-!hMQ8 zlwi1DqGvwJiOr{ss}!*M(vii-U`|XqdWg@azt!}L<-eVE#6(AXap+c2r6f+0lMn@CcVhFC`z!V|Qin=n->Gh8c z5+)QYq~baB_3M?yN}#9vt})>?QZGHR44taxJ))=*w<`?lG63~3d##L138 zmSU#^mOztN`%TTgwWZ7tciu|GZW)v~c4tV!HytG`Zf(Os8ib)o5#b)fhZ?56YlE0bI&}Reo}oxrxkx}ET*w6J1Bv(% z_Tyq46cL?3$BtDlF0HnMs#q1sr0Gy8;CNGyhb$=eWk_6btf#Y9h4(LemeLz*`ODGjZ&8OBnyq*SSHir3SQueR;4cHITdwC;*$Lc(<>pM(rC1S)YS zy0RBDB=Ryy!`L3|zAVpw(cemM7Y)Y=_@6q0E{zr@GQ|5Lz56aU>pz-ZVV2vRod_C< zECdREBZ;1N>uk_&BJ){~iG&e|qrF0|=WO~nevbfl;EP(>xQ~W0{c?q{{YFgJx!zB zKba{10DgVuq`_yA95VC!^T$h0HBx(NP-sYjDYt-IYmWZ3C?!Z$5UK?sRZ4)%A`NiV z%nya_b}jPV?leT{crE5DD|Ut}553+d-)Ro5S45Js615#RuAribBx+Mh%gA_R&fPg| z$!>Q*@HLrLf2hAet+wX!*sRFFX!>Z5*ORToHS#wQuK}gi3dD5PE1B%NH`>1v~Lu{v! zpkb#14`z}GUqaLO8(!Cb()puqO1yn_w;TOSN!l>BFyB_uHQm#-*}ln@YiHQVfcdyh zfaGPvdDj|{q3t!5Yi63Mrz+#J56n01aaoP(Jx;l{5|=b-Ejpai-6cWzRaLp=SbzI# z=N~z+ayBVT0C7-o1y_cAk9}SHOTAsY-f3wTjmrrV-5!f|$zLv>RluPP%IWpAo@gou z8x60kwk_QStn3mI@Vmn0w}7*!qS%eYw+=R|alBN6KvRic>zKoCNK%n)i19t31@ zqz-ASy(nq2&Z^$`6@U4XLGm%3{)|Jna5r=IY4;j-V35Y0wI(#;2;=a};fc#pdkqsN zG+E3pEZEWI#&C^sknUpx zOeby_r&WgQGSWt3Bjs0XNhkZz<~k)ZkTOabkjrWQ?<_(VE{hvET^fCp<7cVGM{``! z*-{10yeDXPZcg=#Jz&v(_W1zP>1R}?Q^w(7Qtk<-0HLsvvNqnS%BzJ!h|z;yR; z{{V@LQ-4}N7p<5-`ys${qY=R-Fufhg*n4vIr*%48Zjdf3Nrf?q1-DX%8$!T&rvVjd z=2b@`46a}{1ple7~2%*d=BpT$Q zMI?jaf<}_0c!d~oZdDTBn@O$rwQgHdbmt^W=I^oM@3x3k&U430gQ>)sk@PU~iW0KhPHtVr(*87g8 z&$q_)ac&O-OMq5paX9EMPBpN(>I*%?ZI;-B9mAS{9Enl(zO=8P5gtm}X>F}5NolWA z6c!5{-1XsgKxOPxVf zIY6GPYAw1_I3Y_(1;*-s3aW$593xA0YWrOO08GbW!jDnXoIg*~oglxh~;eB+i?Z@y3uj(`2+WM%pA=DJDAcX>x zT4YKaQlNgRu_LzyLG1DXB^JN?BUg2mQ+2Bg-7Gbo{*DcG70sPn^c$jltv4PwFMt zHMDi-RCLsW-e*0~gNr0mFyW3P-$#4Xdrs=lG7!+>Gi`kf?U(D9w;Q-eg}WPfY24h> zg8IMITGrv9uT>RWK}6&|UU=-A7v{djxdz9$gKcnl=FeXW!|oj+xY{f2{`N8buT^Zz zMefmmhSkE!bA@z<@}qDQLLVCvo=kYVL63lP&0p zIdwlVw*-sD&%cVfd$#59J*#C43>Ep7L5~^*A3Fh<2$S@l+n=?B3$D zg~+rN-=QSbB039qCeSKsxMrc+5Bs$!`3zjayELerAmEyuPk0Rif-%`(?$iU;zWS)$ zW#%1QFSO$?An9?Zkfz;11cDTWgs4#YV&RW#f{gt~)krNPy10~iW&5)jc~oJAB+;oy zKMxGP%cSVhMw6uAhX0AWCJq#SXj&7z+l-}m8Q5@`gfUKFti;pO!3r7-XuDFm%7 zLV5G$^zp-ha1>cm_R~S*;%alR+;DlCAxaRMo?ipc`!J;gIuxxb%i)IHoM?wLN)Vi? zaM>i`NhMEZ9tIF;U?y~+3UI?1lc>{VtqcNreLjZ;Kxamz5$Ev16N1pA0#80ZctY_s zW1S3g7)dMLLWUE=?fPU!5?lsUC}Zv(9RC2LJR=>U<$+E>n>b_r<5 zI%c`g#4ch_GVuPKsf4*vD8+JvFSm*CrW?TLLW(FF(m(>0K4Zvb<>P|mO9ul-VN{Ct z3Wa+Dg?k1 z@cO>;1_umis3*?6X_)$}T5-UjMm6gBaN%6eV~s&M911!BQQ=YKY5?LgB9s|;i~~nq zAewT{sWlu;GRRQiVMBt@QgX<1t$3RG`O}6B=RnYTA3j`Ye0cHtxL}A{73F8=N_cr5 z1OjjdR4^D&4-X#`_MS(}2ST~S>6LT)Fko@vMk&(3tvBl$hI((7WekpFTv*5-8jLF3 ze|d>=^JD%oO-=l_e&fB>w07wx!DT0jwLm}ptk>I)scHTeFZgZ#5m_6*@iKn#r$whP zkKA!68e|>@lbkC&XjLcQg{eCw)Pd=7^aYydKs99q|`8Pt*Du+DgYsD|F-mTC4A> zidYF|i+yf5x11ENMOt+n>PY9q8LiO5Vo3i0nBr9Xs?O9&<}0vo0Z}_L7xOsDN;<1k z!6|JZtgS^<2?-veO>)Lg*cRLao;7Pf@=q%J8QWV$_RHJtwHE%$qsUVWdMgW2Qrd>? z7Rnb;3RDt!XH0tw^5o3Tm9boeln_A2;UPx~<2&h%_s@JqT2Hi8$wH&U>_4|15Ob80E4Q%da;cwFodoIQ0N-J5ndc#VMB#kDDd z(&w(`mm^7bGpbIsK$~lDw*zci?;1>*?_TIXAxU^NE9 z7Ql6EPMFn7Dy0Q9WHzSMnu>#pNcIV~`P}P`0{6=S(UsEA3YB=n0(>BX4`Hj3d>*W8 zTw_v0xVsz?x%Z`6`z_nmmuH(??Y#4^TOc~P@}RgEX}(11snP8&Iuy#C>3ayG<4{B4W!p1 z4Kc;KYU_RJ-QMQndr2(dzH_F899j!Xuo7B9(oq~*r-(JF+~Tvkvxz2bueSlN=81|S zTyapfpmxOl$mE%}ZN&~NlI^UBk5zXu!A+NT7$6LicXuwOE=8dgpC}a%l;DlRe_wO~+H37P$esxL8r;Lzu53 zan8EyuQooB5jOI6MSk=xP~tQx1$2Xg`gv8x)wW#Ux!M@#L@+7Ov1t9NcDY}n-fnD1 zw@e~u^Y%Pf>a_Fe?;5b`T zkza)+GDx@2Vez0WQ5B$9r!e22()UUq>9m<`D~;Wphk&KU3QyT-gC@!X`nP zYNc$OjqSS~Wf>u@cA?<}I1C6Nj6wDCsBM-$?_%E$+~vmSHFrSc?TPQlep{BeB$%^b z654gC49bGz$*X!!qKc$|My>(VJI?FU_mXTD3@qF4<#oB2%nxv5pP|wsIO=8xN`O-^ zxa)7Bw7ZO5NE@m)hadwY9pH6U;t3&6!H|0FLSqG-7Z-98G#Ni zBm=;dDxH{BRoaWC*K9?fWSO@o?q%&g{X1saw{&#CMdI59lr*Te-N7AVHPTcT;=GWT z8cW?oteOe|jNeG!UG1>G)>~)Xy4P`%*^`3M_A#lYvNs2o=}bnY1oEq0+9<9b*_k6_ z65F;%Fs_nLWv37d@Fh~P`Cgrn8wWzM%eWKFc(jiL=4@I6X zNG(WpDKtv>P?3zK=Si>T3A(hH+R1S=bFu8jrym;#UkiiqbCU(j8nK6U{{W!2DHtRX zwajpKc;tIRVg+uC>@BHz3b1Zi);Z0~j<=O+yCNICSixZnb+%+wl%>N>N#Jqc_c*pa z!KZ88gc3E(QybF}&lKazu&_GnFTb}h2vbv6I{7=@KG^o&&2gJJ1}%#>8E)Eb5oRfu z*5p}AQ<37K=a7e^I>Jhlfa7aI#Zj;D_uarFuLyUA`N>8os59QL`z#Tw@|s0bWLLiW z^5JZ5+$6w|2naC%=Z`A4H++{jCuXcLZEmqD^|9P;1Z3TUVEemdq`cT{s$pK1C9;IQ z3Fik*YN`PWr6umto$I9{vVq#JEghr>jXIcD^|&}Am`((!1!^_CVja>)$`UDpl*Jqq zml2bPrnBX~UvXpG;p}+!*jE0!jru%C#kr}{%MwG6DpLW#tAnk&2xTiMRWdc>jJ#L7 z;M-#9^=mCbG6>6AsrpVjfblsG!lWJ*Z#9*JXE*W^=OAi=P$=MdVV-n-+j=%yiwfS< zRatE7dfRuryBbO-yKtAS=cA$%ZzgJxiAISZn2@B<mn-dJ#|= zguq^|h+3+W2-1^UYd7u5=clbB+v1Wvn7D?WPH}Uv2wSCC1A#3o&jCBG^T9U=sSoa3Zt^+wZ>I&klniJA(qyp$qIGlt;?im5}vCn3rmfu zDnU9xJ8qxZb}iPz7TiS8918-vK-nDCQjT~!+D0P~;Dj8is_x=OOzB`G*dZy>2h7leTB=UNQkpq6A`5<^FG?92Bl4PkYds#pyO>R(uJrgIdjC#qkW5E z>WQ|ePRU|(SsNXp&5;91DgbaO;#kt>3;-iKIV}X%4Uvp^3S8hw(hBh7h(b^rb+g>< zlgjqm)`@bFB4pdWrKb=lxnfi5W_sINhJ`y8Z3#$HR$5YuK_ffuiu-Jh}9J6or7 ze8fQJ#t=C*1aVx(piq>=R2JLG3@y8q5f}*5!&eNk%fA}t;<(%QFT8}|kcB4Rrfuo9 zTo-OObVmt9M-cK5<4S3u-jy_ItXDj-vEKG$ak0B+*yM9A{Iu4`25Ae1E+vRUw17q! z<|-AurI!Nca12_p4jQ#Ccwl>0kyth@>i4r%x|ZWI9CCP%c)3eJVTU4FV@8Q-n&YmL z9QQ7DI*MHn=7&Hy^LF21d$AL90|SE|TJlw`k*#QJTwX(w2_)l+>a9)1-Mgk1i!dyBhmQf+}$Z8Zysm`vDtk^J<`ego-O=Zn&M+uJ6lQzaZu2tswu@VN`BrMP?INx_;|1yd3sJskgKjWi*Q>0 zNq=tm+xCn6SS%&C1nf2!ZrerlGucU}XSvcm zwbXSYf?W2Jc#(@nDZ;6xlFs5c+dYYO893wwia4x$THCUISn?t655{tsBk#+JGO1&_R1@l%Gs^Yh{U==@B}*o0mTW#@T_pX zv4(dsj4Y60trrgQi0?|PJB7Ws0qvvFW!Mz4Z<46egU!f}`!7L|pdW5TG`|^1Y4vDv zvQUK~NdWT3BdYq7cCqPV*4u}&H-?ouNFmv)Lxu-1P!O2a#@V;p%ese&5V$Wq##o`@ zfzGJijlb?Ys>yBH_N}NIx!LVft}2e)<+#@2m8DIgQzbf(Eviv*I*13T6Q2=G=R$R! z=W+(wYiJAf7dUIeSD_7aj-Lq%6)-7{TyHx>5J>B}CHu1A6)|AUpj>Ku+R0YEueh!o zlXLECYgdbSGUmu+>49x#612+Ot+){CqC<+ws_K-7Rq9nT#otxKEsogz-btdHaMagI zbp|#jw4q!lrk<&o6L7nSQ-3m{C4x{6^dN z49T^It}UfDyM#x2N>hoF6p)gVC`~iZ8NQRJ0hqFq^DTia`UngfUh zptSmM{X1xc+vQ#*$x2-LD^|6_dPULE)IwhjscuD6B}s8oCPPwF)6+#{c^YbWEBU6~ z9Sw=md`L%dLxZtIQWL^+?i9pqWKai4HAYttcc30WT}oWsmswU8Hq_UgxWJD0QXIKS zX)~fmY@VIJsL5n5GEQj)B}1ByBty{~Wz+oq-Jdf%+U-tqhiZ2+$pAo@0MzZMuemY2 zzTd%?11|I+P1Kg z99yU1+-1FrJ10jZQ#p|}(&%YxoX)DBLGv!pa_}JI3-R_yz zVJ<>MSBuuUiVBAO%WH}&x6ci0)g4l!=~zudfFlvjjorJIh2g-cBo>l02NcX96>)EQ zZ+i%lz+-_Kq2fDG)6U=Te{{BC==6GHRJ+z>@+eHX<#@bV^23t#uN>t;d8Z>}Tr8q|+o(fBw zc*{hOXfARLMkkkjCrgT!fW$v^5$z_A144usL{2~jOt+_+{P5o{ItY+uFpQ{Wnbbg#g?gXRCy(E zZeHoO*&p0tObU2n8QYl86{F;Y@@drH?7vV0v8A;4%$H#^TK@2d))OAmwb173gZ^Y| zX5eIIR}I5vxT`)1hc(A-)B}k!!9Ex;?amSKM>~5DmhbGjTmF3|EnkszXSc*XV;}Qq zY26mIEiByq-Ht+(5SH&T9){bl9JEH3q?nTEdA7AD&kAnmYEFxdP`z?^Ed=&B_)nmb zL~Uh7jUM0GAo|8*(^59p+sNuNw%tLc9BITjkA|cbCllHl;i-fX%u^>&C_+?O!~Xz| zSrz{P?@Z6{7y+^=w(me5D4&!|X+7dUDk-pZq z=%DW{`GoGr*iX|*97D||-+tVdn$#AOl=WGnfA1e>TTNH|L=)kQShu(fQs_CIz_@zA zK}hn6{#gg#>NwVN+3_UC?jH1g_>aV8?YOrYTg|Dq%Pwx4i^y6Qv8PF8Nmu(S2Z6^N zfv-JLeK7^Gx+MgJ2xW0!QhF;>Icv7qSfIE+6#c@a+|Zye=1V5KqQxF}SwlHrJq=JFi7@Tk@Hr)?Hzs zBRJx;Hl(PhsFabNc;eN#h9aqYVsOcL3^Js$O_^s+_8tqQGorX>%&lXcy=6X zS<{ipHsu^_d22z`M*^6k9kpO>Cl?maw_RzLO3N zbo*s@%Zp$P!pW!#CQavsH+`hZCbbPSoOto4@0{5dLT)kUSYJ^9u0jIg>a7x#%4oS6 z#i;U1@vu9k&6(4D$21Nkg!Qx$=mwyCxp(r2aO}_2ai^D84i%z(!E@p&3|LZLkt8?+ zOtsTLnBuBZfC&|;#NoTz8)+nw?Q2^Ti8!DLb10P@#UYWbYe{i%LFuf&*(R2Ymvz*% zDLrWjl-W=;TMzB`+-2s^@wDm`3RE&9980D_ZSLe;GkW?AWP{oW%C;N28+%YVH9bzs zzJpu#&7$XEvKbKqA625>Oql1Q@mIEQ)T#o79}+=0?^XbOoFgJ)W=IZ09FMlS{Ib21 zy$blw2fnHsmAwsxg*2C7y!3`p)Q+5lx+6GSSaqc&q>A{A@cWwC7?KT9l?ZWE%|%RO z+^PyZ4j5-yBHyqe+k5(nGj_`nU`@7Ou69Jb4Jm@^t?yXmLAqPQ!jPE}-*Hr0C{k;} zxZoFkKV=tQ$md%%ke@KH7WjMyG9K092{??6ZHD7Cn*eKNCE&C>9B~d-p28?y((E12 zezj?zWqp@ENe<~}Zab?;ebCkZ=_EKx)PkTykKij&Bk=gO)E}3ZT|o?Yb|eu4Um6kt zDI?stp56;iZ9PLC-siVfoDHr-vN-g`A}F5zsO9j255p6M*Kok!56)gf$! zAH%2uamV*=klr?T6LA~b2NY4*yt@{*wwukB>p)|gN$tj*w$FQer?C|sxR<$a!fXPY zebGMt6U_sqARV1*TYbJA`88QAQk;6Pd?jn(Mv28nmE-V53 z+kszqtQy$6Z}lq<&uH7*n}6EOB=44{A*XCec0+dc?a5}|^5#T*Huy}E_*z3n(wY!) z)ogz-VYIb_aNlFm^Nn(OYV9UBX*z+&6arzXQ`*$7iW?(X4j>*Hh z!5ll5oMf`b(il;^vmTIesFv2YUKL=4BHeOkLR@<8L<_Se4f-#aCX$wJ5RhJu*h(u! zF!Ge5Nl>m;du$g!B-tU5I1>K=3&t2o;e(nKdRpZ=?kj(CvQHSN^G3werYg3^w_ z(YRi8RM&e09eA*&zj&q4jN2R5cgvicDa& zD>W(Tr4B%l~#H7EiM}jcmlIAar30gULUFszdq08AxEs5U=Ej*4R z*PpRFX?$5s%dfXmi-{F-Gp(*Xwt=M!(H;nSu&z}ep~DYHGbQ*>h-L^Nj_^>5ZPB@y zoVn&bVw4pc(Bwu$9F0eaIC(Bk;I(bD&i~0}A=`*rm3|>JrhZq`KG6w+nqTwI--BZfVJB zsYwGcbI*u8G3DNt@O7j>f3=g``srK9KY+M#(9d|Us_xpm^Sz8iY4##z;(U}WrX>lY2ry`S3 z0p@bUjC*8mrVv}qQ4m^D!7Glml>i6?5zKwwSW#$rLqw!yRo430TT6JuipJrxLbxf* zovuH)aiHAR+ICtSaV<_{qEZv2{vAa=SfJi^Ew^-ut-6Vhagl*j!~rN#*^ghMtZX+6 zyEm6xytHX{95UsVWj*iuJyHwv`+t2XKBXejc~C(klWbgCNMUL`2UQIKIH=>8?;n+< z7frKDLC;J5!NU(&9rdcQ>ih#QnTIz0BR^8rDQ?`I^6Vwm1UY}O7T4*oRoh&&ApZab z6u7b&Bymc#pFCtDyXx+ap93^39r{nuM{!EKd>bbD9v)lIw0$+UyIubP>j7dwk8kcx zm};UMa`S1TS5ZJ*ej>D{r=2u`=Z>GS{&7bAFz>Nr#zuW3{FRd2dLl^HO9!ieRo_9a z`LcVZu=|A(xqDA?+wNg$3Nb_IYHN7{LgP3?xp1fy$6wm_?W1~UnYK>J2PFZ+`llMj zUG4XFPSbT8nt7%ky0B~G@un^^s42?4bn!nN77L94wbAu`STaQwaGDfx{9pT%g27gd zRDS)mw(jO^rtxf#CDNKEViFmi)>#xvYzGKWAgxLA!_1ZOlK4)SoX8DdSq6+b&BHeG zQl6!%D{%Hk;}=|ww>38=1ymr-QW%_&KY_RMj`^pKg&so}7W=c$_cf{R zphH|2Cw67+EAOgyb+&!6^+mZtlLA5w6wIbp%Cg`4naL?HzIKc^Ey0KK$=cv8e8m43h22iJ$15v$usrKms@@$=o71{w-Q+bL zV5{3e{{Te5rbQKIkEtfV#Iuad`}XN}Qb}Ca5tDEp%zd?K9fhPVRv6gxVyGgOG{7JRr5MhR0)TkX9H70eN8V?w=zk&O!W1q${DWeWBRg?s5tEP#|NoG?M57KoIt;JD*Q zUckzQbH_d-A~Ve8g8)0ZC|8buc^_3d`5Y*x3L%wqohg^?=U)*_08_ex*S?fLUxrvp zCR9qb;lT3aQT-gaj1CleR|oGIedFpF2irouk*;*Dd_MYd1J3|sjUH9Z{AxIGCchD% z+k@<)&Vx!Hk2>#u`KZlU`U}c>h2R!OB z%<$*rGv$FqwZfX`nWx8%Yr`zCCi_>Ddy zFr>;9G^IYe;lWF)Prk@O*-oiy(h&VXrAp3|MALw;GvSOE<`Y_WU|qrWf76Teqz+Z{ zx=>d|YH6e+@PL7u)R3(uMQW~UuOW^!hsh>3fK+;WO>Tilc#d^eUKw<_>xx%M1CTt^ zpWlqt{BB1T(kj*mG$78j&*_)7Hf_OjvhGW&6#9hc6&-~i%LSECDPz zT*r4Zlc=CMVaF<~-**{cjqpc?0Z)B>K;F!ylv$c>G(%B~X&h*Tqy&$v9;4}i7+&5@ z1KC`{>lUvSs2Ld7twA9umlMz9U)|?SEvA5^%E9G8=SkK$=flUx>%y}ON(Txf44mjt z6h4{YsX)jrE!Ax(R0 zv#d4}6q-?`OKrDCiUY(SDD`JoTl6;5Zq0)0PU&osx#|mKYrH>r?JoedE}cyT^R4VQ zcN?6}eDN$Y6%EL==B*fdP?1%yB1v4ijje_hqz`ARbf(qsEfRn& ztUO#&0)bXU5z{|1_9!LT;p)znkIdT{5i&8)K^bukVi^g1j3f|21qLSqwO_Me&GQf2 z?@CVMfPssGDZpSHGYOtU8iv^WvD;hpW-ltV$J%@9&g;eYE%$qF+pxT~t!R0gl&jss zmWHjLx{iTA@7*+wJn;-4OE>Dnyd=h`%j@A(oV~4g?RlGfu&MjKifzF&Zq|#; zbUQv9Z#hNWqeyBop-Kw1p-D;8N_b-fVdiYtu4|fP+Kj={M(|uwad<6gIB^TzSB#ar zg9LJ;XAMTVrvjM*7u#1=nr6|LY-aaqn+fDN3+QnOLZ4VtYGak@9aJG;=>%#;DN5ti z@pV^3^tRn$x^(@dR{^o=)Lkna*8-uSBlQkAj54fs#kT8lJeJo*%^4;H9^MJ`(4qGU zyHkr*=F+6VxsPt7G5)y|VmzYL5&=U>LRt$|6{yhywZ?0yy7t%eGX4o9+r_T;tTrjy z=_D^{acN^lv|or3wf>=DBbZK~K+ zB~k708GZp&CJU-6c~TqGZCn?SbvLV~q^r_W4tQ$UqPpJ8e6*W&nkMg}O>xB8Z63!l zk5|3ZhxsgDg{?sBN(HCxZuYyFocnEFQh1J;0a7plq-rE_&Z|!N?^JBqR##<1lKdId zM3%00_2+7t8Pqz}7Jxs`X-aLxe-Jrp$65UE>sD?3FK4#(1*We#f$q@vy|B*Dgf;8{ zJRu;EQyh&_^uE;Vox({iWB>p{H~?JJnuC|=m3M#l18>@_+c&s2xzZtg$}C1B+)*6d z>~|=V+zFKu^3zLY*3|{TN=Zms4*`+Kop(E(y2fpztE?^`Y)hi?HG)=YFB-$ts<1Bw zHO{875Kp3aX>mBT1#rhB z{#tt3`>NTx;m!7vK3y{1CHPYz&4kjOLyS14%9I^#D-6Ftw$>^smmGNyaQx8Uw{6Pe z5qA4)i+LWy;ElwVIRlZ=gbvIQqP1schTbMPus%1m5J4k9PYjJwyZdk1_dek$yGC`1 z7Wd=ZoqhDSBh6*U5SZZ++H0=#M;9QFwJiZE6yR}}v)(qYtLiB2dh1lrjELKC_T!~h ztr5i5D@&YCryLJuUE4D2ZL}}jNCCjRNIX*Btzv~Z=24yVsI4E;w>wl~`WBfb#ITmMAr2Zq4sa;caV|V6 z`K`CG(|H`_(75Rfjw{0)K;wY#t3Pk{n%KKiU5zSFxF|CqMw2nv*E=igrA!q*S<6#t zQ9(kzKvuj>F5j@pZ??&|S_c3mbebIE$42B0A-aGhct?6#ukB z3O?z#7>>h*XO{SnA^4LXg3r2ody<}<${v)$bfsjWZX_KgUOkWUcHQwaa_U(x7%j_m z6Qx6od}ZsXE4Um9;JouaO(Rc{xA{)i2_u0Ef+AoKs=3>p^5*#ObhIkbur5%dLy}s) zw+<=1ytwL6g(BNMY@%PdN)P5Rtz{|oC0Ku?I;{0K<`d(V-pWYW(pxC_&XeGKT!89K z*i{Bc3LBQ)@*5a)Uprh#R;kmDV1-2O!yXlPTR((Yi%v>f93eubLrLLED)W@;`!ZP=w4c~*clMhB2%;ANV&zEthmj- z?{-34gY9I5^%B}tqDY{oc(MGy>A}{Qmm9ZNZc{ee(V!I$21b+cweAhmq~;n4sN1&Y z-M-zB?N-b)NL2z5(m0lk)MT{pJGVPd?GE6Zbcq*f&>ou(HNsWWTdP!tO50;pmwKsT z4=|xsp|i%Kxaf`OPL$uanIB-^I_5V$jdPsvOPhcSU4SEq9kpC{OZ!>CnHa|aNC0Ge z26*sVY>Bn@#67WV+xv%XSdjcCUX;^w?zdq|NkSZzG%+<%C+Shr9U%#+AC{c)kbgj0 zS#5B|x-uy5BXf>|;#HuaE+OPQy)fb`V>c^_Zl5d(r( z)-AzsBHFBxqouZ@b(3+lH*r_Fiy<)qa$6RJEJ|lhN<~OH3^mo?F$LYFuY_!c{di9G4BVVaj8bcvP<5(joX9Uf-8;LAO8S{L`9j{Huqd#fHUeCg-}o`fIZcR+>u-V!_1VL2H5WI1(2Z6T+)^8C`2`B5Xw@7@a_# z#33+gPC~Cp&g|PdZo7AGE?wGmDXc$n+j9$Pe7c8|Em7bt#+Yp~5&x>g7WK^{&u+K_zt+HslUG^7IKosjjfl$;_$5qkxgLIK41LdO* zBQ}6|J4>-_fk?qdCxt|k`4%|^{aHWBsaF)ygzHYPrary zGtnWZWg-|3#E`cZ5`CIO11{ z>`_YW$?VSSfg0sze%WN4wh;Z^lG-&SgwSIlwD0?T zk*%byjJPa>BP3}=AmQ+-C~_Desn=0o#PZn~T+n@_#J>`l{YhPHNo;-Z^vKGHSa$JWAK zbwxo-pm_^Q2+R#8nClys+j`Budrg($w}b$~_cYc9P2$5+%ihpFB{CgSc$+uW`2>)+}woaDwx4+n;v0Oeir>91gVAnnMZ=7Mw!DdSKGLIHy$X zJFiD{vl(+Fmv?t}5ea0{!Q*q#v|{G@WE3ERh_$HOrncR09pt297C5vO!Jucr>KUj? zFL6NHuE@47(PU=S&9SbDiEMQ-62yq0qB5aetwuA-h+0_>Hc3myoB%b~^oLHd`#UYJ z*dg*iP_am81da^ksisNLtbcBppy%*)mGHICc5 zt#1~YVas%fV_n{Hr=v`Y^1xd&{e@XZLlX_wxphudy-sej7ytn zwnL8CV^n4X2~u227FOtNP|$?qCof*_J0+AN-rdi&a%(Li#yHvlK#W2TDpR;q@mt4t zJN)McT#tkjKyf|2oC4Eq$#b2wZdi6L%j{QmR2R0aIO=*ln3m}6B}#s5i3BPf#TA`s z2TqO@7=zUk?%hSUPkCc7ZS~BNNe_t}#T$`P)cx4jXKSXV5lLtAjM?KmaHE>c(MnbOao4rvY; z{3if%%;D-a7}~amr}nF7wDOZ7wk%OYP>_d|tIEqyyr>PSwKnol^KeSNG*t?-1cQ!W z)*Ee|-ov%-#$7TtD94l=tIle<<%F)LgQScAC`nLih^zXSu9iUP+`lqOOGxSKGBIK*bbsx#-q5TCC;Lf zkcSCLN{BxUYC6B8`c(A!-}Y8IHj>l>Py{%pP9%)#$7bI*C*C&F;lb@gi2*_m!BbuP z+6QNL);`tQQ5jn{ZQLe^(xoAnpKNW&Y`E!pdRuZ^&bSn>!U-oKi2IL3-EO@+Hm!+` zb0E6arOpi`c|a1S0dXZw6_)tOH#2#B;tS$M0aM0E!m_QbejIFM2lg^&|U>g9}m#`C#t z5jZACGc@8bgU(D}B{%7|h%pmK*AU(MsAW<}ps~*7@>8CA)L39XFWAV&Wud zau$aHq&ZQ35T2&Az}6GwhPAEITYy%QGb1!bO!2E1cq%QKQSNqolHc4?8B{IEAWKNM zT-^4?JAv4-*7KI>$x_qQNKS>Sr5OTD&ZxYxv+{3kK^yb@7Y-V&&7MfE(4D0c)5@}voQi>#_0)=?-<)0dw4~`5Jq9TMsR)sdSrER#9mm5$EZD~AG zv?vspQQ(70hIKTj1422DRUZsGp1MUGKA*D&fhdIyBAn^>VD!6%8KY`=gG1sf50AqD zf-|I3bjvlWjL3S=iqZ?2aG79K5>2f~w;7pQq*iLBt9Xqk;IIrjIaewC+V znpn!Q#1WTg)ko|t*SH~VyGv|65^N~Ty2OnNb1H1J79H;A4l@nSj5?t##$gE>npX}! z3)we2*lZ#Iwd@+e4hVs=J)mkFfCDNk>u4Qt^5qUFRAY%~Cj-p()V|}pSe$LX_S-Jr zsIwe-=TH+iAZ2k~WlIjnDsi+0sAS?&NXDKW@&Tc@40{NXNdr?+2vr$+K&T%k;i$&o z8Dpl zWN-%~ooWvvIgE5S4jk&VQ*F;|+Aek*lt&nLGA6*5#FblQIS8$#rAlxX+pJ}&N=Wr7 zvadW-?i(iEcWW$iMnQB>Qqn@;yb603pNi^erfb?&91bCWr`uGoW*vT1J>atLms7U( z+X;M+!qi>9`zQrGH7%y}o>e&G9WMDLH%>0`c`*g-5s~h#KJM1A!~nxv%6GYIc3Q7H zp3`c!E?(bqJ0)^kEu?ysq$M7B?Dp3?g|)m+k^?2ShLGlB zQ3haQJxN%3Vz-)CX^=KuMMJRTz~xXmGNN5#$4$OVQe19L!EUyN0OCvUm4?a<6jqR` zDuW_1D%W$hosDB%;sw|t%$zCTCP>^%h6E2_s;_k|wf8r+rMDY!BV}&()TY*zgse)j zC1_DeR+XfT!OUZvZ?0?lw%$e%L5kxq-eq0bf;PFq!|!AFIKy`3Fpy}PE{b1G@ z8rx9v%^oc!V05~%a;SK~4-P>&?rgU!wrr)%kePI@tP~`HiI*1h#*}w=v3rYrL597p z9vqhJSIy+>kkGV7cm6eYZsdmHvXr4EEYzb&016B@)ZGQR@0QWOYil0JWSEwy2gdDw z5!sa<(ZAc+O5t)yFJyS<@U=0lQ+(K4%Vtc~Hs5u$Nsi~`yrewBn^^oMnM~4(9w|^G z9CG`ow~d;Ay^dI=X~3Z#rw^jG&~8>Y%tn^IgnpP*{{U$Iq&us!%WTYz|C=WOflr`gDgX+B~AJ{d8?vBSmdCZJvP&e47~#@{MK#khMi z_g2rd{-(CW7R{qCdqaP1IlJucULijayLPs+%Qq=jw;GnDGTgZC7vhyyr=TH2)mr1M z+kRqgvD@0oyRh57>K$z@SF`})#3ca*Lgb0Yu`_hV(UxXeI7lIWlBm+C4j7@&n$_`Q z-Wz{%#zft_dbVDpFEH)4TQYp~skErLf;obmv9+_^EO!XRwlc>oXNz19vZ&^=p4r8h z409YmSP@c|By}8bofeF;H1!X%n6hKRa86>PmLR6>mavVpY~h=?qo1DOx}F|5jkPD? z@$=Ou{KwPRWBbFqoBS=Qi*k}bikVWN(~l9$h{c$9EJZ}qO!7A6no7&@T3w=Aj<0uS zT3{%tMygwpQim4cp!cyb&|Cn2*U|P8e5-HTqZkaAcY) z3y4FyHKY=QskLxZOaA*y6jLjw1tfwza8F}inu4ZXoyUiwfFxy349QSWNF?c> zGC;fD=xhG~#Fr8)^-~^T>1QulMW;VDPjjoJ?;rUK&m9f-iu%zV!JrD7kFt9{{R%xm*ZaJjtxsFfpY*-iAoV`J(x%4Th3Q*$Pi;Gr%9aFOa&2pHn$d9_S&+u1aVT2A921Ut zy?$ElSK6hsF1MJT7_ob^9)swuEss>*+W^VZNXI<=d3!xIkaupy?jK<;mb;YOnxnv* zJh5!OS*NK9knD7I*4b?(xeU4)%q7$Vj#;~Go8Lvx9P>y-FM2jcJ2EjNn8Se;uC%_} z_xPV18Vs#!mbhfT&sAxD+y1!srrVl}W&P;;zQBZ|qV36E-ssz5y-pxbN@(KKN&?^{ zoNYEg&5g>&Un1~}t4;;@JOszZ#P`;I`=hO=kIjK%opKnr)%8~X?YHWSwEf9Ub|T)> zVZ1(spOs&VA-JWQ0+u8=LoWKV0-;C49fM=*&Yj-_Srpz)(H{h!6X-b~ePXu`pWL?f zFJ`!h7US!!5Zj4yDRH%>#3)q@LXxyCCood9l9dDHjhN=DIp*gsnjFkw8zh z8dxPTBm>)2-TSifm#zJ`IZQ0oUc%t5Z0DYqWg!~T-~z=wPA%@-c%{jsd;6QGi@g zpp#I$pK-ReyHXpNyPLwaZrs^<1dNC>R8t)!cohs&T=fRqY;@}~JCj2Da`x2tw%fUJ z(i+~}J(<;ebnea7{Y~0!@n9g-CHYD+-_uS#B$nB2L;adWuXjtdl`3&%Pk2%?5V zB-1VfKNHN15DI-1qG;?GqM?8|(<<;MhsT~&!su6s$y|QE1XKV#>40*fLmVhYKt@KD zsU#e-Nv#GC3MvA#$)HLb*&O3Ce|g2HXu6b=)|iQ?Y1QvZw6+yb(gw$fD4$VIjPGDAu{-_kT~@fkj;X zl&79t{=6E|5nQHT2EJtHrGBB8@Ay{&fv;DFen%|N!z>IaEqmYwWbi&b z{O~Z!h~jas8VrC06=p?v`Hbs>rB{BTT5+ivS0P#xf}#a`tHX&S@Yjjw$c*@m3J8_l zstq~u_>MII{4gl%!|Xm4^5M*7f!RbkP^dlwFS7x_Egg2B4~Or;73V^WG#_`s4}igh zN-i{3kx#S=iqnSyTAYEwxSko(wNkrUO0HJ)q*X@aZUUMA0Ptf2Bj<;$hxds80OB+F zg*P$#w|?pOR?pf^sjaWKnqT8;&2DXf?II&dSKcwyEpWAnaS=24MP%-AxOx4v@2B&L z0;3%0m4U~NJ~>y8LkrOxynXQqM|t;Hch0Rov<)yA|K<9c*NWRQd-*OhL8SLtpf9BQSy z$3Cv2iAgFUApRaCeR<<4c^E2Qa9pb17jbTNy#D}6?V(nkx-(9ha)Bj5M^SKiWlCdV z(P3E+1Fhcr%ykFzB;u)CyMCgA*}#F-NaSh|DfMH}eLIE2$1&~|gPi@}rmK=as~YNu z*+5Xp^7?&Pa8fwZH40bk!pab|qm?IL)68KCMid)K&I5%g=Rv|~Pzd8phFt#uXwL;o z27~>aewkpXRuzm~_fw9| zhq^4&XIOU|);pHc-LaIYNr=o_rre(Uic%bCm?`(Rr=>KYtdihKNYa$lDg zPwAep5J}QE@hnYY^PzHP93t_=TuV+Qkao)*2d(=??zNk>w)t-@DzW8BOW&0-mc0d+7L~2Eg@7nPi(uDu!)EE7 z;r>ra-8i=1R*@)ldUAVMT;{tSI$rQd0m+>;a^Zd%xLOT&?8Zi>lGiR^lmu~55F9Fl zzIK8MwMk{2qSE4R>%uy7EdJ@an~u)!<-c-#I%Fw^SY0X_)Dko1F_!Bu%D682T-3YHemSVLIU}q5FQ2q0@8bFvwQf1rEz(cy3ur_n!mHfy|{{z+&iNt6g$68&|gb& zm8#CC8Mw-n%{@{f0oz%`w}cyN^6U)R}^KgIcP@i^Hy2;BACO zx?AU4(9}!(8BT}yl&D>iyQtO!xnV9c@g&oA_hcu}h_r3FCp5WdVIPG#DR<|1C)DE2T9I@LkdK-G(?d`Vip1fwyvs&Asj@+_kkSa#6 zB#6s!E>cqztlV3rrMu*w{xfrRBlCK-8hGFWxqGYIPCnyTA9FD_fZ)VGRaDp{+k`x;GLY%u%Ev z2ON^LQQg6FWYc713=YI1733E&+g;yKp1Ls^%S_1g)fr8-CS(ZB-eJ#-fUR*-RO?DZ z$Xci~;HoOP&u&|HM((zZb0s#{F#ufXA$7=+pcQFXgvBz)g+FaA-L%BHs>dn^I52{E z`>#7rY|LB)W+KE>9*7eb|<_8g0!wDf>N!! zc0|9L&y^8y)b!qiPs4=RkupqbgfVb=F08G_wG_4#0SDqn8tDGG>#29yFCH#sx{>8W zm?IKmrLTXN&jEluxX`??vKH-!z!=v4vY_Sy)oHlcxHeNkbvSKv1NRE0Lu!l+_u3A%_7-0LZvwJUsRrxXi17%32~+MlKCM= z)KZ0MP#|NbZQqxh3+57d)G~S3=X&Q zMu`}Ku@jjE3OFaE8fNbMZQP(9M6zlw#jZtnpk^q`=WqMPyKlDb^C5k|vx_sH?{4n7 z(q6P~ISGd=sSXwPWJH$TM3&N~O2E*jmNj|Yf7`u%zu#MRJ=w8-z+d1xnEzmChKDM zbKZ)J!x}^J9o|ir!^o2XFzeX>pqOzIO_mg=*n={~w>Jb= zR~`#@XQsB}u%S&TQ(oafj<^*mCmd_?->Gcmx|3wzEtuV^SNUx&0L2`wBmnn0bhXG^ zt1VnbY`49q%Ya>N(x07Ubr1;-dk9mc49LwnRKZiMtgcfQr&tJPOxD8+l7%5kj_SsS zA2dqSMCnd+-~q+NoAlivT@{QF$zvq1MU^~55{Mnc0Hrupc(s!8z}ylaq+*;8G3}}+ zyOJy(;@@yZ!s_ngQ*GO=_NYjaDhgdg$d==G2H0$f^8yldw&Ie7{{RrCc%$o`=VrdM zx87iqW4(|W96_!v4g?nm6u^L~s3GN6yFIzq)OkbEjms-L11BMp%^QiP2hcG@$x!3OZ7vN;-6*rYJXFq}z8*mCTSy2JFZZ zHa)Hb6XF1(9emCSm09ikebv3%w@j9flf+s#KWr|IK({77C*=@Q6 zzihWmL<`Yqb>+6xX^ND%;)0T-t1^?3PC5rj9k%;tj?&t9LwF->gIsM!IN_f_|xI46s8u_z)NqYqUw^qRHi5G7dN|3(*50r+UniF z0OI1!F2p^$NN_mdNym_?`-Vi>zEO>llMGWe7!XurmN-(&X8XHEvwODfHv6nMB1wkM zmQa}JanQ6xmbMxWH##7DNstnPvH?)WUeBtxXNTS0LfOlL4M6}W0OSov47FgW7MeCu znS(=|$pHl8k7!eoDVgrCTl;@; zj{K$C>~Ld4mn=?V=+)J8rp}i7Tyg1bw>Xt_J;KtoH|Z)$1x{q+L$vL^UDIxnyLE-5 z_Gw(Mal8S}aS5n2g5ngY3KctQEyeAv){`u+^V$(KU;so4IHww46SWUYhr9#OpihZ( zvB>#!sNyZU=lsglha|^Sam%WR-Lb-YYDT&mf)kcpr+Mi}V7k9-Y-=4O79hr<^DuS< zlHD1ETzPV_8_+&MbDgP=@hXw0E=sj%_UCv;U83K#?-rY;+`R3^V!Ld9f9A+;bQtZl z@NKZIT{mA!o9I{bSYBWx(;ct!->(^Cv%}Nd&9s*HcJ0*^hg00F7~ld0Dm1PwJgYyx zZI71a*Y?kBkx7G^FbGZ<_hP&aTvjdpY2Pts%d*Vrvj!MV!rmmuMa~@1;iE4!YU~qK zEwj{3N$@!8+c)M0+tn7AH@jnqYz!Khd@=_iC|cpEzX=LOXD;@6_UE;eg)VjlFe9^{ zI)e8JSFO#r?eEwFHjm}q!E3uM4?dRGML@$J$`=aVC!8=5fZkRu%Zl@^rzc^hMHHi)J> zt-n1IRv1cEA{lU|9nPTv*O^mIlB$xhYf+fTXxk=^2pJu_0g@+{VuM=_PvTJrY2#Hg zweFqefl7BVz4s*>Afw9u4Dfu${-Zq&CIYTzkOlrTEdDYoywv-cp5WMGBbLO)3-^=38&h zUhVdelR>tQ)ymhMP7h+cNCQX$QZg!A$mLTm4YO}0iOnVLlfvPEEh&!@t>?$GtBv<^ zWtX;0I}{W>Xnw$N7x8F8zD5zzHE3K3Z(9pe*Wv5%1sPYp5 z$qu=ujh|_qcEOE5+8&a)WgiZ{*#<65n%`1+>YXEt_kuTdnTC!a`-tWdUdo1cg47 zii(PybW(K>Pse#>er5a}&`Y3@z@K(>v0L#Gh*OJztBn>{EQ;bH-<%UOPz3(AF2^8n z>=a(m*>_8YpS1RSlQ+l^VA#_uaa*FH*z;85a8`yRDQ>*WaF-yEg&KvW1xgu=ab54H zBiz3az5CYMLuP#Duy~AsIJKw5t<``hfK#1YKJl>2bmnMuu8|l@A}%K^Q$JN)slD1i zlO$WMmba|#?Y^@%i1(|KUN1_7!v0(!JeLE76BNRdN%bRL537z|`uf^#nRT;cbS<}f zuszz5?P=4aiBus@OU|MTdE0&^k-_bdc#B5@aZ%ayR0dCQZgFJU_buMzYibScw<1rq zu5mJ9z*DcrRmL-omly2T(mIaybgx*_M+)bycerDc4Z`*D$qelB+}9Eu8cJ&kz>G?! zI35*X+Zf1ov@LeFc!PkzoY402O0yq~^os|yx-}nhSYzH}$+oir=ViY>#93?JKFjfx zmAJMQAsq)ADN2Y595LIso{whru~?12MaRns+#_iTBN_&;8Fme5&DOSJ5Pj+hk2yf%-8R6=y7tFVuXE%DDGUUz>Yd_ zCxB`H02-ht%Fk{*@;(^o-6#Uw1q^l+*FXT4xXA+twNNp8{WF6#@-vN85$jP6C6x(YHME9D2@ZfxS(p95n8;K zKOZf}Focf&UYd$nZSrl+O@|`Yv#*k_(&ss3xjy81EQoK0x-7_yVK9ZN3u{`Av8_r0 z6yR~>FO!D(=mch72#}`I}Nq(Iya}mMg9~KQDtxLDxC3V2EhBG8ufdxvUtAn!yaK#9! z?!(yI#fCM4^A1z;y|Vsoxh=Nz%X)00n8}wKJebk~B6}BftT`Z6ZJ?4XQI1=+*vGg! zN%siM(L&PaTcnzvgy~R?c9&wLDg_~G;^%a1x}wOt!p9Uw;))33I1G(E+#~-0uWV0| zaJSp$rHLCF!zSN$7n=}u<0={;tqD{|?6a2t0OP7&DIG;*oLBGGGDsV7XA|t&rO-l> z62_cZ1DpuZRN}g_CoE19u<7u=K%z$i-7ZWD@eUrY6y{k90V)Y`C{U(nA&V}S{Kx8@iLZ>^2U|qsYa~ZEQ7GWuEm4Q< zAszJv+f9t#3y6u4`4*HQ4r3$gsat=kXY3H-%-(ieWcz%V8)>Vi)VQR+puB^w+GiAW z=%95a4lPKgcZ@OC z_uIAmq_o@()e;n^Po@p&E?VRl5AZkcLR)l?6q+1$4Y#ejZ*?KCT(y#u@W=}fcZ)wo zQeA9YrJ|W4C8LXcL)ljQG8uia>kl;{q5ra2oUbufoFu!236 zPFmnmz=PX`8kYgcE5|S2_F>IbNNDb&h^AbsbE)T^cyKvEG)Y40)`RUlEAbc_f@458 z94UdnR`yuu{G}51uMHjmZ!f9dZac{%*ARj6;&b(nF}QHc!@S zwE9a?eJf8k;${R6CA^L!)KxtRLF;gwudw!{Ts( zZ+Q+d&R#i40sjC!s6hUyq2@yW0Om0dHkAJWG~w+OF?zW|6ua&D$w!U$;C; zKz=M~svR>;GRzV7{{T(`WO#~AMK)po0K+!wW8Et}s+5&|sQk<}hYe8pr+skLTJ&~4aKM8LDKo|kR0`{dkZj0kF$k0J@ zuMm0muN95IapbrH9~m zuL|Q@K2<045~ZRnprq7ms#{qkAkjviLlzCZf_rC}+`n}E4hJK^<4rk_Y=K4!D>(K+ zw7Uy=p;XiIn-gRMl|_m7QVlp!Kx2n=nQVgTqaz%D^2x1s@bBcG+IR6*`n1_D>{{(} zY}c0>TbAf<@)TCrEL6u-S*lV)5cF5s3PF~iQxds9L~Xj5H8fDV&D0j@VYHti*? ziyv_rF+I+9q$s7w1pyYb_m*Nw$c@8TXbHzIROaN^w+PYI0z+~-Zb?$o+R~~AoYs`; z1f@!$&YUr!ivHGk+Stw`SG3e`De<`L2&q*cc8V3fyJDpD%KmG6K~hQzs@}w$l{Td( z)Cx6z6TqBv?y3xS^=9^>ndIgE!PRxNpYC@6{-b~9ikfZpp)6bpIWF^b1n{9mg4yAo zT4{}5#N>tKW#&5{N>m$=u5a!NcDP%u_ju}!bAuA)6=^6_GTB4P(yk#YSLQY;{n9aQ zb7=+SW;>=bScu8Nf24XTnBWTS=zXRKCB zHPRH26tY}C=5orAs-V(@5tcmlFG}q4b!?J(ZTV3w%@O0I7?{Vj=BF2AaINXxuUWIS zHRsII!d=AbbDBq}XGy!Y*lpXpE%qCp)`ZQ<6@@#h+^Dfu(=w2!_l@r21bB%EZ4udS zKte#ENKF949ZS$Vw(V^V-q^;;1TC4U2o4K0j={Wwpr!2_{jHpmMRMZTzd=)$5wv1? zn#gb2H?G3DhnxA%-?*~i330P7-yoD9!X0T%^_!^RNlC{lmv7#7D}v^E&`vmoY4!1~ zfVr^TBGUa2jE=%TqOTpF`n2v&*O1J8#Tp*!hSJ(fnYcD!TvCugDNOjy)S6}j+9aMQ z8r`e&JE*qlL|5%)%s~f>!tdp|_v`!M!;X=P@-M+srL&!M z)uNP4Yyc{ysR0S`I8ie&B&=T6;yqc8(n3)k2NoYe!}>k6b98m2zR3?Vs_Av3tpp5} z!!QBJk^sZ3aFM#%i#gIuOG+H;)!=yj;{nN-#(?dnIm;sbW6aS|@0A(SpxQ_@;7HF9 z<|N)j%S@l>Q_aQ~_qXY(I-lz@W4%Y2QZyD{NO_=&Q$RzN2uc3{4KZXMbdU}S$Q(P5 z(3Keoa*X{|o(E#KM%UkV&f(Y>cDBrF^F$_%Ofi#5*3UPTH^I?8i*_kSB+nt^77)v))R)gg`>rYa1BGjb$crMjdYA0 zOn1~`K1NK;L5!sV_?Cq^M%-)>K%i)OV_?ge$k z#8e*;d4s@$F(~uOnKjbr9$tJi!6_Z|d4!}laEVZ3#*&8QMsn+G>PLAAb%oMnMLODW zDGDI)BxG>i!4g0slm{@%%nl&bTmq+-=}-Dt)~uoe8uL#J5`r@Fxm0$qQ2EG8_8LS2xl=CXUh)h%vH%CD`(I z2hqUy3SAmhS;*_clEk(M3hFSh;0fVX0qa2U)CMF+ByzQ5aC3VK({E#%Qb0khmHNT3 z%fIanu854TOSb#m*^6nglC`#N-7}yP6sipJsmmP8^HR=R-KN|`-9?iUotjhGTCR_{ zZMEdOiU%+cZG7FfSZ=dq%2X)QosDctCS2S?PMB~6mLt6_%|Iun*?l0MM2va<-*35^ zM>-a`#Tpm>%Txk=3tcX2h*-g_jc&ocr3p%w?_Q?R-dlrhw<=7AY&SJUg+0&8kfa## z-|8=d#w9tE-ivYYq*ersZKcas8$Va<&<|s0Ay;B=_BZ?x3&KO zs}AS(;4;O(a6Nampri{$>1Jdi%6}7SQ-r+ERm~>2((E6YyY|S8hGQ%NJP$gWoPy## z6;ZhKw%>fE%nXzDn}M&Qy|Dds_TzY}CBJww=FGaRp(aa;GA!@7eKbqJbs5yG=tUAZ zoOZp7^J8M%%VFGswYXGV*iU~CqOhBfNA5Oi`)|IB{Nd=WuV}p5udv&=SuRj+&|XMe za;@@Ol+jH%>Sao%UO4I&_b^>VCbfGdjO1ED9?Ho}6XJG>n&v!kAwBf(#0*MR0MkZ< zFri8n>>V8e=N9V*I?i~`1?&%*KMDEu&DdkD_n4B zCdCE##8!Z*X&RfYI4A>+HJ^59<`D?u?8=Y2>*2shP9_0pdRD;^n2T z3epJdrW_9(>2pogkG{XV3k7ndoUo(9F_*Vp6mU_^qzUsKQ3aNu+}7FKw*UmDgC+fry=3R zNAAD@1s!`y6v~yQI8+l)JOrU#Qb+{TBTgJSXO>jJB8v(DNw1j$FC4)G05s=EMil0C zWHQg5Kx8;_!pH!~nJU}(4A;9NMDY{b(=uim$ll^#0jwmvqC_rR#9yK)-a^ySKaaRz)Cs}3Wa+CNh)~IuYEov!{LH7NVV(=I`$0XLc7c3g^)BQ3g`4;Ae5k$ z!ako?4;;-B3h@=Dcp1>Ic~p4)Tt2)6qpow~`=~Hfl2*A-0mth4{O|=8bb(GkR}9TO zJZphUMXqTad5j7yQn^YW3Lo3c0)m?F4-@17rARfd1pq~MoT@5EhwiT|3O+T^Gw{e@ z0pe3bofwiUoOeq#<(pfJ`{9XfIbK6<;TjS0O5rdaHI=)mg0C<(>0HX6vOtz@7PcKMt=~bNS<52bo-5Mi$W5MWF)46 zC}Ai_@&Ubw;IF*3Lqmf0fv^ix?Khx!fg!It_s;9gRCH;qY zQkAFMp$?3J&sZ4)#(?7!`G7y@FFc4o(O0_xE!+npzUukMds?KjplhT>DniR?0jBzi z)6o^Lt4XP#%N%Z1lHW_Q(#-jHR_Y<5MFWrMwNKoNm8gu7Qh`z`ssU5L&>G_-cCJ01 z`nib)9BW_xnD;9d=(cFUj-oElwxp111FJ~_qN1eZNz#|Gz+!03N<~obkh$gLeyFdb z`_1077M0MANmSD0;ZigP;irlCb{(b{;n7*I_96Hc~{}# zfkw5I+LbCB_p3_~U~gU51&GsPvvbzf*7s)U(ZsVQ3MhT(u9XcVL87QZ$A)?e_S*8+ z>MfUTw%j__2C>c(zDV6HSmGsJB(BR)9kt`>3EA%!}VQ zJ=43}wOuxnV8)9f*JQ%93A=Xhx0sIbPg&U!9F8R-8TBlbD^h&(#~<4kP&M}6Pyx_U#fM;P7V9w(Ow-au0$Om7-a zpb(55RlALqo9}~f3%*#K24nU}aK{cDDY>n~z59o6owi}v7jN3&du#R9WwD}*e8*GN zF|Dzmcm||1s3SCx-X#}L#EON1*SmN0&C9d59i9}MZH>0qZQL=NW#!6*`6{_xuXi|(;PK%z>) z3INn&zW!YAJxBS6Z*$UnwUxWf84(iD@ZnCB z#W!4R+g*n5Yqxa!-!AJJK4rLXl-H1PkzC>fgMPzNuBjVU)brcRHRD5IdvK7QMZdBT zVn1l&D$BliTex>|ZgXsxC2eVF5$_6e(zy$@Xm};)?=v04I2KY06bcTXhA6Ce9sc)v zi*1pwpQj!SbN$hIhY+MOo;PU=+0KqwY@xSwk4E0+&k}0GnF)DOGc75_K?`gY|eU@n4Ol7Qrs^rpiwfFKC`ij3`}6+*q9NF3w(ILROFQCtj#$Vf`B;<>XNdw6;{^(0 za;vVA-dS+R?AJ_VM3}MTgZL8Dhp8%iwr?`ou-h1&9^tnw+lDi<_SD%|DA#G|h_c(R ziId|r<6i0^bP$z~z(71rF#Rdld*06gp2gQTeK9(PYD(~20rMOLZYAt)K#5i^?@6hgb|46S~>SA-oP$nV_3ncl~*7ISOFM= z=&Q44?PYB{b1foz1$nyb_X$;%pPHCfzNzI#=?yRgO)r! zwFJaE~Eeo9YUNn{_yk08+H7;+V>8)wCk|qH#>GV zGTshobDgVEa)aW?1VL8T+syFol5J={UFBDZIAPs|O6+&XP~n+2yN%Am*lseIcPL)RIna>ft)moiR0QHe5y2`eZX>sz zLjyzLa3BZrIbpKOCRu4oQqcSbx`iR#8M@h4 zjRcWU4l_TPcK17m!8X-1r;X2y>5>q-lYws!+8HJyto9!*m&~|sg3#<*{1dqQs+F{M zV{~5oU^`_Ox;JA0&4Ve{uh5dI5Fs$}az(n{^mVwag{o524u@2gGT_V7X^wHQ^p4@w z9Ugj0+jyTtBo1(vFsy3g#vDu7PXdLfvak0G_%_|xZgN_%lF|WVz9L3$A7#Us%vI-Z zx^~ZX%a5`qyJy^ck84`j0(2{_wUI4>4kK_T%Ty`sYD8&G5<`IW)DA|Xxa#&-9WT8( zn-#&1=Ww!wFo{{Ez_Fo@ewP7*fFuyDGkrV1ovIt| znT|;3y4%)UaJWrw=Mo}nx72x?>r_F1Z2ggUh*j<$uiqCrw< zX@_5Lu=N*CwrL}fFfqlhh1$RX0Chx2A;mmR1aToK{OhX=vm4yaN*7o|jzlR*7lRc z&=PQ5_chFTENUcxxQA*OHQA(*OcxtLpK@o#BQ#E}Vdi}2GemL7lQsu5nI)JI8bKq8gKXRNl(%IazNYqk-$h?>|W zZY^-spg00_cur>mm2t6LL2u>SM1J|sSG48|Aw$O>O-{C5!UG#KX5RMo?n`#zXNLm% zn|e(5AiBXCqu%V(*59`sO+^yp6(vpABTQRumb*6nZD(;CpB3aWHLrUZ=a85H_Q*p* zVndj?Dy>v*5lqXuW0`=f$!d@lc(jcBLE~0^_VZ=8vecRGLN=R(Czy8OE!3_8km@uj zEs_?*ggn!v06kR{s3aV8UZLIXwmWY-b!%qZ=8s0QNoYWdTEIaL2ahCGs%uy!noTh3 z6E(_%KUvD5o!ho{a(2(#cN?zixX+N)tqpDX+bM-6KIaL2ZL;fD##~Lksh0O@+LTHh zNE9_Wgw6+rCG{Vv`b+uM1GTizoNyL0(#!RQLK!c?}Jee22|3WY9mN2Pkwu|cRBD^@ex zDZHGvC?tK*jO)-*p{*nZc|H>EcpiBgyScM#mT5?Z#3rGRqMv7o9IDr{{IUer`<%=B zf(5M}^e!&rl883A>Q1PNZ0(dm3^v0p1vb)~rl63rK{dwe%VWQs9;@7=aI|Xw05(8@ zJSpV{gaBaF&pM>Jk;(X23^QSi0-SO9*E5-3>TYxO1Gj~}DwVcP{cnd8CgpCmNG+8* z>vv?<&G~)3vNWo_p~EwPL*XbeIF+F7ieEbkbP@Jk zM-DvkIQCa}TBYtd8*_4OOS{`rEO=rxua?_=gk(W#L(*6C8#_&or0ANJLQ&LRX{d@~ z70v$s7{=R5_#$gSAT%|)K`!w$GBj5Y6JZk7hBvqY-I@Byf4IH**nZm*eVbpHUCw_{s~84^z&O~rA`8n?DOcB8iY zgjh&sI~GS-hZq;!klchl88T4fWhP3GO=@?FjY@$z;oaKzV|C->vH~bANNW(dhiYgf zsV9ydwNr50_Lj=>OQgi}2va1cy~k#--q7SW-;r&0=QpKbpKef1(Urn$uRb#_X?f+z zisMUCn^CIT85(0XyIgJ(TQTOOy~v2R7rCONvRMO<+CE9x#3! zP6vQP&z(@u3%#yFY%#40kmdRtvM#%d%H;cH;_qsD>YH-@e9Io?36#Y46cFka774IRnwu4W_ho0(#HVSIULrI7s5(l zM*^WK*L&_=-7W=-Y1=KAaTSLiaKyV@66NCI5*U3mUYjWhh@P@Q)Y4RnhS98~<%yTq z`|Z(-ZP>iw6A3Pj?r3wgt|i0*NX%i7QVkWQt*lOc+^=DBB7xxqZQG>uEqyRuZ$_?~6Z|;=n8xY9n%ni0?AZ)@uHeEz zU5mj&=M$hI!4aW2rBpL#iSkP8hiQrb00{#H7y+NO)qgT}>c5TOY(5N)Lr%LHvb3c{=pd$sv^dc9N9HeCbspbwYi(%Dex9B!E|kdTm$Z?9 z4q~CqkUjKPn{ADQ;JEmOLkUtPJFQAxM>=C6vuyD0m$2AwyNjWSyhzf`0bGb0;N(CNb(JgXsdL=7 zOqX`>DLxaZ9J5fK;FQ!Deiq_Q_RcNV_TnK-HxY=9Evaoh(wVrfa@#0GmCjMutu#)q z13Yxu{{SPcroM-D+OHbOgFI2Skr3@zIJoQaD8)t#RY!XsTcDYQxSYvwPDzFdl2fJT z`vNSxe0xQmn*?bV`b>)rFB>$s8U<4>5?xzr5ac)%0+h9csE|0~vAe%V^#1iHL~n3w z+pY0vER)JuyjuJP1C;T31mTS>kltLu^Km=xNzF!}xi=igqKZNvavi&JyzMPJiKVv+ zREKEVWJi)Cf|RFMOEaawXp|r%<(@a6_uo%gT1CI@ay`2ohs$#d9MEJZ2ccKsFeG?D zMa0w-WpMc&X(%5u%v2R9ik!Q+lTDXvmBPst+oXQHDXOi`;Sp=Lh{Y<2iRM)OKwZF=xPjF;xxDe;!JpFRhxu1mu+Rk9j58- zKX;m(a~ZD>U1i#9W-8eA9tZ4XJ@_rXd;%*9n0szjaZ0w=Gh0sXEk%4t%#F5P~PkmQ+P4dm_ zbZz!svEAZBZft2#Wib6N5rC5ODUhbaWl8ADh@~yF_>-kWF++p=!2Hg?>uD^VG)}iL z5cU>7Q{9-wS~Q(XNEp@5-?IK66s}|1=Qt2S7;q_{B8yh!Zs*5g5nF|4zTTg>=n`+w zTkR~`E^tN3C|azF3RBXZx2iB~hC)>GWis%zb@b0egDtYmHb0Fp)@YnG*4a$1aTn>B{@x?Yto+`Y#=FpKuKB)Yct z@N&?p6Qrg#Xl)PNQj)+Xi4G=|IJxRhquVd~wX$B>{O#;k5dr4;jEqYbr%9xs9xPf8 zMC2(uYc3gJTO0hAmz5z4k;nq}4Ed!wM(zWNek&7T#M{zk*<#vWisGJ|8hgskr(1o% zeWRsmS_^6kWH#La#v(qUiM?ZOyzf@*g5mlj3$5cwB(ycyA}Ih6h%>3~vMjW8a6HHZ ziChP-pT8QiB~H0+8Eq)-+k`omi)fn+T@eN1snUA!?Y5ZDsi)a#Ek|o#R46i)DJVR~ zJAVFmo}$^u;P%4W+9i?Y@-eC$3tGnciVjMkrb4K#+Xa)$XOKL+r-TxTiE&R?J~Z=f z*;{VWd}nYkY&8m7=wUZYJfugFZjc&lqWniA5bOl0f5f)vD?&I7D`fnh= zyWAYOMB7iaZRxf)<4q*PjQc@Rl!UFaK{Ty#A9wtcy)wyjwMh$_=a&fHLo|d40ckDa zS`E9bnG_Mhb|0y&Lh<5UP9z+7)=Av`q~7~lbUS^=Z_jE)&QhUU0~#f@ag-8Q(1znm zDRs`6)lM|e9IJTf>lNw)d9qY_gp!L~wD<8b$=C3fS52mRF2)kw^;|70ZDGnH6;J zh3{U|Y);cdvfQOuw-i&knY}92GO3c{CA8};%0br}VxuL^AgKx|%vTzX=_^&s~z5>1L_oaJt4QuHCnyVyOv|r zYej8;)pu;KeI~Bv>9wUQfcxnF_70=Z-a{%4H{ezQ#`ACd>9DEV=V-q(7_`zuIm? zzO$EoC%Rksq79Xug%7Cx6`*XJn{RGb6DGlZwBDFd8eF%|Ve(1-63|d|E6YwdR-286 z;K3z~(MrSmt_RqwS?TTWZJnm#H?iHIitKug>myc0J4Og8IVe{5ch64{4JZ!^j4C33 z7kMWim1q3N(L4MY{{V`Ag|#i$=TEPPhwa6px6@I*7|?>SbTgv@st=bhk3Sw*6hvb~ z27}BVeE4VZI3D^*7}6Qmt6k4Kgb1?M29&n83^U98MXU+TPE&k&P3H%VQDMjwwgpc55xhiI3B%k9iIDD}k zwsS-N5_uZl4RSq$xlzNvQKv-gfAgbhJjaClF!l;LH$A}%JB^W>gF>ZJ_WZu8(vg)_ zY@C)Ryy^byAxR!MSh~H0e|dyGyy7eVYmvnFEhNVS{{WQo4<`?#DD~8PV&ClUSRg}G z*5b=)>%npy`ofahT)*8MMzJ6vy-G^PK}6RqL)mX_9c3I^!(|2P*LX--AI}eMNxgz$ zJDsIkjl^O;7V@hLfJy!nnn=tjaw$9r^XH3_)|^4`)DL}jxqN<~RumXBRTN2$8iSD@ zb@=}PNWd*ZgN-E6(rcfe?C|*D&I!(e7|}9fMwMT49jBE|C2K(H>Hg zgQ>DbK{drg_Ip^{E3HX}N4LaU06r0dV1ode6&|{n+v%KGCjv&dAW7nWynE`_+WYHO zmeOuEm(bs^j+Dr@C`?I86QLzh4v9%6D5;<+9F8>mX7&xNFP=96pkmJ!U7rMI0yScZnF{2@=w_A5|9=X00tx{Zvxh&A5scBJCQdo}K zQIG=BM{B5Cb ze%cW#DvYkQHv(6!Ug5&O%T)@s1Li!j(fU(R+9PPh6~Ps8tnTIII_cW5I8sUWt303_ zO}$ph>08BfEp8Ytde^8Yq}VZzgHUSSPmU*CZCiE1ILD$~d`aNRKvGZ?RlsAQZ4=x^2+_B-`QDkG=@d7I@!A*O`G^7-y z-@AqY1Jmi+n|Ujt;7C^-a(9L5XSuiob9Mg!CO@XM?*9PFS~&S}e;eye?D*kUM-2$2 z=Wx+L5%_P{5nOc5gb$EE@nru1nCi{lAHM#he}qw+hi+MK*7=OytgtUh_OcY)bE2i! z6yh0L+DcwYM1fZT6bl%8bKC5%t>5#oM=%X3s3}k|#{=!7x4E9)MwnjaVlq5E)rfn0 z+6ya}E#ABBtR2fQY1%G~F6S7Nx2A4SpT(OREH_m0dM!qR*G)?caTTalbH@nUI!?sh zT)O3peEW7h7mwvSUobhLrEmeE2~s)M+WUB)%88J)cPue<$$_Rc+S801*{O}mP#|q8x<@XD>Gxggp7u~xlg_WtKDfrEmgPNa+ z>Q@cw)A-P=bI8w7bo}JoK4=^&DWhhyMQ2^MKiv{z5={~I3Gc*?e|Y^Rz&%c zmoR;%Vm`6ytA6h@uVb3AMI}+tQ0f$wwCZ~8X4{A=ZDZh0HJ3ALwR79>k-(@pjx|vm zG|C6*l}Q+Ojko68fBA_RoW}qG;)0_QjVjmSk;96ji3skZ$^lt*B)0J>)azunwdnjE zMJAnOroV-HljVk<81EPQ&U}45`-+M%;@mh=lHwgrB(l@4a**HpX(qI)oav5)h2=mr zw2(O91;u<{=AQg8C(s1|M+F1d{!eW~?s^X3v7xf-YWA11l*&q5N`d)amQf)EQQwm1 z5QGzuHQ|cs-UaL<5aQVpMjvAZ7!r97-c>3w_YWZo7Uk*Tnp22*O{k?{ri#;@2(J<~ zCaI|MClbTZqNd}P^OJEUfmi!V;dJa~6 zDwFCWJcacTr2#-v;7WNX4LSoFn|Bs=9}|5#!M z$4~`*-J?|2`GKw)v`t1rs#cPO_?$NB=Zxu^GDkLehpXc6IZ=q?fAZXild$&XUHPml zgAoi#O-QBM*HpHz%s>-R4z^XL)P$3nDW(9P8Q9Sqfj(<8{o$C-j7Ip}b%gM{-BMuY zRO9>pgA={=9RbRXO6g3fC4+ zq^t~qeYa`L3_jM~@ACjHm-U6XE1yzKVjvOYI3f^aA!YswtPM5nH=-MV?V7B|u>8sOyvo}x0#jb^Ux_Uc@X z?YXZ7$Kj&p`YtS@b43hFZFZ<`p~$jAOKJ`!28lGSG0*z1r>=(SaeVDeY|hp-1Ehk$ zR68ouZ2O#TvW^gi%n62L6PT*EX?D{2bm?v>FdRnOfw}hWs%(dlw6QqcZ&6`Lg&EY6 zlO?ts)Z%IiP@qOKn`ckmTn69B!Yo;H6C6;Zwa6M;4=^(v0jqnx))>LJYnJ8FJ;Rtr zk`Hp_Ok2J>YN-$3oI~B9`90F+-Vyf^&i1q} zKoXSwi~eHDDIQi=MhQKnRNJ@x?BAWgl^xxqxGpxgTVAC!!>%qofm)WNL~yN_QamU! z#g@y}d&bQ6ow8@f;Bf$w4|q5liGQ-$Uo`yF8sY67#=eMlzyAQ%5W}K1ySi2ps;F&O z`xpS!&~+riRTIZG6r6UQhx3{@kq=NpoIJ?>mi<+O+Dteb1peyhHNUqN<1baoeU zVmB{nZfkYdS_0J&JeDW46agJbZxp;Z@&_H0YTvev>LD)MJaRPfRB-QU#<3Sx7q%}f zx{b|FDTl7C15uF#99+~&FdBhQSUO3g5-2j~#|bM)CmQO2Qc6?;lB|@K0HC09Ac6=W zj08}J5kL|OiiO@b1%~KU^DP@}qg8cbgrTJ<^Kw7=YWlR|&eL_hvn>sAbS?WB0qhGw z&1=Rv^UV9|vbpS=-KSE+B79&?ABGgNl=!&G9Yj!ZIgDy-x`Nt$G0rqjM|4u zh^|=VD5tWu>XdLrGN(VbyiI&Z*TV}=$`#b6m8i@f9F1wikK!0K00YL8#|k$=rym-V zz+^Hb3J3-?7P=Ek5kNVb=S=IL439h}fv(X$9IIc2MSKt9z@b4SQR7jO9$a{3!h?-) zI4uhG5_p{R%7l0dkB5(j0LF$j)S`yG>6JMW2Ls`Sgdr%Fgi>m)$fk0pqi~}R-&YqeasCd?-a^r<3144p82QDTmdGPJO){wd0@byL+O$!&+Hs%Ic75W;QJ_+i>C~{X;b0H!kLUHWkP^Q*URm} zCM!g1)cRBDOc3nKjWDhO{dMD>1rS>A)63z3N5;KM)9K6Xz!VK|SD5_^6ckqvAFJ*hzSDu(K>I7atL0NuLr;$^7aCT5)#1*WaHob3vxN{i(5r<9P_7g7 z`>;flK;c2kwd3&fr|%dDNHiA|uN?SurZ4<288QBCR4I<63X@&20B_Ev~ChSA``Y@gNkMQ_R;qTlB0RWYMaBFx5`^CXn&_ zBEF^XCcuMfAW$Ny@SrUWhn86Mw!lBU0mL)tu4izjBD}>{#AQ$0{W#cmny*C4lPFN( zz(P{nh@u=72ZmMS_T}e=w9#Zzk}C>1P&AcbgZFu#yM_^wrv@U5I43Ehu3;dW73><7 z^w6vsY2Htb$s+HwHZ;j@SlC2e!Eu>!Q_{X%hp2~bi_m{ETw$qS!mc3W=l=jn{$y=E zH`ISO(t8J%;sYj;XV%s#D*+Dpnn@~yiq~Yl*`~X*^0zC&;wr|YP?Y;!#+$pBvTxVj z`5Jz}el5aP&LcMo@deHju9l~yHk7*C;cf>@Zlz<%In-k_`SH?>cUu|yazS)2Tjo8C zEqkMKHKY*I;)gtaRWGDB7Qwa_--5=%d1bKBhP z6X5GBjN$1fUAj|fek8Q8RjDb~Da;Hp`8Q$KpO@WfYk2Dkq+;(7 z@ViO?QFxlc^u@>GE*mZMfK3v)jyS7ZiD2Q{7MJb&m78kY?0XKvv`pO6tv@hDu6t`R zU6%L~C935mAx|=stbi01u9)YKpYqG48)a{{>X)bkLxfI&{#=eE7rI#kiD3(XL#xqN z62rXiGRt#1Hpn?O2Ms`Q4FqHKRK2TXQe;d`t&1#u)fF+(d$mNBA{j*si8*5R&HKWdex$I+Ci%zg!)IuH_tAWb1R})@X9TQ0@ zvLxtw0#Bff4`S6lx;9PT6YgG`b8_t2u;e78b6Or^X|};y>oKRLp{C>AZ0{)ROleG) zSyfbpamE9xx(|Kni5=7(H$2;2(RgdTx5uHZaq*KQl)aoo9MuOSSG#WYX?nq9eAw<{ zBLLu3k(Y#gF5##YJZY-+vvl1s)lIL_C8ZDw<@ z8eCW&Ifr69YD=;=jh5ASfiG-YH=;JZ{B$=ATkHj>ZQFpNSh=@wacPkCRytA!k~Dz2 zoHrllUqoy>{igZR{{Vv1l2151DiKm}HqlWE*8tt7SFj0Sk| zjm>cJAj?PyIgeFXyN|gWO3k}0Hfzkp7OyNm4MsW~ zU;a=X5pC3r+V5B+*`8hHO4dm3DAfny$2B-%&Z=VRJ<8*6eZ{#Z<}_B42Yz{qGj?4q zQY=ptw=(&&E{({Ace>ft;%?#6 zmr%YrUmS(biSG{$E{Z))^4o))@<3) z&7HWc&^G0pZEwgMqiN25RI44f6t!FKmU1H%IEUm17Sil)560OVR82gw}kqPPU!ylrTymA)-AmX?xYBjtDf2UBbE)vspeTgJ_8A5S{U z)-I!xH#N^=rPk=&2qDPdE$f)}B{cZpo>$#4z19i}ohTf+j8t-|uW7os7H(GCyXGan zBh0P43u$*ZU16sjxki~MM2Ib^OCfRA3PQoARKy;Q=&i?m+@{#>WQmSrOrBJ)WNiq5 zxJe-zO1O9rX&4HNyj|Pd!r7P$oa{9rIAVbY2Q2E)`90PX>XmA^LYnYOnPH2Y>r7!B z5Lj`SA_pA`(UOv(op|HYy9ec$QfzZt?%P)H44Z^4Yg=yVZG=WJR5h|Nm!=7pTx%mH z>1QJy1kkudCoFTH%+9>(PLq+a?fZ0BHcx80M?OJ;P(m@M-VIvp`&GU9SIeeBki+RT@wfK# zJKEK6nissbw99-{+!-5Yd66a?&$JSTZ!D$NyyP{CA5p4)HO5c#1_-zAkhI*xu59lc z6D16`c$Bh7u~I+@c95hg3OI$UO|IqJW%RKmQ$*rgOo0Ia{hkZmR}H&%**i^bMZH>vsqXS=P&Q6|2yt5`}`3 zl`5^9X4IC7^iFK%awILnKp%n~ulG@soZc;Qub zn|WO1?>}LC*m5N?xFuXHu=iV*rrA_jh;3afY}tuu%IM2uQi4LXQluVO#BH5NyF01P zrt7!5OB=~w1a}3VCbtx0(W=(Ds&h`-v$(KpryhiR4dv$YR@$BvLByP!jeRBGbS)zLsvWtvcb4Oc2!W>E)rlLtDkIWv6otCzn zuG-NftRx4*(q}O#CN_qFsjL}lI*?~lwms#Jl51O&q+B%SKwx@&MRG3Um}8Y)@}|La zZ>M;h)6Q*MzTBG*`7UIq8&$1|Z5m1oOHL{hW6CABbtI}iYHOLs+IcN*c5}IzOZKVl zOC>HO76LQF7NNkdE#p+IY^}NZO$l_#0cZo_BZq2?M>_fO5;GmCx?3N!BIxIBcZI>L zX7FV)pZ*J+R*?+gf=XCwi47h5SIkGQ; zP(jp=R49PpYk3vayO?}4xubE27e-M5Z`xr83^N>R*zWE7V{PkfSl8B^y#V#Si_MiG zb0oiLp0y>VON~c5q`Kaw^44<+BaSh>LvIe<2h0}hY;JFu)f&9F6c`X!9JuC$QEhCx zxRCj0Ng(NW0O82+?cr26aIT31YVGSas{12sr+CD)%86(V+phE2Of=kLTH*dcoitbAAe?pm z-)NTSY;WOi47rJ+(E+1LC;$ZfD2taIt1)kKBe*8vOI%UM74PTzV^B@a4`=P|u_{#i zi@RVZrtsbg-TS7wQG>^ zhdoS7Qi|WXu$Lc=W^&?yRFV=Drs$zVk2m#J({cEXyY_oG!3)ZVZ|1RxR)Yg##&us5BNcEa@23gnNJNs8F{b;&m6!`AevZcR#EY$K*wbx2ByONm$F zCmxC1w-#O43mX|8Y~*NWfI|+AAd=$cAu=Q`VCPw8wpeaHV21gOI+rl3fC-;5+-e=M zc0TB}T;*-qn}*S2*>+gZIbw$b6E_LBS6qF?h1{1gB&I}ksHl~M^%S5IXfckO^Qd}x z!o~Mi@a*xl`7Djiki4iTTB!soS4f>22HYF^JX)FcKOaa_Jl`fLtr+P)k#XyK{{!QIQG5&0I&A9?@yT9 z-P`;zI0l)3_*@Afp#d@=9>l4}TMe%0Mn{_yz*hpIGIJPanboS9JEGIE4%m^mQl^|@ z5@NzKlH-lSj@gek(E=@|7rRf}ypeg_+9NPx`-J#Cd+9S9+1BSK-1_7naS1zJL zl7j#UxWGv9LS`6 zqZ}~Qxr}hY1t4O0)RT72yzQNff3n&wR?EEUmgsTgZo3uDu7!=}TU391pzH2Vi*l10 z#cI$}m7u5^P>deoeR;BMlUXsXex@`v@wjP)6e~&b2RIT>r(k9Ep*CWnkIitlTT@xlN^M@Gj4<1tp19oI zBPEy5icg3%vF~s|e(WhJ@SIf+AX9S3b+$ks8yYR7ZX@CiN1c^&2m+1j7`+NM`FmX_m{Tf-aI_GkV@8r`ly5f zn?^1i>QlcDbpBLp9ET@6#KKPn%qhs6jYmXyfC}n*J;1Bef_1ICA1GA+Jv@}jCrF3cssRMGt?Nx=!KuJs1{ zyC5-c+bFnNtdD{LH{U&CWN4mI zs9X;$vBkjvB!!G;h{CSzWP@$O<4JQ{hnI?k{wj8}>|WySmgT*>ZZ_S!vHjf0kJ@20 z<<{8_aZgFP=0eY23`yz*Nqwd1QBc$kGH%CdzuQaQyNI2(HSTNTLioow>TijyIjc$) z3r9WmmC}5mbFRn)IFxZ5lOjhWPcy7{C#?4r#*p>)&v3WNM%=eXn-*QjNp=O!-t(5_ z$$3(wwTYm z;H6HM=2zWO&GBv8`)c83+mvp|!*L$Zv)hlxSr(574igPX($@zT`GByyOGyMM9I8g!aeX{ay1JA5 zuDwc1XmVnz2ZbC0p2BGz-?y?S-XQH(Y)je~e)A*LQ}kv-+M zvD|| z=v^4+%?2Kde4TZdxwh1f-R>K8#vCS7GTUu_BYyTeV#0OO%()K@4W*aLQkd?(QXE?= z0-yqV4^8fJUv%xyL2nRG0Y7iS*_$j!odn)&lCMg3?{kd}nA?IQk)*{;Hm&y+1*Qui!%J^!B_(dH z97;*&q&uee4=PB+_Hk|nla$jVWQ{S2$W?<#Zm_I!k;<=GKhIu*4vEY_uo6p1D!PX} zR1CrcUQXz9a`zg;ezZaj#=l654$miZxfzQ@E0i{)iJ{P?y4uwmh@ntGbyVewUZmXa zdXIO9c7=hk$^#;FglS{IS7F64%wlQiY~!`DlHNyn*rmaM>Mc1Zemv5q-pavd-nVedP|creu-x5xW|n8b;{8Rw zS=7KBbntUajt7YEq7&RrW+7`D1c=lnbHlu0?e3=T-CVA_+Uq^XElGnST9WT>n2mLA z+XWI?kR+Y7*mM0Mj36b~S_P)mryD+^r5fJ!uJe8_pSW1Y2ICReYxka5YuZ=KX~Yl$ zmiR)DaU|4j&KP5iG457nDvd=l*UvNuA7HCW?CdLc-gR>>@N9SI9TzBqQ_lNwF;bM$ z7$6}?l*~EJrCJkOr9_@M>K$KwXTEKW+%4yAuKOjtWQD`c`$QKmq<;VqjCj>Olru$e zBG6>C4nmpf`V>`3a@lh)ea77PJG7WPddTE`t#O|?sinra$4$MqB|+P(kD$9PQq@ER zBq)`FKmxeu{Xw-$zRK&(kj5|>S$;rBEJ&i z3gP0wc2)6mZvMMtvn7jb)}^@~e0S~ROVQ&>LKNIN$WoR0@tj|&XgXC&oOEx>N4DR3 zkX^+Ae9Q(Z8llVtu7_fZGA6TIi(}F}vi(6p2O>ui+1XK2?Li4SkU``?Bf}n#K$T9M z>p%B(NBOU^2|@fj;$p`mQEhWDeDTTu05Y`v{>b0{+WdKa*{wHEptiqX_5=8ZS$A!f zwRe@ZOm2HDYp7!HdG^jb)I;%$&a_-H-f3xDddSa?E;jz0*>~#~vvs#*+GT!{Ra&PV zBoLKd_=V++z}iUW9W7MI)fc$`084vHd0MO&tBsk%Qkc`w-Odmuv;k+QAqo3P#$$E- znc41D`)$myzx7lH~&vF^>EE~-W1 z$u+vTy(pUkOC`0I!EwfP6ey^AXrrhRzv`6wePvHKK~@%Jryp zJ%_maD^c3JkKCT!_PWWwZZa+xEyHr$M#IwFzv|h4X$TG8Evadu8+jV!PI1IKR;3W- z2;q*4ZPXn@uyo8D%tbM|7ZM38jb)|VcFoInlEx6$TQ)sj3_NS3 z`-UBrI@=$teZMQF&h6Wh?QWU{%e6i3SRO7o!{H7Am1v6M?{56rv5dc zIQps$*G642U1=j;-bVxMtq-;P&D%}e(?y$i+kL}?1i-nk<&$gS(w0&w_0t>ex2pPo zbOYrsqt<@Q&WC!PS<9`Ta7IPSnSgOJhr}=2$z6P})xB9T)Akk5%U!T>N*PSqQk^%3dswwpGrUfB5R|yn6 zvLsi?cwkY1jYamXSoaOBYi4w4(^@XwRvMQbnJpzsyXy42pe`%9sBDEX9naD$z3MV_u?5aOJK<7aZUfA`Igp zE~Pv)A#EoQ9kwQ*}cm7Oh)>l#VPf zXhJ{xWLqG;z(cnZ6FiKI}k^018*aO##-_FBp+DJ zRE39{eXg{3T9U~mb)!7n?bex&t4dlbJS&O7wnpn=4jjP*dc{W|w4;Fsw+c8b?B#+u zAfi;Hvwz(t5t$Js9Jpm2+F_}JMCWkOea4o|Ue)G3^xw8}+tzRX=dgcn8L(E_M0gm* zJ9UM_yXoELBghnx%TG{H7ZM86JP_ykjsF1ABNAN5-;2N}pAqS%TJqe96&sPXEe_lw zU6^m%+~7u?4h)qKaEOs^Z!;!)EVQ*G0WM5*EoxC(i5P({*KZ{4xoWoIjdMZG1IR7_ ze$fD&>Ps%<5tyBfZXl78k$@}M4NSH~_x5#?C5Gb~MdgUAb!fW6EqjvNt`#8uQ+qpoMoaDjNYof<2&kZ<7Gy2A>Pc9~6BxO;KygHhJdZ4L>=m(*-e%U<5H)#mW&7^o z=&cj9uW%sQlHJ3t7(aL1s!Wj6iiuz5Yr{dMEh$(^(v(!znP-jG%enl$h!X-D>1FXD zPv*QP0;q1Fd*&uIDAr-e;B8G*Q7R+PLw-Ew123ywXHcR7TTwYzk>j2;2I?8@-eNku z2QKP_Lzv;H7L^&*4QSCLxf`i^lJiU0{k)>WgN?Y3mgQHa#1$cF2P%SSa>qEf((U@- zs3YYqyFtQVU0zD9+vDIw(*FRVSDmWa85<{T+#2g9QQO;l(uIu)pE6`)g&j#BDB??kLN^@c>=oL(jgib{mNyyE4Y&jfL(5 zfgoVD3hl>lcI#cX?fk1$2$tK7jms(|$<4P}S4ZwlZe6n6i-XJ7rxzX?5NMKwR8)d- zj@UYK%kXh^= z21U*D0$q{|I^^8ZAqZupB{WA-wbZHCRYZWEXB^Xi{IA|NTX$VZBQ`8*x#7V8?Htc% z8r9f!Rh{gjA*f8_fagsei{3lJCj8qQRh`XwYj0kz3b$OX22$RN?%!->%&oAM`dr0OMv_qq>BJ0@r0@2YFWcq2F*D|v)eb}|pm0UN zoa^h4$}aKSXtMNck~&QtDgxgwrL=%3qPRr}=Ax}?@W-dbH*vIR(<4xR%fIlarE8Mw zg~doMKC$)JQl+GZ-b&bbq@J9FDTV0+)UmJ8)2=~P8o6KxkaWFT?ne)Q4^0tndQgsH zj!Lwe8l^-65ZC3|~EZa>pd>+}im+lWx(6WIB+rAg8~q^)9m1ugXIxW%%h zgx6NA>x$dhr;UxoJ)UDfWc)*i!&0GiZ*!Ge?I*Nl>!(Cq;|F>Y6u2*uUX13|6=ggE z!E^G6S1(mhh9nE9%d|aM?oJ8s!`n?5oSKF$<}s&m2&PmN2Ri0C5#yF60&+Q11wAx1 zWkM@j{?FNf>*5SVVbo;NH+E6AkOnIPt#?lA6WTE8*gOFKLYs(RC zAckPs9?|CcjPVQ|pD~ZEML!geVzeI)lZIn1RB{-f8oS3FV%}03m=ncaJFHYC zFFd1?L#?3+9Ppsa*viEqm7Ju(-`f}y-TFGjL!y5Tv%;IVnm(0O@Z$@k6sZ zXq~w^?rp{1Ai^0ywBZGd5#Z7~fxNjg=kIAqmS zsManv`;nc_(H^H_xGpK}=T(;1+t4KT_qbNL1Y03n`?zMqX`~lfOBRV%r`wL&Tq>#@ zNGVF{XnErqX|dZ}TJ9EBNe!$!o1DNg07h6tLY$8^HFa@&D=sbPm&YsZP_BL;;I%|| zZ?u!`@^4rBg_^8fE^a#t<7#)^GV{}%QrV3rFstoJa94*NCoEw4zoKvKjJu`G1In6J zYvVeUyAT}Fh$rZ)?VEavO%~Bej%!ed1i)s8B&f!~?K75myBB}Vd8y6bcTDIJqM-q8 zw+=K5tXT$pc?qb0-ZV5&6qJ!%@kg=ryX_fgy-Y)!EbeF>fv*QpJauKlr*1pHoMy6T zgt9PKw2(p(!7Dh;YE&t5feT0yWO^2of|1rwb}1C20iyS zra|O0TZ>5rtpqhya@62GH46IL)$I|^7<|WR0EJRPDc*qA@a<>oe|c@&R3`Uq$a}^z zB)1jl^GJ($W;)7}i44v_(E3o6je3DKIP1MX`KP(rTeI;Ow(31Wq&veP2Z%g-Rnvvsb+ynx815nPn;JcgWk9FMNCSGy+RWTosbj30@rN2irvs8CWul0uT9sVhMW zLXvX|3Qa)-V^&BwjH;N7XwF08pV}~Cc+jrk=vS}}3Xk13#h&a6pNf{BIf*go%hmBw zNTZcJbpwf3*SA)l8+Vq*sz5|O$|p2C;>7mU0^_nSF!ebJNuI)U2}sc>4+7ueaQ^_Z zYmFVZP{j55w&>-hT)q6NGp+vsQ$JNlItpp0x~;9Jko#?vEh<8QQdCq52o#|hwQb8~ znHWK01DNAX7M&`b=pi+y(=0wus+&Zkl9BcD!U@KPc$zQ_z8*hiP7rX&(8`TUdGYYV z9C%Qu?(|J|rSr}p`oBG_&MLQpyKKOItxT}O?T5GMtgzZ^LPmT?j$gBmIXWe4mWHk=i6bF8h#X&=HmYV!jM&nw^z1%bPl<{nUPzx zV&@PC^!EyO3wf@j5!%wwHMzT2+0*S0&b8uv9(R}S7svY7j` zz3x4~+7dSaqd;809kSNd)%In?jI_S@PCO>%IvNvRLI+Xwq0*EDjw(>C1#uIq_sg!I z*`K)D#3gfH)|Dt498*zDPbB7?DeacREz0y-%<{lmP60_ksoBP-R!f^#t4+4+91z9I z1S#zg?l&?!Z>6*1TMN>D7`w8%W$mnYasL1=NZR53U=3H?MC*B-3$ts8^%{5_F*F3G z>xT$D_|QJeDQC!>_#C{lCoUK&6k4fDoc!|2qnMz`U>7bF6BVuuymfG>HP4s>#|vn} zjMoZsttvkATK?=63gA8ik*PEQ z5_29>EDi!R&JOvGDPgYsi>IVgiEei3iPFiY4RizCD4SfFqrvi?HN@Q~9!nE@9 z6u~75?I<%GIeboa`i~q66e@SC6P@t1aQ-?o?^x(%mfQZ!ns40d3~Qs;M3Jbh_8PC0H$~uP_KQwzTb}w7j*=$bIX_Y^TC|xlDr4p zbNKlj7kwDzUFDT9d?@%=D_YYpKQ9an@Z&_a;6G*zB@i6zxFAT!3Q-GOpwBLO008?u z@I;bvpo&!24qhMFa1A9Aq&qpX?(DH3aaGC~1D;YF#EW2lW-v4J8~j3%HV`}aPr9~c zwJH!>3j9fST2y(}GM@za9vJC1#CcfrKJ!^?f|DOdxKe}164ebfMFinMr8Y%YJ>LHS z=MMFiPeURuH$x~V#a-Y0>cfnQ3updP~AKt&zOyeZNgM~*!Wv7hgw zG}3+5&ZquMyT`t(aw(0EB+8&sE)2Xl<>TXpx0MFqX)>ws_+eo^v}XfI)G1uQe>!36 zGnN!W#c9LoTIb=O8#EeeIT`)l7)>oGI22XPB`8 z$9zbg8TY|vJb8&y%x;ZTG!hd;^8{nXyO&AF`Crt`-EIx#*GJsOV=}aBk&Z3W(B?Fz zokSrihCC~+!ML8IuywE8#k)jx2Amo|#E?!a*;1Gtuif!CWKHp5yxA=~eW0g>%J%#w zrpSu0359VAB`mEbsZy(v287}tNPbXnR@?JB!rJc9oj<2rWs+E1BZunB&_H1%A;$_u z?@-u_Cv9`ZBd;1^k&jF5op{UJ__kX~?42{3KrEY629~KB)QqxR@)d=jX%WV5WMsjhuZe&hc%?-< zfwV5SExms?9rDiGx4jAAS#Hx6R)))IDqzo3#m5|EEF^-Eg*L3kaK~A6^!txbUK`!u z!(`}Psy4PKL%#{U3xlotk&sl`VSM-fzg%ec3#soYkO<*CM`ZO7!m zL+o8=3DZN;I-+d3tJJ%S5)^+aVNDT|X^8vZUT$42){(cT;}()_n&D}JM>*0p(mhG(iNypNVeJG+;*btmzRr#aSmukphN&7cjsDDYwoSv-KUaUk!iO=v&<~0-R#e< z7Uhp6m3xQ*=AC9YU9=h$fK^QVvFP5P-1>|2$6|Z8DaPFmoAfKAQ8;r{ubZK&GAY9o zSgY$jzoq9MTU|5cYM^#8kZ?FD?Z&J)_AlgnaxC}6LZ7#!Tmai`p~;LU)cmy-HDXKa zUZB&DSK28`&<~{NOd`rF&X3s#PIV(JcW#sO*$f(|S4Jdvg_QQcMS#4I({S=xla_&1v%DD?`7X~Z9U{z+jogEn10mcr>vJLP2A~l{kbZpiTxuZcJtO??{5HKT()UDFwTJ8}GWOIXYXgH3{I3``SYxeE;>=(P1+@E)1 z?p0-CTn4uNsd4Siz;KkkDaV=Wz?%+GALjz4C3Q*1b^MvWcENXbv&cl2^4Yi;;Ed=k zb`I60Lzw203%Ds6)_16*W&ON&A-Y~A#J$+B02K%$l|{DYyJ4rf7byuyJ%9_0a|@`-!$RDeS%)CnLFjpfHl{$PBa-r?2zhz+%K#k0J~Rn2ZO zy{~IR68s1X(5sbHMRm2dNZ{JxE|x$G!PF4sK?e-6=Tq&wa@r7OH)3+pbaq3rp12FE z%5{Bc?kNsPif#%kY{+d+RV;Pa(-JFw>QDr0Rk~ z5P-kK{m?++i@(c@?ULVpw%NB^Q4GvaE@=T0h6KUE+FH@emRu?Z=>^oVI^riZwLCx+ z1omc6ZCYtiQbL77NT{gNM=ZhoBxBsR^TRAb(7CUNP6QA}9iWj|7d64i;Du@}f8P6h zYPk`+)R{5bxD~e4nDE}65G@(4sSd>s`*mqG^(Qf0bMMSPxY#;hXpx(no@ACMi1e|~ zXPAdbdzem)c#(j{toFUO?)G3{1HwTnKq=S`eu{hA^Y&!vcLz4YdGTKSun(h|}{T<3U8MxPLA!x5Hs zwz#*JI9MhPbZl@|xf3i`lGEPj?JKrDyJEe`zfF(aMZF98gLBGeRr)R9BVSU{KHU^4 z5pCgvp{Wg|7D_=;Ipb5*zn7NQ+a12+cQl8p$#0o*T4nQ4AG>>7gCj*pf#E1gsMg!R z%v?!s#x(7q9V`SixAuWKyO=rCR>>RYIgPtlZuw=MtLt&2!_o60e788K+J4~EEUT*x zDMMi@)&q$v283fH(;IhFY2M9ZA+wbz*GQ%LSUnck7%hL*57b9 zJ>dv~(&M=r5};k!G)s2b!DVqH$qOk`9(lHw8CV4lCZG|Ob$vV4yKhik6StB)wwUB; zz%k&c1QNJ_LrzW|wF>WVmeL=*LJ8E<%yCZcJVjRh{@#){qT<5aJGS{|-xnyTU8>O@ z1pA$e;KOnoL#dRAkl!$7$Q8V?K?%28?bmcDs3;_~rDUxt#sjD!>yClx*={z+IN5Fu4wOoK*F`(W zj074O$MeXX3L3t!{40IEY%_m}g9aA(1DHM@(p&50g;KLO1gl=#i?z2?GH-V6&24rp z2W=&bo&LiuX-t?g9~RP3{j#b+j_;*$l#qqg3?lyks2jEP!#3`uKQSG}zLjH}B(c1J zTGx4G0?dP5foTY7_F4(Aop)rB$rIFvD_G%?BUc_{72!&D6BcgqPqkP#E!|r$xYpTF z(9`d<9g%q(b!ryK*A`w-D~kFF3n=xr;XWf6t(02zt47s*Gp%=55Y{|}F7nE^P&gqN z61W<(ynOpJU2|^FI>dsY90t76IFD$ikJO&i-;uXo(Xc^Imu*p5+;7T&;vz=3Np?ZB zL%FVV#UR5iwxHr%&9F!&hYIU$lXq_GZL$;-=xg-?8rGkMuP<@{(grJ*OG?ZuF@ZU8?(`Cgm{P@?|Y0+O4)( zS)#JY5sef#_x3wD5RAxOq8a%88sjX!xbrZ8?;E$kE)#>7_x#m6wbgd;Tme&Y{xOJ(rOuCC8C73iYcu?jE;LY?PqD-V7;18I{J4ck~zb| z?ITW>o*A_UK?u&N-*nrE9RomQOdb}2m|RrzWtlL9@T^Y?ZJ@VwV z*e)*P84Z`EXj!dQP@(Xq7~QRHW4U}=geJ1U-8XOrMpo*>{8 zu<)pk>D^mvX_G2t!B<($>T#ECc8OD;dK3D(k>k9U^u}JMYEq$*T0zL1VIkgZcB_WE z{@~oTs(>?Bgp7dzCLwX`8C8v~t=!9O>#F^4gZ&xFuV*sN8eYZ%yja zB2$9eCd8WK&VaErw3zQlC{i3~s;E!^ej$mn&(mLqx@%p!8>_Z3NglFe!R2sL5QHiY zL=JSPTHZ}^lFDL_R+j`+oawW%}xlxlY+=lc&Xt%oauEdFL zVZ;8dr;9}^N`g%SjdbH9VboWQe0TFd?*V9Y2@TNKE|#|s5WxuVIaU02F)}yWF^w!j zj>M@Ml9_&-Y9TYZ+md~@)gy3Ew%F}f%foG%5m;G-7cD{7XWZIYOVZ=~zDv>2(hip7 zHk`;<#H+pYcH7~$+>gt_3tmHnWmzMMg&x zH(saPhTCm%9k{rfW8ib+A*^6<3xQWO5THAN7*tqn$aJ1-{Iq_?prxK2mP`VvT1RU|9ljU~(y`P6bx9X*@Q7I~QxIC#ThLAaxs#)e2au-bUB1G_o zXdD4=1>=V*4(Gqlz1yZ6&AHo4A1*D-xJH=b3Yc|;HW_)AP?@1|A6Ok$iiH+bD@tKj zy-eAleVf?pCb^zB#;W`X0l?x2RMg%Cnr_-CVUP$&km|rVWLJU99MIH{W^WC~ZT6^> zrLzsBS)(E#efOnJmofoz-yt$?Oh2X)Us= zYT?HLMa3sUTIihdm$$v$cI~oTxZWh*ZtjGVIp+tpz7oe^G!Ot%nVc%q5v-L{8e*t5a}VwWWw|$rnKKLyie9Jc7qrrTRL6rir3} zslzg zCuZY~Oklk>#&$jC2Z9}_4N49U$CqacpIY{X#c`k8Q7rT*n>xCqxPLR?j~=XUkEp*GoXc`UaYH2FJf~9bEPN4ijn{&ptO}kRZW@;NSqa<0DMORMq~zz_+x-L zF-QDCtx=4+ZI45Be2DFwFsD;o9V26pQyKdoVcNakLus0UD?LHMgBuuq>xmI|x z?)gZ9-q-E}v2QyNM|ax4DY*?xw!IPp8y3ijj8L{Ns+?J>-nOET@- ztp0Y|&{{QMTcN3?iH@yFiB^X3 zm~-~c{{X7gUy{b%GFw|#xsSYvknZu=(xj=mElo<)rx8>Ta>$%?zL48`M{BjY-6ozF zzBsi;*)+RLvJwEJ7YAd89IBslmvp)j+Lp-CtHfEvW?D~TaH*esEcO@b1*GB zks1Kf5R5W8QEif3TRAj_+5$6hE(EHC%#(>Y?CT{x=kkD@`(RSp1|y>DJ;_O(&BmI->Gs)q!alf>FSX4x%`U zxe_)>{E*_;3|oM3dpN54vE;lBXxOez-BtLmsOVV!2b%xz> z4Fv$u2vMOJ(2b8}>n+Xqrf14+n8pZQ7;Ap*Kv%fxB~YCqG~j85Ul=X)LeST^xn8*A ziAL}ljCkTI=G)t%>$hjlMZ(Z7P^O2XPWBR+Ooc{$$J<<$wDM4;yoOv(gf~PbHBTXq zwY2m{P{7f3x-qk8Bs2*au4X~5zz_pb19BKvcH-jNWNc0?cq@n~4`-(}rpPx-Wv|}b zE!UY=`0{l}_7{fVX|={mh-|giO4?-(pab~+6vg({)BQKIUbgZZNbT-{{aFeT_JJgT zyy>~5xt*RfuZo2K04*y_XG?unw8(6ON8-4L+f@Z<7THp22c9}4H_%K5f>WAd>n5NU zp+kZ8)_m@(jX%8m92$A2lC9}*&6gW_AfnvrR0^9?k`xp(96`r2{Kk?wH$99nw1as3 zh$H!Dm1%Y$TV;Q!A@T-)yej&JkRiE3fA+Q3pZ$5he^xggE~eH&{`KDa&)y%rZ|({y zWa>HBI(hs&>5Vp=a7v1)m30mjkx#{zX1NYTeRv|cchTXUQa$yzTqapIZN-!qU|YM9 zwwSs&RFweS>9NFCol3n=FypMN)0#mUjB>BdDCUyJ!Qo6paA1FNEz%D#py8Eh`ff%x z=5{*=y50JH0I40RQ(Mn%ti8&zKWDp{thEZ`ZkHL$a?rty@~jXVB)6xerosRLCW8pH z=}o(;tlww3x$JCmHO(wV1jf;k!_iE)bf0USO>TwGX$5$VMzf~s{US7*`=m zqBYt%fgqkq5?R$8)5MHqw{OWA!;7}7hD*puj6SfUv=*Ie2ZrW1H}^`9R&|~?KV!G{ z*VgR)w{t@XB#CgE`IIsN{6W~d)RdnRoUzO|Z_Cc2+0@T%AZX&j<~P>ST6;dD+wTAj zk-Coucu%&NEWN|-M#pg}vF^*wxiQuOjAc0FbW<*x;!6%8DI{hzrxdok=Thu%0@mhe z*gnZ6KeFLdCEK>0!K*AxaXeEWSgn))0Mi}2c1F(a_49dI*}lo$jo;11q{cQ$uoGyV z9y~`{LUkqeOp7HeS5POB860(E`GL9Y`(1_R?GTywLQO#n9L){@5C(dI2gIF~j2$;= zeR*+jV)DksTc;gB>I9!r358i(WA#nieZm_=+myYrDP<`wUSks(Dmi+mM%2Sv{Tn2&x0LXZVf~?nRo!&9?QM%#Bya4TeOcA}XujF+tRhX0?QOg;wABt=^qhhFE5S#j~-@KePz`ig7OfA)cTYkrW{5 zBZfy0x!4dhrqk6;TPXhk;cH1XNh0D%BY`)2i6WVBIE}L(`ea1@*YUcYyvE_)kKq+6 z3I`TogHcGM(4oNnz9N}m)jR1v`aLvK7TSPQP7N+LKvQlcjMB6!sai!O9tx{64=4#W*?7$3CXa#6D1Q`%vBUx>ruc6^O{XibMM z!D&oMY)Vsh<~6p%sBz}N2RE1myvhFnZ6gP^O&r!S2;A2=MimHONX&Xg7270i@74$l z$10Onyu3L70A6``Vtq#xFe~Mj4KSkujsmp%{;qx)B_L4aLUt^92ndkFFQqlo9&Ibr zU+xtGTUVM$I43cZ54-{0;b>|tJ`zFfsIA9iSS}Od-8wEux`Zo3QfynoVHe^Wy}FFOfb)arA}hsZLdd>6;geqr9TyZ(s~sQ^n{{7ReIED znyh3LPI%J8x!KO**1to@9v6)#isy$ObqVlF2y!bxIE+UM$M&LJ?3h@1XgZhjg{uQq<`&QvJ2&;mcZ{w796w zlnBlhBr-N@s?9!T3 zHQ;^5Mud?N$g2e!1;zV$K&&fBcq?N2vpO@nKyJ?1GA znhmDi1$w2l&*n!`-l{+$MCFc+WqWaNwZhwokIQ*6B!dtPNd%#5Py=t8S_9Vt{xLZ<7>t)mhMQwLSLRBfH6uQakEFy#hsM8glQ*#a7 zoG*xi(R&FeB=Hf7<&G6+w1XV)Yr+$5@H_|6=i5V}tzI66|ul|giH2`qjOQ)IkQz~)i9+rrI z-8Q_0{{ZN^x;FCV+9v-1hxCg3W|q_&YLq{e)p>u}ryj5Y8au0xC{sYl{#%Gj+azjj z)FsBr1W=aN3JD%#1VC`o;H~Y%QiGz5NokWmPC00}U75 zNBr3J4s6H#(~r?c856N%kn(mO(S;(Ba)CX#ZN-$^uKeQE3kI!93Pi@r!Hnob{*GiM zro8amt|6E-M&M7H%rZX^;Blo0p2ADU8Xeu2I($mV$bFnRVt6QNk^w76D@(1dr%;y~ zaA|Q1NLy|s{{Rb!P$*hYfdm{lQSB^nR-D14;tGrnGK&O8*0(LM%Cfw(sF)6aq*{RV zi5Az2;yBWOxQ>wV#8G7%34O72PyLhOJ?%IV*b<%doI*$g+uNU@=jkg^>%F4)aJa*X zDBEVDBW+FUGSjWQDkz%UE~ZRJwM9aRsnU%}BMDobeni?GfN&rcAyBJM3)mD=!=el> zW}u}p;8Acn(*=gu`xk!mIVlUVM7U17O}5KyHx4@CCu%r^JrKB1!ecFH>7D>6k;a&= zv18-C-5n?~#P>Y4*fb}T@i&4l9qKAX?gk4$-y5152+Xd$j}_xh9m<WDO(@Cl_18%X&^Z3Go3CX$lBeG#p1Yrgr8v+nJ3p zCCUyXB9z0iPqS{{6YP*!by^c13})@E#iO5z$0KVbDOFPQsjf4dX_7d% zD_8&?Roskd$r#YY$FtUIb=yOywvo%@fv!ESDz!J>3A0bOzOpjoy? zPT(7_TT4ciz_@@Ea>;57w|3)hcE4xGyhc+~t$VUtjVY%AF(03~=SEwKQYzZ@!2Jol$1cZ$G6(QE%YtaRjDg4N^GSfr9mecUb6hYp25YIj%~zVOp}*681Tkm zMi?AOL7A-%%fB*Ybil^#ZD0e$(p{H!MxM8qYi*k@-9FK_qb#E5*!ge1sh{r?Cd=RZ zYI?oY!A6}i*>x>9!9lbpqn;w}T{RZh1h%#fC9m2XPOQs~#7@Q8U1s$&H`^j51 z!Ns?uE&xRFfbGootzwDxyM>}ajQn{JWT{jPJ}TO>uC~`wf{!}W9ENK-t)Jz{*D_Ve z<>)oHj(Fx~wvgtIJZi>f-FDj>ZXV>gsrDcKWS_SkfVQ4)WH)V=`)$Lnr*(QY3xO)YC&tNmp3Ra>Nn?&;RiAs$$It_4XSMQD!I{;qfa z#*-QvHw(8*2rQvi`^YnzWhGQ_HllsYVJ-d;lgAqkgYz4A+azpFn8|5}h5jI%dqy0p zi*o5}OQsj-(>FHYzeRl+?VsxtVec^x4&sd`YF*?RAA(f?JV69{#b;i}#^Tq495@^)ZX6Vf_5}*= z1sylewn4bITbCWTYy5Q5;z$$|QOf93M>)AWj$V~yN>^_IY)yGQWp~k`g0N$3ITJ+R!kEiU}DErTsXSqkQDh}xI{my4MFEQ0U#p2W| zEazX{#B-(*MaF~AI%PxS!@{Qmg#?k1B7 zb?Tom24bLApc--UI3k=fpXWfMWxE@q1m>&8S!{##KUSC0iDXSVIUhv_U zkJ*3%3O*Iz?ZKiR${E)_!SUp9I|?NXE7d>M%p4Xu(GyNP*>8T>+-okT7J^-sFCL}Y1g)Eucc z;3@E(CZBdXExG%p8ESX&8q3@tzFx-v00^$0d~5XkGQ`?!jx+e##Z!x;rCZQoB2-f z9{R1+2Z8eN01Rx!S5kKcLGk$h&yEdfaiq%d%j)|nha1a<8RtnH6g>EI`!MjyXvS1R zg>w2=2{e&~CQvmeBbXU|-?Ip(LBfMd;8BrW{l9hxx{Kdff45!7-P@nGw+FXvzSFr} z49bwwt+OM^ys88>{$yLdgtnI@G870&Z%XtiXHYTWEwl5NdFnokpJ&}*ef`fD#Mj9y z<7@ReO&eN>o)CyjQx&eUx^(T0hVIF1o?&MvV9??)Epg+=9yG6Q_gi7#cJ<3?HMutG zSh%#)b~|413rcMFRQgSh^#yG=ArKb!Ov)-&R0^RL#d+#ztvYsnr)_<=;8%K5-sF~f zFHq4NqSL6g&Lrz3rW`5xHk+4SGUnnrer7dUBgb2FE^Cz(53(v-9#zgIzD16GgKl=J z@d_JqTiupKK)zX>LkbE=499J`u0nhf`I<=;r=B(2J&+qH*spE2?T+ut*4z76$2v!HdYq!PxCWcv8X|4k-#~lKM5oQQPjz`>|tjScWisc>f15nHFaDhsVr`ttmA=F z?Z}E4ZDxIuD=s#*jb*x|;;zo##rsE+TnAF^+8XAyt{*dQRnjY51B2lhwHu3YBvq7e zxSnF;85?ZMihq|TO(5bC+;Pr~-L7pJyV}Hu_Km*dW|M4O>s;7ZH*IsL`=zB#y&mGF z6v%oa)n1WFT2;UtQP@Fl&ZTUz?bg?pW+LcA<#b2IlbYt@Uel8?E5OvJ{KIzV0XyQD zIUV5+0W$<}2c25cw|o05Z{EIjwC_@E7U?XzXuqx!rpQ!9gqN7QHU61Mn-SwgKcEK_ znWj1&*IMV_WP0@1g|eHiZC>~JteJ7O6qVc&a=OVSne0GI@)FnfCzI! z08au6oDU_hGrx9T>9XDhvAKK6+16*}$bLo1sA{%Q5XZT+En(Qxt5)esUPAVKmKw(#Zh&s+!+IW6h#35*1E7&*=W}NotbnRE0cILE8 zvcj~uyJ{`-Y|!LB8&VqvGMFwZv829L=|hPDX$FKEV%_`wj`y@PZL@+XcNWCfI1*S8 zC?iqulBk3QsJAP*5|}rNIB<@Ll8Zc1ha07ziRK$Qw9CM8qVs{+`9^&d^H2A zx;Giin!@zB;a0y&f)+_7AmS#$zjaUL-uBDAqDXZx>5?Gxq0LdLj+6s~kbF2E%9V3r zYrfjKw+(rAZF&VHaSiP4r1$;Nc4K$3zou=(&9KZvZZa+NBYR-K?1zcMbiWX}DU%*j(nkHYo#xbU8ywO-OR_g(CuKb~aYbusc*zJLVdo zmo$P@VvFnW@v9hjn|N-yJ8s)&+xu&3%|!P-jE8Q4_MM3ICtHyKTUl+`@?*Tqflf3H z71O3vt~v)({(5d*bG6#-l5LjO^V`fE$F#{KgF_q~1ZY8N1Q!gj;Z#zTT_TiRg#?rK|FER z`b+bZqxOx4(!+H(S6hrxv!)rc432m;NJMH&bru3O7Mxg42P0S8eT|^7Fj~siUob0}{1=)6hYn(`ZMPqA zbWtgZ>T=yKk{W}4jHYgAY@|^xbV&_*Y50z+@yDP)Ew-MxvU^`^bu0EMhnU-W(lFK( zKoN_P0SQ{kZw}ju()NLH-wAUHZ8%&Tq;A&RHb}~IMUw7X2T>>UOA>$54$on08iN&7PZ+pWP2*UC&=V2ji*33hT@#h zGB_Hq`!lk)p3t^m?R&ES00Q9Di=>Bk>kyVb%o}2zf2P~gf6RaVIc*@2RYX*ijK@Lj zJHEpW-KOhv6XTX=7+S{yTGC2mnJ9x5I8^=S_R8(?%V`^$Lq@W4B?k`r&t2o~2YY4i zcJ8}6_{>-`8IuXQR;T8w=N>6@+yvdBs3kWi9be&b0BF<4I%9`*=jCr&J9Ty5(KB6b zDR|V^6Ci7eciu1$5j+nBtwzng?BdhOx?$E3p#w=dcux-MskSwvx;rPlXJPJmH_h)Z z<8Nwwi{9ORQMz!YAuCPLNs*c?JC?hZR(pexH1tA9^86r zHw>u=k!gA6)|QnmrAcuv*^@DXQtJyVX)kafX*l$CoA(PYpf*#+TMTx(#Kf#*s%lp! zm#8kLl>yy}SjmO7);@G@21iJRfFT2x9}*mn1u2(vZk7?S_iOidSGihx47+?wCg5n< zw!Y+!>%^s-Or*5qN}7ih5SK|pT%hUk)FE!$uy0OY%|G{$<~fXxZ@Pw1Px`k2g}{^r zKtE=mwYEQqLLxp<4g|TLC$kTRB6W)7 zhSsgQ21FDC9xm6J9Q1WM7L_;wtxi0z_)gb%WpVh6q_w+_VAni2KSR^*+FOu`!v%7J z>gbmaxqR$oA+uY_8it|=H|-E}F9#erQ%2&wKYDt_zc$+t-!WdZ-sim1l^W>o=dy-c z+$pv^g!LrGp9KL-5)=5a0OkHSCRHqsy_UOw&~*Qhi34=R1Y%{{TvE^X#p;5!^A& zF+I#{8!KIopc>Q;%o4ew7@Aaezc|?LqGP1DE2+AP&_@h-a_pgZD{0;5+AZ+yTd<`w zq(hY4^daa`F82)$XINYaHYlf?5a- z02MrNsTMNY+PTk?AdLqM$Q`^C^5s!`F5~Wnjy?M4e~lw>wQaYs`Fc7O1w>bLF*>^To`p1UxtQp9+wooATbrqY+=N0%XP0Yc*_ zAu11+js7y+N^Eg zEQxPpt);^@=VM2X?3SEzSVJvJT8pkb0kRg#$fIgPLE(;hb-3;jLfG#jO_4O{Ko>Ls z=1X%2AVB3>xb3Zc*ZD6lyvP_FTT0V0E);`AkS`#X!s5c)ZGcB5ua@A~JgmY@z&L==*APGptP%!B zpc^vjB)Gb2N*onF9X*^$aKMxBrB}{we(T&F52t9}W<}bj5uWA7M5In>*BMNSawRYF zSVI#U3duD~Z7dEXVy;WZloq>iY*y$=aCj<;;_nt3u}lyH+A2$JcKFmfU<|5&0GXfz zjvmq~?Akj%?YMVV(7k(6vvzCN#wXt_vQpzN%(@P$Z!ST%pejrz?kjx&IHZ&$s=tI} z$_7YA4s;%1`P4hJYsjdY;0JLJ_PdwAmGpJkzZ!093R~^);>X~zS z_N@DQUAc)(Ftxgp*p*6U0*fCe=+JQ5eN4olySIPT5Ey*6|S(vU4ka%?mcaCY(|M|$G7f*>_+ zvNq9qDMKEGIR2K)iYg~OUhkbpy>!mf8)()tJpo^=v})DiYa;_9FeS(r6{f8$Z0~1B zmtgOQNF@^zTzhy0DTO7pUU#10v|hJUv*Ot=a2BMY5oWgBW+Jl?_1ABTeZzCEZ)hoP z;An+pLWMD!vg*y_skZC;{{S_X_twuqvSbw%MQ+e!h2s*6 zRGbv>Z!u4CYz*&6QQ+>jlBq(Yd zi(S2Gg$Df*5~HpPBQ()VeJOVYw3#z*4WtAqNiG#+2_Rz;)Csor%j2HirVDt3B#om} z089f*lTmj(N~i^D%Gx+?HgFWIk0qqwSF{X(qxZ(@xw~kEwzn+TEuQepx=Gx!Ew?DG zTjgjgw%ejdVaD3JMN@C3rAP*$Kx$7sUhf@A4W`#`)0b?L*44}}5_vMUv7+dSppe%v zf`!VU<|&&i2ASP?ZjWsu!9$0jM>^?x^Xe^y^~Wwy6uPUVKd{gk-1l2Bmrdqz=q#x(Nlt-EAQ{$D0s<(J{e$%=v*PYuPa(w6>(5g3X`ZmV`DX523G zcTMSqT%^QYmfn=RO_lgZ`|qQCL9CFCBsjRC zUxbE?905KMIU2i;NiIN=CzcT7skjhAWSQf@l*IPdn(f@(=i5!2aGh|v!rZqRv!_m% zXMri%u%cK{W4Ck?gQ#0cMa{X1QdW;jOF$Zm(`B;3KGnBLIe(w3R|hqKytRP?$!P>5 z!<0KL0IDm~Z+mpu*wY&WLO9?{vC@gjGS3=~+9&T`>D(n>Bg2Pf+1F`z0}|Z(kfKO- z+azu!Wyjvr< zrY|!cdE)c)raqlTM5rxbSB)`U))w|I+}O>ADfbH-doWxiYk_Qy)HS0CS14)|na-kE zTsiQ)mnDsr@A$CzNgfe~ToZt&J1+Q-yCE%763Z7EC}H4+)S$!YQ>j9|sc}HPDm#r7 zKHW7W(OeEJe=6o|yM&UsHIH})9}41#)j~)@95WamH5+rYHswN=j6ciCcvY<^f2ebFdbK5=~DpDv0tntWt$7qXV z-8P$RS2@=6-#O$x32TIB;W?q=JvFJ@Ze4q6c{G3tBexC107jvh<||IIKGzBgP0`gv zZbjDWhF;L>k*zCisj^yaz?Bi6bRKxx?R$glZS^70WODpRmL3p&saeURGRfe@8b3^F zLLsp<7cG|A3;gjJfyrBANrwnka>$^!>dvMOADIs0Z?cEBJQ(yR-)dIX}OmqJL%(pJf zY+1*0gC9t%oq&JT96$Rszr$KPv+SYCJCOyZ+(9;AQnV#NkCep+B?C;s#n(rY&pkP_ zk^3U4_k;Yt9~ZpUpFd|<<*iFpGab@Ybwych1$dNZlU!^=ntmWjUIi+sOCv@H*Ho;y zD`_rCWhz8PNqQ<2rGm9M(o&@*Xii!}RxsgEx=GTcdQpCwn8%D7ek5AR-Ot-l72R&r zyCTO8$P?#GW@?pgX)!0bl~gw*p|rI7iApO)60EC^8To^^T05$?uefH1x!U|8AC?a1 z-CIqP=25j>fg`oF1jiBGQqJObdM9-4_V*pTy=j$anR;p^BDX3lsg~?yp1Kr6s118W zgz4md7?E}Pe{a@SZIRawidY`-(WRxQQ3|V$8b(zf&wZ0q5)Tw{efh1D@}7)8B97a0KsVYQ+> zn5j&ZXcaXYh{lI%{K4w$8Jlk;g6I>cOoLJ7foM>bS$Wf2EyE0~X^4Qn5`)qX6{_TZ zq;}74cNE^-Zp&TER^L=q9m8nTE-a+oqA`3cUAe-UX;Vh$)AXu`MS0_-JM#-|*e{>3 zZjs2g=sea9O?I}47fHtrX`c$px2CT58)oiSj$%l@2Vh2$Tb@{=)zP)P!P}kQ5G*^! z%^~*yKE`Z>+b6eP0m$=9NlLte)s2qZ)jJ002gzN;UVh7nW4$5C@2Wekqj9r8-XVA# zz)|ZTRav3p5|t2iu8K;=Xjt)WVyRkBh&0B5N(U4}h^o}##+0=9ryBTuXYCkqvMEYQ z6s<0gAE?s{I!M6M5i+AgnO43$JP*f)2o=NZ}FVLqZJ>8lA}t z$Uo}c{3ewe8CnnP4}CG(cIBGoW3xLl+ZAsZ5nT5SrBP&;6o5mDkr7O~>cQcxtPDW5 zvb37cCrKMi%K=g0a`RT9K9#8w+)EtJ4RJ*{W<5n|f5>jp4y#t+lHvwp9^h>kMpl2i zZViTKu+m0BC-8MwNK{7eLo)`;sJ`bszs@@V|HpZvK1Je`NP5KSq8 zeY4M4L~Dd{`Bs4zL0l<)PH03~h+*fHo(Dis^TOl3wVb4HZmf{_UFvcZ=vqVImN2eq zPGb@43s0&g0Hr{rjzm!XhZ1tmnMK4h||-dmyy$Xw%$i1JcKxqd{P_=2|i;yO>;xQ4gikSKKf`9 z3WAjzb81-CF}sXNh_>9CM7G(R5eX}7Pi+lNQEkel)yZw71(h0|3Gf(%?Yh*wOB+Kb z3WRXf5!i7g0KLMWZPdCvx1CXx!1iV8`e>_Fmgiu%Cftb%zOdYx@|%?*^s#k6Fr6af zC*3Vc3`%p|%5bMhNz$O60}^)AakblvV0`Gqob5!T{7x<_z~V|LcPbOUJBd8h^3ISD z1sDJVa=;4flbCG0Bz560qT%UHWlSqHDxaC^V@kPts(dkI?aJNpJ*2sh&~R|m{T|v! zl>7)s1>jfuYOL81(<^!R9y85_w*9wn^&3Y8w)L*+QKv^G2J2DJ9RC1mj7hs+F!5x0 zcCqzwbo~}k5uT@e+gA_r{FwVUZ`~nYX0_I_?Kd2@x}f9*z3gr5wWJ?gNJ^5GP!Krd zac==`*#xb5#u!Nl5V~3ia#a+PgLfkw(SzTQ6jNEZyo>`D3v&|Ll)m8Y?{=u=OrhtI zbzACJ<&mr+Lt#kOS`aaj>nK?0BNG5*H_<9!q&;|c;wtZDc@j9rd?MY+-K9O%JMEmM zyW5W2$bOUFe{;i?El(P}`-#8qS6m8kk4utxDEZ)Y^Q3;uV&HX1ZUH2mPu@y%?c+$? z8b1)YXu-Zw1DC?jbtvzn`%>-M{pzr*j@p?L*u}+&GmsvMJ?L`d{{W+jConp_Q>4^a zPYhUfq|r~(myt{z3&cUgQBX@rz!Xe-O(SMx?A@W$rbd?{j0jPg74u`V!7q2OV<-?1 z_Tto&LO@EO&Ero2k3DpoL%OEZAhWM#Ep>Elem50)GG@1vi9A^G@pF^z2%{}l37$}(&MQM zZEmgfk_pm6bH+2RwhhmycGf|)N#))}D0n)H4n!bu=jyBOpTD)+?%eyf>VeEc5FR5E z4Ps&3-_&1e+)Pd1YCM<{w0MqF`lUT>HGX#Y^&PkShjO;<85?%}W8HFYP!!Arwwsh0 zE!`DA@Z8p}Q>uqhrMd5>lk@Pc^LpWn`-mLy_}O>mS?60+L%ai z#YIDRmcxm=EH7A*IooS0O9^FYZ7-#ivnh#zDMIN~l}8EB@TZ0vzJ=GDaoa=7E%h{x zD2@(5IblxQT$_83nbHgK>{SW$)pU)acG^2rdq$Glu1dad2^)ex%A+|ULIl;pMu(6{ zP;xg#N_Lqg0Fhi(L2o|Z+v(;7=HlV<0KiH$`bH~`2&a(7r<;iGUjtfn`EiDwMKKHS zTq%ROB`@1{`wL4?vgY>Nq_*l3<4z-`H$4jlD@hd@jt3U~L|Z1!X%Q@N`M5ApMoy&d zptj~`1rG9G*~*@F`>rRqHU%Zu5LLTY77{^2sYdm8N?$^O4z`j338>6sw{MI|wnj-I z-!^~elA(1NmS4I&JRz_Lt+_7?}xd-6U+?#DRH&{{Ti5OA_V6P2t&Am4yj2 z8c7Z`8c+%&PdrWPrD&0pmpWHiP2&Uxwl!|DS;fF&6S|YM>QhNVz?LKXqcViG+M2gWKhvurJxvH5V?5lfS?&4cn zZC+29ATHFXNmlaY4Od;!?M=euox>GSq_WHV>gTvvemiTG9jNz!t;&;2QYYg~&WAo`kC{vv!UrG5UdUgfOlJTIVWr&a$%| zkldFEyNUaHQmbaxvdO(&E{&&K4F+OeF+s)z=w%QFqM%~%( zhKh^DE?u@|hU0Py>gv{sGv&JBPa>)eKf23tvTn&@Kf8z^C`#h^BXhIn=M(9sts;kV zvi|UX^vNbayCZ=000m5YXW#w(wN~SMR^dH|**@`1B{CmiMUU2gY952@WpTr5Dq4sd z5SrGQpRo0Q?_x`K=Q*wgND4v)E>`41Vov}nF5|G-%!cGNgM#6i%N}*~6Sd#28)e~9 zEt~evs8Zf3Y+bE1ax&Cu>V6`~Q+ZU9lTR#l{fqNH3xe1;XtYR5Yi38ixr)W^9VaXx z$!7gb937va*4x_~*J|%5iJP{smix0RNK%s;LKOQ|8Kve44>qCBqa8ZSaol~+C9}M#P0f!UcgE^?ga`@A~bnOEl6dzn>zfuTt&r7FC((Jyo=8T#~=Wj{(GD*57xYFc~k5E@fBQOuiPJ zN2;OoE%UAGDVH5>q#6f6D`i>nOM}xwd}widZ+&fW3602~tb^5#H5t&oqnW6_?e%SI z&S3ulqz8{KvsC!g5w}$N2{~z}Y*bz_oY&~A!W-10f5c5W3i2bzJaYE1nL8G>tKp-{ z1u6As<4j0S6osNxC~~a{Kfb38y#P*h<4GYZ4cta#NZ7l*n8{M4JGSpBX(*{ulwdzp zrj;d2NFaFE8SbELl5Cf8#=6bB(Kz@{9-5!GIj!6wbG{KHed4SB#%?Pe)3-ZrEGdwL zyG$W(xWFvCh2+km%7JeWgFt@m>;S~xDZ}OSR5AwYeB(DHDJqFI$q7!6FINlWok8}An`sDbw$YLsZ3zf%v<^sZ002A&J5+3JYz$}ttpETx0f6>a7?R_t z;!PRj`|zqw2B+heKo7S*7%D0c9Q--cKkXP4E5#$2)sYqEd1vs!py8bw*SLZWKFa(F z9suB|S2U7A;src(pD;W}-GD&I<3fO;#F|j^Rcd?_P)7sD0~AU+^(&boxz@RZP-s#r zK*(j|fkM0i$ndRdX{w(C!k@nYcF>^E6zV2}%ft58xL&4!oG4ca&be~om1;dXa^-}e z(}r{_l;#aQ^UkM<9$&iz2fBp}YN*JOPXG-lC=E_#pkUM8MTHN5BPyO`@H_w@c>#j# zp+N?xkp!qy!nxPL>ZjX*LV#=P%+({uJc+5TJa9&igTo**q38R>23T`a1ni+)IeGm& zJjN0o!-WdrA4=Ej!ZfMuqpx`X0A?1LBGN&xU>>v9+ed|O5J$)J(fiIM+GBSY{8oPurl(&e{Is8SY^H$* zNFy;mE;Qf0}=Fzrri4A69uE9$DgJPYP|Oh(EUuWrZ0D zRiAeX6R_`PV^Qc)zGqnk3J-=dJ#N4D{HMF#D&JvW#8^0E?ys3sMI9uXsOkw#KuSuR zHC1xdd1HwO1;;b=ir<7GDzdt!h0vZls19@>R)szSxX<1+4NY!f`s&Ujku|SBO76Cc zV@>J=ruwq9@+weHb^ibe#s2_F5CG@rV^n+cnF;-YUrYC86=;V{=;KtUhJZ2X9gzP3 zeQ)j`b#uwr%01)XRl30gm)BljW_a0xrwXs6{_$^~gEs2Y5 z*j={Lo7m`p(1gsZ6`DojBX9Kql$(kqxc>mmtg=8IL?Dn26{@0`@b=%f?tMGI$-i{G z4cZ`#2D%$&Ncf(Z9bwv?BxK@4P6VpgR+eb5Y{j+v&C8rr85|l%aR?gWz@8XXp6@Qj za*s0SxHcxn+?N}AgduXZTcp92qElrmedzDTOU?CDQVLX{2&aL=oniTxv>mtSdYh-V z+l|1TE&Hk4fhgx4L9Q4T8RLaSvfFO0#qWqmoFX1sL5dmKM25 z5xLIR_5h%?f_PN-+)l|$W^{2%c$F=AAFR|ylgt$3Q>}}C?bVhX%blVut9&MzWC z)vPTEeYKX`e(x2O{KDTUK+)|@=m#^E4m!`}{{ZH9N%W+TYj)`D?Mp*$CW<)>g~J9J z7@&iXh>!pn*TX#xD5;Us0oIw21>rRZ>cO$v&8-0}BM{^sW4a0R8J+EkFf?~%V zCBW$o;xVZ`J7c@eZSwQaGj{eAbY%bp6$Oeo5VZ&G{p#DcE^u~6?HfaINO!9;!EH{b z7iD$T2PIhgl9HEVO^g&&$x5?MLxwo-M0ItJ$GNf_`#TG==La$u2Zq2@D;Rzt<_{AT zlL-DX-{M%-P-OEMdBQX2)! zV$kZBrgB@!D07I;nDuw&M)A`d*F?TY{EPQz+B@YPBiiRT1uez?88SwdQ-)&>X|-D2 zTW*ckB=Q>|^AHfBbITFTio%FHgL63%77epz+0Vw6{I|NdZK0_W9ETysl(ap2gB{Mi zR$XzU`KU-}lS=Ry@NUV|`|j-n_d5vViY7_rO&}`fs8gwp1;7-{VZyrHvsqdnF6Kwe zsk-A~$c6hZI2`gg(n}47ebLC)alNkhyL`)}n0J4ayCM0b+Zd*mpx!!F8*-m0w$ zI>4?}#7nJ)A1VQ7EVDXC5hx9FOGqdrXej42aT(N;a@J~;#K_#%g4IHx=F&o;_EPk0 zZMm~I_}Y^<71U0jCHU^$Cbouc4ncX3aUSa8(%M5Q3rS6NYD($nh|k&~+i!)7x#z)-~?G&l@i@B--Mc&;?V?ww#; zG@+oTASongq;~ThDnEAFb8I%-Hr(Cvr9z!=lDP4&76}mUin>^}g}Q}AitA~dVXPH4 zf^}#jpyM&rn+D^wh#}nA8rKDDqHvK|PETu59MTB@ok`zM+uuiXE9bOB85oBG)ORpX z1H|Q5-puXh%bT>^zHJ@Faar3>zjAHKR>j#aFI}zLo^#*BaC>C2GBQ-s6v+f7z!g;t zb}!0qgWI>;dAExT`J#@}CzpU4$GPDPnC7@*$FLTwNH~CTtj_(qUE0jZE@EjjBXiUP zP6`OcLB$PQP5%JP`~B*|>78<2=0s@IEp3=r24Xr=g*@YL$uY!bp~UJ-jk-Z895`dE z+4L{vb=KlG+bQoM-|t~AjGKK7@dPdN4}`IBI+bfUFSn~G-7}+!)^WKUHK{;(0;)JA zS#Is?Yw<3Y_o1OS+p?5jx21aHw6_{c98_|Ul{BqmQfc^An5H{#MSfquX6bvLn%;ED zXDrTiU^qB2V+{^&kkHoxqzq8wSTlmjuZkm_ zH%B3*OtUO0W%&_XG>g|R)T&Ba0V_NdMMgH86_)9&7S5hiNVG@Jn8@7ru!k@`0drbiiU$%K*;VoHErrrSByFD5 zmjFmYM*>i0h_s^Vuy=$PZ$i_%uaG~OCB)MK1C zs=DK^CuP-zv?Fe0nwrNrF|T0==$_}|8k^`TY7%r?N;O4cgrH=+3oT!ojYdboheWd>QuKKu|jA*WZM;FbsD0$59O&zAZa+( zbe)djy!376+q&Ad)^N!tmQ3g9RsL86t30gO;gKT*HCwq)9k%Ti&Aar<=Cw-zU*0?& ztBB)RCfjwK_V&8pAc&Xb!(>>ldr7&`-FI+pn^J-tiFA)8h>>oq43f0CD(i1HC=E%+ z25r9M4*2=418y4782EJ$98KWw2y5_EIfo9~+>r>f5kJ7EP*VCBJxUajiwzsm5D4xf@ zYp1#q{_K=+aKk}vEG2#P{k+e7j+R!GiZQSE_z-x5n5$>GZeBLmV|SJNYEPVlWs|pU zF)eFoTrIYEOgg5eOpPJt%gapjM6C~M2&P9oZmy%awdr}Tw&LJpk~W4WsN-%b=D6eH zz!2=XRYj1B<93c4un2oxOR{r`$PwAWD;jLy)W+!B4aT)e+SV!7{<%|)+oLMkDQk6l zo^*6cL(iy^YOIbcwtvhm%V4w?P}$o$29i;r#-+tcDa7JQtE=9Zw7YqjO(1%Gq6qBt zRQ>+&+a~WfcO}N#fA+BL$ZFkXnu~qbI}cUIq9$vuHt~%RKC)X&YEMk6qcKcnw?4AA z+_#B$O~%>nEQko>!a=D?@e;aPxP-`_%4!X!NNpQy6WB?2iNRV^iY8~8)TeECnfZuJ ziW?xHjFo-#E6Le26JvDP1@SWhitVDl2rYM2t!4E~kp|{{S&@H_$7<58V@bAaSHtlVGhWk}?m=2A&D$9F?WrE`+z#VJOLGL4 zEwU{WqeI(Gi3kj)5?f2?YT_C!l3FXxMOET)Z*#QCJcIt_zm7%)^2~Ar6Lo=r0HeD? z=Y>?8_QN4Aj!HWXVjk`@cvj~5R2`LY+SZ+=3N^hjK$#*6fpJB<`^EiD zG;cN56io_BQ(hS6Jxc4Fo6{G{$!}+D#d1^K?GxI z=3n)HOj+zuH(k>l^5>R-*oY*Cmm)V)Q4tg#byoq0ZQLchc`acW1uF1xRO~*gh2Qpt z;^QeB5)6lRC< zOlMY?HA!|OSA_7WFy7kvj@BfNrw~+W1f~JN1!+t8V~YYz z8}z8nS{aKlNb89&Au4_(!sC)kQd(I+0CTP*Z&v$8*v5^qm!CZwSam&uAlEJgj8vxF?$Dk>Vs~8iZ7Dmu-y1v+tyM zawtsz{2&aQ$!k{KZBuU$p>8%e1G5X!m~qK=l(w6-(`_t;$uQY%#F06sRC;Y7rLy9v zvMH9n(U6bWa61sDs7vF z(RGozAzbZoCR~!^Hgo;VvR^W5wC)5vRM)EeRNG`)Nwas^1`Q#PNR zGc#~wK!P*lCCHQKs-k!D~)H~<2MFVJ9~HUdt6xXTXecM z{A5XXR^hopQhJsaw+s@dM4MYHM2foCO-Tw(Mn@b6srMP~x0rV>p^1Vhrp7jxILhWY z6Bw1aD?&REh@!QdYZ}<3v$1h95%Cm81NO9>aX4UVcOQ03-LvhmcFb+G{7H>OZ>e{= z!kIb?WuYQkEp}Oq0Jgeu!W)vBHoB^(A&u_w)K1j-Ws=yy}So(t)?}thO90{Z`j=6Lqm(VOhoopUupDe zrlkc?iepD@bGvRNHs)rw9Rc22hJh1Dhf7C(5{8wq4Ayt6VyvG2k+k7o4}A?8>O2}`%HH_j4f8= zGilPN1H%j|O!t|>}fB#GT_5Eshvwju`ZUa zs+VrHMtQYPx!r?^C)^U2^!fnDRq1Q3%uX%sqJwFkb$Dy!Esdqf&1_?cE|vIT?2`dh zSB5$)2}E-fO}xWp2z z5y#C}cT4(L{#Qk6snl_K*85bESlY)En z3{J>mMh8w^}J8j$EbjpQ zOhZW>R>I4Q2~`8uV$t!7n+r!lX3J)emuke@kO(Bm@=Jl#Fo+=_6(AZpp8IfFB%#+u z>SR767HOnpN*rCl<&8;fmiasPXm1-8s>3T_O0gylo;|AS!X-ts&r5;PA*d)rPO}{> zvY^t!inUQlIbzFf-k;Zdb?-}9+x&!a#MYKS7O}*I($m?NE5v0{Wovfpm~Q5fTx%u7 zj5P$}d8x;TI()p1&$g{QYS+295@*{9lPYNSqVYQA9HZDlitH0X0aFs|VR`4c%lycYQ42Y zx3f2KUoE!4^wrOd_1ZH@2zn>+u2X1vIwJHMUT9oj4!0o)kkCVjQk2uE zOO3c2N{Z;DC=h8+15A3>*8bAwCO#Lj9Kb--6%&%JV_h5LC9efROpO*?DXmXD^5A%V zSeVxXfFPdCX*p3r-DO-k&~hX8j5r1&h^VR;xnwK3J&i(1uk$_0RQ~`Fg8u;S$0Pj7 zAn%(P9~aF(_zh|H9CrKj{^`HOD*S9X<)wr+3c9z8r86}36jT$!nQ-TguS&EFN1k#V zt3P-A-q6uUD{tE#WdK2G4>qE%qajhSNsj;6s_JSq+@=i0XWl=Gosa_5ouCNzf6 zGcs{c)15AfX1m7rg}QgB`-AIpYGzmUY?8QCB4~?Q$Sqn^dF-@)W8U8k&%mB!rqA zvC6v7Zrrxm+w*e?ZEkl6T)-E=TK297m~a4&Ri)Y{ww=StVQjHm$O$N}1-N26t6FyY z_a|??e3H$oUCoufYDB{orMRe#wP=f>)upml65*&6O89Wb)2FUvv~12~PLeX_hiL@q z@Qg}*MzfoQO_;D32Du!I#}iiMKH_bu?j;L(*b)~{^zzV9=M4V>m>dNyt#FeS_y@kI?&*rZ*<^rCcg)q$)`W|6+~{~^j$7C6AByc@g&#D3 zfYy&?{$1z%5$_dwcH+x!y4mg?{yA|;yGu)JLyB!^Ns#zZ1w03&V^`9+T0ABOM_>wZ zHA}g@&6&D#(kahzZ0L5#&P-xc>H)+yh8EgXwJpU2pa&B}KzwnkX;Lx4Q;8;^$1!mL zkJGxU>$FB?viu8#MkX`~WysT6ZbECTO3+g3RiuMZX-Z+Mn`?W>j8|-Iti&V2j@%7S ziSLOdh?cuG7*=5I4T8$=bbGS%)~E&hBc9U8>SG}W(-r8lSb9CYAOtd(7$qt+Dm-gk zdCO|Cvv*eR$I6U(FVhka<+QYd*78uR#=md+nriMmnPVz(2AV*;?y9sM@Z;Xpy1EgS;o(hqj~E zF68%DU^~;a?yKB1qMGgVUVZiy6Z|g1o|PygE)+<`MW+4Ln+uC=?k8X$W#p%&t{%#l zHr=ysBkv-No?s7Q6|MVo`k3AGc6RdJd&bFZp9f~OV{p4|j`gl(*%xb%%Un!qR^QZy zswqZ_sWdb=>Dv$HF6%bUce-xS#`vv#zkn9G`rV+X*;eLjBe`_Nn=fIrv5~>^YWRpD zxW8%3h#@at-`kRvq$!K^Wwgs`R|JW%gN?XqY4}Do+i&JKOKt=-%;+WM zC_(+8p!%w!=cV_1Q}B6>=EAO2rdFn z#=LfgKD@`E(wgVQRx(F-)s-=?Xf(k80D@j_wopF=UZQT+v?rPxx7-TS$s~RtvPUdL z{4_@2?sG{O?5?(V2D>ixT6^Y8znsRux8XjqKuUK#yZ!3f0{0y`nHFg)i7+5@Rkq=) z-8^Z*w-B5lox%(yjgrQh#z=SeU77A8hxcdy04>Fi$U&gDdfzif5O zj5V0|W=sbgBFk)TLDv>n5elj@NpzFMWJV#|-a+$Ihm#wN+EL?49tP*YWzL?G34Ex? zM-3+y)cTme4QREKu z&vbn(r3+kZds3ZpOsA4o5*lGDsi7yp98vW>y~XTtI@&im!tIYZWY9?@<|+}ed3d{Al@V9r`=yZdl=b0u zV?}_QvLgps2<~G8`g$o!;ex2`qFexMJc7FLsvm$r9}kMLz+zp z!-@+-m_Y%QDf`Phbn{{T?7CpfI`E6bX{yn1&9A3S-3r6UKeVt*e!{{ZP% zNZy=(0DE|OZTc(h9Gi8z?HD5E1~l3L0^e*GQjl^=BqKxV0P+e09+Z+8CuW)0*PdrT zUVhr;jgj%Y?%Y8AIAu}!J9YLFrP;1-wWL%+y902BX+RK(3F*#?(`g=*ppjlUi0e1B ze|3`}C%#An8A5kb( zU1=(w*ZJ%#OY9OkEh#ul=Z09==-eDc(d2RXxQxf73Q%L&s5}wice|ZG2LT+b^yi5^ z^wH-=YSfdN9L*0dVDlpj@TLm1k%7XPAKTW4pD(65;7ZI1wx?BYmXLEGEr1$UvVBCL zm3ZP4?Csp`U=~UG%sO4{!@ml6PbeBm)ZR|Sdug>1uQvPF<-EoDmD$vg+<@J#dK(u6 z&?ZYsTsI02HK$tsIAyWj!*ZaBo8_h`$0n|S3G{_D>2yzvN){b`<1ShKROsF65?vAI zb?s6)HFjvjLdO8ME!4 zyt+143IZ!!>4uqL_#k8!Xkl!@$5|w%y>3E2(wr9#bl|!YOzEcwSz%~IMbo4&XF8<& z*J`=4-Ogg*%Mn@a-tvs(fYO%AAARe4h-GU{Kygi=k>UaH#BQ#Cn%QMwcb46*<)n~< zQPP9GDt^#f3m8b&ZlfvK7aG2zjdHe$R3*5PwI`2y%Y~UNs6yL{Lr8QTNlH|nr~M3F zZLvc%maThKc|<6~?8V31=&G5V=C)Kn>joS%eKTIJk4nAm2+m%m+!>3#qr-C3IsuRE zCi{4@VqK%pN>ZDdW)hxYuBT7BaVIq54(#0*@UzU<6EAdVAq!l9wcwA58>y?qSsW?r zW`hK-&>G_k>IGCO1*CAr51>_nEmB^QxMRr;L0gtPL|AHZ#Vv^puF~LT_nk^~#@40g z6eyY+oL<___O|Lbg4Vtkv>Zqv#&N?Tj~p-p3K`p6=B%;%}6Fe~?vRHNYgtVzdSMh>)<2!4$S={b7R=RXWEw#L5%>xsn zU0CFyK|SKEX1kUfcqLL?*<>IdO4P$N!l_>4_8Hslrp0%I2@~gCHobtd>{P9}u^Y8* zOM6OkWh%?87GNDZs5K}ji5STBA3(b5&MW(1*&QS?fK?teLflUR5x%@C=WXA_6FwOU zYg;3*%oTadim9l5i?fh6eV1k4t!j2$?c=aJlKl6iQJDx$%V)@H+XbfEA-538ON;7M zDM8HmV?ATi(QQ_i*KmUAu57N0mjmL2hP61RC3vr8SWmpkcPy~UgCV$y6S3h>yAI08 zGwmCLZpx1swJoP!SVVRoLdu*~D3r2DN|vQlDptNV$1a-M^2$KOcyTxb^nDerj(dBi z6M<+LkylpB+_!$(4Y9lLGOiKf-skRHPqBvdh*RK9+pD)REy+XBl)2TojVM^CC?Mli zwq0CoZMWSn-1f&aXv|U73q}3>eb5FB;x|(ZgwYWnMDJ0T~ zQ6%sf>Kk8DZCkW$eY~1p?3(WhUO{j^gIO!RvhK~rvb8|sF(1)Zy>bL+Uk-l^UsZXo z;8EAG2}%^6R-qlzi0PKFnx;CGga=Reb*w1@qr_n^E^AAg6~iHw8$cx-QKqXc^J9YM z&b?1&JJ$D2zpA*Z(gIc0XsHWq6(K6G_f0V%UtCRY=%g+!b8>eNRVo;mE?PohcyX+7 zrgWN$XU3zE{rJymOnBAbWdMQ5eLrF2frSjQq7|o~$K(63#HgUs+ew{mDhdPw4q8rW zAdUnasZ6{v7%(}gm{Q7CSlxf6?Y(rm%DZj7!EoBDnBv`$0hYtiP_?M7&uq5V+?JYB zi6Ip!PXUfyyZ%*emzQq5+h>x|&no7$0@du|0`SOIy3?z!p@p#BM#;3~|G)g{14%qdhOEJL&Wq1dhD^YYB~@1y*28%u4+*# z$4;@bv)k>PX<-{8wQfyj0D8Ukl(?FEnGClMbEP?xojrd1O{OrfV5nn3=jBRPze*8< z2(&BT59;t7I9C9KqVAyO@B*T>;tqcb;Hc}qAZPnQK0Z{yprhpvkcvNOG z;ac+t0B1sr{{W-`%y6LKKFR~}!?+IWI`16*%=zcf#2y$!PAX_n&UNKqI{yF-a|4(I z1ng+5n!grxuhmZjT4!Ig3q=$tC(4yH;mFfG>p%%Sa6}-(x`%xL)Ogp=kr|&NFj^?< zhJ=qlI@3NsSM0)E6rrJ9;lS`be!wZ^g=qk1g$_0B7|RM3&!un;7FEyN_TaD`^gZ?O zrGKPg&J-)2cupD79B4-ejVRYRdH(O}!6IS8i@v$X`u^{;1hhzNv>#3wJSfmt0Qgj8 z&&c>^TmU%GO7GkKBjfSG=iNn>d++%8;CpE6-aoS}@JY&m#MGN*xzgR+adn_g;sLM! z0F)!gz+vlRmr;@a(Z9qgxv_=+0J?qEwGfl4NdExh>w!G@&X9Qhc<5GN$OL|~zlhda z=lRFEzrrYaAFq}rjPTB*&sDvGRow2fOL>;C|&JOxPft3G@& zmg`Jksmw3O4;QWl^<%mn40IBS5?PHhD{R=NNu zA%UvO>X2Mg%|Hi6o(Uh_1D;9bdE$ca5?pgyv5O!pQ2v+osSX4Kp}X1$Iq4dZD^tUc zF1lEfbAK(~k9}7v6(1V$ z<(D&!m?>4cV@Zf3!wxEpGoeXVE1&M?;f1#xJ7~s9Nt_vcGOz6W@ar;41C=HtkBGwf zP$GawFR$yuNT8=G0Z9}-InZ)B(w_?9G_Dj18u1?*WyY1Shb$Eu)d?=-1;S0T%iCuy z_V{p~TYJL!IjaSb4xW7htjJo3Uj-!&u-$Igt(UG-YbnN z448w~{A4D8el;YT*M>aJ)xVeheYlpM+ z8&kw`;BX+J6!Rmu7RHwB>tGSDD{;q>a%uTC?y8&wDZ7MwdXpaJg(o5&3e++<-0q){ zwliHzxmjM$?ZQ$?bBh=WKoQy-;{*gcmZMwsY|V|f^F+^=0TUM|6$_W5sLj>52Huk8 zhqy2&?RF;g;oCQ4R?_rDBsv^r*jMB*<*l@(-Vx8n^(TMBS%6eI(TV=i}Io}NZ+*E7b~5M8D1EiNHTUh&~^ z<&Hh|c?@t}M8SB-h+=>cstzq_#CGzf*BfLp0?~Zj_wB{!#*R@-lyrxWU(_mys3AssUp}~ zw?l_HhF0adOd=+xOTBaix<*cdLWVsparrmW``*X6-N!pG-zb)Aa~X`WuMv|O`?VUi zXUu0ebm zqCnJEIE5(Gk;b*g>dqHi+qNSk!VGc9@*=kZJc( zFlumbGeo5YJXNbvsMK-*jDkSm1u+uZNTQ4hW^T8gKsn6?4nd%hNadQEdSG1d2si{N zD%tHwKJMsAqJ6t#fa9!Z#~IF}UzlQLr|YNT{$Hl9{u~eV<2g#slS_pfbax|6X)iG9 zNKzD3lfxpFpoO7gxe!4I3|w2mbrFW)q0yYdr7`YfwJ@WFL2Xto$+TolZY9cQ>)Vn` zUe48aklHS`5vf7eVcZtk7f4PeRS19cP(T5CYB8GI_RZ5`l14>4?{>$Z3ng$8Ly1f-8}mnmjJ=A7u87J1Ndpn(Ec=G@E>=NZRk)WJ0@bw=K;$ zmuEccS03ool?g%`Zm4;x5aLZnU}C~c8^&LWU~@kSd_}K-v=OY8);$h$7gdf3-F5M(#XvkH-1{}yzT3i%m zisxMqW{b=vw_)Pg7h>cG#mO@RKFWk`)W_LVw@e$etVgqMTVvP#s>SjHjL)|2hmyE& zTViQbuUjOx^n`%WQrnW)O8Daz{jhDfPq4d2o2D5eYnWBCI3|@sSmill91zvKlYHb+ z%LOpiRS#anV3Sm%xPRz7ZK>JPW3g#mhjt_lwgrq;g*wz z30P|9*ee9L!Y%M6+wL0F!(!QTSuMYtYtpE!E3bKl+1||CvLYz+(nglP;sQ%*@V-KNJ?663#oZYDo9-hbq2THH`Lo_ zPg^^0ni)h+I;3!NIpusH2Vekc4o*Dq#p}JU;_?1@dkH`o3vg~2sU4~*`e$@oz23I9 z>Lrzz?evtbBRR=KyFy$NQ-PX_VPgIpEc~w6a(GEhBa}%-TBBno4K~_=hdHai!yIUZrQd= zl88~|Jk_q#9n_sH2V5X51gS~{YpG5*b{#>v?e>q}HtA!0cMWrt#vLGQTtirmDAgw( zCyrHI==&KOw%WPwSGR56)Ejc`D#Z~Nh%n+zZd8RR zwA@57A{;AZme%T-T9ksVNy@1>y|%J`?QAahhWWc}%`!QybYsNQQ&U0~hBM&>Lh{(H3X4@rB^dt-O!(p4$Eeha&b)B?$(*b^vWrERlRcDRh?~y z+Hy~hH$A^{j`mn!fy`iZZ;MVN7HU3PfTZ}GS`{%|lCG_tZ6tc; zco?~^8DI){y9NPjS7@+q3q0+=YrWs@wg)D%1b9~{u3IF)VoaeTObD}@TAPI2*Id%k zL8vB#Qx%Mg{{U^eZN0>fhF2$nz_k|?4hIEX2+E_)cMPnONMmc-4q&RFKuF@8Yd~D% zdYE0d=ontq=|^<1mYjJX0PC!8uiv22v*5qude2{2U zeY$PwSh!7+wFV<4ry16SxC;LO%+pkX__1BparBqrQ*{*9me==DY15%3d3nL9p~VQz za{{I9=JH9~VkI%eV+%O8nGEhKQkDizkz<<99E_>i~)(f~&s@W~Eo zz|~p4or$yV4%@9z9KPFkth*HLy?c>(moa;OYMe*DXQaysLn@e=8eK_AaZT_U3}!cL z=^J?@wk&(C?_U{f^|-btyW#+%E0qX1k;1HO;q#&e?hSlRaC1XIE*v=UMH~U9IbEvm zBuU%9Z=`5k2brG?TibFoGF*NuG90p@$x0GiX))XdrvlOfiAhd*OpBp6>;C|l+ijVy zcnEf+Ee^p;H4vi$2*hHzA;5ksw`hvuR}vkDC`iRMa?dc8Ah0ib?8LoipDqoi1nE#@ zEt!%fsjH+_Jsrum$?{%9id(HW)?3|WyoVYMGnpV`Q@3oJ&d3dh=3PAd)c}@-ri{TxeG0XlId!-sT^8V5E`mf z>1eON!x6~1{2&a2c#?2hxh*%9?R~*$+SbRqJ8nI#?!1}s&8FJZY%Ou3 z+1mF_vkXm1SzC{SRUnd1L}RSk-fx>O{cEtpsBFR=4|{`{)`ij<(pnj;3`>{Aj|!lk zIBu<9bl|r|>HsQE3Q0mravUk^acuj2(mE3@_wILNGIiG5dunV56Rm~klKO4%G$*4X z3u`G2G_6U?JZn0Or8dpN)+lZXyxkcomKoew9}!gzX>J-p$PjyK4W;byNLyIP(_v-{Fm~mpLoOE^b(>;bb#r946cm>vt!gw$rZ)Rs zgq=ef-FFGi#oTKjl!38DBT?F#)p0Hwf;r@#%Bh<5maO@ECV6qY9coM54hT*N4<@BP zMB1xj@pHT;=WuQ2V!LkJP~MQIEl}ggdAW1tzX>HMc3kH*r6lChp&T>JN%?cW%_Nsb z?nhmD&hpy%2bLJ`5l|b6bBQ0bok;v**UD@rHkJ@IojxK)0Se>?u8?0WdyUO6#kj=z zl$6bOUHJ}9fLeMZD|X7mk)gP!WVZ9^4J@lxl`5cV%M9Q2ChfGo+WT&sM&~5oc_RsE zX$>x7=n6q_(n-S=rXt)egq|T0p9Qr1b0Zo^pLY@%XO)MNs7~T49lj-NoX>QGgOi#- z(wd90>=k#l&lRM zD0OZGxRlfpT)5EXjh{$f+rHJ&1EyVMmbn_?$w54Lduo>YC$d#2T7wX&>q?R_HBq`| zTPY3^_$V83KjN(pYR1K{X(+8d#C;V6f=6X8kt3?Wb%)M{f{iCKpCW#|I6ydxOLIai zI(NBccD=SH8Xo=y3i2lBy!Ih$*tj^8<<-oPJR}H?^>&k?Qim= za}Q}h>q&vyQ{)}cDwh=ncmm})GbrqJVVYN;8}j8?m3wFPZn_+Gpb z!4M$QHH{LnSE*P;`RhW2Fl4V*wwrDObt_)H6ay9@8 zWbY6|&3V?D*&D9kw_rHT@Pr~=(&XY?Tj*k{YJ8UTC#gg@qpR?Ps~YW-a))oXK6VcKH=)j!$%ImQ|sOG+jzIMh;FF3W=3?h;sO<+D+Njls*q9#pA2g)_X|lJ z)OXrkaQ!~2s}}OcaTp=0s^<;&u5-gkC#ya|>KgRQ6#A9a*O)1$d2!{5df4)GIi+0g zBbli!DHvRkR&4EbZ*AQU^dTxLN?l=PN=QXYn472sjssAju4jqIpSGsy>Yd|{j1}}6 z+Fu=8O_y=^iqr{FZ4uBYG{b$?d-*sbU3nP#1A9(~FAZM2>jd5TVd?eBkaZ1a7sokV5dm>HZEtRPc*`+Zq<#LM|hUCMyk4bV%=_qw^ zi>d)b)l-f+`N6c?OVj@VHx;{0%Oq)Y+R>;pi6;V{y4G~1jMqML-k#y{{Yz`J+-H^>uV_xTx*Q>g&wi>RT(#B zcR#nX!=A%+?T4Cl>3uEDg3h#5)XR>gKu{WZsdUFXx!5|Nr)Kc7?%m^xIiveS!|kmE zTZYrPu?dDn9fbOhKFYPbd-{m)GOrfxtuo-9%LeBrEvk9DTMYToAYCOhYI=E`!Vw{c z;t63vN~3zH3C}$S#n*jX^Gw?(aJYs?1~|RCoYuX;h1!NAPNfTiqMEJTdUIv+U3VDr zp3q!0lmxUF0EYsp-&$|~0H(KTZH>Wp*xRDlb%N&Axk%gQ@oh?G#G0FO#B|E`ZYdHP zE&-^GWDZ#9AO14-oxb{An{tj;KH5VTwhc{ooHZdJh3~A%>08^Ic3)dLjuNyxNx+50 z7b?3p$9KDXyOM)p-ZoipEDFPsDG(+koU|#4g^*m&f)ulje%;jj9_EJ5?iWAxOM_k9 zj!$7VNprOB7N5_B;k>|6>kC$5B`q{kl0Z-eDj?BGBZ^hQLp~!cUkNZ$Fg0DI94W<_ zDIjN0JUrKrMI{poa6`b3BRcTTqYuRPJ*DwDJ)?*qk68Co930Y)1RmTe&LRq(K;u=SqyCV?z+w*?YD@++ zPSiy<&8<8NS9Z()0MEBWPpb^=sqzv30AK!N>31jl%a@aXg|#A1peaB{8e~D|!8+LGFc-9ttU%@9??*J``c!B&egl^b8ua!=7?ws$YBx#PBQ3qDqMABTGS{~f(ZS8TgYS`JxzYa4A}(vNXFb==LHx`c~9=GzvF z;$~cKHrLEK@ge(ZZ5dK66HcVEhaN~eURsGcB;%27-nB|o);P4zN8Ru2+bz;L^uGcXU*lJ3rDWdyrrLv?JRI-%@ z!ccW7Iht3`5$+<58z2BYxCQmpt5>^GVI;LanxxugO^1qVQ_^ySGfE?vQYw2sC5Be1x=LzuP!+BTOQYfV=Z%g57k`2w1STW9@%<8W*693QBx1X42(|ZROU^Qe%f>#w7N+XuRm1 zgpAU8w=Yq{)kx$^e%t}PTc%r5R1hSj8qpca{qM^U9M0YjLrMjm6E zAk@Mf-e7_~Vvs=xOMwpU!jKgKd~6(uv@X9~^qS$d{`MFBk^U-LeaSz!^i#`-Y4*!* zp|@I5&8M3~t*DM=3kpdf^QIpy4;oyBypAH73eurLri577V3pb?OS8C1QEoDXi+a?m zl`YF`zNBTit^rvT^2B!9HJIBu@jH;kr@f^@)4p?^grGcj;C*8n1h;QdqsTHXtz6qN z-yM4@^vKPngzC0TT6&8$s+5ONgz^|UP25qq%NTe=jCtjjmmgUK0m_Y{Cpc+#lA{M@ zpE31Qjhg9iml6vxrM9Qj9i$k`3Svl75CZ8MLRxvyf+$pgq<9=ZXLAJcwXAS5X$mqq zV}U|@!j9TR(a6U*xu_RD9?Fn_e|PqrST(3BK6EaFG7#f38g2GgohxbP(&KAMtx}{c zDJn^>VB|&&v9AS>0JQKpk8KvGG^oI>HcPO^7aLUOUXs(TiI&Eri3|1#k3K4v@i9db zTu-oUAlK3b2OJb}Hrnnhn90=AS{kQDAx;C2ge4h}x+layLWNTm2cM+Ve&O3U8A#cP zh|_PT#k$pZocflOkqOYDR+FTu#}K8^r^7rWa)x`!ZQRfimnH7(4qQhZ7L{!)A`*um zjx8g;kxVg6o!rbfopEB%ZE9i`UROe5?1gT!*>wp?LPFALf}|xxiqsG+w&yUi`Zg7F zU~5h%KP^bdzk-TxP~agh%UMqCS^of*qn)#>JFj>~Oa93z+8w-oDoS-S#Ha1|&XjoN`AlINl9s;9fXq`l9zDJ3gmP&eOkE-GI^R|rpy z#UjaZh||usM_7JfNz+h9phhx1Ptv!}vH|TQMcvEr1??hJ8``8~UGKuJw!PXGOsb*K z#N5z=%|NF#st;uLQud_Tw}tXL;%&$Gowseh6)Il2h52#WoWN6R4ni@Tkb=Ew&oB)} zFq=0>-g%JjH!Uo)b=zYt=A;K=F=+}FMQATKsFC)O9aD%)my!a9wNnaG=W|Zkk8s-( zp+1OqebI7u*)}rFwi^&`vQZtSv#GgluS01`qV!Z&m^t^ew}M3O(Ydi6pehq#Eun3ebd$<`W#CqIH(~Lh8(+i z*45a5sXc|fBgIX{^R@006k7K8H(N1F$sr{OnuF5;MEXjCLGi~)+Pc$f+*;8w@+LeS za9+n{S$n;X^4-KU?;1Fa{Z*hClO9`1ek<(BWnd`}FzOy{K;{Zo+LV$A^TxP2uV{Nn zE#@(*atlfv4IPDNjS7eF^QUI+6ULVH{{Z$zz`-gsmt=?CPQX6-z4eBjJTl-vx9i12 zoUI({;*u>#JTz4lQj{7@qHD-;`10fSVk?7*$2xEzpc9cKjy$>Z`_2@AVMaS^HTPe= z(zfl_`6FRlj^N&|fS1d0*Ex$yoJdkyOlGPi&IwRbg6PvJKD_vI4zcUGcDtXz`g$XC zy|`kHE)l9G4b9l%xHM;uT8*1vW!ztgZY~j61BM_Mdh#9Eo)t_lv|p$V^uK?)_d4xK zbJm!*8`H^ofULt}-EE^SAXg!*&}EDm=+Dfapd#aUyfHN58u?0&%?$tn>8s(r^v>P) zc982Mh+sq7uKKAH`**yZg?c{cP3&Lx${%67tY+s*nF+>SaVRZKg)38$gN0N>s5vT! z2zJ-j{{WZoX6y4N<7y59M(cB$gn)&o5!m2xG_iNE^&3sEm*w4|(oh5FBR=G<)n>Xz zyjtzoXr!38I8i4?Dm74QV+eh;D39Ynb4l|D9q!8NJKI?9;{H^OYlm}yDd=BabD3gw zyv~LH02@gM(N2K#@#pnoVh$AA*Km_YE0m>aL0r!)@CwkcQls|r`0%ANz(fLtaE}3> z#PIR2i5Lcl8V5c!%#bP#KpFA#`>+W?ijzXQnI?vWQ1BE3$2`Uq0)?SoAn-Yi>sn_) zP&n}N!e}V2f&uX)R;H)YYtKCXyco|K6bjH}D^rjrrBuj*Da*?N$hc6h9};WiDWsA? z1vT>Lg(jr#qpsuyC_bQQ5BI6S(@)+oFl`of>it9!$kh62=kz!TxQ;Y*8u6w;)Oi8t z=YtsxXsem$r2Kde9Eq<1Ot2gjV@E;o0CMpe=U*xuAQEumlq=pmN##-fcvE$8pJ%!0w@)aGx);>B|L2mwkHx=i5TL^!soSamt8$YrkjL z%LR@=1*5KgGr{np&b%-ajR9Uivjlr+9?IzYuwZkcjeF=mKfeY$XmPI6pH6w!zZ?v) zp(?3OaM!?{shWcXIrzlr{0>m)qe?2$W31GuGdDq&O=b`={MoowHuCs5O-^ z*W)SU`|;8(5I_g*JNS)dZZVkmH~2*i_~K1RG+M<)d_IJnDWwW?qiIYkx$b&N*>`{j zMU@4Av!vA5j#$n0m;V5R^9~*#c&mMtKM`l9zF|*g>Nw&wr6Kn{L@yu8|_-+nNksb5a_ApZb>$MRHiN#Zj7xbzOuh3sJdsrOetoB3|<6VTGwgmM&2dF_s8x4=zq$e&3G?*YB>6- z_fOryK5U*#-p29|cvlB=)Ca1vT|v`sit#qU!vbL4Z3O=4I1$`x!cTSkY_w}m@U`fm zSLQWwW}u3sj=UD@QI5pkwCR^KSInb8;>QnotkK#xAms9$>j&IwK6|g)?a6PO5YPG4 zHx}ecR;RZ8%1D3L(@-qPgdsf9twMv8Da94%<_AXKZL%`ymlsx!@VYOSk@}RU!kS3p ztCdWPWZmJNj%JwU%sb3zPfDmhiqAXuZf$Pcty{;oJGSYv<)s4P_RRLvF571G(_|@4 z#)2B0#jXDU1XZvH3K|@F->f=orS?$nto*lq?$^38AM)Y{2ws?-Ez%GAu;ae0{m zu=|X<=|w=VucnnY0R-19VS0O~`ik!A-onPvTupf(VU9@4gHgZ|;f|0vlHUlh$EtTf$e6ahtlnE(OnQ#qC%gdGvOP^{aBO9)R~Di-0!{-u!NJw9e8GY?e3Qrp zNpp@UOR?j}g;3k0VE0nTXO9Kxw+;PbTGKVu+av~V&=;r?{(|&}om*`v`nqZZzyZU| zx3+ynx)TN5w-a2vaCTn_Rr>dk+G0S0%8@Ucee_#_B7t##zo;V zE!&4}?}jXnx?^9Haj`X}4Cs1Hc3K4z;kcyhbT`yZIa3N{oSQ48jz&oq?HnXIk~&6e zY9pK)8a20?DB(g^%`;l%j!QE9+oi-FO1K_Ml;zt#=eW(qp=fcNmefMMw&b)&bxXVL zo1@MEZ;VB8waB>bmtFq=v|uSsg?iGED~`MQANh|a$GpX79P&xh*CRxb1LC)uM>IB8 z$AK{ts^F!d;wwMY`xv>me2xLP?ZuBdJ)nFm!TpCm2CR*lIu^$6mEUj9dJKK5d~|Lr zO~zc77>bL1^r@?aW}kh=(MVSTtvXFoD00T%eYJl>{%Jm2eKGAS0A!?L4D6CU%VThY~*nFbp z!#13itL~H1 z<;BGtdgV&8+vYx&VQyxaj*|M^G!WcwOD@NNjzU9$0eMgZ$49#EJEiD5bkj*`V>^;N zm{7Q>K-X&pjA~}%=ZaLtGtkInneI|Cjq6r z7NyC5EWQZijevwkGD{Q!oz)!>FqAu9F1z z*EY~HW|0|?>%@T5$qsGegDS&2;Ty)yf3QN_?_FA(aB3ymOBbmfX!0c&l8BE-4fPz3 zwpszTjYNZ zyiIAlJ4BZ=IETLhtAkZgYVFTD$aOx>XR&PdYVRqiLSmfLigs1E+;l_Q_u02-yMJ^_ zMau4(b8RLpDDtgP<*JS|3PRp6oVLnv)e?h>0i_hHNyk&_`|J4a9N0Yh37EN&lF(bI zp=m3mM2Ev5TreqF?YWJS0d!#KLg1tnp+iGH6yHL}R0J-WjMZt0$yXpIHY+1LFXuDr$zQdbxBXC$sUz9#%sP7da>5;<9 zEq2r}R+icdSs;Zh(xVxxjka4E{#NWq=D;*79Or5+Dh>r2)KHl7JgP&k<8w%bz6lEA z1`0i;c>1e2cL!`UZ@OOZ@Glox%-ZhXFlqa1&P;(CA$hRWsE$6As(?0wuIWF-5+VNqtZePsM53Q)r&3W{{U~?;(qBa zzn+waj00NdHJ}pmJUYk9XcC{2Y@FH3*sZcDx|El8*b|+EGVXP zmq8XRNjDJFPe64FXfm|Ar6wZ`Bqu|KRA{%xfMuQYCvfsy*1AWa1x5uzAvgdsCjgn% zyqLzMkQ%2BJo{IYVzoJoXWSPDoxP?bL7Qy15qODjh8VV5rbY^FnG=%@W;+q&tw&4A zB`ft1qfFyo?b6E&rH!T9T#{*E4Pgf}rvMI1k;M%~bkH#(ClcQYB};+e7ZOJ<6*cYt z{ffjpm5Tj+g=n{2RVH1!>ixaRinrYeZ(1Wg9renLw$n`oZ7Bs_p`NTx*zR9xZ0ko% z$SuyI*A|jP$|(e5IjICMrlQ_jInQjdG0u2E=7NelR}XJxTZ465UbfpMHQc)-q@puX zcLZ2dWTE&an}aSNmqdCDS6@xcrA0*nO4Pi;0MkJh;dKqXLA#KAZD+Px4e6>3H^2=G-j1ji}b$p}P@#fet8{C4&vvYL9T3 zt9-OYF<-OWfJ&Q4N*0z?q}4}M$#+e{=(^@BlHqT1BmrFD0%;^Qz#(fh7z3oHc)c8L zj5Z0QCDO&DoB>r(6e@=weQ2%0dbf8&Z&_}tk+!ZVx?9wyUJH5aQrvAoO_4G70~2k| zp@o%}LXx(fNC~b)+V3xme~pvfc>;MGiE5CcH4<=eDZ>H?K(#>xFWask7!m;2alzQ+ zgAj4Saw3_w7TTYAX5n|4x?)|dFqZsHxjrOPAl%n(Q++8)VfC%q2v=21YI3f;5D6YK zx<_i+uVi%B(upE$nqia6064Ud6SW`esl~uzIlH+|AZufWJu%bktOD%t_sl7l_7>>>;C|Fd4R5ydQPA;fn0RHy0VXd+nr&v z8+OlX@O8MgpdeD#_=q~1p`kIzRV|IwR(C*MHRc&J01~{4rw%5wCeyh0!s!!p-P?Ls zu(7jtwc9QXTj0mGT<@{EOEF)zPWICol+<+xH9Q(iDm5gGk1Xk#ce^WFm)c1yY`}Y1 z85;y|lpsem=^?-sQkromw@Y^x(Ai>P1I&4AoC!Lb)5H*=7m}@7RvrAEnX}05eApX` z`2tH$N=!sVxXI~BbPIHe(U$U3{{Xdd z+M(t65+dWES@w{VDDC=RTJINE(xIpenUcU5ft zH`6V<+%EoNCxMGm)2d}GT7!d|k#RzU6*X13+Rb%#=0_iwAUK2Y_qEv}%?F~6wfvj7 zw;NLzt8_Kk?XBKt+7~W5-jrorlv;+VPKES@5Qt&M7*@3*WT2{)B82YuomslaGoy6d zIF-gGJ+3|(9DtNmXaQQ)C{z-aBscK;M>;1K+`C9}5I!8!w-hJRl?tC@nICoyueH>p z9_eF4cNsDyKH{KR<*ByrPwGRZX_t0XCmHG*D5dop)dITlx4Of7X3?|{yPDU=r1%=* z1F|X$^pU9J;yi^Vw+))f*Oz}2CBXp2!!JWrA3*0O_ZnCA6WmfLE9`HP0KiY&&hE*?jgv1o5}yXbmHpxy1;;XN^#ssig&t*8NV% z;=RCBCv;sCyrIq8R!fp%$a&N^4&+*SFR?ZX#Dz&rNhxh_TO3<@68HhKQc86Kn)9xx z>Z{G$bv++pt~W~_xTk9*Q1-ZisGkUooZN|q3J9y48z}7}8;sx((~A^h2<-b^nbR)S z+SBbDMX2{{Y}D^jDs(s#h0#i#AiE%}T-PEo9@^f@o-VBvtpzFyz{RG)x8Ci2J|f+t zaq1^X<}u;r&UUPxToD)vB%t@vUR=d>d#c^TFWV$FJP zJBp6lBnh_2@&t*UFeJ`?Ydt%XpOo+}tcNI8N$|$H%ctLGWazEt(>$#4mo=qa;Ep?uh1O*RpbT3@X|Cz!@=!>0O&rETYC$oAZsHAn=H0j5VBd;n?~05xh_lKYz*$r|g0 zV*&z$5C?8vgr^;|xu)Fh&!X=Ylx}Da6i>8Un39<7r>4r%;kZ2Pn|cnXRFxn+rTTSf z0MicG^{(R?7TevXo51ZZ5JxM(R6<@!V9y^BI4V;&HZd{Ut=@iJ*%uJLppNz@Z6~?i zcJ2Gz#gTe>`%Sbso62lTxW2)cttn#Y1#*x>S8=P+QW+usi z>k*d_yc*)bN{q-DDlH|D&ujyj!RI^S)PScnCy#A0O|?R_Lx%mm=63yxRDhX3H&nM@ zVVR7gGuH-)Qj;6~Gbl8428)@j*F0c4r=+&0#@ncm%URAtBqS*fBN-PE+yMBzE1o#i z%X^ue;@5rT;9vqFAgCR~=Bi$qE>o~WU z2j4ab!Ehzoo1wZ%B?_ivg=KF%vvntxgEgEvVpgOe{{TK&({3BJrh2J)nRe#OPqe07a5D)k7g!4P zzRH%_qL4|a5Gzb+`aWpoeal**&3i%+ha^$VcY0E(H-1P}#l zk@#}P)jVLDqXZ>q%c20XFi0A{cXBnRf8<1_d`Qm=V9b8m_co@t&vjWwX-jz8D7$NuQr?zMPJ-pxJC)vK2j zt!BwE8)e)ec(k?4=>aQF?A2WpWOzokM7qQ`Yqz*+R7RwLp>miK0a)szQb+LPbJH=l zO}*`V8upoAn_7O;hG!pDXZI4(I9C?GOL8P|9ILk|JALGV8p|teTsp~9%eBgSJY@=w zqMU;7q0%#;RYok`vF&mnyJ3n&#I?aaE#v8?qqw*q6NBSUBOhHdUMw4;e%!w^WZZFj z(p2r9+cI=T#+b|VBg!!)rRXYcri&$%pTJE`aaDP-?s3~bExzapAE}Kl8b~A((hEQV z6O~DZ=GaWbJVdpq;sH=VAx1TxJ7nAKZtmbNc9qO)b^Pe=Pwm4Rjozx8#{d;%kv$ia%l}9dKR>k z?!!yLE=p8qlEhH4DVG~#D69&iQjnP81bD8#SnL+Nn=RmEGKU6+40O932OJyitf7hI z>H$F~k8dpLQ!(CHOO5D#l@L<%3qso?$w1KkRmH>?ut?oaI3D5j(=TBdajN&djIEx| z_eo_WYuf8YbdW#Z89aCbaf$rQaCb>wIi*2>_Whw&oj!l-7Q_AL&}x6%7|luCR%YZj zhg(-|V-+^w)Rk$IYALAluhoQf$X&uRrG81i_EQ^~A_pd4Fn!Leis`rQaiYI1mR8Ez zNFfcldS>I|o$H43MK4mob``B~K)Q;dv-(zJc3j=xd>?`3N( zI zcKqz9yQ;v>;5&z8*mo_;R5FV^=yUEUa7&28Eg^6V47l0TsRen^oOJ8Y%uBtG4@lLt{T-D$9hEgDuj4rZ*6%6+cn!gl1I&s4j#f% zsAYyoou+2Fj_m|{>Fa0^iJQIEP*(jIQABdvwm&@h;oAaRHOq$?hy1wd7a>^?{e%2Y zsZo~MT`R|j(}xULd4q|@qUki`!>CwJV~C|boUr(KBPwkTNTQ00R1i}|4oU`~g(oni z_=AVrjt3;B%^;bww$06AOZK*-%mYd;7PT(fIi&OHNQPVKl@2FOaLl`9jOSa}8!9HI z9WEWksFdR_r;KT9m7JZ3^%`M&X5B5%HtnALCbpLnq`}+~L+VRuP&yj9!c!AoeS9^@ zE&5KPON{;S^!tr1lecZJEIaLz!{H$*l?_HDlmaTChZ&}weDbNnNUERU$+?WGad7I<2r%8e)@g=Q=5yr!$bI)o^#m3b^Aj|@7; zvS3V34(=eQ)#;=;u3_*+NI!w#@`4{bi|!4-r508dPXexmF(NTPQI1ig75fk`YY^Qt+QpgQbOW;S!qZKnQnD(CLtq|9*v@bT=LHz zke0^UQ>={={<98~>lMq}JgmSKZzG8I(-ga9<^mL`QrNq+jLdtBNr^8=$TrOAsSOiB zQn#C0iTL6>;<|(@9N8Pm!5!#u!_weQIM>AU;{}J9#Ck#c4K*h96)Nc5qfNECeLCM| zQeiDz`ZFRW!J#8Ew@}hYju{tG1EzMqH+F?@q0RS@1t`Mf;*5t5^gg5X6G^VkrEFVd z#&M}|-@IE8nK7JhLj`G=ijKP~TSY+ft`l%Iwl^?`MCludAdiS~7*gXUu5(@pcwxZz za;0so1dvXeaQ*olJ~BX1Q*IP6=~GT1oQTYLf-?kj_;5H@1R5km+fhjtTT`zs^u|;v zN75$S9dg|$BocJ%j#83^AH*r2JXgNb+0HKjp+H{014N&!)1>=8s*)v;1SMO^*ovcj zx!l(KGusKli_4@Nuu><^%?WjA-SZdPh$iP{Gc zH4kP!%D5YTfhw(1;&mZ)suq*MNKo{xC&W}7YLsA^97lCjB9x~V)`uB<9&9{5u9Atv z>en!i%0W;^c&6)P5Nk8%nNUPcw;W>81!u`G;G7}O^Oj5|tl__3#*IhGc{{2JFd zsQsj0bs~phN-Vb4t_X1wEPGOHRJjfJSZn5yEe6#1Wx!L{L&`&`LRVUh>0C^3VcOu1 zY-Wlw3K9mP9)g8&2M__IY9it8kKlZRF~GZ4Jh&=RJ6Wd=#@PW)G+INJG`<`{lOdv8 zxg{MVK&JEbsBzB`c8H^r&cr+@)fgc^e~x3emv;R(Gor7FKh3CwOUv^6i?mTNw>Y=F zccq#VtS4NX1C- zsrw{~eXIh~Qrte~Hx%Ma(;n>b;wsd$izK)2%-?~J4LgyE4W>$qNe{-0Y;~y}bgQHi z9s@v81zs4j^Fx^ST#YOew4o#d0~(5Q&mmA=Bn5^gF3@uAF5yr{w!OAy$=$6XD_lq$ z?)`tW$x70Xa0S-Z^HV(nifgW?5CHS12xQRu4=nvu70 z6Pu!I91jc~hq|bJ?fPZ4Tz9>mT$rn3!*%W&tum!TNRJ|06GQW#l(LehHKEmX)2$$= zo_NP^eE}4kv~s@g!T3X6}s3owXL_s^0W#Y@M9TY{+10LvAHYVQXI$l1&COy+^ZL*x0(>$&Qc9 z++6l)R+hBF5RL?3PcF*0+b^S@X3KKm^6OyIxPnBP8ltv!pMLJE)v;GcCbed{-&wIq zyhw}DTXQ5K=aRLgrJ*t7(iwnKn&v^KF}q!!^SE9_CN37zP9raHPZ0!#%T`&6yt|ig zwt?PI9(!0_q#gkWqNLkP^%K1Ndv#k@+uhO|Fl9`QA_LDYQDysQT#nnlC(7GUS5CAX zjWHt2talBb<4h7r#<9)?yb2N*8fN2Rw!VlLwXW0w1ZEc=6~22n`pRDLYE*62U`JBh z9Wo`{?G6N}#sym6UA^DLq$LEDp-IafU#9;6F`ce6<$b{3spk6u-f*1bnR?a$7bh!FCt14NpCW&$o8XbMiS zJkC`V;g%VA0QOR;gK}LBlEHhs(JD5pO~&Gsno(b-5W zT3A}?O-os>Kw}HgJ4|-_Sl(tDw_DO=e23yfPL_k135o4BdDK_0mhjldblJd-Yeq@{ zQl0+Fz0QP?DVgL49wUI`QH}Ns+gbXmd&@f86Sq6fo0OPw*CNF=sL^D}VW}_5ak7|+ zVk?d%=T;vnBT7vvTxGh>?#3RSyo&AdHO3MHOPUFH1Zg0gc?!7LqMiG!4vDTHJSjqe zamTu<&AZ=T+-$v-wkk`WaOEnHmm-syk1OFI}D3!X?WDTiP~R;O!wp#!=R zFEiD?)-n0X5-6k)?CuMKS{{ExAxN ze&a^y@0Owj)1i6FTM?fRPF-*Af$ovfjei$}{3Yeu8d!N_!{{T)5&>gkxumA#& z-(1N34ha-?Q7;Pj)%^$dU{Ti&U%v!sjeGWBlhr`ixz_`V(bvA8PaGO!hIA{OtM~oC zWpG)Ar1#f+{{XKBdC}KDZVTT*Po}y!eLmb8P!-Wnr|dr*C~_2ZBTtVSQ!YP!Fmxyf z2tAZWl-odE$_h!-SyBB%GAi-`IT4Tt31%+|%zMQV!KHat@L*9212NW+Yo20st~Nve08x+AUomI&(-{gVS&$^Yq^uH9Xssl4#X(X>47|=bk}$##i_8aw zbOEbb%Su&ebJ81dlA@(*CZej!x`6|pD6bkC)A|~)h>}39EBae;MHd9*G~S~Sp9-SB zKB7h}`cvX?83{+as<+e{e{#O1ZVy)9VEIQmrobph+0YE;D4hEUNl)6PEtn^&kGOdN+@Wegq|Y4bv45EoQ6~} z6as{fBA#_Wf1UtwG$@ln_1A~oIbqDG=ss943ec?aY_LnXTJH?ntb0Bzga_^KyFSS_ zL%JJ7h+!cLd9Jg})B#Els~#u(w&@hFJJZ|L`+nldnRyI_t^s2jhB$`|MnqsRu9s~1w;Ogz8EK5P9DGq+Bi|a8ItACLf*fQy9Z<}hauknKTGm@C2QDYqzy429?j1!9 z-tS{^EHc3M0}QL=O{uQU04{4t$UDMFu7B174Zq8RSlaeH6mxKUQ8}s-xu!LIOWc<` zBeC1vUB7L+a@3Zc+*TK2-fdBj;Y+gMstZ>r3@r0KRJK17z^TWjE;qUM*;yY@?Xmo+ z2xf!tSl-uy)|L+S0AffLh-IXA4KA{{K4|+7R=D>SA>PI1Qy7;UG=dtA+;&2nL#&mt z9f;Cea1xcml-9U&CnFg3vbql1fHIiV>~-EVZzOT>is z0!Z%%5$P1MY{DRdh)PM~3L}tDfdo*Ki6-Z#+lQNG0nf)Cf7+%r-5i9Tr+rlox@>*F zIZw)k9u=Tyc~S!T>x{B zC#fnsKvBTe#g_BBS|oD$lG}c(wPDxbF99(E@vZ>I@jRmL%Qw&B@k+(-~Jtj-a~%3OpTc zN~iH0#ysKF-F0iY?(W{3ACnx85(bFFWP(wMV_w%dmSDama`CM-ro<(LMFG_Icu6k7 z?dPP7`>Fo`Y`wI1mfstC^}HfWyj@nQwk^Qr#xz~iX;g*v(P>L^hKG{CI#7g#H0yaO zHK@d`pLMY6a@cyR>gDp2;hr(Bb~K$vKOcm(7Y~Gt=v~Eew>ZyZ3tJmPIfNfA*e0wo z$DUx-bzs=LH)eN17Oly++_Y|3s531WTYJ#0(5}mpx<`;=f`f0ClvOXrQdYyHk_8Sl z{U_1A4YzgZX5oEt2mr}%EMgXgBpA$t;f3HXrefYB1491*a@}tBQ#G_Lb258QqCiYQ zIk<9mbi4IYVYu9Oy`ONSrY3FKT{zNWB)w_7!k(lhVdk4@)WMdOfJ#)b!ofOE1dfaO z>9+4Tdrh9?v0TGyLnEFy8AOq|oMkKpjCnYax;a%(MO@m&do8)t$4b>LaMD`g`l?mK zmJ3%eYVY!|dn(LkhKA*X8Xd8~nQH3vQqVD-ev0Zk!)&LRqRMCvJ16B<{SE&BN!!^< z_?x^$1WBw1mWG6KE}{o=5)!i=M`&T(Q&fTziYN)qDw4|T zC~kzVRfwd8gS{pqE>45JAiliCZ-LcI&nX ze6ipGk}>T89?&%nDoO)}C}|f>niBBr{lqES)q+bzoiz%ygm@#hQ>9HZlefH$_WWrXJ zxQ5wUS0RMz8j3{_NeZC{6o+#+meVtDbZy*PUe-14RdX;@7?$%OVN%VxiOn(x7)S)1 zuskuy)w4X`q`Q6JbUn13VpS{3~N=Ht8$iyTSTai#c7BRL{id(tq(Skb2$w89Cn%d-=z9} z+8a6U5;j}Kp&NskS_3rXss>!DftzOKeKXx0WW2r0*i}l?1>e5io43A;t?AG>n zk_RiS>CO0Z42PyEc6j4<5>uT-(-^kmSN!?qf<&Qqs67MEs*H++6j{KxFxz_a* zIUO=XtJV;uprt4yJ_noc5p5fFt(&dG{{R*;wUap<(B_f`rkq0RDupsUYWmiDoxn>I zNNu@kEdxq}$nnad->TiUZIZpcycc$IHQEHGEs-se($kOK8bq|qdQ>uzq^+3Vw$)F> zLQPIscdRzss|%5G{@^3XL}L2)MyI3QjqO+4H? zGqu7jSFOFcR;b9e!@f)CTrKl%mze;$Es2lYHYRN z*>NN7{D|h%$1+19crOLPpa5FBTr&p>JAK}H%o{70)MP;Vlf`*@6#HMAw-h!uK zDcJ!DM2O6;TdRJw>ZKVr4thlfHakC9veRILXl<#3cDRwuaDk4|6N$m^cBdA&{h~qw zP8AC4ZG5**oIg|yXdt|Wb{Px+PF(4;y_?SN?VcXqv$!p0_KA@KkcF9Z9E}bwu=zaE9AYKQt3$)pdbRq2P=UfuVCX>9Y1jtvY8w_ z5vF)1Bq>suB~;d_Tc2>+HwM6iwC*EvH@BIT-LJ10+3gWw$4OPkb2v)+QJgpdSpb;Qr5V^mmBJ-q!p!PXa_wwm2q+M zn}nA35<&9ittze|IDq4pT8Ij{4pj^ZrnHV(grZPLIRnTP;<+jBs_$~%w-uj#&$L}< zT_du}!zr=txpC68nK6`zw)ibYZBg8YUz4dUDJxh)^pUR*$#r}4zbkX*HcUo{&>U47 z)C49f8ib)t>V33U(%H6X!%07B!00PyFI`Cy%Q{?-CrnUlq<%dOI_m`hP4PN0)$d(qDRAf zFur@HZHrl`Vt}G3!gK9ICa0y{(oTt;4pLRwP&~NuJ#Mq?=S_wIS6_X|&(tmXhk&V#4yA zRK}h~RE3e40Mm)xKHOe9#yKQykD01M9)6ZyKrqQbfFq9-b}{aT+f=^oR2i!EQ_lyyt=1b$$MLA z{J@l?k|F%A@wCdm`0fZ&^vg(5rQEv{ zvpR|H&F>XkmdkwG(+F!j;fTAtM=*>!@XEJT*dSahL>ONvt!)BHGo z{#oR@*A|$rUcniU7nr~rnpjgw1QZ2HZ=#>Fw)=<0FcLx^tUUNvfd_~@!edh%&v@Jt z`xg$^Yq-JOv$~>f;a0nw*2!>W227NTx@U%*y4@EUqeZlOZv+J9MshAq^LALReq+su zm3U*cd2dB-u;4X024JD>rmbz^8^fe~Ol(AMprD0M3MvKXh^i9nWRW(@wq?)xj^1MB zHJGt>)y^E#x>ltvrk|dNb&+C*PPBRP7eDMs?WXXkWZ7 zI1u=4K%%u;Ng!hHYujPCk`2r;kz5JOQ5=l&QE*&JcwLI~7^P6|cMgI_#tD2HK_>-w zne=fU%0b)<9`ToS+URb_9XmbMGVS@BdSWtJd2P66-cushT2zD~_RmFCE-6_lBDlNV zb`SfLcZPkgEgO6Blr^kj4lAkZ#U;F)s<;u2MYFrMhTc{={{Y^{!b+StH4a_8IaI5+ zu#Vfk{D91gk6~rKTqLyWgSW=*?5;HUXmPc+>}J??QWeu7Dk)NwoX8+tbmiXl(RcFg zY-?q74|{xC+~F8U4JZK8NhA;mRU8tdUNBx-iOTrg)K7&;^YK7 z!p4*sMjRC9ilM02^0HemA(&gmDg+$HE;#+7Fz%}!V|IsJfgg1}0r7CVMS~JEp$mf+ zd#t?tM7qPSjYO%cYgi_$PE@8fJI3Q_x3(#Fw?!kQoviZ74r2)ff`!1~pAqI43aEri zTJMw&8dym@NXX)yygO;mbC$RbOrJeg_^d@`#^%hBrW$RS>;jdc*#!DqZ7HUT`2kvD z^Ztn>AB(xLX)z&?>A{)lE>up%&ZD>HNf0!=lH~&&Pc-^!uG$;se(1lv^{;H)M$={= zx7+t=NRJ&;2FWfghMEV6(cfFsw?>q0WdcIy-*bc-00CKb5-L}UP+i6Up zyNgYhoj`fVb!%-@AONhYanE-hld0zFhDmvMH~p^UR}bqP$TT}!2HKGUjBlCM}a z%7YsgGp64^;SF>TyK8l6)*SGKHDKjXdl%7Fj+1cF^8`FZN-7{dnPpKu;jnL4OKhcV z>x?Tz>5EIoY^EJ<qMU&#>-M9C9$o=psB=>Q;^0#sXAMJxwe(vD{vr{<0q2D zKdi?zC~*T4RFIsi!qafJibjj(7qoB~j^Ymi%Y{?2H#c#6du`hG{pZ)YqU~_pFz;VB zLpP-u(Y>-Ql46A^*93K!+;r&DRFnXq4mlp@)*WNf_ONX|K^tx*d!+LOx}?_315*&A zGlD81#;+o>+jl8sn#kzT8e6Bsjw-#m4|QL*8&r!P(~%C>YqPOpmui_Pw;9Wgy~}D} zgyNl2;ZHLhkf5$9L1Z2xnC@LGw@0<~{=K#c;jy`d$XWxV(C4*X;Bu3XXe3r{@_(7V z4xR6G?RW}N%7+X>C$^oeH|X)~8+|tj7kh9PD=CsWqih2z}cBA2a_HpgoEI2Ah%KUkSZkbxzos4=DY75#Sg@Jr?8rrLb_XLt3(@w zIgSj})OjqfLt~HTMhh|;Bf&`ocw)*Mm?n0ZUe`O2A$=o1WkY;&GvjFknHYNVryA2E zl{nWg+vkZ3&YMc^3}(D&SAM^%_uvgn*+Py-nK^y`0NH?ALBfHfaFB|eX%*V|RD3?H zI0vqUM2u+CH@wum!d6?^mPMe|Y0_7?w=gP7P^6_R^yZ*79IA2{tn%3H-avy3NdExl zOH(ztShW8DzIX7lrtxk!xHJ%Nw-%8~24$@mDBusmgta*?rKF1g01XZ3A4GX} zmt#kAIF4lXPhNoPD4;d*#y_fzo2Kbuc>^3Gf>*iPh9DMc2mx~A%_`$Ll?s~F4QEN* z!!?VvoiYhttvEP%iebot4hx^6sW)hz$-#Cl&@mW{hq|Ww!Gx~dok&ijDUni;7fo4> zRH+0H9BiT`-V>75WJn!{Du6~`wzS+6Ps6xk2J22Khdm$)@EB%7Tv`VSPw<+Q2`(SG z^oq${zH?Ua?xUoI>4FlaCxVH-?^RTNzjind*mZAPm+q(j@_O6dgtE0gzv#zW*F$td z782m;G71)ytpbf8eied}pg3c_S++ltiLOTt0|S*~TwESVz^yed({EF%aSW;}sx>dc zdDxFD#U*U05D$eh8cnNjmHND}*Yj=%)+s`HKt)m8jZnS*x3y{78W?j#_D#-*AP?wINP);~~dF zQUyw>q;ty?wrhu4+_G&Y$!5@i5_4ua0%{HHUUW`sr{A2;|ei2Xytn~jfa*a$xm_tqusnrfc#g`%JM z#l1-)lqt5^jS5a+f-%B+SQfu?Bq8~nzpBdI?xbn6{{VyZy0_$uR5594NK1)YA+X^I zUP@6yM+E`~XC2NrX@q7#XyaI5^X8GjlTj%U-EHvNa&YNLDI^_B14t?q{_qD5JRw%+ z*-y2=g*A{Zn|bRm>N4p*eX$HoyT#oy*p%W~b#h^`xiYVz1E$I+!(8H#%)k#CB_w}S*m~vIIy4c^JnTi7_Me?v0TRxV@pWWrMV3* z1bsA%exSYEt|We;6enE;19%vV-^ zC>ZCPx8&aC8oOui1D6KvW3b#C2i zN@OAhmf_Tq6$)^nPDwWT4z(REk6Md?G;D>RNd)uf?7dC0Zmrv`49wh-bjJK!-=v^S z%AyQ%#VCQ!Nh?w-1&scF)b7rg9s(!!^984NdX4)KG!xH45{iuVe9Ay^=GL!2KiLTDxd> zZ@2roww1Scg^J|knsmkY$b~wlo`DK?wvgkAttf=A9UE-wZIg3o`75Yie^*cr{>zY) z+zn;!w!8a6eqt#b+KN44MO-m1VX~02QfZJ_Adjekcw||op7DB zC6fjz;{G>KyDK}rAHph0Dij-n3sa&-mW5KG=902$z?I~@zBrut;*e>SHN&=;W8T88 zBpPFPYQ|5h-8NJ;R-u>FCq^_LlxdI@>kNUF8d4209N7WK@!c?joHNlY_t` zvjgnR_tzV?Ok>e919Ff>J;kxi$>mrwlor}YGuBb^!hJcKZlPDHs*4rsLzcMs0Bj0 zNb>Od{QfvEET$Z2Y82n{duzu;h!NL9OKzb7m)csmy4$U2S{(;HRU{nn$+v;nJ%IM) zLFNeKPI-?X2`NlhTN4r|Tdfk-yOp|QHy6;0la9M48_>)orA%B}TXS4fqFDqur6nOE zgAACAQ?dZ!_*@)O#HcOPlY%&^@g!4>f8DxVqy%J$Rd{8?g+{J@uu~eIw!Z5r8i;A} z?%B)`2e@E1^GW!&;q%0!8E7~ody9vx5PgP?w*dHDgr7&V`fKN}XM1(J_J`_T*3J6E za)!yiUW`kDhb7Boz@$x6ZpNG%3@I-(N|F>(;T%#9Sm0ehv|sK0a~p3Wk*qU49i-`Y zWFxZ2FsOSgd%53RT=e-cy`+XULgF&aSJl*l2}u+nkxm>cJoyZF7+Wj&_uCnA*$!iIQ=@Q$aOh^Xz}#ch(9uc4`-fNiPpk?m5Hjw*GB7Ecp`b-nC3#O6xQPa0kQrs3;pGz5^p;su297>`lM z)I~MBcxo9+F0m(C7NevtO9n(GsD3ik_+4hw$~mp{#~5kXOpgnOz9N5ED}4@Xgza{k za75?-04TNNvjgfWk6>EwS-A~~5#DA@b=O1j-EH<)PC6cCOKEiSI98^-YhezI>@3kW{dy_6Kdmqd%EISjYtiH@eB%#E(l9e{3j(iR>-CNW4 zd;Zs=@$X|H)bLuFhU8Qn4P0!Sg~s1^t^f<3jVs8S`TqcA{XE@nwjSbc1y3zb*!Je; zK(bpxWXYcCe%xPCrMn|ccDk0? zt^=vZSDuGZl=x#!vwm&IE8A_nTDg-rhU$wEjsaTZ#PT3jP5%HzNXD6LWe$u5N9KbQ zi29bbmet?eLgcqBcKyR`a`kF-+wN9p1te4s zAb>?NqYo;bwOU82m$Ln9>dzrjmmXPR_LRg^WKtWIuHN(Z$wi)okvJqwhP6bLkf@V2 z1V0?1Nh&6U@gpoVHN0RKkWT#6g6K)9xgxeP2%7$8a=8U3M$p}|6Tr69!Y*h7bAeysgV zQYID_5Tq$8LWNSakfbdn3MmRrQlyd0am1jQ5%AMT3^>w=2uX`V0+L^vXh2ZTbb@j@ zQl|=yzjx_(@fs)mUV-iuRI4mGe%RIKJ*1RNWw`FCsO9F+>JX<`O&fJ74=RA<39lR} zv9*%NHaeqla0)p`E4>D?c1AzEViUWweBs+f1J|LQu>vB zu>7ShMoLHoFya!Us--}jM4sL9+`%v-Om`B>;D`NWdJtp4!eeyWApQj^<#%hcA{ZvDE#M0G479X;HjmZ~#TB7jik zL5gd3Hch5dr32(lal%u}-BV>h-=qE3{{RI|Hw>p-a>UByTh|G$tGv{a*&4^f%4hNo}i@^IFu=cQAGx%95FSezUeFNZetR` z=EJBFfNqkisDTwzfvFKqC8Jv`ZqRf}hqXd`YOS{HSkpUsZf@Kfj@H@k72@W^c}=O+ zsRH=jy|x&9kmE{2P9!B}v`9FjJwFS!_A<0de1&gD}AM1!L!Pr9ScgPt)1O7+6#)<2U5MA8`Py`zzSnEzHO3iRyL2d zdzljr%N*f`q?qZ{pRO4N>Dvpjdxf#p~}(M6T;%RIOm@bU7`JQ0xkX!K)2 zCpwztT={{PSV3_o9H~H5Q+ivTy6sKNY+)r&Tr4+OtR}T3=b*lZk||SC;R6+0y}PdV ztD9zG`5}8i?JX%%tfdg%MJv7*$kKa(6^1t7>K}L7w%wa(ZH=1E%H?K+i*u6J)yCxN z{koLfDsBW6fZCAQ2_a!sBOC{A{K?-ew%B%kuE0xi6Lf0RBhCi|Ycj)~bStixv6|`k z*LMYxJn8{jGwpZLPYNHZef|!&C+*97{C#mY%v~q=9BMjOH0cLDNUkL`er}?@&0E0xH-=_ogOp&r-c6iHkzBPt)Xs>zT6<#KUh`fcrXpf;%% zxwrWU73*H6xVBa1xKa91O;7l7w6OfG=^GLZkiO;PjHN;Ts7CuLj_0d4i-3)Ih#%A# z`pTNRtebwzw_|%N6{-cIAy83`Z;ISzbtDv}YD;v~pqh%B@y6!MZ?W5<@;3Nmf-lu$ zLr17p4EHw|PxCGw=f9hYCZ4{ZPmU&_<4kt&uYEok8Bnf$emuUM@UGe=pbi+`k>0Spe9CNSPgt%jcD!ELus5x=XM3M*A z5A4B!m>Lzqo?Hi#p)rkslsDKhc1B zno+M)fvNMMttm{$+nxt)3Jp9DD)X&=AXlCbzbX~akI?7vG^Pa=dp;h24~>4z0zfn~ z3tZ3o{{Uyh13DG%C&$A94IKux`+k{WC$fUqutzEt+$$;-&!E9B9kgAw;%oKsuZ?g@ zQARWnp6d1iTz`3oNur2SfC&}ibki~j#(wzfQ&y2yhW#!p^RDSl zbf)PDg>cVGtDlZ1bfdg-4jyB3?W*ncVAan_ud5ewUE55mgZ#MWr!!oJM}|EEv^blX zo%<)Ami%wRlK`}oX!q?yEKji3aMxI z-)v8naf{qL&dc04dz-DvW>wnV8qIiZ2}orLk4dr6`$Cy1DLI-Gjycp{lf5gr?)MiR zSGZaJEp+hm`AjiNQLS%>QWp#WPz`9Tx{mhV1~+ViR@=rA8>!9biYj+f?V&GVST1k& z?`m$_ErQ`}c@M7B4TcKly8C+6SeJ8hQ!^Hz08?$RP|MSc4vpKoJEv~t=-r2?Uuirq z1z%LLHI|-{@HVF@P44uVwmebW8 zBqj`IgK8PJlM*@#kU>02Bx9;Y(bCM)W!`r=?c^D2i$jMI;b2gE&1a6}#*i6p3miD3 zm3=0mle<5*9gO1^$-9EUR^r|U*LRR2i3?V>JiBCtJ#TSkd78IFio4&+KAX9+ZJoTg zHqBvHnB3F_RQMdy%uaY?QzGh1_DklyvB*(8Lx*@n?WUCNtDTAX>|D0&J=blJ=xN*C zt!_uSLP!HdiI}b68SsTgEjOW_sI}Qw| zM&!n-l1rJm4C-GG#5-iUkrI4X8S|0OFE_xH+T@ z@oR6e^el~QA8iCzgeH(09#fN7QSHG;5m4QAy0_tbogY3Plb5!sUf^vT|Nx!g{^Q3hr%xB^tPj6&1a%i0jFlUUm~nNh8(Dsguh z+lJjK+r`19RHc~L7o|HL*n*)wR!ivvm^lVIZ=h{@cc~-Wy1UPVZ)?@;@=K$X;EfNE z20Am5b4#$MZ+9nM+8d3#OQa(NZ~?u#Mj_pWDrIu*hio)oZJT+h)~(5SjOd3E`4U@% zso^Mbml*1{S}cbWl2p-FkzN^$cKiL8@^;$V>K%!Y!@1nF>5f4YATJ{fb$mUoR0~rrIWCLeX&Zu&rP_G#&%UcEyN_U|-zLr6-H!g>+;@29%J$@o3MJ+P&c_9Yrb4+! zS|&8hPM|GKB_Y%d>CYK<^&jPJuGjwnZuKV94W{{hAC>bq(8Vko-QZ)}Hnjj0C&Eic zDOLv8f0E!`?UzoH&LgYKdz{xMWEPN_V5)@FbAMZB?Hds7{@(7RSD3qk961Ww+nvQW z^YEmnQhrgm-fh_JMwGAzP1;dBTuBwicdgrb`FXIjrEK@f?kz7E9xdf?(dCdqER`D2 z2>}5JnYdMs(JUL)_u^L;O^!%O9%Dz^AFS0QOWI;`dH zeZ-FBUG~1vwOj5;MT#ZT`t8PIqC&OZq`anLyy1?Aq&no7Obty98njnXHLo~z{^H-v zYl|+J@??P6>$q#=(-UVhe0~5+q%8mtP@pw@%X@RNGUISBYrNvt5EaFNxnh6-c;iyY z_6^`%a!kGCTyjA|T!jwN3Op7XtrpxT7MEwXw1P@jTq-0DRT*PrKGD6HB$i#yR!ZPW z(iql8IEJ`_=7GSI-&JDj$T%^!;Iw3d$E@-f8GI|~@}AT^612l?+plcja}B6(mJkO!L2?g|P)zvh1HQGrr)tJ_+?%&=Zrf(#xLb%| z+-{OskpgD9624(BBad2Ki9XPmWUWgv-a%M23I>L~ve#;j@ci#f&1o*ot2zwV_b zcH0oFN|Rx`iArWSxi=9m-jg~C4HgPgNKT@4WPH`tojn!4^SCptZsoV!<|asV#2pm6 zhzcI!#d~;wg#xP9+Q#xZEnu5&ht0N#Bh}s}rYMMTJUvvt$GvUd?`?K-dquHsE3_0t zws!BkNDp|o)Xa!PEtXpk8Q?lMkY0^8qcGGT5435_Q z+CyUv_+)aq&S_x4g$?e`nVQN(mv*u;M+=qG!H%ad*#`hY%oHcxTIwHdtvlw!f7-i( z_hQ^ErAbPhiE4n|*3R?g$D>cT-e5Q+I}zHcQOku(LTcKStvKy5^nTIQ+f~NRe>Jto z?J<%0u{h!$$s39vuu70TB$TYX_bIF{Bf5c)VeN6!;4=lMh~k`aK~(a)4-aPD_TJx> zW3u1&%u7z}x?OjSTRV+jlJsc(Yb+~^$dLGIP<2!evXmDRGfhS?k^Wa&Z2P6Q*LiJk zbFsw~(mvzM`@%q0G3Vg~9xXybVOEabjrF{@Eqmj;bC}k~UE##|h`Td#sEky?*IikmB)=oXT!5ahdRXy`)Xav{{Ym7 zVUuTmQ${N+#c76Dbd-p3+*;p~{{ZEQ0H`z+b5#k&ZkBeFU3|O~vRPb#xSdEE0y!EB zu{Z}}8mBzxL+4>L*mSoSDkf`&B@hf#1+6Eu)v*cIb<8-8P-uZHevGa}6@X zwwXmX_?BytYLENSYT^|~kSqCgIPcvfbuRJKwi{@;5#HNghLv}e28?6 z4mFb8BCU+&g08Zx{5UM2Q!>ldN4@TlXb^?3T)kv?7IR13ZOswCVk($EEfwyGer0 zacu80TuY>J4+OmCGeMuCvwMZr#^-wz*nAPlG_wF22A_w8XUW?t=Y4W4#6mDE_no_A zf89Em>nzN+g%tF?tGXOF7Xp?ZR+rjdunv_gR|T;AxtptZ2fjBp3rQf2+KZSDrm6vh zfz&}Nd`&Bg61vNc(UuXX#VcfRK)Dpnd2-0%RHW&P*xQ-uZ0*ME@mW+xu6E0qP2m^V ziI_5V%WuR;RHNu5(Ndtu5c{`_HatOwQ$_* z$KGpsR4wr7D1ku4r)@m8*44iwde7T!i=FEB!#9g`CoU|Z`*ie9Ti(HmcNV?l@&J4! zr7qQDP}M*VE-azg1+15LrSo4(((=;gecQDZYaHMlN*qGth+L_nFQR-=OpJktNhom% znhX;TUW%n(E6ooa0MWE`b{XE zwB23ZvHB!qoS}rfKxuD?xR$l&OK~LP2Rtg#-au}vce6+UxF9;001&1pfcolV3KaWQ z{w0#{eY@J&_Y(gAl`g8aNJE$Dmq!?J=NEi&i0FRa(Mn3Br7kG~npy!s;&uF2u->-b zYp0poDbA|h&l&}q-?rnf-G8=j zcVNhuc)8r=^;(=Cqn7rqkkY=QEy{%Tc`~HWzA1D2M!eJ7UR12JXs+FRE+4;WB(_{wZCU`KYlhlmN^RD)7ZT_!r63T3MR9F+4g7m# zm)EwWx_KSr#59tB)ZmWoQb!Ou98QJzEiuZBYe#_heYGk(6CT>Nc51YC$?5Fc?i;Gv zcipzeX0AFPy55_LgjV0FN@h!}z=-Gp($bPbK@>I%?6j7FU;3LjM3T8Jf>DHQ=r+l;BuFM-nklT?g*c zE5ieT4H1*2dz{gcos$uLX7j$Bwg&#l7^$9iH$y$ zG~o`o5|9cM3B}BNw(qoV58N&sZl3jKxt?BuNqYtW0;(KAC^90ZT3cIg5&WSdIGN){ zge2e^2SmkO49kg!rO8;Q`d_u$D`iv$g{$gV!k7(Z@DytKE;;#Y;xME zaNx*}R%(?v-k=Fk1t%H4q2G4<`}c0UM2>v#jj_oM&%+=?re+BB0U*f>f{en7cHeBd zj?h7J(d9I_hchY6iKnwKSC zTa`6kM8-%7N=K;B(+la@uWz9Q!invU-s|QV z*EANEx#_FD2*IQdHFsESCebJ6mx%64cIgHyK=oFoZTOJdFDZmq^I%ru6kG{oo-kXc>7+p_75r81+dP<<;w zr~z7WWwUH|uIe`K_RNUF(o19nr1{D(G@uJbtJt6D;eQo0oCNHj{cl1gd^4p{8$bBh6XY5I27dyi#CH$Ky|?%2@d-I&&^e8%R( zlHQQ}4kyyMFunyEEX<~GJ%kmj=F^qSi53C`s^!Gep!2O=?+G**1 zr|nZ*r#B_AsSr|s*^Dp~agX6KO3};~IQNjP^)`uZotS$MViD>%`)Ee@A~*ihu-&30 zf0-g8S-ZhN@eV~>cLxFTi-im4#!})5Tg^L889@<$Ka9L$7 zEVFZnm)ts07E6W%)gLGm(;8{dhvm}_$9-op4P=ehe#!8=`z}X&DK3Uk6tw9aMkCe~ zdui`6O+cre6bP?}9ypX+%hyb&Dj3i2^XE~4Ni`T`pXa-Xum1pf77Bm;#kwns<{$dZ zpZ&=n{Ml+-u-n*w-#_?SQlE}2NL=b7^Pvn4Am^PL*Ruwd@#ptoIjNNnG*i%`NGMaW z+gj217pF?mS{kKjAc6?vg7RUI0`$~9bYbppM+!6v?Y0?W?{G^YL0t(hiR>v!{63js z)iwwC3Ub5o$$0{NwDL4}>i4g*knbtQT*j|pPjx4j<>^qQM?+Tk)a-=J3PPTYpK{t9 zZ6$4}yj;|WNTO7Mo+f@TxUr{GVtGdfQH{tLg9jNIA>Y@*R^lEGH(35 zNw&+mH++W;HrSTN(B#(~GB2_wb<*R_#f=^+?#cD3>ZvIz(_c$}_8BXiq0 zZkDhsvyiz|hJZEZU5Esy3empi3#g!hu4_vP)J|D61ma24%CxL^;@nzpRlY-V*>Sei zlFFNKB`RqoYtXgnP~bt#W3}z`+e>R3?c`&Ik$@omHItREjm5776{ABAg{Gs49~ymr z7?>J$1HzkH&VQ-oB5nQeHr9 zIND8VWp=)FZEyoJ)`aZ@VzpNs&W!!roDU^G0P#sk$xEZkKyQ6KuBx zIFvpnDX`3SNJvAIQ0vWtwkbrYdP$};`^QgP&$e7c1hT{(1Jww2K%CqO%y2nXjh*x2 zxry&%97EgL#WEG2J4W-~r?HIH*{{Y1Ab!|D9yYwh7Gd{$pAaqicTp+L91U2dDDb~=U z`CR}6C6hvUG3uEh(qen*-9`=9C;|_F&|Y>cUjOc9rfGu zEwf`>B007KER3TuM>ZUF&_JZidnwQ)tl7SwR<0a+hMPCSR+nxo0jrs zJhs;CNwJ$&`P_~au_`*-aR^g{sEX53#;Ekh$-Y^Gxj@&wvQ7hr4g=4Z07gM-sx8j; z#!@Y0Ed`ON%pbdEVATP+e?_});H9r>?rFBSS5n+d)K>0MK_?_4O9nKwj#W~YMlrjm z;$Tyt|jayOr6K+dD?ozDQ}f+YxcEOv+$C4)1lg z?+w#za^or-((+7~n1q08r7b84NhX-pZ+ov%bh)s%+a)2Q%^nC=z3iT57nZqkA)~br zRUX}Cw(jQUOST0wt5Y_#v5wLROcc|u(fw~vcjn#P4h-Gx1AxuZt513rY4jx`>!TrfCeC6HCn5JCt$naRRXv^E&qj*& z=N1`{Ewm;!9FD1pWsi}D_kW|5P<1yxv>OT`ob%zk*bpTY_ z(xH(A?d&IyY=ZOTyy@6KEf3#qA6yfU#IS_AEfE1?(A);8+zp1t)bMdxad+`KwVO) zk%1YG2DpQ`wXd^#Tmc0=;-0tE*?}43?lhq`ctx}&ptywzN>R}xrk_Y2mKUj-`O>&` zu&{(`f<0cWsXk+u6hEgt=mr#qQ}`K@I1<{_%bGy`q5c)1l&E|#lu)=4?4>El=TWP;S}yh_(A5!dYRHZiwDQl# z5hq`niQls)`V{nNVtDOu`c&-A%qbd5v;P3f1N(6yvZzip-h|4dTd|bMi2=b>sW;0r zTF^=yOH!^e*nKH+Bq=F*rxcY?<_Q>uxU@+d5Buf}GeY1GtQ=|UbEWS6$9n-vJ$Cz) za+hG;q>51cYobNUJBNYP`-K+-AaY6`N=6OP&cLxq?&tV{^!#3cMGb6r4`A;YA68zm zM9I6#hT4q#ORga~Dn+H#OGyCwopK}QJMo(XIwfzbmUt)JNf=opBy(v8(ppe~>2aVV zYmb50{?JcC;t#TzRd}^rUFpM|!>=e3BDtzG+9!&P8E9r^f&J|oP8j*Cd5)Og3(pLX z_DVb1PI*$s72t;R%zDNi+VhlknCK(aE>`@8MyZs8&%&4zDU38{<}>((5@LC2KI(E< zsuY?L$IFM7B%E4ltf`6gg(23}MI~Q|DugHuz)&>=Vl$D=Ep}bB=qN#`JJvf=tHp=AR%3fu_1USf)++|3P+R*DT+i9sOuL73!X$Mt!;ftteZKIl8Wyp*G zawt^+0rUmuQZ3|*%>@HJB{=iSnC!43NZmiE7+o~A9ahU|S|ib_DC`Mq)R2k;$+6?UxbHU# z3l6;5aiwT+4V4re^QJF1OG|mWRlam_zF#4YX>&m>zyd;y2pLp+NuJHi!sj);R zA7r&{a&2Vw7%?15x@L$YI%SCcDZh2Kq_7E}Blc&`*p^YN7ZMSgvBOCPGUG?QZMy`_ zlgkYk&5XSnhC_;B#AlsoO`ZDA+0$Nn2K2Sd+f!r7ksWg31<$uT&~}?X+xJwxdhXNPbTCZ>K&7-}e z+g{rHlF@ps=9kfjHKQ>pFy)`jfZ=X)W}J0423YA$PPbjc}mo!Ls$&Bv&C;ia4sY2&-jvQhQ+fQ;^>u*?8u(h z%PcqqB zeDM1vWQRheoQ?BTJi)+2%6+JL%CpIB?6)_F>H>X}4!Vj!(Rjy3tLh32k-t zAb}v%9wL+&HlZXtfgep7_(vo^MKVs>(f&zrve}$&)YZmIvR_w6+@q-~awpshP_+s! zW630%`bvoz;ybOh+q&A>BV(MW1x0qJAm)9GPBv5KwpkU#dN?5UQyuSY>UP<1L@?y` zyOjrUsn%3~D%Rw0Z6WD3DMHZ0V2T=)gHfIe`G!ZfNWo8=WBGVfNhB`;{SbX*D$jFG>K_&z>XO zm%nQ+YmN^-p)x0-DcM6?dI1UvgU_QE9{k=nN?H@SOBWZzb8*%`*sZ)ya+ z>hoxf*h^1HTgaImMI%!w4asdwSEQ+Wxnn)Mbne-@Tgu0c3~T22K+L0o<(@fWwK~&t zxwMuyH0p6|d7c>`W)%vV+eWMx9iO^wks-#m#qECKut`irraD}oaFuJiIVEx1N?TH- zxKviYuEviN*6#J4z-rz%=kfvEb=-~AQA>RLMR`1n^k*DU@RJVD2e6>&h3{kUq5qBl8v zUuN5%xz2LYw{5K{PCX?}F%c!zlClsQKz>Ar4M;))maa6Q#Z}bXM$2yNyORyH4b9#b zsqErO#ZE!4=lw+4QpEGUjvSqy0NUF?V~@h`fxxk zD!YReE60Xhe$T%KaYIEw0*9Z+h$e?GBZDC6qzur|vi<)6eK3#)bgJjZnOB_#0#KmS zmp(o}yqqVpjMqFUJ_4gUajyzzfkK0s%A%tsSD&3J%wcKapsAgEDw=RPkJv{Hv%xgb z?XPgJ6X1D_ysN^vHNt_eQ!!CMHGSSyHTeArs70b7a<6kAZ7ai_NatGRf&>t}XaR;b z?KSmqCY1Pi6Ixc7Cvu||%2XgCR=rqpp;b%aG3?IMRStmBO$TR01eX58ap7@HilQ zsPnE;qPb=9%kJlZlw50+rdTxL!iRNx1%lDnsrGzu6AsEM_m}qIVMkoSV5vo3=lg%B z0ZOk52EFwDtPai;E8ju;>42PQlZ|_qGy8CSJE-g5e?O;=3}x9x#=McGMDwLQj~w}U z;3jlCD||pTipqfmblN;?_?kiIUmSE>M+0u&>dV}xp5*6Bj|%-?e=mj~_taEEoG3In zP&_Eoq1)|}?$f=eR*)e+wNY9sl(wTnPa;0tXS%Edu+N$x_lmLFJUfJS^3i=|&RcA{ zruvUKl_@kU%&jDAP$PiwG{+FM)?AHo3(K~;8_PpffKsZ9m;|Y+sVO?O3TCP(jFnCr zx#K^2aV*Gt>dr28qJK;3N?*P=>IxSq1OjR3DNy0@#O{~D^0nU=nA)!26owz!HT7;{ zwQV+3Gbv?|YvgI?T4T^#LK$Kwm2-*4E~o;Od4FCv2~}%EF0{C7bpy@5 z+Y^qvh}=VpHAj@^!~>TiNW!`;=UZ&??Zx&$x_1m1;f8qX0N|PDTjOlQiLuWxl+oI|AT)yC2H%m;CHS(5|g5`iz z%aT_ry?gfwjpmlKS;RG@HGQ=GI`bYH(8Af4xle*vjLRr_=P5y22Xr9-@luFL#)@0m z;vyo~nOracD*JNns7!^=R{{e^5>kjlZnHIekegdHPfZbD>&tM{)L(qIgvZSO7V3Y* zaE5%`t}ME9BK=UuD~RH%0(TExDEUna#d+-*e@~~?NNx}#raSKY2aKrc>a#98#V@$> z5=(3M15?P-uf?q@NE~W0O}y-u4u(tUt=czu+Dj&A0!8e47Y^L&O|{g)?TcUBIO5ar zr*>6U?s@yB6``Ar#`~$L&bKj#Y?idY6+JR&xzitM#68jkg%s!tBOo#4KDPYG{NLCj zbhE=h;qXa>%!cT+f%cs#MiI<}1mr7cx9z(v%-SOj^IQ{4oYnLpYC19BlcQTTeA5@}GH*9`Byanpa9T@Pb?+oJBQuxNXP zk830k#JfVd&MZ&}QZYqJv9jAY4VQ6y9Uh&&d=8MII4>hl7XIRGeZ#X^mANh7J-4#j zTWrXR-??S>)ETIi9qBE{Q%`zBfoLf-CY*66rav{Ay6tV-`r5^tw$mF3W8E9)xKV&b zd0<1tA{3^tdUk7T<0jcDx1Gm>gIn$g9$3=-sExwK`b0Z?JAvAd+Y9#lUhaSnS9z7)~+^1t(DsE>@tsH&_a}25}OW(?du8) zY33G`@HtSY9bOCGk^JS`VQ%4PWo^Cf;A@KDM;k*xSF$qa$oE992wS9cAmLf^FS>5w z;@)XrZ8lDgTuC?rKmZ4G2B5OGmG@=tSQl>E+~vIv{T3q|hik=BZt*S*!a;5%*6+`_ zxR%ypqe^u+l{ln=l<~(q>dl(V^8WyJx7|7-=H1rQF`|2TB#uDWH9#$MND;At5WQWP z%C9#2_HMSXx87JoqbJLez_g*v7Mxs9A%zj#OYe0z?00QjYqV4C_K5;@s(s$+eU6() zyA6AHC0mx#;>mZ|%WtZ}%VSXhr!4W&EqdFmzcO~O!?rEEL|O|UEVB>+O(sSbxSdUQ zEpccBNdF^LKYa&QRdiwMr_Zlp+y<3sKvDYhi6xT7F8`BXq{JGH#b!4(Z%c zw>0a4&9@vVk8^!$Qj1fuJ3B~+9197zIx{gveciHPC#2P(^4{siwOU?@c6s&2LoQte%d{D;+~a5+b#!Iz zhh)W;q-K;M?I~HM4ma0(e_FR?idN2KErfZ@e7cN`)8hq(676U8bt2(Zam}=(UQJP+vpvtZOV#;_+ZX65R{UE1^CP#{e z?WkAkNu+LQ8y-g7+^S92Z|>NLmu!y0VzpqpdvNp94f-{`m!wO!x#>^luU@Kz>Y>I@ z^F8oiTkW?yZOUImc+loF03wq~CBi_^OPFvTBD|Ka`fvNZld|S9)daX+WR__(9@> zfF`SM=GnKN`a_OLwCwA~+KmoTwLXiJ)_uuql3f?qNdyO-OmjkvK>;{|m1(rxS?%XTT{A8mMx`2~;!+WKCa71!3z>tN+c-w}k$xcgIt>bZu{{U<;v5s@Kac7C796{iRfdOjt?-uCa zG2+{-`!SnD+db|yx9%5`^peUVFoiBzjP0rSUzpno1Ui5cNIYqdoB5s8okt9C?VUEk zEsfI&bkXZ}03AWDiN{b(zzRnisn~4n9QRLrT-l=`8dE+B90GP$M2&ERx33W+v9s;7 zH@u0?L~8dPr$Og3HT?cDMfkuZbP5Si^N` zdqM{pQNyvW1da<@satb#8=lEe$p(X@oXbz_;Co1_fAtZx_l>&WwXPeY_ZH=8VqqqT}{_UCSi`)%F0EfI&k%|WP2KxiN)1e2v!l@{e; z=CaMV1YE@_Qse;Qg_x9IZ8i4)0DTR|vmk8?ba^E$<(Ba!A_R z(cu|`*@}RDwJu+L5w>hD*ln>NpL&+$3oXZQOqAr7?i-pfQHJija^TvW4O=Rdw(N33 z6p|E$B?-9C9<)P%d?G`5)sZM z;!l2c^d41=T%mhu@?VK(Ue28|OX)*hcv4X*Az;!HeS)(wua`BHg@Z`vn7U`a$~Elo=ZXGdfw|H?JDV}sb4KvG?mgvxVrJ!P@SVwGi+P_Rlv*c8jOCqi z(x!_IhvhK7yX~~2RkBE>God)~uoz7UUafh{{SyfhX7pEP%|wjhBc+z z?RM{%jM|uAD;gEeJ|*r4-%+@2PTsfFM29BR-`ZS0>c&m+z7HKYL5OhW+S-g7_|FsViCvxi&6hcZXRgy!S*dTQ6Q z-8Wxq-es%3;fsuI!y)^0y9?|&GAbI-g(3L22dfan{{#ZL~h(q1+5tTvxZ779FkU3kX_8I$@Fyl&=)~2J^PVyT0ydn>1jPc zz87dDqk~vnS_t8!)qkQba)F&)IX1wE_9D#P#M_U*z2rZL=(+wIe0 zF#Vd@35n9>-J+Juky~ch6)uMp7&_YA4kQ-Ql2i>b*uOHZtVd5;*zEVEw(_;EWwQx( zprOHGj1sLRI}wKhwVc>KW9FoMkhHyp3(5e~$HaM|%a01p5%#9$+^$*!c74&iMXm{C z#lJ&;Z^5=$l$~uN$s&E$6v^(jE!u|LQX2=2LB}0EJG$K%pb*~N-!?TYa~&9K8;{-U zb6(^naKLfE*00XAfvB?3w#w-)QJboTla7-RerU z2b9xmZFehti7Af-+Lbm`);!X=qSX|q^&$*qkiCp9aV(hUWtcTfBh`aU8 zjRxDbZ7TT_(r;FUUvAKn<+Y1SUwAoj_clok>XRwv$x>t$I>Js((BV60Ro!&%+b2xR zZWv!X3#BY@EgxylW077n4nom_Q!{O`-pX%WbpXd{ZU<6iju{Tj4?45^r`m>h0_9EH zTcYg}MV=H}j1QQl567DS093AAw%$NuYF&K_OO6`2G@rwk8R|`v-tuDWNv92hElm#? zNzLOUs})>Rl~rx~q>%tFB4KOXK}AqF4k0)Us=u~R-jY`fZ&+BJXhg4OjnThbjUG#n zNQ{N0Q5r!|ZP2u&k8)C_r8;#SvC?`H_jhMX3wtKrvu%2O&A?!D$PFRwiN6b&TD~Hu zgNjhOj>t%EE(;#^ua^-d400!k$A$~StXsYQ6kWk00vWo&zg!mv=;Xm|v$oavT3uld z$3pd?bDWaGRCLixLUn0K#f8B9yWS;}Z`&JlX}LVMK`q2qu(keK9uVa^i-MFw;ff_g zft!OO6F)=kfGyJ3JeKO>oD`1olYvNf%>rC5X<;An!9et;!&O;cn)YW&yrKl^}o&CJ5JFWROH)#n(j8p&2GxTw|i@Sn%6D4F)mQFw52}F z4Jnd!2NK0~D4a{RgLm9*?I9CJ&AV}9TxHf9q0MOs_6DHR!K9LP2IfsFCfeH0`81bJ z0{9S>)Im^HQA+Y!tu}tkbE9(IoxO(!^c5-iR+L|4UE6@vmSn9C?nu#Yp5`RoQPL8^ zD72wNRcdH7T{-!A)E6+_U+nQgGy+F97d*|Rp+9;xFtzG1YA-e6O26K1*ja6U=P~+0 zcAX1|_%I-hbIPE-!*_qgYUeKb4)m?Y>k*>ccS2bxX>7kL9l}Q64aY;x%3CtxDQz#) zrLa&k{8SsqOLdOHck{b|o6e9mzG)5s65!(-d;k<6mX#PN$W*Pq?`pWy91dZN5?O~L z1G7K*yu^4c4??~aXf9GQMeHJ+p4)4D+HIQOFoZgBO!LeP_?mj3`i9+6 z)>^X1JEq@nx-AzsY}TjY%Cy3DZ^5_PrB2kM{HYEa`=m!`6(s>AsYDKs2j+I|ZEF;A zwXTV}b(Xc!xvDgV7dYbLSHv1I0Th!}-}cR;$#dQ1$l>AC;6XW;0GI*EPaYLz+P9v~ zz3jcUCjGWo)xRnk4oJ`xu)m{nw!dxTe#GSXISg`hhE8ia5F5r{Qp*gK`$ z$&R@K9`m;{wpQW|ruJO3+#$$y?QXKKnY9m198%O!qPi(mNdQwC&Y0f%a7m|Y++&k( za45&TG_md~LL)#ET~lvM|BS} zq5c;N~76f<0pjr*jKRIYYS|J(PM}NgVR==Y_2j8bNjg<(Dy9 zR^2+8kNy^PntgbWbiXSif3tV+np`XAH}{9Wme_yx1%v+pxHez9*AQY&pZFLP{e*wO zDY^du#7X}E5#PjV(42|z!|I`FurW&YeuD-VB8x>`!Kk5K1darchFCCpP@*J6i7^Up zWJvOxSfbMVC~z!z5~P(Mw++4sWeFo1<>mpUweD}iNIjI;owIFZ*4X93&CM;^r^$&F zFZ;@X7GXSmb)i7`Vkq08jQ;?4bddqUjv>Fqy$yeO1p4!#h?|ZzJ-y-` z#UF^K?`>_F2A}qANVF~lcE|XZ%ZKBG^7jbvj#fzD+iD+M3qbU=(Q3DM#K$!L$x;4t zpJ=88TrP}n32x1?JXCg#nF{$twk|;_ZvOzd&sE=b^0lS4YBWj`;=u=wSc1v!8M{5x zLRaNu{#g(I09h_2bbA3cAjc82Ygq7}YrY^y*=HsCDo%~ZW>M1g)WKOG1l<~uYAaF8 zOGf0>R6MHX`DIwK7uJO}yfB^*R(}u+=vs(vrXL8@J3L^QP4Hg&keMPds@E+rug zK`K!i7L6)NN#RZu#67)?Hc>eeO#>W{tW=waIkUV2g4Br&%V>{pa+r!xhUBRekVxPZ zsc3cNp!gw4#k^N{u;U!k5y{6;_Trt!qY)d&iLLZu?yB>;dou0ZExPre+(3&UvoQ?H zX}8eYRV{=^SaKtdx?Z9al^sTB6rERZf7IJ=$jD-AfGFXsh)h8xePXBWR}k&@B5)jA zf`Xh1=fl-g9fxs|VctuTe78Mqv$3_>w86T9sebA}Tt&XA(W0>8ZHPgQL=x+vVAScu z`#kQn+{>=m=!JC<>_g%oe07SKY-J)55A9fJKq+*yL@_egdzVI@dX0$oBBQgoqyqDoCU zjCU5fBgEmSkoVRb!>Ds!bq%;fW<<`V$|DY?D{03XakM#9peHa%H6Qa(R zbV)vS#~XpRP<4^E+uNcTn=mcJ0RI3vii04%m>Sf|E?=^FwND7?N?66i=!rBk@7T%?mHtA_PJi^KH#?xn#{kv=uMBQ+hnsdcd96zS2?pYhI zWLIf+qf&u*wn_mH$a328s&r0a)(}>Bp|v_24w3#6p^GuNwNhZ{@Z#4DdleR=`BD#r z2M)pwWxG=${_abX(~UaI8>6`J7Njbr5+m&`v8WWDC|wCj7072pmN}SnW$IT-+*&Sf zM{y9v`hQJn9!qwh)FIwnN6=pS)e(>*+v61i2hDeX8u2^VaU7|Zb;n8Dh-Io1{XrfRD}M+KjpTc;`@0G1tlpC15d+4UNs&x#eg8eYk7oL0 zK}c{Sl?W8BGTXQ1?@L|A`9v;-&1rYtlo$m~C0mbmT-x;(>kET*hk{eY7d$h-`)e(B z$MnA+b}x8eXU$Ah*=*1^2HmhjeNH9TukbFH8v<@ucN%R;b^*3hLQ>HV1CoY0Ud#D^ z75tYsGP_Tg6J&}uoDx>O(dv2xEz#ltW5Trik5S2P*q~@9TZ>%d`y>Y=dshr_r*8Od zj`CSMr?_{{&|`I5t(Pdia^g>sh5iEnCH+jVMg-s7$?5aVPXq7%asy02*J%We97 z=WA`lEo5v(u8&e-3~Pf`JtCRfF1Cqw$n38Cr%2skwaNPK=k!tyq58q^2GMo6+m6&|YHU77t_Y~JTx8r!R}Ubg-5P$%3}mln;++wJXfS2Am!?V%m^ z^f1{_Pf29bl{o61Gx>?N^##Ytc{0Iyq0Yq|)L_)&p$I|24P-Z7nY-JgGwWmF)CLL< zh@itCc&#I~dx^5QqYXc`_dS~Smr|9bsB>EPsR{s&t-a#Z=7{I1u}p2Y{p)Pp*{Z^L zrUZSL4PKU%aP*3zxU##nac#_RVI0ODyuGyfxPSI6;Cv%wNB;m8#^Nz9^ZYY|yFZ9i zP~#x<`;9o20KB05rA+E=iJu4(!`#pB21%86_mPy>vzq(TxCZ~&C>A<(bi2JX;d5(0T^lW zvSu})f<)2b#CY47%z9~Iu8qWyeg}UEsk^8&(g5`G{kXJtRTNWG(dra5uiYf%4I{3Ewvgc53+{>fZteZ&yS;gOASacgLjK$maOl;dhCd{4|YM%RGhjQ#CQAIIfx@+#7b=Db@2t zc4wkGrfE49G1X6j!F=Vbj*VJgN(Q(Vp5PpszpA2)!z*ziS~!eHr4>CXO_BnebyXCh z%pNr-z~Q%qaR!xv6q(B<_Ba$`w%YsrzO z<Va})DOz5{F&`2(X4*vkTU!tjg_Vx#7!b8(GwY|u5owsf~+hEj$ceR5nfMuclhYBMy;8Q#16x7i|Le$vesZh~2ebAVuMc)1azmleP& zb2VwPbuIgdZPT?x9>xS1tFQ}-CK#GzZ?IRM+Qf2x+nsW~%-lV;xW0+enoM^hU!+a2 z+~GyH#$jrd9*=GcCEZ6+3L=9nWuWLg?S>~@ZLXGSC$Vxlp$la$jqMEs6%FFN@~QH5 z6dRO*mrZLJ%a*7(t3YrhlY$e&x}#fX^+(>0-SjQnnS|~*kyaaV8-g;bCCiGsdf@$v>Ajl_(26Z}S+c*oW56zbzlNJmObO}yF2rPKwco*Cy% zKIXOI903WHBpo=6=%m1PnivxvWg@hXBC_J21cbPt^DT}^X=oTojJNr2AaXt-?ZkQr zp{O5>DeS}a^sN@$sZpfL_mGxQQ4{@4B4su-hrv^f0GUndu1P{(BbmZO+`{cmDTX5v z$A*4@z4W3114-wB!e#Q4v zq@~tvo7GX;mV~h@ddV(Bc?e~f5z{F5F`PPIM1xe41yTXTd!`1(H=Vf+ zyTadR^ircg-X03Cne?3NF($vX^2l>J*low1aV@ga6yvTa(Ji60scTY?@TDn9B=}*eTo}^lAY($WXBsww;u=08 zYZ$@WH-FSd;F-I(9l~w1x3=lhAZ@EuRcL;DFTt3s79OM0G zDXi7T`@38c=g%PQX+i23RcGF=(`^ZRHuHb9+2Gl4_84y6W6ie5L^CC*W32RfO|+Dy z;I@!-DCUJwgTx%~Tl8MbKFcljlo7$W+qYX@#)gs`i3J8YWyqykY#ZJ4FQc}eM@elV z(nE@(X%~HswC;0MrOBCMfVbAH)Z?u(7*ndR6}no~Pcm__>6^JPwhK#{ zip=<0y{Uqp(u-7kq)mfynieLO$WyyIorMEWG2lgf#dzZIBKFiC7|^gs1WG#hFFY8^ zh#WDlaq%B_?Z72FsD>qLoN$b2XI=V#ZyXxY*EoQ4`i@_BAHM_wiWSealkpt*(DKhb z8WJe0lmzGEKouE^SI01Z+ypcdxj{|@SB`W%xX|%GUJJBP7-3$fb^6B~sY>KX6H+Q@6nt{P9l21h(=4*ffymHM(0=>?K*xn7{T0qxiUM=+HSj)U;K>BxMlcK6 zLI6{MrxQw3$H&J6riax*Al9ejN*u?5uZ1u{r#^Ib>H$h;P8@Tp0vVu2(Fm z2_x^I;pbj>DjoIGEASln9K6PwW^hGw8PM#a$P`h^pn_{sIh?-Vh75Mm_E1lNtp}Ix zBaR)Spq%+<@vVF?I8d%~KV>=o%oa2acP~FK1IoPl;PS$Sd+F!#;ekh7J`}IUyhn)P zhRJX^V@2Cs!oG?eYt;VS01pi4S8$}EUOx}JFAui@g?Lx(&+b3700Kf99kuRYaP;sV zd@G&^j1P4e94mZU6aIoRB9&q?vf=8A!olKr*Bt`Y-`$v*X&&KOYp>_IGFow>M-#)J z^x@?vC8j8%P&j?R(T7H^G!*fuuJQDya%fW7Hg|)>H^8Jjod1yLfY^Yg|yR zbP2$0C!JFlR+fj{3aS=`y4ga8paLCGpgN63avX7(y=f02%cvB`zOCXQv=Nc3{{ZyN zvM1j`H6HrjYAKZhveZVQiM=%9XO(i+%7MKFV?T7))+PG3f(icsx1d~T>3hd=B3{uthj>ZXZMuhZx-u(S?Tl|$5ivxfoaofRZ;S-WtDN6DB@TwJ(EuX1Kw=ZLDvh5Ace7mY> zgDsU98j!Ruk1R`q3IdVar!{^R7%d>tGCOUXOp<+-_q;ol>6JX%6{O&TtFQ-w`SOFhgtOM z2~b{>TzPk`H>p1^x`ozzZsWM!KUSywfgUSPk zHkC?qV|Cc>*XL~Zjn4t=jED>NQld&l!N>t-g@@xQZZ?StRSHy9L%^dO&&$uvhjo79 zb{QmNH@8OP8{4R`Gz>$Fq;b}{AVb6ouiUmb*xP*5qj$@P4M2n>^9TkU{q-tl$fSfO z<2vUyX-W^eGTvf3ooou0+lW|ZIV4t^MQcp)+HH2PE>_97++05FaW6)CFbP@7Cj=30 z#x^cVkJ7ZUR^a;9sjoRDIi;p`7TIYOp#?4I4=Dctd0?DqzFm_N>7HKGkX!)zYA2Xj zng)~Yqb5OSO}b6Iw%KLquEq_iAh$)fQjnwpN>>zJW3V@W>08Z_p}%=<@W65o((ODC z9zl6i_E#>qypG{Ywcwv#HJ0o>g}hp~P49Ev9zvshlI0fBZL&>rCCM^fYyB#lcqORB zEns>UNb$#pHb4IWCyuY$?H|0{fa$!l#>E??5-WxUJfVgdsl$zRD~__TnT@lL^?`Go z0d5)ns$$vpJ?XPH{l)$5w;@|?7a8&!dTpJCTfAD|c#zf3?H1izYN0&6I-h6-C3(0g zYl~YC%l^6O&5&=q#k(00cn|Ue{MHu|b-j&aTjk;6a)e(NbS`&&r*yj()^e9f8HTbn zl>03tuC74(Dr2~Nx7*E~0n3zYt+7{ay#;|b(H&tI8Io=+bWo!Kw^?dijl6^v6a^hB zs89q0+DGPxNI}#80E=6;0leDA*vtj35TxrvUKZ5b-7>g=Ys&?$;MW5*}@3 zaUuBW4F@9R!v(#kOtLS*-j20C`TE3RFT(U8XXnI z&9_4IPV;K}j)2^Eady_0z9|HLAnaTTw_~LXf`u)>czD%l-!Fy0JDt6@gOl2!6EBUy zq>dRL+C>X<+&1N&C53T! zan}@5rL)v=#jUhBC<0VMcnS(*-Tf!NS~AMs!+4h7E~Sz-zDDZ+z3#x4YjJyla)FuQ zT;lrLXO~R_Tx{A<5D5SdXb@plr+oL6&7-sAF3Wt6Yre~RGf?%Z0rWSmYI(*I61Ayr zAZg4{W1jwe_0`u%bm^C6z4Etd2xwq_AY!i4*9R{JI910yoBlt@fylMs_n|*4$|BDYhO?O6r2L5&}s8s2w;>7|5tmf@&a?ubzQa4wOBTI^}iB5ghBWJR`qPiE{du~OzE#%5Bw{mt&gBiK~ zPNQu=mf=mk3M#4+meE218H{Qm{J!W*hRFW_l!{3osGVRJG(6&sKL=nyhqj`>dfnKA z%q;;C6BO+k_TpS{8wcG*1m0kk=+`-@6ocU| zA7}%II>mOK(R;M+309WxZANo(-XY&k-Mz_enMk=sTcN8&87v8Hyv)QXBs_(nDI@Tt zl1seq85tU*Lf z(GPti?{4?H@12hqYTrXPj^IYWzagtvuzC#U>}ia&NNMT)XClr-hErJOA-<|X3MBD9 zqUyL`)A8&Zyb(dv7W28sOnP2pAv{tS0PsdEDAgI#wrdvKZZ5rn&VJtLz+Fn+OM*2N z5yv#GU$Gl6b_NZ=Oiah5_PT6zy3o+WOvSX#X%X9Gt-ysKgRGKCR~&lBWR;hnmaM;I zf&OmPaR`7lhr$A!M;vpmeYgV7qjXwO3$S}ixMN=~J8-SR1A1*2HXVVh*6E6ssSO96 zlL*UwW;!kt)Rd*T(P5X;rzlD?8o1E;YosT?ho~(M!*0us)MVEynW*3#^vR(?DTg}i z8?!Cs+vgjEj*ifd2nq~PE@Y)?W7=tZcwYO5e0*O!l*6mKMiA0kv|Db7b4h9xSj?oz zX$o+a9TiX%N=0+*d#B|)EINAs0I05(ey{S(j1YihY?_7)Xpd1vDuGa7D;UnA7Z(w2 zmgCFXNzzNcCp9x9lpU3A??ZESJ0|0FN-ohQ+-=XqlCcJ3mb-)Ok8sMNy7XCbgrQok zG15>IMFEk=F}8!LHXYv1Ezy@ww~|&8bhx#Sb4khC2vx<}Fsbmq&Uhve7KetBnkWaD zP*cAeaNqVN8`Xze@t9_v`)3z-!<(Sf-G`Am@A?G18Dr9jTl1i3IN%W?KRAZub zKHomuyV`Xe4Y|3Qk)VPmIL2B5)L)=#ZUmKFP6(A*x7;#IX)H-(Y;)IJh){R{qyybp zyK^ycb9YaJZ;K+`wD);~a7DHq#hDL9ah1L;w;q!(MPSK@`axY&_-c|uh&bd{+m)U7 zRK5tHeYV$grQxj73mgH^@!|n>3~G6jtO)5tpuqF44R9 z?dH#I-bzKW+e|qA#d4ICGj)jM#Ir8q11c#@r-p=pRFvhX@ez$y!zTiveNzde@z zQ&Fyaw6*Qxd0%>aRVJCFdQ%#`|_#lU5<+G;!B2HMc6tB zOHB$cSeMjoP9%cNXvivaSW?xf0HZ(+6fZ4*BO86xPTVghVCnX?rHx@8VQ>LMn&|WZ zT)3~ocp9pgs|P|^d=#{fC+l9@IRxQ(|zSXwXad{E$P+-epNNH@f z8fu$EKH+h~e)om_3!K#;ka5KZD7D$pH*dBvwX~A%|22%xBCL0|`&8@%n z5~4Xf-SwVjm2}XwxU;1^czo}g-*lC(5k0Z4rs+cPxR$E87i!c)N(3$_D@Shl#guZR z!`w!fDyM!xq97z<5K>OjKV-F8;@`J5`r!WlxgmBPqiuFmjSF>|2vjsB$z{e90t|(t zO5Sy0qS`0|v!%|*y4>5}MRy$M@dA9fwY|+~W&kVNKn*7aB@iMUQ5&pAO;+(n1(SSF zAOcIX%M~M#3tDq*?d!7bHf_y&cWhm6iaoILqTpn)Tynxcbj*9=%!HU zL!qRF0Yuig^#@LL?e^>;-tS)od#iP@v5spR!a>vn{_*k$fC&W$Wni}p_-&l~NE;)q z$OJfoONRoU5ZyT_T8v+|n-@9G-DBE!IxaVR^j)_NR@rgceiq}98*VZ!(WEK3wL2IjJ>Z1(}{lz2&jaa`FcyGL>$g9dG~+7N=v zGhJizQj``}=>#~DmNr{8{_(Zj-fVl!QA2%n;2g;u@?;)aV;tDdkcWzb3y^{a6$*GQ zt~6ZQJ6)p!f&c-&C2%gsE*PjBDz)4jjjMwX?1&dF%>!_}8n5%PRi7^uZ0F5-gj7RCHd!V*4Oh*5E|xdo?~NF4FRqJqa|~cli5#O#>t!H{KKGN za_MOUQ;up#Q`|DC2GF?fE!no%+&2kc&!KXTtWsc#DVP?Jo{tB)DbB z59#z(x3YHaq4zHK=Qm7{ryrEk#pMkcfTgqrGRwB+;>2lBg^fjitz1oU*t%*hzotdr z({3)Wc4;JcmP|re#9BZsShPmhIZA+_=1oyu8E%YnIjoLQ(5USsmCwYafl!;q;@g`- z?94<)wcLfB%Yr4%*0-iYd@>zFsddKOdDfj{?qAd=yb9LH^1L1DT}8=U8mplL!;!=C~48b5PxYs70K56)e)aIoSVn8cfd z(9tPzUrUdw64a!{D1g?Wvf(bMw$_qDh)~G>W_0A+Lt)&l<+h(`xh*YMv&1b;j z(Gbs4xZs?PFKC^U%;+?}Ihsf)3Sq?Jd|jAkwA(jjSvN(IPQHdO7KBK8?YCfB?iUD~ zLDw4$GbQ;qRJTaZKhRTYKv$?0SJZW4uFGVWJ3wyOU9~mk@fMjI3Iqf?LIYa5Q%a!= z#H~t_{m@O}I&MhP@2-Luv?{L^ zrC$lVY@2bYxvftdd*|2vEy|=ln@U8AD zCA#Tsx5&B(<+omsG|E*ZGp#KY(MokDqN=Z}4eh(E7I%f6V%tlr2SQ62*xK`_5*)HQ zxqz9t9(-!T;m62pw&N^QmtyTi1>z6`&$6Ko>}y8X-d2}8bk(t|!*|;Hf6XU#YCUg*bsA9<&0kn|ZQs4MXI;e{}x}3u=iu-Y`mRrAUdq0EbNZyb?;XKv z+H&?x1>G+%D%%=FYpeG7NPbHWvfAV|Dm~538kL@t^{EqRB!t2J)e5PVS0F)TunnhU~fAt;PR@-91bh*v3Tx^XsVwf&aTvTH= z(AsU%OEMrCg>0$#$|+KkgQkRlaera?h0~}ku4H^O!US&C+%+(0au%0hprIgDUB^yt zYG;Xo@yK-zClq!eK~4s)TPF3|TZAClw>_5RR#8~+u5n(NP^AE+2z^g-3Q}uAflOb^ z)mtQX=6LQRk-xC!lj$0Ps+lY=B0qf-+uqafM4`gm67D;jaa)D8Q0%t8gLav#4yntc zO#_mYu%}}oz96Srb5P(0GhHXv7dy`PdA8j)Cfi1aCp3~?2}Q-kWx!&il{(ci&Atua@`aQE%TU}qmZq6dkxW5gKZ;1<{{Yg*{{S*tdFk?P=jOZkSyCmo z+k;Dup}|T~XiCKo5$XpMT*kZN0Qb~T;xaVMt+{8^rz6H)xz&@p(w_Am$`F@*k56-FW@}?2?W%iy zcMe{p!MGwTZ6`hkQjQ0mc@{Fl9y!MBf3oBQ`(}$wF8E$re`tLnebj1q9l0Kv!d-0e zr`3eNSC&U%_fa)<4)IKzRG;PhKmPz2whs2#eA z^>7y`(j>PY1)?lbCIzx9QdnPI=+^Jcap&9#TE7X%4A0=#8*DSlx4J*PaC@}^QLGJC zv7myaHv;DrCn~i!th;<-;5)zzLJ$r~r0N}HW;dPF7`hUP?B zKn^z3fT~neDkEv9HMo=Gj)4~GYWRVEwiic$aKjJ|Br8Xx)_B@V*)T@{?g!{7eU!yH z_GUXJ=+aq`z(5^V9&OgiOF$8=wJ9|o6~(vA+sM*ka~#yoq#hlHiL84Ot^^*@S>)T| zMEyit7Y-vaz3$q%PL!q@4T%yR-PX3;lJhs-_@3gNNtw8w z(^@u2^RPHPlcqoiaAS&9tG62{+goEmKAS8W1K=Ax{BgS22A!VR5B5#>RaNJT>Oy~9 z)BgZeENFEVs3M9;P@x&|95HPmW1FTx2<@gC2*g%k+VRrgc<;@!+8U1D;oS})rqB@B zaov||G91t-kmIySQKd*ouMBah*`urHV*n8er9c7cB$LescJ#YG}PC8|rZ#K&ti+=KKFhYF!dE@P@%Y#eG zkFv~v^=zjY(-4IvGHvbTMyIW>bk;S05Qz8X<>Fn$!0DP1%>;7F;+?-= z^i@5y6ijD;&R`bK1Y0FGW2GGLL(~clY+^JIA z1;7>j)qhbGPpcqCHug;-+#j+ZFZ|gmj#mRA=8XOZ)H3$zZq0N`kwPq2Dx`vwtJ=%R z^W}tGyZfA+e&OEdRG6`qytR*bs(bYM*>cst+#pfD-}c26ra-G|?lomva8k}OJuJdw zx_IGZY5xEwTDRU$-ooB<&HQYu^_%GMY|>EN}NMTX{5MXXrZ+)JvGIDO!W5IYqZ$iT1Fdp zAb5N8bG5Qa$t2@wU-{OT&mG zkkSIFH~<$O#jP#3QCZ%+Te>$HoKQ6Z@5d|#C2D8-aPI#AbFcg7Zua{1x~^9(yLOhi zlcL-TCO*?FMs`zajVel9kri#oVIP4&5GlZ%Na(Jj->&yqcAKk*$z>ymaCeA+0U;bg zAqW{7V}9E<=xrZ+6isaH3JAbrQxGsX9yRrBMP8JJK31fGMX3o3CW57UG@#}=B{=jC zmhC8@p6{x;!64)?qtMw%8r4!cr18Z-T>4b zED++2Akd=LiYr&xdH(z~=ArDO?56pn{cWs*MwCt`o>YoCa>69|+1!4LTRsP|JXSWz6a6Ftfk7*A706L6J5AzxiXz-tA9?EN#^H``RO|RXhAW{2FhTbF( z#J3_$_Kq-uGt!42S1j;{y5WH9k5J~q52S}_PeE~|G)C`*$=FBI6@5aY(q~&`IvGTy zH6?Y?5?WUZV(G-9B($?3)OaZ=DLjrNnXTkLSa1>^2g2`Dkotu^<;c;g6}-kH))Z4j z)Rdws2;+3Nig}qy;p2v0G=_uz(Z2dqa9`atbE7I}k>%xpa4AF)X%x7zr^j`PtTQF0 zjVf*ClHy3psUbmG6NcoClC-i$hc}T6MjYliIfR4GpsU-FKLxSJ zLsrS{%eOL>9wiN>egtB;*s?RG-SS1q0<9g)abHd0P{`~!654NG(r*Ge{ z4Y_4pi)@F4M(z=xWtkAQAr}T4TTiy^nMn(xD^!pPJO>O%nmebl_Kqxb+|59MMjC*{ zTygI83Vs*D!X{{NYM}&!z?={YY_wa|x8!%S?YIzPTW?KVWx;w{L#dw~dudTnP}^Nq zsX|>5qfV-TX-x43*@nt}*6!?Rx0F1zpR_!!IR)c_Q?k3yj?O4?k%geA1Fe149PT>- zzS_RzavOF{irkX0qEaZkQWBsAbkPKZOwKPiH2(m!nix^WIPyKLrfiA)RD+Ot`f0CX zB}v)+^DM{v zk^D}np8mVZg>7TpLbu+__lrfo)ZFAIGq&rbsO}=!Ju;eU)Ryhw2!w9HE!)It;CG` zvDdkq)&hfyV6V9lo_WQU5T&6{0ssJ<#wm7>?%OMw8%b}>;+T>B>7@3Yav9}MU#z=; zbBGS|{{Z+z4(uw@+zYn3vbWnZ9)jwe+Z(;6n|W<(_Y$oOVj}^!Xr#${MG}NlT9-ft zNXDyuos(_X0enWvV21*wqyPcO6Mz|$RW^)~w{VcD=P>$?KB4TUn5`5!u&O9iWMrE1 zBETW5IPV!^rxdzH7XKGI`L zaSdD5YkilZ^cGhY^hlP_aYUdVMzqC0Rcw|QTbx(7QL*p*MmBhxfM%BhITdhIg-qKw zDWSHK+9x@!`F9)-6$N?ahIJqAH|f^Xy%V@?@aC$-pLcHFAudM_L{y1(m+k6qI$6-B zV>ZpXIs$4zsKsXQ`Ey~t#WXhZ7@9QBa0F^BEg%3e05m5Wm1ESi*twEDy6`dbC>*%+ zIMzwq-IebJhVgrovafe5N_ORqt;Y1o^JGGkE*yq#axH0r4l|BQe9u*}NJv!(D-{&a z9G2gsdarH0l%1xdpN zTD<0dtGDlMFR*OayEA*D#&*ulxjO8i?0dpyUG}w}>330{*dX?F+A+5Ef?B&c|E;$xn!9Nt`fK%%D#rjMp9cPJe+5_wbkk_64D*SI$h z;4&h#_icYwU9IjD&0CtCGQ)UWXQep;?HR(t5gDbwDM`4;LgVz~ve{bJ=x79r<9o4w zVf6O+;R7D{F0_(b@qj?C@c@VhB$UFln~zNHn|Sja(D;-EY3G2ztmm$;~0aj>0fCpL-m~7CaWb z9Ed~eG_Wjtr+nLwpNah1;lMyAo*t}eB~Wt5=&wBvETtuHGLqseq4vpULv`X?eX@re zQSk=2Lzvf)Tr$Xv51@=_!7cbt(kLN`>;Pj+Or#DG=O^BQ4xq0!I+u z9PlwrS2`{$Os2yD5HEJfOg90G!xNg9?b`ycT~MV=m`PHUtB~%fj_kZrLv2D~kXWHpoqn0r zK>;-2c^TB$%LCyjUyAG;&No-?Md$-@lj zeEe!Y!S?*F~Qn%gCSEH8XDw{6Y<151QY2s>8LLw`gtd)@<*X?h7TUBG7{4b1qQhzNsBo zOuaFd=#b*fjYR25HO5D!cde6e>03i_a|BHhl@5CvS5aIET-L3(i!1w`;%_P`9K+(w`}0er?7T6_B=Uc| zYL8o--(u3>={@3nT-L@vXs56PR7UvyNxi%5*IluunAGd(}c#7cE5seDx4~9agGJetGFjx_V7Au7dh#q;G5_sl+=$sO8G@**u zzJt#pmn;s-ATX}{O)2&fPBqUtDj~7?W3-K{1p{@ zf&ShH_h4m}1mbJIN_hC-^Pye%@E#w#2k)U=@%kJN3&Mqa>GbD-4GQ-a0iO)~eEjf} zsS2W{5}MxDWffatkZD*}^O&Y)-xTCIW1v}uw2gDnJ;JircuwKkedd>_9(;W9F^QEj z3eid&{A-2r#*>PnsHXNhcFox9>4O!-sac;&l0g(1<_;+Om@dgOneU zSIfte+9j#P>Qjx$SV~kW>I)$%<4_WL*M>Nyuoyfa5Uzy%T1Yt>r>_CR^qM4UG95aF zC_gbo(3<6*GZ(IV-r%2T`|8dR-6I|qdH$LzC+-rZRCVp-riOzx07oEB9qE!x^K;bN zhrJP{fM$livoxRl8k%QV=s$XDap)bGoiQKNg>#FK<~pF{3UbFm;-abz5}{5%94HdF zP|Q+S26gfJeVBEp*F>076^aw!aO+PzsKM~|(l>b5I#Z7arrS9d@v)TLx?1{^gDcbQ4Dtg)`EnDE1gI`oCGC<> z!npixYZ^OS!6}>F;zQx`ZA%dW4O}}3B(DQjTT#&=vg3D2QrmPIx~VPAO3ey2g}Rqg z7C*cQHO7uUl-urE=i6T0Ij8M5MmcyY=s5O@t~-RxI$soEjsy|((K0PhKGSV{(rS8I zN(pKL{{RgrPf{Z4NF4IT9_jg0vhO9Y+-|QWm7xQiVR`kw6H*}GC$=QR98Cw7q3&>~ z1p5`H!+l=igKv(z>LabGSD7|;8(LU;fTY}Fvk3&$XRNtS7~%b6)9`*-ZxHW2FKu%9 z;)%jbnIRf{XaMtJY(o_z#Crv4_WS4WHm9+Xx z=#vaK80%b9B!<~}@$XD-*W26~sD8(Kw z3QEutLCBm%Z(6o@yKmmMoyD-Zi08WB`@4a_w3olu91$t!ZCV)F?XDqnm*EfbgyMjD zlCY)kwbnha-D%2p*#b7-R_C={?Dsp0Q6?+w&63Jnx3Jn!P~>>BmJ+7J%#bLdQIP(bSb|@X;a4@&+7h% zu<`mM*|zix40R$a zW$6y6u2knx&%Ktie-qBO+hJNkpa1{>$YK7E=zWKw_SV_$5j4!6Ih@vc(jISn7|ln~ zNWI){HyL$IQG+IebdKOjuHP)StNceGT;a7kGwJ9^j_^Hd}-&p59LjnD88+s5l-J-K^8v$>zfH$F~qi1nsQR-45JtJ6o2W!DigMof~g$ zNK2`S66Tk$Rygi0s!4%9TxaIUwnTjiQrU6k6gDb@Kt?>p`K9?uakoU?q3QWOGOhmrPjxI)7g=7iGd!U+5rdB>4M?Yf10FS`3awqjx9z>z zZ(-@r+oH79-gBs75^eWJ5{mnm8cRk00C*G+p$S3LQ$v&<-K*Q#p z0zo8XBxU7EYl&Sg0}x7sg;ee>xY}DZO+gfjjl_b}!~u~U$?T~0@3$K!^khxkc7$GD zI^;PnS@#nfLt#owaTMSvVYDPsC(1Oo({WtyF{LKoCHCxT_HB^xY4wNF z>R&wt8awF#(x57UjR#3@eGB<{yxnb)++NRjthL3>VPGJkAdMwKz~SgLtG%yy-EA3g z=Em5Ibpfj!upd=E_qyq}ResuYr%#`KvF~L;ffa7LRP`@~)wV!pcyEhNG+3y1yS**G?s<>%uaBiWBoK$9%-pLim%Sy&IteyoVqB!s> zxu-0uGrVnTvRW>4VBhBLOQZ&)xnaB799nL(+K*S7k1_J=W<+*e06NB?UaeD8mND#x z>t!;}VRY+TwzL?GZg6~oRjqOmTn84fi!i39Sv%$=43UkN61v*#nz@h=q2zc~Hv_%> z$Jo~kM&i6}%MrC+SdTXCHV)plvnKmzjN+KMJh_pbYD05m>r;wl-ixJ4$*?%M&&-al z>6`mq$8@xSSlnqcIgp`}G4Yb^P4ORywa8R_HEQjTZoiH8(8%*M6f_r-8snA-a2Y63 z+gGLAd-m=`q+9NLdQ>PI%HeHuZ|H1=0q#^{C)nM-%o{O7h3Du#Wca zrHxy*?RTHGw}Na_uFS@_jkx8#$F0eGN_wurQ%jZX_2Y7L^LbE(+vf6h(wU?uvX=@~-rsGj2myqDcI1LTJ1PT=fTxvt?wn#Tt zJ?Qb(Wh_WK;H-q|!#-NU5l1QVnp4M2`~g!I;PeBNJtO@U*Z3)E`F1?H6h z0CAG*ihf72msA%)9}pcVqu6io>L4Mfu%OY=th zX6`U=)=Y?6z{Pi%(p{(k&=Icyam1cLW|gVf*p~0JaV7E;z~G9iFg$Ab?SF8hTx3U? zxMtezZLtDknU@*qX^8Entcdg9c3fst5o=vSkV&N~ayZlUXH>Irg||D@meCN$5a`_P z9$p$;Oa2qg6IENb+~|X%v}@c;h6DxG#30VI#_G1hPV=^0ZI-z+EzeK6nKN5Wz61%7 z=NFapdwbFw1=rM8ki5Wk2m-kZa$Wl0r!BWw?lu z)mXam)^3XJ%xMj34-s%9?6_o}<5d>=Huvt2!(R1)ZuTsLZ%xkP9O^byA9bky&N|p( zpK{{$1-$CQ&_Dq+0*86qCf=_6+kMj3*UN8%%$T(BB{a3bV!61L7-3dck{ftHHquF` z%+cq5vwc>ek-wOAWDO>~YU zA|0fF0B~0lnvrTGvrir5%wr^dnFJ_yk*J1%aLGYc1ppZ;R*Jdqt)*-2-J0EU-0p4l z#=A$mA*N$ntuUWM@ZM#yq7+8%k>yD`R!{luIICgDFd6M z%ZpGgJiJO!C{Un+FgRl0wcoz=?}{eM=QmC|oI(}jf({29MmW}Q-q-k-+uqdvMQ3o% zx+Zs8W47yz#^1bMR_kqAfnQbN%*d=T;P(pk1gHT@9C0tq&CvBe{{UwvN3!rt<#V13 zn(1B$48?`sCWeq4N}>!aQM1}Q!qR5$h9JNI0DwbV_K*-TB#bJXL)wW(@ zG&rp7mZR=~`d4#9cJ((g^!(B06>yX!6*e7VZIbXoN1bcX~lqPKu@6oBZdn`?!VL>q8x3jw5+mj%_2+)=-$_h z3{)G`XH*uMFf3}gN0QU(Q)>mq^oao_DN(Ll&Zp{qw*Ct}pJxwk#Bl!rd3+5TnsY6U zTIC6eIzj+Is{0*|Qt58)^ro-64?Yvfxd`LiTz6(&Y&OeXwpQ(O@3Wt|vhLrHY=I+e zZabul$SY#ma6=L;(_|)ENlUA7Zges}gqq`=U0U5)#T*`Kp3pz;!&qZ`-29sDE^Es1 zB=~c{RMuQWG>(u)8E_loB!{#H@d^kD!4Z2+R~yfNxwf8W+1n`dt*f^>``4RtBz(>^ zb;dm@EC`D-W;XXw5c<}#)0EbdPpcA-Uhno6!)w}ZCAGF|^*Bc>@GZc!2RNY5R$<2x z&Ypv6x4C(^zYTdI8b|<@#1+7IaT#`1k22wJ?nRlK?Z{iKkd%lq!|lXo*4vi{ngvhA zeanwk)XJX_A?DPe(iEN*s)OBGxLb8JaBio_WUP&?E&u}Os_JvKmpRUGM=1a%ON~df zj%~U_ZZ$|$lq9(u$rA(xM;c(>&@NJfr-o2&ap1P#m)2=0mkrkayqHEjcAjMkj?1NO zBh~3~MxvO@Z=FTF-$cnbXUb-WPLC1Mr}cEWkli?zfxwmy|-!GI}dO-0dOI}M&Y+I!XCFuZd;OPFqrog#zI#yhhuc!N>orXB-|pV6t@!Py-qmWk2sW+Bx?krK|>Hf zEjq8QI(f2f5V7|gTn<;YWSBz}M~Tb~kTtBy#HNvop;~ixv)gW3E?(rB_%|k(5^x1Z zd4Y=Li&oA0EruM(w!8bW&H8i(oiSe51Llo7+2}bLlOtM?P|{FRx}|AI%DIcZ+WV%R zyOGq^(#H8_^8=d`SuCKc1$&UNj2zsYl?L7`r$A-1AjaG?P}9Xwdw5h6aM~KYs@r?{ zh04n=&Y3E0$S<)5a{+PHtf|IZenBz1VPUjX5R*ilZ@QAhqI%O}i*&M;*7r71I5Dg+ zGE5p!yf<64f`sWKB7&k=&3$8V`)4#gk`SsKTb~6%k8iGrv3p~7M(w) z`q_aNRH>*^y~9Dq~}J66UuM2#Nu1vXdt1(K3)<_ z04P)@Rd;`S-;`utK`w4Mk`ta>@kPUdrzlfw*Ui%tZ*I#|vnMrqlFUo>$u8Ti$uErz z$BrY%DrQksaJoG1w%$nqBq$^~v+kBx{Y7oIZgB&B74DW#FM=d#@V8LJIFP7Hu1Kjz za}~r^PM*=)VlaYQF?VkqvEVZ2T0$2z+$9uQWM)GL|GCzmO1ZOw8x_EdWDwqLUJlO@=XrQo8{6Vy`N zN(utOLfX=rY8+47ix)CCwIo6@&-6apTvKYvaH`_r+nt}eWtQ%HQpoX?ms@@D1(sy! zQgp38>4dc*C18+fpiU_-I$NiA94@TwovBplZlpi70@Z|Dt^KfArjP-UQl6};fb9=$ zwwx~E@9W!k^tUHx_X^8numw7$v2KX@ORhSOvXt_qtfrdOvUHL$!1gVZXS3>C>A+-C zTkZ^sAY1@zNn95aa>Y(~R>yMOuI1X`iNu!6Zs$0rXD?MSZ*S5J>9>o`!o|6*(ib}G za-3MW#glI>u3X2Yt)#rcoR>5gG=&tVwBd<+$K-_f6UlYA-A3aij&eK};^JJ28s*Oe zg&mJuwkVku#7+%sLsTKiBH~3>)<4tVb+&%xgK>*(R;CN-hk1hZON={2wX~$Qc9#uu z7;)&)6ICcUf{iAnDy1>Vx{IMVuAUx!&VtC)_+HmI6iq>dw7D}vGRGRwv#7Sa_>5=m zB7z7}`l^Kqrj6&mJI%H4OfvJ*tn;lZBi-8_}#)Ei8U-7Ng}5L}ONBs;af6bPWQ~v-_)~&N_*q0sQx2D^g-+O3oTXO8Oo4N?GM8{z*sjSLo*rwh~%@g@* zbQGR7%N-Wy^8(Xriq1{i2gWaL#H`Rm(YmywgR~(BlGbKEoSy1Q*<~YLd*NXbiZp_RConFEwsfyQ-|Y=n;y97o8%E)#>buy@Oxc{ zwxHZ>8@0YKh2(Q?KJ0y!YQVeO?rjI{(_!2gSK)dTre(5g!j8vVi8#{3cLl>W+r5%A zn@Di>8mf{RA}J$W)7l94(}ujOp9=8vr!p}9rKD-5*ns~4G|5>8i`q7t6Tp=2Ey@i! z8e%Lf_><2Mm5=^pwCj`Q8~*?m-@?j~Y91r)uhT3~C)H6<&~*+}`+m&nf}nU(giezwQq2CY&la^G~BX3!yIH%WdVYy2G0N~iE zF()U@6C#$Rqv}w^SJ>J};_|>H=HCmwVF>lpt+<(^PNG}L;yp(SNV`n9%{X9Ru5BSL zI8z#VV(T3KTC3H5YiqhFd?corY1Z>Z(qNiE05~}wGU8k{{{WmRLT0(h_B55uV0{UP zvYV_a+%T;c)R?y0qe+aFby$-9x<&x3KvTbkDM|qmUT%9YIiC|DuyGp4=OVL>TO5tk zn@MT)9YCM!3U=T?`J7eFdh*mgcpqgwruy4dO#5x#+Q~_u!I|#c0%~ zxN)HdG<2Tq*ZdatK{fd$<39uP*;(P6ll|6T_%HqwOMsIrKYhOON5ud@w}1CK1!3$O8sF;0z!%j*|8ERCBPFFE5JBe)|jEd$*GGQPe65z#%zlem8IfwR}hxUOj_S0dd za7Q<={TLr*XT7&*mfv%3*Ed*NBTv5XWyE}nH2ZNjy|Ni~rT!NhDosL#LWKyZHOD)G z7rUt?x+CtSmU7d~2%0ecJ8MBa&HO!)1LA8VQQq=vMTZi*baz@(7Lz-5km3kh6bAL& zX{uD3f(S7l8lYh^WsLF?sbJEZGY^LU<)xcCq0MLO@IG!0$5r^91xaCSM zs;jihb^hqec2uWihneoViiZ~ChC2=4c0^X#Mxw1Pg(Q##5-W@@(XamCcDEC&=LqZq zNCH)+;MSeF8W9XD+H}ZPv_qF$ou!Bhg6!rSQ!M1QuEgMl8L>VihG&u}0d8K3Sqh#=P{Z<#OIu0r=|wq6)Trs39e zq^OS|2yzL`iD-37LVtubJSmA2%`mi+&JB_=8;QqH*(<<;Poj!ASS4tTxrb0rJV$ra zP#(bxTl;5p&0;#Drf+V$Z6@FvbE=-Qty`(2780ctAt;6#O%p*-O)FAzT`FOHtnxHz z)njX^3ge$sDrXPCM=&LMg%4?xABBdq`wYQ=;>1so2MY<|N zLQYGn5)F7`XA?u11AZ{pf-)n*J8F^6a8id!CmtD^uKSs{!i~m_e@F_NBci z{WQU+Dp5Y>@sY0srC5)!vqsBh$RG5dN4Pm}?mI`&+Jt_h7)!mM+^i%LOuI0qbvkBL zQ!fle>upZyYnBc^U-47hAx+jdc01izd-TH(r{6uX=_5q>$3O7HlV1#SUWSB!-0=1} z-s4*ipm{q?i^zNH>~P1UhE>d~*g85bY_#TUZ7MX#kTniG6g^2f^1@46N{|+SDU~Et zN0U<;YwaE(59yZCSNQtB>NNQ!#Nh@vA~D2w39Z zc)*$M=5hZ3(bENC)Eh47g2L(<9)8NBzp~_avX0|zzqBXjB6~+PQR@mlwKcmr*0;tP zANb9Sok9Nqj6(1}Sh2b*6I;j4kNDeBBlwT*JNQjHuaNNmv4@Q!khmz74=P|gDg!!% z-XcelshLrjl*;l`Pqc@dQUx+nRtO^yt|DZf85$hJm>>{+btWe{z9y0lL2g@aGf9a3 zu5H5BQFFHu9yEa>5DJoj65I*snG!M(bNrMxeDPO3i&>}Tp7{RpxB{)u^<1qV)dHom zXE{WHuJD{lLzggw`c{jO#^8iPl-0iO&1$7ZTb9XzJdoUJPE3s@)6AI+C&*wux3QdB z$y@tA6Y4sFKh|v|c@N^|9^6N)As(Ym&fcL%sGgZNbykb{t0pXTl6@!_1gXnYt}BvI z`p=dcH&HYB+M*-%!Vm3Y!g~XaFUffx1bF?NPpdyzqTLB}hZ|B>g#e_j3f7e+UZA9@ zI)aix;yB^O4gtV|4meO4U~{G^1pfdrN2Le;9(JO?{M1DUjv_q&0Dd3vPw~^OA8>!- zeH89gmj;!gDhd=SPzn^LV1fuZm4kv2fu_@urd#gVv|pgVZ<@hWSt!usZMwFTr&=BK z1RX8a#?o>FF@~psmk^t0mw6{Jqzp0095JOuE25LkXT~_CLesGyv+dp4YTNHJ^V_2E zZ;!6(;=^%XTQTE4%RK}Itp+@Lq^VU(jZH>auKYf0Xzop^4wB{N?$k;GKm-KGA%dLw z)RT0{Wr@=Q1WnR3@yvx@(@b0H*>bo*vbi1%heLa-Z(JQpP^UUkVs(SAl_fe>lx4!a zcw*Cam|X3a(MHp$mk_w+lT}W1n>31f3y4D-$E2knv0_L^YUL!Y*sim>+bTg$optU! zAeP;2V^)Dss&T{}pbx?x?jq~obl>vQuU z*KtT}zi7EbhSRpk*+QFJp=pxWRSQK6YG@kp#)GOD-y#11bRQdRXMUvswap6BFeOwd zOp>5&-_2nX7P!qDQ-K8dy_kAw$~t5zdkIPDIE7fk%WmsRmg=mw+Nn>ZsDyw`eI%2f zA?@OK8#y8)AOIwQPnOI{6uA%y!49dqOK z+C{wq3hDzPiOX>+SV;kck*FZI&pq=)9Ly~O^`}y+ONJUp97Bl&r^A*sEZD@6!N8LP zf@Dzf^@Q}*k1b5dlYMG24!s|5SmLb#KD4-oFM7}c%#s~X4mB9P+vI1Rbi&}jEWznV z;g5KzGPJdk6PKFf{54(dc8gora<-%t7W;MEw3MkOB_*})Fr<)1MI_MpVyeY~+w+G3 zXKC-2rcUAV4KB~-CHFFsZ!M9v_h#4G*6Y2l3#z$548L#?;+u*aiMC}-KxRwKy0+9D zikd2w0A+*S_8qfz+O6QaiG;rb@Yd=^#9f1kJV2#dU)Hh$04Uw=n2H1|pvh{YfUZPy&zFd&))<);F+-(S3@|2}5i178LVYCeu1k$Fs#qC`O zw*DJuaksQG>PX}cCld239Kff57!(*)#oqq_cI&y}x+T!D?I2_upod^PdDdWWV0Z7c z+o}bZWZmwPF4JZz1Xy-iQf0!H^D&H<8I`Rqz&$oST{n$rY5}3AIhUup*QECbTkSGR z>0JFFFqbfp6%GNo3{l)GOg9~ic(!!6tZ0p)Ngx6-OgQJnR*tv+s&}@)+m>lv(A(_a z?ho#5!M1M>T0>U(aE{+*0^5)S2zCsGx@RaT1U3msp&a&*{$Xz0F5e8jLvAOX*Am44 z04xTUh{H%Y0@AvQ;0J9{JEpAf?jFsyO%aIN_UgnPONTxkwWGEV>Swe&_(Wn3=Z|Q* zOIJ<1M&K>mW*4#nq`0RXgzA({5)$sEav0id{dLnj)|NqV*zO&GjznvhkT|sVVzonk z)7!0zx$zf9Gjnkr{QZ@n8+i^PD{X0U2D(;-1)*8c(MhN@BO368E;#zCkoMZX0Xeu+Ll^0{Ev{bH2bp!I=Ao5yNFoM>pEy3K!)4=*x zk5S0tC^VeTW2ZGBaHx$Um92k@JIg-?h7{8DLXJLwexiLshlKWff2ZGFW^)Q!(BhRH z(xfM&AtAL_MnNhhwCN!K00NXSmPpN7U4}e!`j4WNLDHiy)AYugH;Jax+&}%ybc675 zui1qh8bQFJ_Zm1z^PAo)7E+?VBvxb8VH!uNzq!H7DPwT7R0#kMR_OqnSHf1;&}f65)?<*hGvPfMChan$25XF2t(|p zvBi%MZVm-Uc&u#$^p|ZCR^{h+PI@_c#Wxn&1(?nulCn^hN|fxxl@!vnXlITsZ}~T9 z`P}R4xsAS}Ls$So$y^*gm9~?urqTtx3=T|7i9W!d`n2qSr>@o7G%0o!-QGng_2OiS zdXI~dQl?<4r~d#&jdhRZw@Fw4@0Ro4ILdW<01ft4HOEwMGlUXo9GVl`iT2f(8q>A5 z!z0aRDkm)SIMc&vuqDE)}8R zbN!e+uoP4bvIG(hYnD_53eXDj!4b!m9RP}hPDY%w964|`h_h9%@SF-qzGyCu`^iZyG`sswwuX6f*xCaqJz5PCaN?`ac z16}%aI64*YtLgP%P_FUImyUd}9gAojE40g>j}Ak_JQ@r+iYoF5){sY)ezAgfN4kP3 zt>t5>wZSA){SCB?ylt?^Jp6IIvMXm1AE@7OtgYJl&i&)>H0G{9zxwesV08*%xMf5u zm(rMU(VWdh_quiMd$N5;{W-}zNv{uq=jDoCqw#F>0mysBPTKIkVej`>%ek_PQ)Uz; z8pG}cr^2gHB&LS7JnN1j455YEdDlcN1*m%}r@T};@F4nKcBLaKl`B;UC-|})v75aF z6VDp4haufpFX^#VxNae&r}Hi6oqrkPNaOY4T`*F4j!IkasJqZc$LX)G5ruYYIR5~; zCa0Zhka%OzTR{PldOnKh7az@aL8;~UW1s_xRH}@{6rg$hFtBK{q^=B!%Pt=bINa!Q zq;4j;*Dt5^Vc|e$P0s}@fS?@z0JD}H7_|ZMQKmFN6rkaQ1J_553!W4LJFNM=sqSrHPO_zW6?Yge4%UoD1TB)fhElrUlMQQ=jsL*AeJki!) z{!#XQAur)GSX?`JYgI^$Mo*%BNyzE+R{Lz|hi)l5XN|Um@YG%HYI|w}Z|FD~@69${Tedb?ZSgc0 zKG-?4aI%RDRm zRNVlZaz*Z6xq3a*F)5Wcx3x!gPAI8C4W%UJbH||n0510X9lu~kTSBR^ApLRF6)g3048JUbb72s6cgG#_rN~nLt zf)ougSG#RC8|91k>-GoQyn^73KM7E(2=-I(TuW^znlg_WQBW=O7{(54Y!2^G&{mwD{_f@F^GN3}0!n(8qdU`k zS++f*W#aVun_+|~pdlqnE@)Rx6(d3l*FZH84k>!mt+uX*+a}z%MXyKY41MJw_E2}x2T3b zM%4D8?%1s$7|b^%#QQD4V(BSu=(0dduA+v76J9v;C+BZM+Swakvf3bIaX~YFU`D_I z1=^c3F}bzCYI=kSyz6(;o3xMfHo4wRk6|&Ac%l|5IT4Vnn{RH5P37k;P-ZmzyL1?j zNI-D~-jl$kmwIVBgKi}?3N)@dzd`l2k5*ayv`!}e+9r9bib)?3@j1wOlv>Yj`$X0b z^WFf8M;$*_RV=1D7|CjhDJqIo`a@*}ZKXkZ*FYsS3Z`J18Vo>sy6gyxOM?opf4`MT zZV?@7hPf?<wWX5nR4I- z!GJtC0IR1Z#{zS&rsyGUrDKAU2nWnp_8ff-jqH{%=AmPn4>bn3V}TAJj6ti9wskPB z0PsufgpL$WmkCdhsm2$5iZ*UUumSgN;GAFVsnC<;h30;WaJ}}ox0{AarQLRR-;+5> zc`BT3kx??Qf*oJDLuqihs@G8@*BC4Qjp=>O?wabx*v{Zp{#ygQS)E!{Pcv3>LM`xeg<-Zs^uBNtmUvS&t}K11+g{JU|B+ zef#puWIJ?lY|M$b_UU;8I&r`tXfH*mYz_cJc_ zaWF{;1~vliEpisLp9mv?Da~ta%Si8I{{W}P-65k;bBGF<5}1{!S8}_dE4fp4-rDWn zwcqmR?BIz^z`z} zZrNionY6a!&Uhip;1SV`yg^CgMN8VY=54XbceqBzO6DC}RL7yELIqIc+3FQ+cKsdE z-PYa1VOH0-H8){OmuKBckhbSYxZE|R#^ASOZAn@hF*Ovu94QJa8f%HW4%5|J<(0*y zt+N|@w>`|5V(A{>aBE{|R7{-Q4+^W@PT6ZLcLGNiTr@eH037vq@HG^=-B)03_*;v9 z?!MnZg9hb3*KcCYCOm!9Iy4?q-sM~BfUg{6TlpKpYRB~-MGCO$OHyymk z8=V^iT;Dz6!D3ecK}-Wx#PI^2Yd&BPmx3#Y5(9~FIswV)?I#57s@l&Bb8b!B68E*| z?%P)0acsz!WZf3&7TFs5p~)}%)wJU??a~yYQifK7gZv<2?c=65zOKK8`#;RbVB{oS zvF&?F#l$=@z_9XZ!-y2AXM)n%(Ok9{&J+hmR3{7<1Ktf>ea+mjSoZA8>#!F#J(e?R zn+QJoQ2aOCZajj@*(zFAmYgLaX-H8VMQSqrSG8_?Mc0+MG3Uw+0D|zs(}68eZbDo>Rq&iQW}#+e#Mr2U-8>@_0& zH}8vV&dWEpOrEv*x#dc1>PxI!lH%6jIzmy>Q^tU1Xa#v<)AG9R-c6iYg41@_DIcob zdpMd$R9i_N;%7o3E%l$RD%BrPFX+cutk-2U-&nKDw=Um%j+u~dFEJHx3d3$(6kct? z6_sjAlDB$!kU>gnaZA)K+U45hw%ytvX(}|c1%HSgEnYZ!0-BR&^8(;L*pVYtu09^q zQ7HRKs+iHyZfe}Ps7DHXfgf!^??X=1d~c=-B5UE#6?q5*Ohk z?4C6q*5>0`yz|L<150(NaR6!wm$$Z~&^v3|pJ?lIEC%rWSgo|&-LSW%E@O!;FlMea zD~MD*N<)dwZ$lU;*(f%ZWj#qrn_=XvBJH@15OWCciP! zu$-NOb}4Q=GA9bEFFmEUN_k9erer#{*?LovB>ch++TPz$X+eHshg$MWxb=G?D`GMMJ{2*JSKlKXUfopt5Z%(vyRw`GEOgj)V5U=@Yoy5$siE9<`<9mmT!nje5F6#WuME=F)CmCy2n{=9d$dP& z9QO=$ywSJ<=*|TKoj|meIS?1NvMttX?Ut>>v3r}g9&Sd=V$Eko`q1sYPwkmA?h3g3 z7AHR~$nG7)+0!J3+*%w0qe0Ju$+uta-8p^J-AQe(TL;4%CSn&`>Lul^d$0muwvAAG zD`T!H?qR>%Wg2GG;=;Z(2&4>r95KtbqkX@<+qa~vjit@1&9GUZrbG?OT|=9uH%(=@ zup~}Q7MqsA*Z5R~w^3D8P-4sSyK}bPuBY0st&lPYI9xFubQ1u_$UqJSaxF|T!jZkh zEu>7EIdvC579ZvFBn46LtBPjNhbGYf0CIPp>qX)Q)wM*jTVhSTT5NX-m!Z{Za#%x6 zdvv5F#On(~1^$^RSOYx<=hB-yp}6WByMp^0IQ*uy?}|B}Ap~khw@FSbq`5FP0^at0 zLvFW=Ow&BPmbK1kZ!AjpW}HQ4+nvSN=S$sQ@Ut%P)Js$PR_t30r58kInvU9I%A8w^ zq>}M`hY41y1D_V0TbBIOWNDSTW#;M8C}V3mXK8BDXlDs=m0jK1DVDXdvs5Uh0SwrjD(hw2nC6&A(Mgd zfDll$21#EOPHW=~P;pWYS@9fBbmOu+l-Ads8Z0}E%ayiNDeIiL4n|DtM3lU*YjL;5 zxS=u7r{gGVWV@NE(lmpM&W-AOJ&W%5Gjk^1@^yK7b;j(2nk7bor!c(AVMx8(Qtk)Z}Cq|_$I2U5jrJy2KM{|-`m>|0# zxvm6hE2R2UK3U+aO+CiBPTSUNDZlOWIi$GNs?l_GHE?y6^;?AFX?^zM$OJa<&{9)Z zGCD}bw_WbLcTU(_*zVhWH&AHN9IlO$ybpko_i6C}d?bCYR5pueUCQ^{OjzvP&`U== zKwnQ~AWi3KZaZRT+AV6AahCiGd~asJ_lZJ6ocpq%A*Wg zl&iB)W$x)V+pgK(a8(l0`ud*o*Jez)5!ia#^U=`kiH%EbN_h?}2A5u+0<0d{@{!!S z3+bh0^KSqRMvx(Dkd1K!JgVwa14`+`8(ALbL>|b)p^_7b;O8LB41#2X9z3TuZOgGG zM%}haw>IX_tACRFAx+tCaaLo1htQ=5SMHosl?!y~6j0C-k#POTq-{3K>jsv|eq3J1 zJ*+N?;{cBcS5mtLIj#sQ4aKhJ9}MjpW8#GPnsLN(OgMV#&9(PdO{!g+YO%Dp1^#Qu zwzVpCqSnJu9FF@SNW3)rQzSCKY~V^?Li$>3tf&GLj>XX5nm1*(T{_*i^5%4mK3HM! z5L%9uyUZ(y8q^LX<^^VNc2-E)FHG@9#c>UDu>^gTLFmtwS{s2n@4Hy2P<545s+ARb zK2!vPLHOg+F_jH)z?Jl3J++u;!14NVs{5>;p1j*5jH$q^fDHr7;X$4qj4Q!jbo0NL z=oO1Cc6-I^cXu8wy2$n7IPT*KxGfXhwxT$hYjQM7%Wd}5g_$c#hvm2dPGcT8>kXfK z-gkSuU6MDtU&ee-)b=%@%q?!Gvk;CTj0gk+T{7O{-rmaH^Sn3vrU3y|a-0ul8P(d} z@tVw(SY=8OTD03#FVEZ*+HcSwjPtChyr$IsxyK!8ke138w;ge5B`5~C>bp+))Na{L zru87Tg3jG0ke9OHd43Y|=Musko);>(l_9mAmde-76I-`i`rdt;%xj!y8<{;VwbKk}Y&Gpxl`5_m8!AWS!I4 z8JyXk2y~b=2y>X%X~z?&Dx9g3C9s*|>AGhC7N^27;JNlCJKQ8Sb79y04IuEvTGc%86;&+GGkMH&gU=P? z>*rZNe)jigzum6R+8o=~w(a-T-5INfk*nP{}}oamc#! zr?zkVuW7c9+7`hmaeG?O!14|Yqy=)N z%LFcsfuW_Kd4!@OgzPEVP^~(S=V_j1v7zmfK<6ncx%EcwWHDTXKNMQs?O>~z`h#J< zZkM_u4+j80ij0Nd9{6mvC7D;tgoeI30hpE`oVp)w`{#Xeik;g6UBu+#Vbd(`h?uOe`f6t0!+rq^y)zeI4aArKiULWY?DVan5rZx6mN3reze5KqEap9~7e`KNdRV@2n<8A!t zWN7E4r>`oXGVo9ZDoTNcn)m3Kk^mz;kg_HWqBWUErSqvts7-;MV8h7 z0LC%?^j5fP%s1rX1N8+eVtnT=dW|ojukQMMaQXIAbdpu7*>KWlTj9$s)S*&iGV+`A zX=_1KYV!nPsjaQ2PdSZo87Kuixl-9AjQCtYJdGzsfwqA57fa2!npZ^gJ+e52A&b&3 zY%qb~+EGEz3^vFE_fpEk``U-9O+b18r5VZoV_4zbpTeHnP?onefAZh6-BKu&w;`E! zhk`)-Zp&d;R-IpnOm>IE3e$fXRf<8#g2U+}SSR|TfHv;TIft^gnslp^mcH~!GD z-D9OcicB;$caBxy%U0(exvdAqQIY3`eB6x#&xTfk#i;S>X)pD(Q5c%<<-Mn{_MqO);|CaTAIKEd_-S?LM3$~1BefYi2+`$!lmZtW(wmN?{Rnqhy0lyLBz z+EK&ODBBFom5wbsHMbFn%yAe}i+jCGbOTVY^bmzdlvajE5-psz@!|>4-*BRM0!MSy zee|b1JB=e6J+#w5v*F{G2$aB5Tya58jeD!-L7^4QWrBUY60Wv|Aw3=A8V!-`O(cO( z+a;NnT)x{aZi{`o(RUE-*486O7Wj-vv)XQNw%bTUPmt`}gRYa*1g*n}HV~LR>w9Nt zw~kb602)9nW6l8%E^#^LYFyJ721zH1N3ls#r5xZrfDE`(!*(f+FIYnoP@W;Bbe(d% zlFP)jnpE+77EOHZaMT*%`#3M4l>Y!anKHEV2iffUs=3)4I`6c1x!gB~65XkrS8yDD zM0C9*Hue7iac$eJwlGUgD7^aM+Z_ZWP!0f^l0|b?mKPR#ug=`HEyPy}LX9s6g>=x^!CS@gw3B9-(lNso;*$?g; z)RxgIBk4qluBn&Ott&`0P{ylkkWXUCS*SI}LWB@P$nq2vAfd?BMaxWA4voZW0l5_) z14aa3a;ozC4c2T|l@Y^l-1QAKHTIIhCoVj&tDw_iE-FM1<;m3KNBhG+;tzPFAE#JK zkFsy=6ws@;owGnm%>MxFyYZ(oN9JQG(s21!QnUX6v0DEC1eIgGzg@!#{{U|{y|r&o zL2CUhCnaf!G9f3?3NkVxgpW=(T3Xp1&41AqRMYoE)9*DI?nS}YY&&E)`{`wS`)ebn zmt1Tu#-Dmbbf}<(7Q}{9RGQI1Q00n^?m*jkLzFb#!Z5=SNf~y4y!h0s76UYh0{IW^ z;GW}F9>-gbY^{*&q$TI&Iqn`(k_Lz0lR86-Z6E-WR^b2&1dLAG2|I1EelBrS-b;!1 z)H}2nQikBr6VLz@i@G-LwEo203cZCyhT8~#H3SzWwyMNsH7Y{Oj;rv4Q%@{4)C{zf zXPvhy*tCP*N5VZOmAATKc)=DgRP=GLp8o)+sLcNW&r2K8!un!u!AS}U03^eb1qw+N z9z5~Lx;i$uspBo??{TfJ_~ZCXnsY(#74>W!g-0$~{{UV)-wbP=is&H!0A)Voo&tkM zUcu0>U{I{1`oW1NZ)~A45!YID?gkfD%7(O}6vNYAk_wPb2_9JIf0-d%8EOpxO=0#=zsD&MqIz)-zN>h@7h@yuoPwq1U1&3!Jq8 zpKD3Wn6IiXM7p;_9%OlG2E94VmR(&=W8K6ZGypgcZcmBlk3bma7_q_Kgd+a{SYiHc zbI|C{V2vv3Qw zy24qyG?>pQd&Ig=zPGX&KnIt#CY<@=Jhrzn+%`zwANOdF2!18_niKrWb~$2nMUHNt z68Lf9$o+NieJ(kq`&{Vb{{Az6F^r>HDM?fk^p=_fJ#RF~rW9q8JSL6p9LI=%nxqfj z0*gaPRym~lkGBs|H0Kg@NvR5pDTycwQWT~gLx3o8N{SRlq@E)ZVwx#hu{o~pD^0zQ zXT%6Sw4uSKpm16j$1I2-*O|`?DwN)5(?&vWks_dqRg?qFa~O8ni3>(01r(nd@1RYw zTCQnjxscj*F{Q@1Fb1Z>Q(`)o2^;XdIB-Was6F7(GFcc& zX~cpLalncN#?5P3>c43vRZt+} znR2Arz2HdFxLdggELN-wj8~IB`s<|*>9Sc@8GSH^W01|*wwBhDs3{AnD#-Bg#m%H~ z$u-D$R|{qkP+(E%+v(1rxx_~wY>r=LSGx^Q{{S@ZM%*R$9oV}z>f+=nYIVtTk#uSF zxg}biEP-!Elx7g3vNKV|HJFrc?qg86+S|VsT~5{toYTTE;fWd4`;88>YqA1q2MmI6 z=a0IbE^S2l2F{r=$K$^O2UZ(Qu&FKFBuLtGV=g;OZ0c*I!|PZoPpe0sEZ*|nzT3|T zSfnFK)Z+`9LaqP;P9udd&`k1((1LNr5C?<(6!EaFu3NSTZY{5^4!v$vNXl`dqSKB= zl`*cPdcqb`qMC|;X@<5|e7%K~5|OEh6lH^)Fj_0w43~4gqX#MVfl=9t3GN2WO$h4u zKXD}ak+Rw~;gte#*5Fz%Es+R2jKA^)I|}@?zx~e7`IO__9f7p>J*xE8=ErZ8;;)v- z(H>hXZP+f{Qx+__O)5K#FRJoX3XY&uQY(Yqb}h4Uf=KRRjm~r94Jq)KhJxUUiT0%x zmf>}6BOMdm0BeaH(MTB9b=kkA?V%P8%XQkGkmlmrz03`@E^CTJWZA42t8=eMjS+#Q zN|zbcHLcR%q2xtz&uu>~w!32`{hOR`ZLdN(#|;t4(pmuGLWL{q#>w>2;8czU{iZZQJo4H@H(=yWM9`hY#hAszYgc zah$0NZ3>{s;~ltK_18&m(jC4@9?5PTTNplLNqd~&G=%{{+bZYsG^sAzUTbc(xDhf`Qv9YKF1Gp* zq_(sK6XFU+*4M8ucH04Q)pq_|?Yl5P%gv-lB-C1@6$A_j`YS&-PC<1!X3r+5{E;Bl z#A?!j;BZbNv_{D9w`#kA(PwUN8(Wi}Dob{`&Wm-)Yflun7GFtk(4YG~VB=%8bze^J z05;0%BPm}2I$V2$k$nqPmwP_vW#YJn;e+h}qt-I?)x4Do1ym3~sT>IL1XNQRFw`n4 zvyFLeAxI%eN|NnDf|3*#6X~LX6f_<!>KnNXTPEHKQi|8e?^6p$zPHhIj@@qESJyaqwWHd!il3@Y>B{L~ zi0_ZF+X-z4&0gN-p-=XS#83YKi#z6CZL~+e96gWs)5HGHu>DD1KlPvbG{d_43BT=I zZtc6bChCoGmuZYAE+S@Jt}<5JZX~*;OO%FCg|yvOmau6|Lft=L>E337~Jn*Ocx!k9|$~ zf#+J#pN3gvaePySL80YNHQ~yccpSJ9_TU_a3ihE)_)>%Sir^5GC?t+tJP-Ex;HXe= z0mg-M>Gb7*4+<5^eZDwJ1u&sr`hRDZ6gkpPI9EJBZ9xafREz@dSx`(8z4vn@=6 zTmXxO4*KWc<&g2glSH-3{AuM=;r5&(x{r-|nGXTOpAR28;A7~bA#tvOG8o)`=}?Fr2(ikr|tM>g@vKrL9fD@52}FWP9W0oUL!DWvcI`7rTAzlN| z&X_7H<$Ok8O5o^muVtUz@cPCJwuO7g>cJWn%KbTg_&j|yJ1f6Wrwkg9QiXdie?jAd zDoQmdS9~}Rrd-Lw=&Q8)Q}$B?hdLG3{{YNS(}s8>^iVas_WHHi?TgBawb~R2r9D=d zCoG4KH#>P-7{779!Yeg+KKoF4|>lb3yMFD{gXLFrU*3`A>X88@WqKKEH78pfjR_ssw5(^$|{4 zV}Uiz#4m|Yy(^_O9X_h9Zw)Lw{;dM4Sw^A_DxyFMABKQ<<%+B2*5ad$O@yckR`2Px z!}G1ik~pFX84;$AQiRrk8vJlwHI2;peyv8{fDy;(udfh@Ue0Wv{t_Nlr9Rwx2Wvlb z5@r&)y#D~rcctpj(N}uO(jcWZ_aG7r>tp5N|itCQFyhH~>X}C=e!I;z(>FQghqVO0qKHq!jQ7mva zK&AeCak;96j|HGe&=0~@J1U0naoX7FEw|LvMng%*m_v&)y`XKO5BSP*GkgIR=Tw-(4GX-9?$Ady4gA+$L25Oj%(ltnQsG{W!6)~ z$lTyV24!+?HGs3)u6KKnA_lp!6XAQo(g$mR&$^>KCvaSMlsP-TCB9{*d#O~L4T-JV zZVX)`DWavdcxBbjwLnvgBS>uxxQ-fu#z&*N+V`vPr@DsH`U{o<=v(G25;sbbFOBUE zB?EMZk%(Hd-1exp*xLi;ibfn9?I`AzPYwW(IH@$nY*%({yUzD{-B6~pwl^~{$cMGn z{LHPkL5PEw+1$ z)1ugeJ}S&X9>go(Pz$eeJ3GCt<|W?aYLje`r2BanxNh5-b@ZquNQF9UQPkX~QfpS! zm8Xa}%indE<#$@!n?24;No`&5zHt}}&NsbL!T=0FRVaba4%%$n?$K-K{$Jc$UTu1U zHs$Y>fH+3zzyrC&@W!IgJTuB0y0!6KCMBRZ9?*V@m0NDt2?|3uOAW%-@_-t{k>^Az zBBXWUyz-l;iqetijn>J$Zns2R?)Edmat1FA`=i`-6WpLxUB$c&@xdz`-dP_~Q}U1q z1J8{rPuYz~a(7fU#+&X|=yy0XEw>2hmjZleq0Efn1-GL<*=^J)D!G)aBSS-I1q3uIN^qLqp&%nJIPoRbzU}!T`G@n3^B=HGp@$TFB%olY-tH?wp3Cc9Xe)8sG>=xHBehV zCz)PV?l^z~4&sUc@2a^T9^D{dJ${;UBbFo)hix%f!qMAvcJD`WFNoWXU6*XQwQ+4q zEhX3~EQN_t7<)*NNjyMRuD@e_ z<@DvOE|W-ebocfX!nL)A;@#fMZn(CkEi&RX@LJQQWRw7PCWA_+l$uRzHTKke!6_BdlrTYW80uM0^S7- z$ZamA))cO(bfE~^UbM9wS$(eSCHvJ{zYL6sopE};uZkD%g zp+(S=;YkUhG{oK4@~flv&ANT!{u{f85M3yAidYZE_M=8D#n_TL(-xgWxyw6kE#DMj zQKU3@h{zRO^2)w>cb8+@J9Bl2*3_Rh8)@~%y={q?7)ngrR)Ph;zPg|%PHxI|rW)|tT4 z@D2^^b|@X#ia6H3+BTi??#i%t?)krM-L!!Tl}?=1uE48+y+G8M@*dpLlKe3$MCp;n zl+>XJKZz!o?VAqEzFF)x{{WabyMuPY1D+yK&;6>-F-KmY;H3Vu`3VaQ<;?=DHYBFppWmmuS;+BH20JpGzW0HPCf zp`=mPk`kpPYZT05r}W;>0AkQ-071h9asipnFLXF}_KD zlF^H^!Q9aBK8mFGp6`or+MARr0$%%0@ECyd0@V@@cIAh?nnpNSWRT5Yy+#dQ_9Vo4jrl%CvjfGvz{Bk`}k(G#cqgbn7j)YDfgooX$DE-Fdi6X3dT_6J+tWUZFZ+*K?2u43@EE@Hz>`4ahnBFO0`Rp;wV=UZjLFa z1w$R}PYlGq)4G*bBhfc-u8Nq|?Wx44Qc#km)A0nHNx%Hg+9I@Un|mKMj4$Ov$=1fntc` z&2`H#oNTt^z$h#9??n}Ww|-CJJz^a)J0YLx0``?;<;8bs-hEw(OBQMI`p2zlL3ls2jWngVN# zzfW&_M&GSK`#LiVu0n_hFI34b9l$P z-tP}fv+ga+aY|dTz_h?^gl&m(A-K8Hi@J+Wxe=8<-4yGKsS5nMsUbQ(roEe~uAFw} z+|P6TrijnnlEbOWTBlA}l6d%W37@sL7MAU6og8iWiFd{Uz}X7hCq40 zC7YU|GQ^kc?5*T9%%yI$)P5H>u=ST_^5TuP<#|7rN)uX%Rr*`g5!y3x-=)7I+qQ$mtZrW3H zi!mu_N}Ub0NNmTp%b2y6x}|7bV&Y9lrx&)(Gkoo|Q^f15hBcP>YlYwgtSg2Dlc!K1 zu$=O$*qQS2MJ$8v<94T&(&5PAi32p_QQe@admiW9J+*C}Cev`4Z8sZjzTBlme%*Jp zNM_qAEYow2t7_xOMb%43Og=+t$dv(#C`q%m+-xmmV=hBOnAq@ZUdINw9YD1Rc_9}p z)KtlUykr*>GgM*7;^3;+1q2~g8hEBPCY^A9a@aQ0GB4Ix`;PSu*rFV$GM3ZwZ5Mgb zy~4*)mL)Fe!zo`#vfGI1YDi6W32^PK>V3Mx&dTQ3=jMg}WO4%U6mmHnLqP{n3XW)S zKtg9wu&|z2hDq|wa6$+eIin8EB%-PnN--CycDFYcz_(m&@8AAL`?IgoEG^pY%%O!L z*rAAud^w>7XbJ<|A$h1IDJ58(-l4zgV|CN^jC$Ob84nz*0wILxECpEZ3=XT zrXrP06p0FOpbGh2PPFUw(xDu`KYC1 ztua7Cg+u|RN@b3a0pcq{ZI~Mmw;NL7IM0`HepHF}xic;hBfBQngfbav^JZLhTrW&F zDM)DzwzW3lQBqM{Y-8HGYp1$=ZksjT$IM6^*E>@~nZO4ztqy)D14D=^pe<5N{l{{> z5WS2HY7mN!;!(l_eik*wj&T7rB6vd7 zJ3F&GzG_qv2LObevP?eYSTAp{YFwsW*7ePm&qSCJlH*Osvrf6e zf$BjiuSsP801lO8YA&s}J*Rt&Z%ntBRk<=ali_g4HIg}v7=Fp@Ay~zk$h$(SIp|pje zzy@O&$t>W!-+o@=+BocWA1pEBQkwV^z@q0G3MImcA-`d>r zAGu5U<1=h`c16ZyS7kEwl}*Zc9=Ap532q~nsWJ&mK$4J>K_IIfFL1c(O~U2o@^{H- z{{Rz%+~+X~;i<<+VJE}G9%i)Gu7W2ujEptyC<+klJG0aVbu8PL<-kL3?c|}GYMf?F zt8yP@+0IQv=#e?=EB5CX0k>2mG1QJ+Z3PPmRRN|a*$ALNH*WCQ3%(6ObuOnC5#a*{ zt5gKQ)0Ys56itiJp-d4FY6l)A3LL6wF8=_xcXr#Az4t6jgL0xoOeXCgD-mTiIxLm@ zdFEuc)e-c$9kjOkQ0fv3042h%5-#^Gw{*Ap%h&$^d}slTXhWzH8eHS?0x)=K9|%V+ zS2Eh}(s5~So>6wKN}&kEAjESRamgyX+n2}#cHQ?<(Gmj}w_TAPY}&2zBD+20y%t+; zPby_FnUZC{rCP{&#H22|K@Dtsj?(SU;`4fph@@#l9C4AYbh%vf;RjQY@hG`e%gC-> zX3KbqE@CRVz@}pXnFu?$RN~jZg@XWCf>`5 z%ri7NIfGZiLXm+4;uNkt>fyF`7G#T7-o4ypPQ4+NxVY1ru+FQ_#&{+|9A*)htOpyQ zS5m6*2P}HeqB_%j-1=_cb-82iA$t@^*kmf75GdzjFjA(n7rRxoS294t))mOTzKp>4 zR3`P_iyqyPZM>qm-4ze0gd*Npeos}**}1Aa$_Q{#K}k&qGIGY2Z_F6%L~_Y% zaQI&BE2Bax@Oy#w3Mlp&E<>UcF|TV^HOu!wsPAeZ%$IrZ2$L|uO1rtX3+&t03YPQh zZN#_p0s_o*wB-mw8(BZcPB<-@vt4dmnRAN+w^)=nGD%d`$v6NC@k+VBF~@Ca0Mvd_ z_@2cXck}gC&o0>+GVTyn6}F-#b-@JxFEJ{{S!{1xofIuQI}x!XO8awPp3b(?zt=lBUaRLn;6k znsR`tIf9@KD~hd?rtG#m$zZdn%^i*0iR*PnO?VE!*0N-6+EGwmCuxZE^?>Xn5o6MBfhszxg zrx)KHBichz>j|8U>&w(yjz)sjn^rFbU5C z1A!P(r>?U90DW!HZX1`gab?6}TNC%fqs(GMO}fme)J?jVNgNH!rCBs>-NG?zd`o_imoKINj#+dVzc!p5M42#wv$!v|SSjH66=J zAT6Z^*G217zNFT?vA*59uc^9j%Ei-xHPpv3=+ z@IuEoL21l5E;^U!uULOtFceVU=Gl{CoP&~W6PuC`i4kTu6sIA>s;nx<^LEsb-Nw>Z z9wm+hdYqo~LgS)k168c;aO6UJLi?)iuzseyMSakNxecB5)ADa|B*O_O`_h6OgqnZr zF|V@x#OZ6){`4YuDF&ZzE%wzV$4qY!f2uEUHskEi*;f^_a#%M6cOJ4{?H6W?P9CMY zd|8O0Lb#S4T|OAoTi@B=Mqg<(aVqYViRgL#H~V&$g}`Eg<-aizCkp5Zt6{&g!$_xSV@w(_JWGF`J=BTH!r=1X(_RW)lL-EEbV%D7jVcEk6Omkw-j zckyUr2YfOi{h&v?Q1zN{XK-2&q@rW)+T2otTWawZO{K?4%koojW;u8R%{3Tx zx7LmD$l}MGgTZ0{05}EoQVqPscm}LK$p_rEF^Hr%0-IV~NdSU{1qx8pG?Fo684enO z1XNdH-%hQytCt=e&2Z~MIZ{ezQ5!RTJI?TLnA~yIN>e3mZMJ^A@n36&)zHO!;r{?C zDw8fTM1S3%<9$uzwsP{J&YnNfi#WzL6w}Oh2{kFoxm0D#I(#uDt>;aX!kv?Agz|%{ ziqLqE^V?5KKpqK@)`!x53K(CL5jx98zGDOH82f1&-U0)Mv(=S)UfGFpi7FfGTal(k zek09DOLD&|OG;(HBs!mct3r(kdn1K94>mVM=R3-COGr52LTB-Rok5b8I60td1RhyT+I~fn zHqeE1Q7~%A2*CkUGC{`?jYyXB<{sBhFb{i*b8%l{S5*t=a+P$9#FnEzwYGx$N@+yJ zad6hEoW)&XT5Cd6Lrn24juWh`1Td0{6D&RB>7;7%hnC_s06n<kW)l`8c} z{{XFr_UOmqumO+*>837<+{$^AQ2zU}xBF##Lqw&({k=#jG*BW%GNyIU75!Mk{fd>kA>W->tsQ8N`%q$iuj?p zBdv?1wIR0_*SRQCl9enpqLi#9)oJvFYBVRq9#_3)iO3mh^;cPdhr&6fZ9d4c{{a0@ zXaIke7CQM*S7xJ8r9278Vd;2-diE~HkNECi`!uiDkM9TX%s7iB{5{XT=l9P z^4w-pk;qC}ICevG7+npJe#t_As^kOvMu>SwiD~T$J!2E<6vHC%36D(GJ#1Ma0T&qV z!%MClv`2aLC7DW3{)tN-c#iwHTGWwaKeh{3xSS85nplbF;YSX_sot26O(S(7ZWSb@ zbvcxfc}ZIhrCaT{1qWqBVaW+dN+l&FiOnP*!qmn~a@im3tvF1O!7uH#LM4PH6$MU4 zeK95%GW-o8?}@_g=bfv`e+VOQn=aN+eRI zB$Tc!#3#kbk`mO0$A+PvB}a7(he&sik-@{f6eHD4z9||t5#i=B9k7d z1CjH@mY-EHSJOtWooH$Bl4u7S`)MC_Ft<0vz;e~}8X!;=<@AbL<+=>6nSLuy7N2fQ zWT7NCA)~3M#zY5@p^~_aJm_PW7qk>AJH|)8k{;%+l7SP^%7yZU>bbZk$dKjHETv*% z!qFKqzTV`~a3pOVy=IJ#v2oQ{~OQ8g6th{ir0&DYNV z01xCs%mF21FDC%F9YHav4s&F-YyFwKAQgMrJH zN-TE7HDI$ay)GMU`-5FU=~v}lCPoTD2C39dPLo<;t0-IK!W;v%y#D|jhqjY6hs=5%qY^T9i+40V5yYT8U0b0|sctD`wzVh1khdLQ zISW@)TYUBfPYCjLDB`N2O5mcTz!)v0;Nt^M98R>yhiVQrJij!-jdAy{3u_D9cG(D$ z;(Dy8LwX{aL#sll-?~`Pl1@h!ZgZN~I(!+fGN2QKbf8`Y<&PSO%-SOwou$K;Ywo6f zive-=ru0;Vg52%zeYm!o(5f`Mj4;-)pbA%3PF@r|@e0>VZSLN2YwjN8{pSoj4jEI^ zmAHfq+Y?8q8cBMH=kr?*s8D~+jkdGLHl#q3!(6|~GNoFV3VqE%m!oy$CLp1zsz4Zrx@>!X z?Ac+vg^p{aVN}Et-6h$DI(g=l?UvzjWufss!5HA2z$zP&!D~Bq{{Zx(ws!K-yCA(O z{nNI4lBBxq%EgL{J+fPjDim9LN>T&T*_42_Jhx2+Q>Pd^56gYB%5k_`ImYtd^c6Ta zKsdBCV5AX=C$h8`9Zz*|&z6({ZzLIJbrG2-l3+UM|Zh3{v*5hpSmhx@rgo!9F5~fNLYG^aYb@O${PF@>p4Rgr(ouW4%F{En65kqu> z7Z#w-tbDzLbc@cNBV$-KICx5@p;bF-=8yWYw{3mDvLyFb$o-Pxxmesq*DS2NG87p* ze){c_LoOj}Q-`d!ONmlcq-n?#jck9IR{MROti3}MqMqThsbDT^OmY?x&k__BPE|_o znwsWmS++brILm%42@YnrCM}Y(O zd~pJ-bz_Zsl;y&lcvI@Y%7W3L52k-_h8ztXXtSc;VW*p0Pa!Tg;uMD)T0)StEhQ^L z(4bPZttudck-<7P5L)o9BN4;3Xv3V+2qT*v-{LOYZnrk#9FpQ?QMctSq^Pa9@!Bdnh@n*z#Ef(Pzv>GOw_=*r(lytU zw?h~RF2td63ZMbUnpTgdw(EQ7=0CC z8gTOmnegY3IMG#gb1r{p(=0fHIx6Sy^Wlc^G<<8{90Z|Uz-SEw_uKc^oIDZJ>3!y5H686FvcbIP=*4rdDPpqX;6a<7(u zOuR6SJZK)u@UMkDNA*{p3?39&60F;m_{C?BPdVr`5m`Y0rf) z1rf@e_`h7Xz#R~7= zfq=$^ch85GLp;By2kxS;aR$F1>cXg3TNPSIiOcCsB;!Ext=qQ0_6?WAl_V3^Sjgr`%D)_W z@sS4?gMv8w>!k;Jh#uipb=2r_?x8DCsTz$`YAc_{xT?Ep4kVuyO^D%!Rc!v7`e@uc zg(_0&sF9QcQlcmx%qc@4DtY0~oJQWyj%{zgqVG7x8N)MQUM%!p%x;HJFqA>39D&Fj z#WCM@uki69<@8rMxF3AsP?Jp~j{*0NCmj$E7Bx|dQ7YhmpV@^B`za=qI%uCWhZ+>n zG~D3(KHsMtKHhX2ohKs;;hqaXg0V%CCx18CI%)kiW;~tL zIJy^HJQ#@7PMuDZQE>$T2p0l))i2S`gHxly%2dusq~Mvf`?ypF$Ru0zgpUV{{JZ`F888+m4L6wr1^j zsm3EKd{|>+!skHwnv+E2d8j=hhz}cq{Ugy#_5(tJn=iE{{S)HE4K)GwtFZoZ02Jk zxg^CDq=T$A(!0hQwUW0#_`abRn4bO#^4=1mgK}-as~GC`D&aATC}n02uz|K!saP1+|ok>{7KCm z7uAJJ+wPX;-W{`vySrs-`R%}6+k

    {TLbFylHCIoS5sUu{oHDak1dBRcTMRj~ZU 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

    xm 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

    }BR;Q#ZFTtumxL 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

    +
    + Introduction +
    +
    sections in this doc
    +
    + +
    + +
    + +{% if overview %} +{{ overview | liquify | markdownify }} +{% else %} +{% include templates/_errorthrower.md missing_block='overview' purpose='provides an introduction of this level.' %} +{% endif %} + +{% if body %} +{{ body | liquify | markdownify | replace: '', '

    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 literal 0 HcmV?d00001 diff --git a/images/case_studies/haufegroup_logo_feature.png b/images/case_studies/haufegroup_logo_feature.png new file mode 100644 index 0000000000000000000000000000000000000000..08b09ec9db8b7792d07a9a4d385cbd546d2446ed GIT binary patch literal 5841 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 literal 0 HcmV?d00001 diff --git a/images/haufegroup_logo.png b/images/haufegroup_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..6cbcd32d709515ebc7823df43ab9518e5e603733 GIT binary patch literal 4649 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 Date: Mon, 29 Jan 2018 22:22:04 -0200 Subject: [PATCH 010/329] Fix typo (#7127) --- docs/concepts/configuration/pod-priority-preemption.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/configuration/pod-priority-preemption.md b/docs/concepts/configuration/pod-priority-preemption.md index ff052de7db..c373e802a9 100644 --- a/docs/concepts/configuration/pod-priority-preemption.md +++ b/docs/concepts/configuration/pod-priority-preemption.md @@ -207,7 +207,7 @@ Node is preempted. Here's an example: * Pod P is being considered for Node N. * Pod Q is running on another Node in the same zone as Node N. -* Pod P has anit-affinity with Pod Q. +* Pod P has anti-affinity with Pod Q. * There are no other cases of anti-affinity between Pod P and other Pods in the zone. * In order to schedule Pod P on Node N, Pod Q should be preempted, but scheduler does not perform cross-node preemption. So, Pod P will be deemed unschedulable From 1ce35683244f0e182ac82889078a0dcde4816c76 Mon Sep 17 00:00:00 2001 From: jianglingxia Date: Tue, 30 Jan 2018 09:14:08 +0800 Subject: [PATCH 011/329] fix typo of device-plugins.md (#7106) --- docs/concepts/cluster-administration/device-plugins.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/concepts/cluster-administration/device-plugins.md b/docs/concepts/cluster-administration/device-plugins.md index 5ed94dcd2c..bc3613c07f 100644 --- a/docs/concepts/cluster-administration/device-plugins.md +++ b/docs/concepts/cluster-administration/device-plugins.md @@ -61,8 +61,7 @@ metadata: name: demo-pod spec: containers: - - - name: demo-container-1 + - name: demo-container-1 image: gcr.io/google_containers/pause:2.0 resources: limits: From 4a20457e6ecb7694989dad446417967d143745d0 Mon Sep 17 00:00:00 2001 From: Weibin Lin Date: Tue, 30 Jan 2018 21:55:10 +0800 Subject: [PATCH 012/329] fix broken links (#7136) --- docs/reference/generated/federation/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/generated/federation/index.md b/docs/reference/generated/federation/index.md index 30dbfe3070..18a2bd4142 100644 --- a/docs/reference/generated/federation/index.md +++ b/docs/reference/generated/federation/index.md @@ -5,9 +5,9 @@ title: Federation API Reference Federation API server supports the following group versions: -* federation/v1beta1: [operations](/docs/federation/api-reference/federation/v1beta1/operations.html), [model definitions](/docs/federation/api-reference/federation/v1beta1/definitions.html) -* v1: [operations](/docs/federation/api-reference/v1/operations.html), [model definitions](/docs/federation/api-reference/v1/definitions.html) -* extensions/v1beta1: [operations](/docs/federation/api-reference/extensions/v1beta1/operations.html), [model definitions](/docs/federation/api-reference/extensions/v1beta1/definitions.html) +* federation/v1beta1: [operations](/docs/reference/generated/federation/federation/v1beta1/operations.html), [model definitions](/docs/reference/generated/federation/federation/v1beta1/definitions.html) +* v1: [operations](/docs/reference/generated/federation/v1/operations.html), [model definitions](/docs/reference/generated/federation/v1/definitions.html) +* extensions/v1beta1: [operations](/docs/reference/generated/federation/extensions/v1beta1/operations.html), [model definitions](/docs/reference/generated/federation/extensions/v1beta1/definitions.html) From 731b87f3e253d51874cbe43f83af263a45f1062b Mon Sep 17 00:00:00 2001 From: Anubha Kushwaha Date: Tue, 30 Jan 2018 23:36:12 +0530 Subject: [PATCH 013/329] Updated configure-service-account (#7147) Error from server resolved by escaping kubectl patch serviceaccount default -p '{"imagePullSecrets": [{"name": "myregistrykey"}]}' JSON string by '\' --- docs/tasks/configure-pod-container/configure-service-account.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/configure-pod-container/configure-service-account.md b/docs/tasks/configure-pod-container/configure-service-account.md index f15f9467ac..707c893b0d 100644 --- a/docs/tasks/configure-pod-container/configure-service-account.md +++ b/docs/tasks/configure-pod-container/configure-service-account.md @@ -178,7 +178,7 @@ myregistrykey   kubernetes.io/.dockerconfigjson   1       1d Next, modify the default service account for the namespace to use this secret as an imagePullSecret. ```shell -kubectl patch serviceaccount default -p '{"imagePullSecrets": [{"name": "myregistrykey"}]}' +kubectl patch serviceaccount default -p '{\"imagePullSecrets\": [{\"name\": \"acrkey\"}]}' ``` Interactive version requiring manual edit: From 1e5bb1f8dedb4787303aa40790ca33b2746d14ed Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Tue, 30 Jan 2018 12:23:05 -0800 Subject: [PATCH 014/329] Create User Journeys MVP (#4630) * Create User Journeys Squashed commits: [9a360e8] add page link functionality (+1 squashed commit) Squashed commits: [1cbefa4] Rework App Dev "I want to..." (+1 squashed commit) Squashed commits: [0013eb1] Create User Journeys * structure 2nd page * prepare docs/home for user journey portal * Create sample.html * Update sample.html * Update index.md * Create index.html * Update index.html * Update index.html * Update index.html * Delete index.html * add custom js mechanism * bug fix * put in docsContent div * add docsportal layout * move title from layout into page * move user-journeys/ into /docs/ * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update index.md * Update style_user_journeys.css * add initial draft for app dev user journey * add links, rough outline * fix a few things before demo/discussion * rework intro section * Update index.md * Update style_user_journeys.css * Update index.md * Update index.md * Update style_user_journeys.css * Update index.md * Update index.md * Update style_user_journeys.css * Update index.md * Update index.md * Update style_user_journeys.css * Update style_user_journeys.css * Update index.md * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update index.md * Update index.md * Update index.md * Update style_user_journeys.css * Update index.md * Update index.md * Update index.md * Update style_user_journeys.css * Update style_user_journeys.css * Update index.md * Update index.md * Update index.md * Update user-journeys.js * Update index.md * Update docsportal.html * Update style_user_journeys.css * Update docsportal.html * add and reorganize content for review * edit mostly minikube install * Updates squashed (+51 squashed commits) Squashed commits: [2e18ea8] Update application_developer-foundational.html [78fd490] autogenerate home index from toc [42e89f6] Update application_developer-foundational.html [a77d7d6] Update application_developer-foundational.html [0a489be] Update application_developer-foundational.html [5b4702f] Update style_user_journeys.css [90035a6] Update application_developer-foundational.html [db4fb19] Update application_developer-foundational.html [4188ebc] Update style_user_journeys.css [aec303b] Update application_developer-foundational.html [679d7f6] Update style_user_journeys.css [e8019bf] Update application_developer-foundational.html [2d91bf6] Update style_user_journeys.css [56a49a9] Update application_developer-foundational.html [79cfb6e] Update application_developer-foundational.html [f3ec0c5] Update application_developer-foundational.html [756a42e] Update style_user_journeys.css [208cde1] Update index.md [66241e4] Update index.md [ea8df7f] Update style_user_journeys.css [0778054] Update style.css [dcd0863] Update user-journeys.js [4a99502] Update user-journeys.js [ddf3820] Update user-journeys.js [9650dfd] Update user-journeys.js [6773597] Update user-journeys.js [0e7849e] Update user-journeys.js [8c99ba7] Update style_user_journeys.css [68d5a8a] Update user-journeys.js [45c85fe] Update user-journeys.js [7bd4a5d] Update index.md [c53c6cd] Update index.md [281e4d3] Update style.css [8e5efae] Update application_developer-foundational.html [787f78e] add newline to custom js list [eea0d10] Update style_user_journeys.css [295b4d3] Update docsportal.html [49f7130] Update index.md [0125bc6] Update style_user_journeys.css [a803584] Update style_user_journeys.css [5b97319] Update index.md [0aa34b2] update kubernetes.github.io links [62c9981] hide "Edit this Page" button for portal [1fd0226] Update style_user_journeys.css [bd35646] Update style_user_journeys.css [d7a8b81] Update style_user_journeys.css [0c1e459] Update user-journeys.js [9eb237d] Update style_user_journeys.css [99685cd] Update index.md [516079a] Update index.md [1386033] Update style_user_journeys.css * add, edit app dev content, links * move user persona data to yaml * add links * edit, reorganize for navigation * Update style_user_journeys.css * Update application_developer-foundational.html * Update application_developer-foundational.html * add configmaps * move links * edits before merge * union with #5913 * revert and overwrite for clean #5913 merge * merge in #5913 changes * fix Travis error * Refactor JS for User Journeys portal (#6473) * comment code * add arbitrary number of info links * copy file to correct directory, clean up HTML * add back in current stylesheet refs * Set default message when no persona selected (#6495) * comment code * add arbitrary number of info links * Set default message when no persona selected * copy file to correct directory, clean up HTML (#6502) * copy file to correct directory, clean up HTML * add back in current stylesheet refs * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update application_developer-foundational.html * Update application_developer-foundational.html * Update application_developer-foundational.html * Update application_developer-foundational.html * Update application_developer-foundational.html * Update style_user_journeys.css * Update style_user_journeys.css * Update application_developer-foundational.html * [User Journeys] Add content template (#6523) * remove deprecated directories * add user journey content template * Convert app dev - foundational to md * support general, non-hard-coded formatting for user journey content pages * Update application_developer-foundational.html * Update application_developer-foundational.html * Update application_developer-foundational.html * Update application_developer-foundational.html * Update application_developer-foundational.html * Chenopis uj sprint 20171222 (#6748) * move section banners out of docsection1 divs * revert * liquid hack * modify js hack * add intermediate and advanced app developer with scroll * clean up app dev foundational content * fix formatting * remove html pages * add new pages to toc * Add Docs Contributor persona links * rebalance docs contributor links * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update foundational.md * Update foundational.md * Update style_user_journeys.css * resetting cluster ops content into updated format (#6783) * resetting cluster ops content into updated format * stage interstitial pages from app_developer user journey * adding cluster ops user journey interstitial pages to ToC _data * cluster op overview and initial segment * move working text into a comment * initial foundational content for cluster ops * restructuring * roughing out intermediate resource content * add notes/detail from user-journey google doc reference details on what to cover in foundation/intermediate/adv sections * imperative language in "I want to..." content * update entry page yaml strings * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Remove personas and buttons not in MVP * Update home.js * normalize strings for 'I want to' entries * Reorder Contributor buttons * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update app-developer.yaml * Sort buttons by index value (#6925) * Sort buttons by index * fix bug * Update app-developer.yaml * Update app-developer.yaml * Update app-developer.yaml * Update intermediate.md * Update advanced.md * Add community-contributor links * change foundational/intermediate/advance topics icons * update app-developer icons * add code-contributor links * remove ecosystem-contributor, renumber contributor indexes * update links, add KEP link * reorder contributor personas * change icon for release process * stub out cluster operator intermediate UJ * Set up URL state for user journey combinations of path, persona, level * add path for about kubernetes, fix formatting and javascript appropriately * add definition for personas and fix ui spacing * interim edits to intermediate cluster op user journey * Update links in Browse Docs portion of home page. * more intermediate cluster ops content * adding in logging and monitoring content, as well as additional resource listings * button - keep words together * Move about blurb to top of docs/home page (#7000) * Move about blurb to top of docs/home page * fix conflict * retire binary_release.md * fix blurb formatting (+1 squashed commit) Squashed commits: [e2e5032] Add links to blurb * fix docsportal (+1 squashed commit) Squashed commits: [f687e71] add noedit flag * Fix home ToC * tweak blurb styling * reorg docs-home links * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Update style_user_journeys.css * Add some links for Cluster Ops - Advanced Topics (#7130) * Add some links for Cluster Ops - Advanced Topics * add back pick right solution * app developer content * minor edits * Choose icons for cluster operator links * swap logos --- _config.yml | 1 + _data/concepts.yml | 12 +- _data/docs-home.yml | 12 +- _data/glossary/annotation.yaml | 2 +- _data/glossary/application-developer.yaml | 1 + _data/glossary/cluster-operator.yaml | 1 + _data/glossary/code-contributor.yaml | 1 + _data/glossary/daemonset.yaml | 2 +- _data/glossary/namespace.yaml | 2 +- _data/glossary/persistent-volume.yaml | 2 +- _data/glossary/service-account.yaml | 2 +- _data/reference.yml | 16 +- _data/setup.yml | 35 +- _data/tasks.yml | 25 +- _data/tutorials.yml | 18 +- .../contributors/code-contributor.yaml | 19 + .../contributors/community-contributor.yaml | 19 + .../contributors/docs-contributor.yaml | 40 + .../migrators/docker-compose-swarm.yaml | 24 + _data/user-personas/migrators/heroku.yaml | 24 + _data/user-personas/migrators/mesos.yaml | 24 + .../migrators/vmware-openstack.yaml | 24 + _data/user-personas/users/app-developer.yaml | 40 + .../user-personas/users/cluster-operator.yaml | 43 + _includes/head.html | 17 +- _includes/templates/user-journey-content.md | 26 + _includes/tocsearch.html | 7 +- _layouts/docsportal.html | 66 ++ _layouts/docwithnav.html | 8 +- _plugins/glossary_tags.rb | 3 +- _redirects | 1 + .../tutorials/kubernetes-basics/index.html | 2 +- css/style_user_journeys.css | 891 ++++++++++++++++++ .../{index.md => building.md} | 0 docs/home/contribute/includes.md | 2 +- docs/home/index.md | 161 +++- docs/reference/design-docs/overview.md | 28 + docs/setup/hosted-solutions/overview.md | 20 + docs/tutorials/kubernetes-basics/index.html | 2 +- docs/tutorials/online-training/overview.md | 21 + .../users/application-developer/advanced.md | 117 +++ .../application-developer/foundational.md | 232 +++++ .../application-developer/intermediate.md | 157 +++ .../users/cluster-operator/advanced.md | 84 ++ .../users/cluster-operator/foundational.md | 95 ++ .../users/cluster-operator/intermediate.md | 108 +++ images/journeys/placeholder.png | Bin 0 -> 2011 bytes js/user-journeys/home.js | 312 ++++++ js/user-journeys/toc.js | 30 + 49 files changed, 2706 insertions(+), 73 deletions(-) create mode 100644 _data/user-personas/contributors/code-contributor.yaml create mode 100644 _data/user-personas/contributors/community-contributor.yaml create mode 100644 _data/user-personas/contributors/docs-contributor.yaml create mode 100644 _data/user-personas/migrators/docker-compose-swarm.yaml create mode 100644 _data/user-personas/migrators/heroku.yaml create mode 100644 _data/user-personas/migrators/mesos.yaml create mode 100644 _data/user-personas/migrators/vmware-openstack.yaml create mode 100644 _data/user-personas/users/app-developer.yaml create mode 100644 _data/user-personas/users/cluster-operator.yaml create mode 100644 _includes/templates/user-journey-content.md create mode 100644 _layouts/docsportal.html create mode 100644 css/style_user_journeys.css rename docs/admin/high-availability/{index.md => building.md} (100%) create mode 100644 docs/reference/design-docs/overview.md create mode 100644 docs/setup/hosted-solutions/overview.md create mode 100644 docs/tutorials/online-training/overview.md create mode 100644 docs/user-journeys/users/application-developer/advanced.md create mode 100644 docs/user-journeys/users/application-developer/foundational.md create mode 100644 docs/user-journeys/users/application-developer/intermediate.md create mode 100644 docs/user-journeys/users/cluster-operator/advanced.md create mode 100644 docs/user-journeys/users/cluster-operator/foundational.md create mode 100644 docs/user-journeys/users/cluster-operator/intermediate.md create mode 100644 images/journeys/placeholder.png create mode 100644 js/user-journeys/home.js create mode 100644 js/user-journeys/toc.js diff --git a/_config.yml b/_config.yml index 87698f6193..cd8413a4dc 100644 --- a/_config.yml +++ b/_config.yml @@ -13,6 +13,7 @@ incremental: true safe: false lsi: false +latest: "v1.9" defaults: - scope: diff --git a/_data/concepts.yml b/_data/concepts.yml index 5b7e106621..f165490883 100644 --- a/_data/concepts.yml +++ b/_data/concepts.yml @@ -1,9 +1,11 @@ bigheader: "Concepts" abstract: "Detailed explanations of Kubernetes system concepts and abstractions." +landing_page: /docs/concepts/index/ toc: - docs/concepts/index.md - title: Overview + landing_page: /docs/concepts/overview/what-is-kubernetes/ section: - docs/concepts/overview/what-is-kubernetes.md - docs/concepts/overview/components.md @@ -23,12 +25,14 @@ toc: - docs/concepts/overview/object-management-kubectl/declarative-config.md - title: Kubernetes Architecture + landing_page: /docs/concepts/architecture/nodes/ section: - docs/concepts/architecture/nodes.md - docs/concepts/architecture/master-node-communication.md - docs/concepts/architecture/cloud-controller.md - title: Extending Kubernetes + landing_page: /docs/concepts/api-extension/custom-resources/ section: - docs/concepts/overview/extending.md - title: Extending the Kubernetes API @@ -43,12 +47,14 @@ toc: - docs/concepts/service-catalog/index.md - title: Containers + landing_page: /docs/concepts/containers/images/ section: - docs/concepts/containers/images.md - docs/concepts/containers/container-environment-variables.md - docs/concepts/containers/container-lifecycle-hooks.md - title: Workloads + landing_page: /docs/concepts/workloads/pods/pod-overview/ section: - title: Pods section: @@ -70,6 +76,7 @@ toc: - docs/concepts/workloads/controllers/cron-jobs.md - title: Configuration + landing_page: /docs/concepts/configuration/overview/ section: - docs/concepts/configuration/overview.md - docs/concepts/configuration/manage-compute-resources-container.md @@ -80,6 +87,7 @@ toc: - docs/concepts/configuration/pod-priority-preemption.md - title: Services, Load Balancing, and Networking + landing_page: /docs/concepts/services-networking/service/ section: - docs/concepts/services-networking/service.md - docs/concepts/services-networking/dns-pod-service.md @@ -89,6 +97,7 @@ toc: - docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases.md - title: Storage + landing_page: /docs/concepts/storage/volumes/ section: - docs/concepts/storage/volumes.md - docs/concepts/storage/persistent-volumes.md @@ -96,6 +105,7 @@ toc: - docs/concepts/storage/dynamic-provisioning.md - title: Cluster Administration + landing_page: /docs/concepts/cluster-administration/cluster-administration-overview/ section: - docs/concepts/cluster-administration/cluster-administration-overview.md - docs/concepts/cluster-administration/certificates.md @@ -116,5 +126,3 @@ toc: section: - docs/concepts/policy/resource-quotas.md - docs/concepts/policy/pod-security-policy.md - - diff --git a/_data/docs-home.yml b/_data/docs-home.yml index c861e991f6..93e1ffbd44 100644 --- a/_data/docs-home.yml +++ b/_data/docs-home.yml @@ -1,17 +1,13 @@ -bigheader: "Documentation Home" +bigheader: "About" abstract: "Documentation for using and learning about Kubernetes." toc: - docs/home/index.md -- docs/home/supported-doc-versions.md -- title: Release Notes - path: https://git.k8s.io/kubernetes/CHANGELOG.md -- title: Release Roadmap - path: https://github.com/kubernetes/kubernetes/milestones/ - -- docs/tasks/debug-application-cluster/troubleshooting.md +- title: Supported Doc Versions + path: /docs/home/supported-doc-versions/ - title: Contributing to the Kubernetes Docs + landing_page: /editdocs/ section: - editdocs.md - docs/home/contribute/create-pull-request.md diff --git a/_data/glossary/annotation.yaml b/_data/glossary/annotation.yaml index f680440b08..7d46eb232a 100644 --- a/_data/glossary/annotation.yaml +++ b/_data/glossary/annotation.yaml @@ -1,6 +1,6 @@ id: annotation name: Annotation -full-link: docs/concepts/overview/working-with-objects/annotations +full-link: /docs/concepts/overview/working-with-objects/annotations tags: - fundamental short-description: > diff --git a/_data/glossary/application-developer.yaml b/_data/glossary/application-developer.yaml index 696e53ef6d..a5a6dcec2c 100644 --- a/_data/glossary/application-developer.yaml +++ b/_data/glossary/application-developer.yaml @@ -1,5 +1,6 @@ id: application-developer name: Application Developer +full-link: docs/user-journeys/users/application-developer/foundational/ related: - application-architect tags: diff --git a/_data/glossary/cluster-operator.yaml b/_data/glossary/cluster-operator.yaml index 82eaa42a60..4f410a1b3a 100644 --- a/_data/glossary/cluster-operator.yaml +++ b/_data/glossary/cluster-operator.yaml @@ -1,5 +1,6 @@ id: cluster-operator name: Cluster Operator +full-link: docs/user-journeys/users/cluster-operator/foundational/ aka: - Cluster Administrator related: diff --git a/_data/glossary/code-contributor.yaml b/_data/glossary/code-contributor.yaml index 9fa8fbe82c..155b6acd7f 100644 --- a/_data/glossary/code-contributor.yaml +++ b/_data/glossary/code-contributor.yaml @@ -1,5 +1,6 @@ id: code-contributor name: Code Contributor +full-link: docs/imported/community/devel/ aka: - Community Developer tags: diff --git a/_data/glossary/daemonset.yaml b/_data/glossary/daemonset.yaml index 09142d4fd6..0c84d01b19 100644 --- a/_data/glossary/daemonset.yaml +++ b/_data/glossary/daemonset.yaml @@ -5,6 +5,6 @@ tags: - fundamental - workload short-description: > - Ensures a copy of a {% glossary_tooltip term_id="pod" %} is running across a set of nodes in a {% glossary_tooltip term_id="cluster" %}. + Ensures a copy of a {% glossary_tooltip text="Pod" term_id="pod" %} is running across a set of nodes in a {% glossary_tooltip text="cluster" term_id="cluster" %}. long-description: > Used to deploy system daemons such as log collectors and monitoring agents that typically must run on every {% glossary_tooltip term_id="node" %}. diff --git a/_data/glossary/namespace.yaml b/_data/glossary/namespace.yaml index be733fc35d..2d976fc881 100644 --- a/_data/glossary/namespace.yaml +++ b/_data/glossary/namespace.yaml @@ -4,7 +4,7 @@ full-link: /docs/concepts/overview/working-with-objects/namespaces tags: - fundamental short-description: > - An abstraction used by Kubernetes to support multiple virtual clusters on the same physical {% glossary_tooltip term_id="cluster" %}. + An abstraction used by Kubernetes to support multiple virtual clusters on the same physical {% glossary_tooltip text="cluster" term_id="cluster" %}. long-description: > Namespaces are used to organize objects in a cluster and provide a way to divide cluster resources. Names of resources need to be unique within a namespace, but not across namespaces. diff --git a/_data/glossary/persistent-volume.yaml b/_data/glossary/persistent-volume.yaml index 1f0fe7b528..50a0c9ed99 100644 --- a/_data/glossary/persistent-volume.yaml +++ b/_data/glossary/persistent-volume.yaml @@ -10,7 +10,7 @@ tags: - core-object - storage short-description: > - An API object that represents a piece of storage in the cluster. Available as a general, pluggable resource that persists beyond the lifecycle of any individual {% glossary_tooltip term_id="pod" %}. + An API object that represents a piece of storage in the cluster. Available as a general, pluggable resource that persists beyond the lifecycle of any individual {% glossary_tooltip text="Pod" term_id="pod" %}. long-description: | PersistentVolumes (PVs) provide an API that abstracts details of how storage is provided from how it is consumed. PVs are used directly in scenarios where storage can be be created ahead of time (static provisioning). diff --git a/_data/glossary/service-account.yaml b/_data/glossary/service-account.yaml index 2684bc5e93..a7fcf3ec05 100644 --- a/_data/glossary/service-account.yaml +++ b/_data/glossary/service-account.yaml @@ -5,6 +5,6 @@ tags: - fundamental - core-object short-description: > - Provides an identity for processes that run in a Pod {% glossary_tooltip text="Pods" term_id="pod" %}. + Provides an identity for processes that run in a {% glossary_tooltip text="Pod" term_id="pod" %}. long-description: > When processes inside Pods access the cluster, they are authenticated by the API server as a particular service account, for example, `default`. When you create a Pod, if you do not specify a service account, it is automatically assigned the default service account in the same namespace {% glossary_tooltip text="Namespace" term_id="namespace" %}. diff --git a/_data/reference.yml b/_data/reference.yml index 2afece5532..65ae449f1b 100644 --- a/_data/reference.yml +++ b/_data/reference.yml @@ -1,10 +1,14 @@ -bigheader: "Reference Documentation" +bigheader: "Reference" abstract: "Design docs, concept definitions, and references for APIs and CLIs." +landing_page: /docs/reference/index/ toc: - docs/reference/index.md -- docs/reference/glossary.md + +- title: Standardized Glossary + path: /docs/reference/glossary/ - title: Using the API + landing_page: /docs/reference/api-overview/ section: - docs/reference/api-overview.md - docs/reference/client-libraries.md @@ -28,6 +32,7 @@ toc: - docs/reference/workloads-18-19.md - title: API Reference + landing_page: /docs/api-reference/v1.8/ section: - title: v1.9 path: /docs/reference/generated/kubernetes-api/v1.9/ @@ -40,6 +45,7 @@ toc: path: https://git.k8s.io/kubernetes/api/swagger-spec/ - title: Federation API + landing_page: /docs/reference/federation/v1/operations/ section: - docs/reference/generated/federation/v1/operations.html - docs/reference/generated/federation/v1/definitions.html @@ -47,6 +53,7 @@ toc: - docs/reference/generated/federation/extensions/v1beta1/definitions.html - title: kubectl CLI + landing_page: /docs/user-guide/kubectl-overview/ section: - docs/reference/kubectl/overview.md - docs/reference/generated/kubectl/kubectl.md @@ -58,6 +65,7 @@ toc: - docs/reference/kubectl/cheatsheet.md - title: Setup Tools Reference + landing_page: /docs/reference/setup-tools/kubeadm/kubeadm/ section: - title: Kubeadm section: @@ -81,6 +89,7 @@ toc: - docs/reference/generated/kubefed_version.md - title: Command-line Tools Reference + landing_page: /docs/admin/kubelet/ section: - docs/reference/feature-gates.md - docs/reference/generated/kubelet.md @@ -95,7 +104,9 @@ toc: - docs/reference/generated/federation-controller-manager.md - title: Kubernetes Design Docs + landing_page: /docs/reference/design-docs/overview/ section: + - docs/reference/design-docs/overview.md - title: Kubernetes Architecture path: https://git.k8s.io/community/contributors/design-proposals/architecture/architecture.md - title: Kubernetes Design Overview @@ -109,6 +120,7 @@ toc: path: https://git.k8s.io/community/contributors/design-proposals/auth/security.md - title: Kubernetes Issues and Security + landing_page: https://github.com/kubernetes/kubernetes/issues/ section: - title: Kubernetes Issue Tracker on GitHub path: https://github.com/kubernetes/kubernetes/issues/ diff --git a/_data/setup.yml b/_data/setup.yml index 3d4a257c04..4e76785aad 100644 --- a/_data/setup.yml +++ b/_data/setup.yml @@ -1,5 +1,6 @@ bigheader: "Setup" abstract: "Instructions for setting up a Kubernetes cluster." +landing_page: /docs/setup/index/ toc: - docs/setup/index.md - docs/setup/pick-right-solution.md @@ -11,6 +12,7 @@ toc: - docs/setup/building-from-source.md - title: Independent Solutions + landing_page: /docs/getting-started-guides/minikube/ section: - docs/getting-started-guides/minikube.md @@ -25,7 +27,9 @@ toc: - docs/getting-started-guides/alternatives.md - title: Hosted Solutions + landing_page: /docs/setup/hosted-solutions/overview/ section: + - docs/setup/hosted-solutions/overview.md - title: Running Kubernetes on Google Kubernetes Engine path: https://cloud.google.com/kubernetes-engine/docs/before-you-begin/ - title: Running Kubernetes on Azure Container Service @@ -34,18 +38,19 @@ toc: path: https://console.bluemix.net/docs/containers/container_index.html - title: Turn-key Cloud Solutions + landing_page: /docs/getting-started-guides/alibaba-cloud/ section: - - docs/getting-started-guides/gce.md + - docs/getting-started-guides/alibaba-cloud.md - docs/getting-started-guides/aws.md - docs/getting-started-guides/azure.md - - docs/getting-started-guides/alibaba-cloud.md - docs/getting-started-guides/clc.md + - docs/getting-started-guides/gce.md - title: Running Kubernetes on IBM Cloud path: https://github.com/patrocinio/kubernetes-softlayer - docs/getting-started-guides/stackpoint.md - title: Custom Solutions - + landing_page: /docs/getting-started-guides/coreos/index/ section: - title: Custom Cloud Solutions section: @@ -104,6 +109,28 @@ toc: - docs/admin/node-conformance.md +- title: User Journeys + landing_page: /docs/home/ + section: + + - title: Application Developer + section: + - docs/user-journeys/users/application-developer/foundational.md + - docs/user-journeys/users/application-developer/intermediate.md + - docs/user-journeys/users/application-developer/advanced.md + - title: Cluster Operator + section: + - docs/user-journeys/users/cluster-operator/foundational.md + - docs/user-journeys/users/cluster-operator/intermediate.md + - docs/user-journeys/users/cluster-operator/advanced.md + + - title: Docs Contributor + path: /docs/home/?path=contributors&persona=docs-contributor&level=foundational + - title: Code Contributor + path: /docs/home/?path=contributors&persona=code-contributor&level=foundational + - title: Community Contributor + path: /docs/home/?path=contributors&persona=community-contributor&level=foundational + - title: Installing Addons path: /docs/concepts/cluster-administration/addons/ @@ -117,4 +144,4 @@ toc: path: /docs/admin/multiple-zones/ - title: Building High-Availability Clusters - path: /docs/admin/high-availability/ + path: /docs/admin/high-availability/building/ diff --git a/_data/tasks.yml b/_data/tasks.yml index 2220978f8d..f23ba4b595 100644 --- a/_data/tasks.yml +++ b/_data/tasks.yml @@ -1,15 +1,18 @@ bigheader: "Tasks" abstract: "Step-by-step instructions for performing operations with Kubernetes." +landing_page: /docs/tasks/index/ toc: - docs/tasks/index.md - title: Install Tools + landing_page: /docs/tasks/tools/install-kubectl/ section: - docs/tasks/tools/install-kubectl.md - docs/tasks/tools/install-minikube.md - docs/setup/independent/install-kubeadm.md - title: Configure Pods and Containers + landing_page: /docs/tasks/configure-pod-container/configure-pod-initialization/ section: - docs/tasks/configure-pod-container/assign-memory-resource.md - docs/tasks/configure-pod-container/assign-cpu-resource.md @@ -32,6 +35,7 @@ toc: - docs/tools/kompose/user-guide.md - title: Inject Data Into Applications + landing_page: /docs/tasks/inject-data-application/define-environment-variable-container/ section: - docs/tasks/inject-data-application/define-command-argument-container.md - docs/tasks/inject-data-application/define-environment-variable-container.md @@ -41,6 +45,7 @@ toc: - docs/tasks/inject-data-application/podpreset.md - title: Run Applications + landing_page: /docs/tasks/run-application/run-stateless-application-deployment/ section: - docs/tasks/run-application/run-stateless-application-deployment.md - docs/tasks/run-application/run-single-instance-stateful-application.md @@ -56,12 +61,14 @@ toc: - docs/tasks/run-application/configure-pdb.md - title: Run Jobs + landing_page: /docs/tasks/job/parallel-processing-expansion/ section: - docs/tasks/job/parallel-processing-expansion.md - docs/tasks/job/coarse-parallel-processing-work-queue/index.md - docs/tasks/job/fine-parallel-processing-work-queue/index.md - title: Access Applications in a Cluster + landing_page: /docs/tasks/access-application-cluster/web-ui-dashboard/ section: - docs/tasks/access-application-cluster/web-ui-dashboard.md - docs/tasks/access-application-cluster/access-cluster.md @@ -78,6 +85,7 @@ toc: path: https://github.com/kubernetes/kubernetes/tree/release-1.5/examples/cluster-dns - title: Monitor, Log, and Debug + landing_page: /docs/tasks/debug-application-cluster/resource-usage-monitoring/ section: - docs/tasks/debug-application-cluster/core-metrics-pipeline.md - docs/tasks/debug-application-cluster/resource-usage-monitoring.md @@ -100,6 +108,7 @@ toc: path: https://github.com/kubernetes/kubernetes/tree/release-1.5/examples/explorer - title: Extend Kubernetes + landing_page: /docs/tasks/access-kubernetes-api/extend-api-custom-resource-definitions/ section: - docs/tasks/access-kubernetes-api/http-proxy-access-api.md - docs/tasks/access-kubernetes-api/extend-api-custom-resource-definitions.md @@ -111,11 +120,13 @@ toc: - docs/tasks/service-catalog/install-service-catalog-using-sc.md - title: TLS + landing_page: /docs/tasks/tls/managing-tls-in-a-cluster/ section: - docs/tasks/tls/managing-tls-in-a-cluster.md - docs/tasks/tls/certificate-rotation.md - title: Administer a Cluster + landing_page: /docs/tasks/administer-cluster/memory-default-namespace/ section: - title: Manage Memory, CPU, and API Resources section: @@ -172,6 +183,7 @@ toc: - docs/tasks/administer-cluster/pvc-protection.md - title: Federation - Run an App on Multiple Clusters + landing_page: /docs/tasks/federation/set-up-cluster-federation-kubefed/ section: - docs/tasks/federation/federation-service-discovery.md - docs/tasks/federation/set-up-cluster-federation-kubefed.md @@ -190,18 +202,19 @@ toc: - docs/tasks/administer-federation/secret.md - title: Manage Cluster Daemons + landing_page: /docs/tasks/manage-daemon/update-daemon-set/ section: - docs/tasks/manage-daemon/update-daemon-set.md - docs/tasks/manage-daemon/rollback-daemon-set.md - title: Manage GPUs - section: - - docs/tasks/manage-gpus/scheduling-gpus.md + path: /docs/tasks/manage-gpus/scheduling-gpus/ - title: Manage HugePages - section: - - docs/tasks/manage-hugepages/scheduling-hugepages.md + path: /docs/tasks/manage-hugepages/scheduling-hugepages/ - title: Extend kubectl with plugins - section: - - docs/tasks/extend-kubectl/kubectl-plugins.md + path: /docs/tasks/extend-kubectl/kubectl-plugins/ + +- title: Troubleshooting + path: /docs/tasks/debug-application-cluster/troubleshooting/ diff --git a/_data/tutorials.yml b/_data/tutorials.yml index 32e2b565ed..88217396f1 100644 --- a/_data/tutorials.yml +++ b/_data/tutorials.yml @@ -1,8 +1,10 @@ bigheader: "Tutorials" abstract: "Detailed walkthroughs of common Kubernetes operations and workflows." +landing_page: /docs/tutorials/index/ toc: - docs/tutorials/index.md - title: Kubernetes Basics + landing_page: /docs/tutorials/kubernetes-basics/index/ section: - docs/tutorials/kubernetes-basics/index.html - title: 1. Create a Cluster @@ -30,24 +32,32 @@ toc: - docs/tutorials/kubernetes-basics/update-intro.html - docs/tutorials/kubernetes-basics/update-interactive.html - title: Online Training Courses + landing_page: /docs/tutorials/online-training/overview/ section: + - docs/tutorials/online-training/overview.md - title: Scalable Microservices with Kubernetes (Udacity) path: https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615 - title: Introduction to Kubernetes (edX) path: https://www.edx.org/course/introduction-kubernetes-linuxfoundationx-lfs158x# -- docs/tutorials/stateless-application/hello-minikube.md -- docs/user-guide/walkthrough/index.md -- docs/user-guide/walkthrough/k8s201.md +- title: Hello Minikube + path: /docs/tutorials/stateless-application/hello-minikube/ +- title: Kubernetes 101 + path: /docs/user-guide/walkthrough/ +- title: Kubernetes 201 + path: /docs/user-guide/walkthrough/k8s201/ - title: Configuration + landing_page: /docs/tutorials/configuration/configure-redis-using-configmap/ section: - docs/tutorials/configuration/configure-redis-using-configmap.md - title: Stateless Applications + landing_page: /docs/tutorials/stateless-application/guestbook/ section: - docs/tasks/run-application/run-stateless-application-deployment.md - docs/tutorials/stateless-application/guestbook.md - docs/tasks/access-application-cluster/service-access-application-cluster.md - docs/tutorials/stateless-application/expose-external-ip-address.md - title: Stateful Applications + landing_page: /docs/tutorials/stateful-application/basic-stateful-set/ section: - docs/tutorials/stateful-application/basic-stateful-set.md - docs/tasks/run-application/run-single-instance-stateful-application.md @@ -56,8 +66,10 @@ toc: - docs/tutorials/stateful-application/cassandra.md - docs/tutorials/stateful-application/zookeeper.md - title: Clusters + landing_page: /docs/tutorials/clusters/apparmor/ section: - docs/tutorials/clusters/apparmor.md - title: Services + landing_page: /docs/tutorials/services/source-ip/ section: - docs/tutorials/services/source-ip.md diff --git a/_data/user-personas/contributors/code-contributor.yaml b/_data/user-personas/contributors/code-contributor.yaml new file mode 100644 index 0000000000..b21b8841a1 --- /dev/null +++ b/_data/user-personas/contributors/code-contributor.yaml @@ -0,0 +1,19 @@ +id: code-contributor +name: Code Contributor +glossary_id: code-contributor +index: 0 +foundational: + - label: "Read the Developer Guide" + icon: fa-book + url: "/docs/imported/community/devel/" +intermediate: + - label: "Learn about the Kubernetes Enhancement Proposal (KEP) process" + icon: fa-upload + url: "/docs/imported/community/keps/" + - label: "Understand the API conventions" + icon: fa-map-o + url: "https://github.com/kubernetes/community/blob/master/contributors/devel/api-conventions.md" +advanced: + - label: "Learn about the release process" + icon: fa-code-fork + url: "https://github.com/kubernetes/release/blob/master/README.md" diff --git a/_data/user-personas/contributors/community-contributor.yaml b/_data/user-personas/contributors/community-contributor.yaml new file mode 100644 index 0000000000..30194dc553 --- /dev/null +++ b/_data/user-personas/contributors/community-contributor.yaml @@ -0,0 +1,19 @@ +id: community-contributor +name: Community Contributor +short_desc: A person who works to build the Kubernetes community (e.g. by organizing meetups). +index: 1 +foundational: + - label: "Contribute to the Kubernetes OSS project" + icon: fa-users + url: "/docs/imported/community/guide/" + - label: "Find out about mentoring initiatives" + icon: fa-graduation-cap + url: "/docs/imported/community/mentoring/" +intermediate: + - label: "Apply for community membership as a member, reviewer, approver, owner, or maintainer" + icon: fa-user-plus + url: "https://github.com/kubernetes/community/blob/master/community-membership.md" +advanced: + - label: "Learn about Kubernetes community governance" + icon: fa-gavel + url: "https://github.com/kubernetes/community/blob/master/governance.md" diff --git a/_data/user-personas/contributors/docs-contributor.yaml b/_data/user-personas/contributors/docs-contributor.yaml new file mode 100644 index 0000000000..a48ce4d76f --- /dev/null +++ b/_data/user-personas/contributors/docs-contributor.yaml @@ -0,0 +1,40 @@ +id: docs-contributor +name: Docs Contributor +short_desc: A person who writes documentation for the Kubernetes project (e.g. this site). +index: 2 +foundational: + - label: "Contribute to the Kubernetes documentation" + icon: fa-users + url: "/editdocs/" + - label: "Learn about documentation style" + icon: fa-book + url: "/docs/home/contribute/style-guide/" + - label: "Review documentation issues" + icon: fa-bug + url: "/docs/home/contribute/review-issues/" + - label: "Create a documentation pull request (PR)" + icon: fa-pencil-square-o + url: "/docs/home/contribute/create-pull-request/" + - label: "Stage documentation changes" + icon: fa-eye + url: "/docs/home/contribute/stage-documentation-changes/#staging-a-pull-request" +intermediate: + - label: "Write a new topic" + icon: fa-plus-circle + url: "/docs/home/contribute/write-new-topic/" + - label: "Stage documentation changes locally" + icon: fa-cloud-download + url: "/docs/home/contribute/stage-documentation-changes/#staging-locally-using-docker" + - label: "Apply page templates" + icon: fa-clone + url: "/docs/home/contribute/page-templates/" + - label: "Add callout formatting" + icon: fa-exclamation-circle + url: "/docs/home/contribute/style-guide/#callout-formatting" +advanced: + - label: "Add feature state tags" + icon: fa-tag + url: "/docs/home/contribute/includes/#feature-state" + - label: "Add tabs to display multiple flavors of content" + icon: fa-folder-o + url: "/docs/home/contribute/includes/#tabs" diff --git a/_data/user-personas/migrators/docker-compose-swarm.yaml b/_data/user-personas/migrators/docker-compose-swarm.yaml new file mode 100644 index 0000000000..797f276bf6 --- /dev/null +++ b/_data/user-personas/migrators/docker-compose-swarm.yaml @@ -0,0 +1,24 @@ +id: docker-compose-swarm +name: Migrating from Docker Compose and Swarm +index: 1 +foundational: + - label: "b1: foundational stuff" + url: "#" + - label: "b2: foundational stuff" + url: "#" + - label: "b3: foundational stuff" + url: "#" +intermediate: + - label: "b1: intermediate stuff" + url: "#" + - label: "b2: intermediate stuff" + url: "#" + - label: "b3: intermediate stuff" + url: "#" +advanced: + - label: "b1: advanced stuff" + url: "#" + - label: "b2: advanced stuff" + url: "#" + - label: "b3: advanced stuff" + url: "#" diff --git a/_data/user-personas/migrators/heroku.yaml b/_data/user-personas/migrators/heroku.yaml new file mode 100644 index 0000000000..1b2dcd8e25 --- /dev/null +++ b/_data/user-personas/migrators/heroku.yaml @@ -0,0 +1,24 @@ +id: heroku +name: Migrating from Heroku (PaaS) +index: 2 +foundational: + - label: "c1: foundational stuff" + url: "#" + - label: "c2: foundational stuff" + url: "#" + - label: "c3: foundational stuff" + url: "#" +intermediate: + - label: "c1: intermediate stuff" + url: "#" + - label: "c2: intermediate stuff" + url: "#" + - label: "c3: intermediate stuff" + url: "#" +advanced: + - label: "c1: advanced stuff" + url: "#" + - label: "c2: advanced stuff" + url: "#" + - label: "c3: advanced stuff" + url: "#" diff --git a/_data/user-personas/migrators/mesos.yaml b/_data/user-personas/migrators/mesos.yaml new file mode 100644 index 0000000000..ee10859a54 --- /dev/null +++ b/_data/user-personas/migrators/mesos.yaml @@ -0,0 +1,24 @@ +id: mesos +name: Migrating from Apache Mesos +index: 3 +foundational: + - label: "d1: foundational stuff" + url: "#" + - label: "d2: foundational stuff" + url: "#" + - label: "d3: foundational stuff" + url: "#" +intermediate: + - label: "d1: intermediate stuff" + url: "#" + - label: "d2: intermediate stuff" + url: "#" + - label: "d3: intermediate stuff" + url: "#" +advanced: + - label: "d1: advanced stuff" + url: "#" + - label: "d2: advanced stuff" + url: "#" + - label: "d3: advanced stuff" + url: "#" diff --git a/_data/user-personas/migrators/vmware-openstack.yaml b/_data/user-personas/migrators/vmware-openstack.yaml new file mode 100644 index 0000000000..a4aea1a4be --- /dev/null +++ b/_data/user-personas/migrators/vmware-openstack.yaml @@ -0,0 +1,24 @@ +id: vmware-openstack +name: Migrating from VMWare and/or OpenStack +index: 0 +foundational: + - label: "a1: foundational stuff" + url: "#" + - label: "a2: foundational stuff" + url: "#" + - label: "a3: foundational stuff" + url: "#" +intermediate: + - label: "a1: intermediate stuff" + url: "#" + - label: "a2: intermediate stuff" + url: "#" + - label: "a3: intermediate stuff" + url: "#" +advanced: + - label: "a1: advanced stuff" + url: "#" + - label: "a2: advanced stuff" + url: "#" + - label: "a3: advanced stuff" + url: "#" diff --git a/_data/user-personas/users/app-developer.yaml b/_data/user-personas/users/app-developer.yaml new file mode 100644 index 0000000000..21a1d1afba --- /dev/null +++ b/_data/user-personas/users/app-developer.yaml @@ -0,0 +1,40 @@ +id: app-developer +name: Application Developer +glossary_id: application-developer +index: 0 +foundational: + - label: Get started with a cluster + icon: fa-television + url: /docs/user-journeys/users/application-developer/foundational + - label: Deploy an application + icon: fa-retweet + url: /docs/user-journeys/users/application-developer/foundational#section-2 + - label: Understand basic Kubernetes architecture + icon: fa-cog + url: /docs/user-journeys/users/application-developer/foundational#section-3 + - label: Explore additional resources + icon: fa-book + url: /docs/user-journeys/users/application-developer/foundational#section-4 +intermediate: + - label: Learn additional workload patterns + icon: fa-cogs + url: /docs/user-journeys/users/application-developer/intermediate + - label: Deploy a production-ready workload + icon: fa-retweet + url: /docs/user-journeys/users/application-developer/intermediate#section-2 + - label: Improve your dev workflow with tooling + icon: fa-scissors + url: /docs/user-journeys/users/application-developer/intermediate#section-3 + - label: Explore additional resources + icon: fa-book + url: /docs/user-journeys/users/application-developer/intermediate#section-4 +advanced: + - label: Deploy an application with advanced features + icon: fa-sliders + url: /docs/user-journeys/users/application-developer/advanced + - label: Extend the Kubernetes API + icon: fa-arrows + url: /docs/user-journeys/users/application-developer/advanced#section-2 + - label: Explore additional resources + icon: fa-book + url: /docs/user-journeys/users/application-developer/advanced#section-3 diff --git a/_data/user-personas/users/cluster-operator.yaml b/_data/user-personas/users/cluster-operator.yaml new file mode 100644 index 0000000000..e17fc3865e --- /dev/null +++ b/_data/user-personas/users/cluster-operator.yaml @@ -0,0 +1,43 @@ +id: cluster-operator +name: Cluster Operator +glossary_id: cluster-operator +index: 1 +foundational: + - label: Get an overview of Kubernetes + icon: fa-globe + url: /docs/user-journeys/users/cluster-operator/foundational + - label: Learn about Kubernetes basics + icon: fa-cog + url: /docs/user-journeys/users/cluster-operator/foundational#section-2 + - label: Get information about my cluster + icon: fa-info-circle + url: /docs/user-journeys/users/cluster-operator/foundational#section-3 + - label: Explore additional resources + icon: fa-compass + url: /docs/user-journeys/users/cluster-operator/foundational#section-4 +intermediate: + - label: "Work with Ingress, Networking, Storage, Workloads" + icon: fa-sliders + url: /docs/user-journeys/users/cluster-operator/intermediate + - label: "Implement security best practices" + icon: fa-shield + url: /docs/user-journeys/users/cluster-operator/intermediate#section-2 + - label: "Implement custom logging and monitoring" + icon: fa-heartbeat + url: /docs/user-journeys/users/cluster-operator/intermediate#section-3 + - label: "Additional Resources" + icon: fa-book + url: /docs/user-journeys/users/cluster-operator/intermediate#section-4 +advanced: + - label: "Connect to managed services using Service Catalog" + icon: fa-puzzle-piece + url: "/docs/concepts/service-catalog/" + - label: "Extend a Kubernetes cluster" + icon: fa-arrows + url: "/docs/concepts/overview/extending/" + - label: "Create a Pod Security Policy" + icon: fa-lock + url: "/docs/concepts/policy/pod-security-policy/" + - label: "Define a Resource Quota" + icon: fa-tachometer + url: "/docs/concepts/policy/resource-quotas/" diff --git a/_includes/head.html b/_includes/head.html index e6247c4cbb..1c107cd2c1 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -5,13 +5,14 @@ {% if page.case_study_styles %}{% else %}{% endif %} - - + + {% if page.deprecated %}{% endif %} {% if page.class == "gridPage" %}{% endif %} - {% if page.css %}{% else %}{% endif %} + {% if page.css %}{% assign csslist = page.css | split: ',' | compact %}{% for cssurl in csslist %} + {% endfor %}{% else %}{% endif %} {% if page.description %} @@ -19,11 +20,13 @@ {% endif %} - - + + + + - - + {% if page.js %}{% assign jslist = page.js | split: ',' | compact %}{% for jsurl in jslist %} + {% endfor %}{% else %}{% endif %} {% seo %} diff --git a/_includes/templates/user-journey-content.md b/_includes/templates/user-journey-content.md new file mode 100644 index 0000000000..5c9e731bcb --- /dev/null +++ b/_includes/templates/user-journey-content.md @@ -0,0 +1,26 @@ +

    + + diff --git a/_includes/tocsearch.html b/_includes/tocsearch.html index 5bd5c5fd50..708c8357f0 100644 --- a/_includes/tocsearch.html +++ b/_includes/tocsearch.html @@ -6,7 +6,12 @@ {% if item.section %} {% include tocsearch.html tree=item.section toc=include.toc %} {% else %} - {% if item == page.path %} + {% if item.path %} + {% assign filename = item.path | replace: '/', ' ' | strip | replace: ' ', '/' | append: '.md' %} + {% else %} + {% assign filename = item %} + {% endif %} + {% if filename == page.path %} {% assign found_toc = include.toc %} {% break %} {% endif %} diff --git a/_layouts/docsportal.html b/_layouts/docsportal.html new file mode 100644 index 0000000000..e247cd5e08 --- /dev/null +++ b/_layouts/docsportal.html @@ -0,0 +1,66 @@ + + + +{% include head.html %} + + + +{% include header.html %} + + +
    +

    {{ toc.bigheader }}

    +
    {{ toc.abstract }}
    +
    +
    + +{% include deprecation-warning.html %} + +
    + + +
    + + {{ content }} + +
    +

    Analytics

    + {% if page.url != "/404.html" and page.url != "/docs/search/" %} + {% unless page.no_issue %} + + Create an Issue + {% endunless %} + {% unless page.noedit %} + Edit this Page + {% endunless %} + {% endif %} +
    +
    +
    + +{% include_cached footer.html %} +{% include footer-scripts.html %} + + + diff --git a/_layouts/docwithnav.html b/_layouts/docwithnav.html index 924d0c3822..50ff09d7ff 100755 --- a/_layouts/docwithnav.html +++ b/_layouts/docwithnav.html @@ -56,19 +56,19 @@

    Analytics

    {% if page.url != "/404.html" and page.url != "/docs/search/"%} - {% unless page.no_issue %} + {% unless page.no_issue %} - Create an Issue - {% endunless %} + {% endunless %} {% unless page.noedit %} Edit this Page {% endunless %} diff --git a/_plugins/glossary_tags.rb b/_plugins/glossary_tags.rb index 8faaedfb37..2577a65403 100644 --- a/_plugins/glossary_tags.rb +++ b/_plugins/glossary_tags.rb @@ -1,3 +1,4 @@ +require 'pry' # See /_plugins/README.md for full documentation of these custom Jekyll tags module Jekyll module GlossaryTags @@ -89,7 +90,7 @@ module Jekyll gsub(NESTED_MARKDOWN_LINKS, '\2'). strip - "" \ + "" \ "#{@args[:text] || term_info["name"]}" \ "" \ "#{tooltip}" \ diff --git a/_redirects b/_redirects index 5594352713..cb4a8e953d 100644 --- a/_redirects +++ b/_redirects @@ -28,6 +28,7 @@ /docs/admin/garbage-collection/ /docs/concepts/cluster-administration/kubelet-garbage-collection/ 301 /docs/admin/ha-master-gce/ /docs/tasks/administer-cluster/highly-available-master/ 301 /docs/admin/ha-master-gce.md/ /docs/tasks/administer-cluster/highly-available-master/ 301 +/docs/admin/high-availability/ /docs/admin/high-availability/building/ 301 /docs/admin/kubeadm-upgrade-1-7/ /docs/tasks/administer-cluster/kubeadm-upgrade-1-7/ 301 /docs/admin/limitrange/ /docs/tasks/administer-cluster/cpu-memory-limit/ 301 /docs/admin/limitrange/Limits/ /docs/tasks/administer-cluster/limit-storage-consumption/#limitrange-to-limit-requests-for-storage/ 301 diff --git a/cn/docs/tutorials/kubernetes-basics/index.html b/cn/docs/tutorials/kubernetes-basics/index.html index eac5a29ad5..c65fbabf5a 100644 --- a/cn/docs/tutorials/kubernetes-basics/index.html +++ b/cn/docs/tutorials/kubernetes-basics/index.html @@ -38,7 +38,7 @@ title: 概述
  • -
    +

    Kubernetes 基础模块

    diff --git a/css/style_user_journeys.css b/css/style_user_journeys.css new file mode 100644 index 0000000000..7b0da3d20e --- /dev/null +++ b/css/style_user_journeys.css @@ -0,0 +1,891 @@ +body { + + margin:0 auto; + +} + +.infobarWrapper a { + color:#303030; +} + +#encyclopedia { +padding: 0px !important; + +} + + +span .editthispage { +display: -webkit-inline-box !important; + +} + +.editthispage { +display: -webkit-inline-box !important; +} + +h1 { + +padding-top: 3% !important; +padding-bottom: 1.5% !important; +padding-left: 3% !important; +padding-right: 3% !important; +text-align: center !important; +font-size: 22pt !important; +font-weight:normal; +color:#303030; + +} + +.container { +width:80%; + +} + +.issue-button-container { + width: 75%; + margin-left: 15%; + padding-left: 1.5%; + padding-bottom: 2%; +} + +.anchor { + display: block; + position: relative; + top: -50px; + visibility: hidden; +} + +.pages a { + font-family: 'roboto'; + font-size:11pt; + text-decoration:none !important; + letter-spacing:0.03em; + color:#606060; +} + +.pages a:hover{ + color:black; +} + +.docstitle a{ + font-family: 'roboto'; + font-size:16pt; + margin-bottom:50px !important; + color:#3371e3 !important; + text-decoration:none !important; + +} + +.docstitle { + margin-bottom:10px !important; +} + +.emphasize-box { + background-color: #dde1e4; + margin: 2% 10%; + padding-top: 20px; + padding-bottom: 5px; +} + +.emphasize-box li { + font-size: 14px !important; +} + +.browsedocs { + font-family: 'roboto' !important; + width:75%; + margin-top:2%; + margin-bottom:5%; + margin-left:15%; + line-height:2em; +} + +.browsecolumn { + float:left; + width: 33%; + +} + +.browsesection { + float:left; + display:block; + width:100%; + margin:2%; +} + +.pages { + width:100%; + color:#606060 !important; +} + + +.browseheader { + font-family: 'roboto'; + text-align:center; + padding:1%; + color:white !important; + font-weight:100; + font-size:18px; + text-transform:uppercase; + font-weight:400; + background-color:#303030; + letter-spacing:0.08em; + background-repeat:repeat; + background-size:contain; + background-position:center; +} +.browseheader a{ + + color:white !important; + +} + + + +.topheader { + background-color: white !important; + color:#303030; + font-family: 'roboto'; + text-align:center; + padding:3%; + font-weight:300; + font-size:24pt; + letter-spacing:0.06em; + +} + +.docssectionheaders { + background-color: #eeeeee !important; + color:#3371e3; + font-family: 'roboto'; + text-align:center; + padding: 3%; + margin: 6% 0% 2% 0%; + font-weight:300; + font-size:18pt; + letter-spacing:0.06em; +} + +.docscols { +width:100%; +float:left; +} + +.section1 { +width:100%; +float:left; +} + + +.docscol1 { +background-color:#eeeeee; +padding:2%; +margin-right:2%; +width:28% !important; +display:inline-block; +float:left; + +} + +.docscol2 { +background-color:#ffffff; +border:1px solid #aaaaaa; +padding:2%; +width:27% !important; +float:left; +margin-right:2%; +display:inline-block; + +} + +.docscol3 { +background-color:#ffffff; +padding:1.5%; +width:27% !important; +display:inline-block; +float:right; +border:1px solid blue; + +} + +.docscoltitle { +float:left; +padding-top:%; +margin-right:2%; +padding-bottom:3%; +font-size:16pt; +line-height:20pt; +font-weight:400; +color:#3371e3; + +} + +.docsfullcol1 { + + width:95%; + padding:2%; + margin:3%; +} + +.docsfullcol2 { + + width:95%; + padding:2%; + background-color:#eeeeee; + margin:3%; +} + +.docsfullcol3 { +background-color:#ffffff; +padding:2%; +width:95%; +display:inline-block; + +border:1px solid blue; +margin:3%; + +} + +.docsfullcol1icon { + width:5%; + padding:2%; +} + +.docstitle2 { +padding:0%; +padding-bottom:3%; +font-size:16pt; +text-align:center; +font-weight:400; +padding-top:2%; +color:#3371e3; +} + +.docsButton { + + background-color:#3371e3; + color:white; + border: 2px solid #ffffff; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + border: 2px solid #ffffff; + padding:1%; + text-decoration:none; + margin:%; + } + + + +} + +.material-icons { + +font-size:50pt !important; +color:#3371e3; + +} + +.paths { + padding:1%; + background-color:#3371e3; + text-align:center; + +} + +.display-bar { +padding:1%; +background-color:#303030; +text-align:center; +font-size:18px; +font-family: 'roboto'; +text-transform:uppercase; +text-align:center; +letter-spacing:0.1em; +color:#ffffff; + +} + +.cards { +padding:0% 3% 3%; +width:80%; + margin-left:10%; +background-color:#ffffff; +text-align:center; +font-family: 'roboto'; +text-transform:uppercase; +text-align:center; +letter-spacing:0.1em; +} + +.cards > div { + display: none; +} + +button { + + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + border: 2px solid #ffffff; + padding:1%; + margin:1%; + color:#ffffff; + font-family: 'roboto'; + text-transform:uppercase; + text-align:center; + letter-spacing:0.1em; + display: inline-block; + +} + + +.navButton { + white-space:nowrap; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + border: 2px solid #ffffff; + padding:1%; + margin:1%; + color:#3371e3; + background-color:white; + font-family: 'roboto'; + text-transform:uppercase; + text-align:center; + letter-spacing:0.1em; + display: inline-block; + cursor: pointer; + +} + +.navButton:active { + + background-color:#3371e3; + color:white; + border: 2px solid #ffffff; +} + +.navButton:visited { + + background-color:#3371e3; + color:white; + border: 2px solid #ffffff; +} + +.navButton:focus { + + background-color:#3371e3 !important
    ; + color:white; + border: 2px solid #ffffff; +} + + +.navButton:hover, .keepShow { + + background-color:#3371e3; + color:white; + border: 2px solid #ffffff; +} + + + +.buttons { + background-color:#3371e3; + white-space:nowrap; + cursor:pointer; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + border: 2px solid #ffffff; + padding:2%; + margin:1%; + color:#ffffff; + font-family: 'roboto'; + text-transform:uppercase; + text-align:center; + letter-spacing:0.1em; + display: inline-block; + width:250px; + vertical-align:middle; + line-height:1.3em; + + +} + + +.buttonoption1 { + background-color:#3371e3; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + border: 2px solid #ffffff; + padding:2%; + margin:1%; + color:#ffffff; + font-family: 'roboto'; + text-transform:uppercase; + text-align:center; + letter-spacing:0.1em; + display: inline-block; + width:250px; + vertical-align:middle; + + +} + + + +.buttons:active .active{ + + background-color:white; + color:#3371e3; + border: 2px solid #3371e3; +} + +.buttons:hover { + + background-color:white; + color:#3371e3; + border: 2px solid #3371e3; + cursor: pointer; +} + +.buttons:target { + + background-color:white; + color:#3371e3; + border: 2px solid #3371e3; + +} + +.buttons:visited { + + background-color:white; + color:#3371e3; + border: 2px solid #3371e3; + +} + +.buttons.selected { + background-color:white; + color:#3371e3; + border: 2px solid #3371e3; + +} + +/*.keepShow { + + background-color:white; + color:#3371e3; + border: 2px solid white; + +}*/ + +.level { + background-color:#ffffff; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + border: 2px solid #303030; + padding:0%; + padding-top:3%; + margin:1%; + margin-top:4%; + color:#303030; + font-family: 'roboto'; + font-weight:100; + text-transform:none; + text-align:center; + letter-spacing:0.1em; + display: inline-block; + width:250px; cursor: pointer; + cursor: pointer; + + +} +.level:hover, .level.selected { + background-color:#dddddd; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + border: 2px solid #303030; + + cursor: pointer; + +} + + +.tab1text{ + padding:5%; + color:#303030; + font-size:15px; + line-height:22px; + +} + +.tabbottom { + +background-color:#303030; +color:#ffffff;; +font-family:'roboto'; +width:100%; +margin:0px; +font-size:34 !important; + + +} + + +i { + + font-size:44px !important; + text-align:center; + color:#000066; + +} +.infobarWrapper { + visibility: hidden; + margin-bottom:5%; +} +.infobar { + padding:0%; + background-color:#3371e3; + text-align:center; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + border: 2px solid #ffffff; + padding:2%; + font-size:22px; + line-height:30px; + letter-spacing:0.07em; + text-transform:uppercase; + margin:3%; + font-weight:bold; + color:#ffffff; + font-family: 'roboto'; + width:70%; + margin-left:15%; + margin-bottom:3%; + + +} + +.whitebar { + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + background-color:#ffffff; + text-transform:none; + padding:3%; + letter-spacing:0.6pt; + font-size:15px; + z-index:99; + font-weight:400; + line-height:18pt; + color:#606060; + margin:1%; + text-align:left; +} + +.whitebararrow{ + float:right + padding:3%; + font-size:15px; + z-index:99; + font-weight:100; + line-height:18pt; + color:#606060; + margin:1%; + text-align:right; +} + + +.hide { + +float:left; +font-size:16px; +padding-left:2%; +padding-bottom:5%; + + + +} + + + +.fa { + + line-height:0.7em !important; +} + + +.infoicon { +float:left; +padding-bottom:2%; +padding-right:2%; +margin-bottom:10%: +color:#3371e3 !important; +} + +.numberCircle { +display:inline-block; +line-height:0px; + +border-radius:5px; +border:2px solid; +font-weight:300; +font-size:24px; +} + +.numberCircle span { + display:inline-block; + padding-top:50%; padding-bottom:50%; + margin-left:12px; + margin-right:12px; +} + +.docButton { + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; /* future proofing */ + -khtml-border-radius: 5px; /* for old Konqueror browsers */ + border: 1.5px solid #3371e3; + padding:1%; + background-color:#eeeeee; + font-size:13px; + margin:.5%; + color:#3371e3; + font-family: 'roboto'; + text-transform:uppercase; + text-align:center; + letter-spacing:0.1em; + display: inline-block; + +} + +.docButton:hover { + border: 1.5px solid #3371e3; + background-color:#3371e3; + font-size:13px; + color:#eeeeee; + + +} + +.tablebar { + text-align:center; + background-color:#eeeeee; + padding:1.5%; + +} + +.aboutsection { + background-color:white; + font-family: 'roboto'; + font-weight:300 !important; + font-size:14px; + letter-spacing:0.05em; + line-height:22px; + width:70%; + margin-left:15%; + padding-bottom:5%; + +} + +.aboutsection p { + font-size: 16px; + text-align:center; + font-weight:300; + line-height: 1.75em; + letter-spacing: 0.1px; + margin-bottom: 0.75em; +} + +.aboutsection a { + text-decoration: underline; + color:#3371e3; + font-weight:400; +} + +.aboutcolumn { + float:left; + width: 50%; + text-align: center; +} + +.docsection1 { + background-color:white; + font-family: 'roboto'; + padding-top:3%; + padding-left:3%; + padding-right:3%; + font-weight:300 !important; + font-size:14px; + letter-spacing:0.05em; + line-height:22px; + width:65%; + margin-left:17%; + +} + +.cards .docsection1 { + display: block !important; + padding: 3% 3% 1%; + text-transform: none; +} + +#persona-definition { + visibility: hidden; +} + +.about-k8s-content { + width: 100%; + float: right; +} + +.docsection1 a { + text-decoration: underline; +} + +.docsection1 p { + font-size: 16px; + font-weight:300; + line-height: 1.75em; + letter-spacing: 0.1px; + margin-bottom: 0.75em; +} + +.docsection1 li { + margin-bottom: 0.75em; + margin-left: 3em; + font-size: 16px; + font-weight:300; + line-height: 1.75em; + letter-spacing: 0.1px; +} + +.docsection1 ol li { + list-style: decimal; +} + +.docsection1 ul li { + list-style: disc; +} + +.docsection1 code { + font-family: Menlo, Monaco, Consolas, 'Courier New', monospace; + + font-size: 90%; + + padding: 2px 4px; + + color: #c7254e; + border-radius: 4px; + background-color: #f9f2f4; +} + +.intro { + background-color:white; + font-family: 'roboto'; + padding:3%; + font-weight:100; + font-size:14px; + letter-spacing:0.05em; + line-height:22px; + width:100%; + margin-left:10%; + +} +.introtext { + float:right; + background-color:white; + font-family: 'roboto'; + padding:3%; + font-weight:100; + font-size:14px; + letter-spacing:0.05em; + line-height:22px; + width:50%; + margin-left:10%; + +} + +.track { + background-color:#3371e3; + font-family: 'roboto'; + padding:1%; + color:white; + font-weight:500; + text-align:center; + text-transform:uppercase; + font-size:16px; + letter-spacing:0.05em; + line-height:22px; + width:100%; + + +} + + +.sections { + background-color:#303030; + font-family: 'roboto'; + padding:1%; + color:white; + font-weight:500; + text-align:center; + text-transform:uppercase; + font-size:18px; + letter-spacing:0.05em; + line-height:22px; + width:100%; + + +} + + +.quotedocs { + line-height:26pt; + font-size:16pt; + +} + + +table { + width: 100%; + border: 1px solid #ccc; + border-spacing: 0; + margin-top: 30px; + margin-bottom: 30px; +} + +thead, tr:nth-child(even) { + background-color: $light-grey; +} + +thead { + background-color: #555; + color: white; +} + +th, td { + padding: 8px; + text-align: left; + margin: 0; + border: 1px solid #ccc; +} + +th { + font-weight: normal; +} diff --git a/docs/admin/high-availability/index.md b/docs/admin/high-availability/building.md similarity index 100% rename from docs/admin/high-availability/index.md rename to docs/admin/high-availability/building.md diff --git a/docs/home/contribute/includes.md b/docs/home/contribute/includes.md index 6167cb06e9..4a6bdba027 100644 --- a/docs/home/contribute/includes.md +++ b/docs/home/contribute/includes.md @@ -103,7 +103,7 @@ kubectl apply -f "https://git.io/weave-kube" ### Example Liquid template code for tabs -Below is the [Liquid](https://shopify.github.io/liquid/) template code for the tabs demo above to illustrate how to specify the contents of each tab. The [`/_includes/tabs.md`](https://git.k8s.io/kubernetes.github.io/_includes/tabs.md) file included at the end then uses those elements to render the actual tab set. +Below is the [Liquid](https://shopify.github.io/liquid/) template code for the tabs demo above to illustrate how to specify the contents of each tab. The [`/_includes/tabs.md`](https://git.k8s.io/website/_includes/tabs.md) file included at the end then uses those elements to render the actual tab set. The following sections break down each of the individual features used. diff --git a/docs/home/index.md b/docs/home/index.md index 34cf0b0296..c065f0823a 100644 --- a/docs/home/index.md +++ b/docs/home/index.md @@ -1,54 +1,161 @@ --- approvers: -- bgrant0607 -- thockin +- chenopis title: Kubernetes Documentation +layout: docsportal +noedit: true +cid: userJourneys +css: /css/style_user_journeys.css +js: /js/user-journeys/home.js, https://use.fontawesome.com/4bcc658a89.js +display_browse_numbers: true --- -Kubernetes documentation can help you set up Kubernetes, learn about the system, or get your applications and workloads running on Kubernetes. To learn the basics of what Kubernetes is and how it works, read "[What is Kubernetes](/docs/concepts/overview/what-is-kubernetes/)". +{% unless page.notitle %} +

    {{ page.title }}

    +{% endunless %} -## Interactive Tutorial +
    + {{ site.data.user-personas | json | replace: "=>", ": " }} +
    -The [Kubernetes Basics interactive tutorial](/docs/tutorials/kubernetes-basics/) lets you try out Kubernetes right out of your web browser, using a virtual terminal. Learn about the Kubernetes system and deploy, expose, scale, and upgrade a containerized application in just a few minutes. +
    +{% assign skip_uj_paths = "migrators" | split: "," %} +{% for path in site.data.user-personas %} + {% if skip_uj_paths contains path[0] %} + {% else %} + {% for persona in path[1] %} +
    + {% assign persona_info = persona[1] %} + {% if persona_info.glossary_id %} + {{ site.data.glossary[persona_info.glossary_id].short-description }} + {% else if persona_info.short_desc %} + {{ persona_info.short_desc }} + {% endif %} +
    + {% endfor %} + {% endif %} +{% endfor %} +
    -## Installing/Setting Up Kubernetes +
    +
    -[Picking the Right Solution](/docs/setup/pick-right-solution/) can help you get a Kubernetes cluster up and running, either for local development, or on your cloud provider of choice. +Kubernetes is an open source system for managing [containerized applications](https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/) +across multiple hosts, providing basic mechanisms for deployment, maintenance, and scaling of applications. +The open source project is hosted by the Cloud Native Computing Foundation ([CNCF](https://www.cncf.io/about)). -## Concepts, Tasks, and Tutorials +
    +[Download Current Release](/docs/imported/release/notes/) +
    +
    +[Supported Doc Versions](/docs/home/supported-doc-versions/) +
    -The Kubernetes documentation contains a number of resources to help you understand and work with Kubernetes. +
    +
    -* [Concepts](/docs/concepts/) provide a deep understanding of how Kubernetes works. -* [Tasks](/docs/tasks/) contain step-by-step instructions for common Kubernetes tasks. -* [Tutorials](/docs/tutorials/) contain detailed walkthroughs of the Kubernetes workflow. +
    -## API and Command References +
    +
    I AM...
    +
    +
    .
    +
    +
    -The [Reference](/docs/reference/) documentation provides complete information on the Kubernetes APIs and the `kubectl` command-line interface. +
    +
    LEVEL
    +
    +
    + +
    +
    + Foundational +
    +
    +
    + +
    -## Tools +
    + Intermediate +
    +
    +
    + +
    +
    + Advanced Topics +
    +
    +
    +
    -The [Tools](/docs/tools/) page contains a list of native and third-party tools for Kubernetes. +
    +
    + I want to... + +
    +
    -## Troubleshooting -The [Troubleshooting](/docs/tasks/debug-application-cluster/troubleshooting) page outlines some resources for troubleshooting and finding help. +
    + -## Supported Versions +
    -Kubernetes has a _X.Y.Z_ versioning scheme, where _X_ is the major version, _Y_ is the minor version, and _Z_ is the patch version. +{% assign sections = "setup,concepts,tasks,tutorials,reference,docs-home" | split: "," %} -Kubernetes is supported for three minor versions at a time. This includes the current release version and two previous versions. +{% for section_id in sections %} -See the [Kubernetes Release](https://github.com/kubernetes/kubernetes/releases) page on GitHub for the latest release information. + {% assign section_data = site.data[section_id] %} + {% assign section_toc = section_data.toc %} -### Minor Versions +
    + -A certain amount of version skew is permissible between master components, node components, and the kubectl client. Nodes may lag master by up to two versions, but not exceed the master version. Clients may lag master by one version and may exceed master up to one version. + {% assign section_toc = section_toc | where_exp: "elt", "elt.title != null" %} + {% assign num_pages = section_toc | size %} + {% assign column_size = num_pages | divided_by: 3.0 | ceil %} -For example, a v1.8 master is expected to be compatible with v1.6, v1.7, and v1.8 nodes, and compatible with v1.7, v1.8, and v1.9 clients. +
    -### Patch Versions + {% for i in (1..num_pages) %} + {% assign index = i | minus: 1 %} + {% assign offset = index | modulo: column_size | plus: 1 %} + {% assign section_elt = section_toc[index] %} -Patch releases often include critical bug fixes. You should be running the latest patch release of a given minor release. + {% if page.display_browse_numbers %} + {% assign browse_number = i | prepend: "0" | slice: -2, 2 | append: " - " %} + {% else %} + {% assign browse_number = "" %} + {% endif %} + + {% if offset == 1 %} +
    + {% endif %} + + {% assign elt_url = section_elt.path | default: section_elt.landing_page | default: "#" %} + {{ section_elt.title | prepend: browse_number }}
    + {% if offset == column_size or i == num_pages %} +
    + {% endif %} + {% endfor %} + +
    + +
    + +{% endfor %} + +
    +
    diff --git a/docs/reference/design-docs/overview.md b/docs/reference/design-docs/overview.md new file mode 100644 index 0000000000..f6e228e426 --- /dev/null +++ b/docs/reference/design-docs/overview.md @@ -0,0 +1,28 @@ +--- +title: Overview of Kubernetes Design Docs +--- + +{% capture overview %} + +Here are some documents that describe aspects of the Kubernetes design: + +{% endcapture %} + +{% capture body %} + +* [Kubernetes Architecture](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/architecture/architecture.md) + +* [Kubernetes Design Overview](https://github.com/kubernetes/kubernetes/tree/release-1.6/docs/design) + +* [Kubernetes Identity and Access Management](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/auth/access.md) + +* [Kubernetes OpenVSwitch GRE/VxLAN networking](https://deploy-preview-6994--kubernetes-io-user-journeys.netlify.com/docs/admin/ovs-networking/) + +* [Security Contexts](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/auth/security_context.md) + +* [Security in Kubernetes](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/auth/security.md) + +{% endcapture %} + + +{% include templates/concept.md %} diff --git a/docs/setup/hosted-solutions/overview.md b/docs/setup/hosted-solutions/overview.md new file mode 100644 index 0000000000..a2c2d30385 --- /dev/null +++ b/docs/setup/hosted-solutions/overview.md @@ -0,0 +1,20 @@ +--- +title: Hosted Kubernetes Solutions +--- + +{% capture overview %} + +TODO + +{% endcapture %} + + +{% capture body %} + +TODO + +{% endcapture %} + + +{% include templates/concept.md %} + diff --git a/docs/tutorials/kubernetes-basics/index.html b/docs/tutorials/kubernetes-basics/index.html index b35e276b97..cd753a5818 100644 --- a/docs/tutorials/kubernetes-basics/index.html +++ b/docs/tutorials/kubernetes-basics/index.html @@ -38,7 +38,7 @@ title: Overview
    -
    +

    Kubernetes Basics Modules

    diff --git a/docs/tutorials/online-training/overview.md b/docs/tutorials/online-training/overview.md new file mode 100644 index 0000000000..eb2c9b849f --- /dev/null +++ b/docs/tutorials/online-training/overview.md @@ -0,0 +1,21 @@ +--- +title: Overview of Kubernetes Online Training +--- + +{% capture overview %} + +Here are some of the sites that offer online training for Kubernetes: + +{% endcapture %} + +{% capture body %} + +* [Scalable Microservices with Kubernetes (Udacity)](https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615) + +* [Introduction to Kubernetes (edX)](https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615) + +{% endcapture %} + + +{% include templates/concept.md %} + diff --git a/docs/user-journeys/users/application-developer/advanced.md b/docs/user-journeys/users/application-developer/advanced.md new file mode 100644 index 0000000000..4d76ef8ca8 --- /dev/null +++ b/docs/user-journeys/users/application-developer/advanced.md @@ -0,0 +1,117 @@ +--- +approvers: +- chenopis +layout: docsportal +css: /css/style_user_journeys.css, https://fonts.googleapis.com/icon?family=Material+Icons +js: https://use.fontawesome.com/4bcc658a89.js, https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js +title: Advanced Topics +track: "USERS › APPLICATION DEVELOPER › ADVANCED" +--- + +{% capture overview %} + +{: .note } +This page assumes that you're familiar with core Kubernetes concepts, and are comfortable deploying your own apps. If not, you should review the [Intermediate App Developer](/docs/user-journeys/users/application-developer/intermediate/){:target="_blank"} topics first. + +After checking out the current page and its linked sections, you should have a better understanding of the following: +* Advanced features that you can leverage in your application +* The various ways of extending the Kubernetes API + +{% endcapture %} + + +{% capture body %} + +## Deploy an application with advanced features + +Now you know the set of API objects that Kubernetes provides. Understanding the difference between a {% glossary_tooltip term_id="daemonset" %} and a {% glossary_tooltip term_id="deployment" %} is oftentimes sufficient for app deployment. That being said, it's also worth familiarizing yourself with Kubernetes's lesser known features. They can be quite powerful when applied to the right use cases. + +#### Container-level features + +As you may know, it's an antipattern to migrate an entire app (e.g. containerized Rails app, MySQL database, and all) into a single Pod. That being said, there are some very useful patterns that go beyond a 1:1 correspondence between a container and its Pod: +* **Sidecar container**: Although your Pod should still have a single main container, you can add a secondary container that acts as a helper (see a [logging example](/docs/concepts/cluster-administration/logging/#using-a-sidecar-container-with-the-logging-agent){:target="_blank"}). Two containers within a single Pod can communicate [via a shared volume](/docs/tasks/access-application-cluster/communicate-containers-same-pod-shared-volume/){:target="_blank"}. +* **Init containers**: *Init containers* run before any of a Pod's *app containers* (such as main and sidecar containers). [Read more](/docs/concepts/workloads/pods/init-containers/){:target="_blank"}, see an [nginx server example](/docs/tasks/configure-pod-container/configure-pod-initialization/){:target="_blank"}, and [learn how to debug these containers](/docs/tasks/debug-application-cluster/debug-init-containers/){:target="_blank"}. + +#### Pod configuration + +Usually, you use {% glossary_tooltip text="labels" term_id="labels" %} and {% glossary_tooltip text="annotations" term_id="annotation" %} to attach metadata to your resources. To inject data into your resources, you'd likely create {% glossary_tooltip text="ConfigMaps" term_id="configmap" %} (for nonconfidential data) or {% glossary_tooltip text="Secrets" term_id="secret" %} (for confidential data). + +Below are some other, lesser-known ways of configuring your resources' Pods: + +* **Taints and Tolerations** - These provide a way for nodes to "attract" or "repel" your Pods. They are often used when an application needs to be deployed onto specific hardware, such as GPUs for scientific computing. [Read more](/docs/concepts/configuration/taint-and-toleration/){:target="_blank"}. +* **Downward API** - This allows your containers to consume information about themselves or the cluster, without being overly coupled to the Kubernetes API server. This can be achieved with [environment variables](/docs/tasks/inject-data-application/environment-variable-expose-pod-information/){:target="_blank"} or [DownwardAPIVolumeFiles](/docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/){:target="_blank"}. +* **Pod Presets** - Normally, to mount runtime requirements (such as environmental variables, ConfigMaps, and Secrets) into a resource, you specify them in the resource's configuration file. [PodPresets](/docs/concepts/workloads/pods/podpreset/){:target="_blank"} allow you to dynamically inject these requirements instead, when the resource is created. For instance, this allows team A to mount any number of new Secrets into the resources created by teams B and C, without requiring action from B and C. [See an example](/docs/tasks/inject-data-application/podpreset/){:target="_blank"}. + +#### Additional API Objects + +{: .note } +Before setting up the following resources, check to see if they are the responsibility of your organization's {% glossary_tooltip text="cluster operators" term_id="cluster-operator" %}. + +* **{% glossary_tooltip text="Horizontal Pod Autoscaler (HPA)" term_id="horizontal-pod-autoscaler" %}** - These resources are a great way to automate the process of scaling your application when CPU usage or other [custom metrics](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/instrumentation/custom-metrics-api.md){:target="_blank"} spike. [See an example](/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough/){:target="_blank"} to understand how HPAs are set up. + +* **Federated cluster objects** - If you are running an application on multiple Kubernetes clusters using *federation*, you need to deploy the federated version of the standard Kubernetes API objects. For reference, check out the guides for setting up [Federated ConfigMaps](/docs/tasks/administer-federation/configmap/){:target="_blank"} and [Federated Deployments](/docs/tasks/administer-federation/deployment/){:target="_blank"}. + +## Extend the Kubernetes API + +Kubernetes is designed with extensibility in mind. If the API resources and features mentioned above are not enough for your needs, there are ways to customize its behavior without having to modify core Kubernetes code. + +#### Understand Kubernetes's default behavior + +Before making any customizations, it's important that you understand the general abstraction behind Kubernetes API objects. Although Deployments and Secrets may seem quite different, the following concepts are true for *any* object: + +* **Kubernetes objects are a way of storing structured data about your cluster.** + In the case of Deployments, this data represents desired state (such as "How many replicas should be running?"), but it can also be general metadata (such as database credentials). +* **Kubernetes objects are modified via the {% glossary_tooltip text="Kubernetes API" term_id="kubernetes-api" %}**. + In other words, you can make `GET` and `POST` requests to a specific resource path (such as `/api/v1/namespaces/default/deployments`) to read and write the corresponding object type. +* **By leveraging the [Controller pattern](/docs/concepts/api-extension/custom-resources/#custom-controllers){:target="_blank"}, Kubernetes objects can be used to enforce desired state**. For simplicity, you can think of the Controller pattern as the following continuous loop: + +
    + 1. Check current state (number of replicas, container image, etc) + 2. Compare current state to desired state + 3. Update if there's a mismatch +
    + + These states are obtained from the Kubernetes API. + + {: .note } + Not all Kubernetes objects need to have a Controller. Though Deployments trigger the cluster to make state changes, ConfigMaps act purely as storage. + +#### Create Custom Resources + +Based on the ideas above, you can define a new [Custom Resource](/docs/concepts/api-extension/custom-resources/#custom-resources){:target="_blank"} that is just as legitimate as a Deployment. For example, you might want to define a `Backup` object for periodic backups, if `CronJobs` don't provide all the functionality you need. + +There are two main ways of setting up custom resources: +1. **Custom Resource Definitions (CRDs)** - This method requires the least amount of implementation work. See [an example](/docs/tasks/access-kubernetes-api/extend-api-custom-resource-definitions/){:target="_blank"}. +2. **API aggregation** - This method requires some [pre-configuration](/docs/tasks/access-kubernetes-api/configure-aggregation-layer/){:target="_blank"} before you actually [set up a separate, extension API server](/docs/tasks/access-kubernetes-api/setup-extension-api-server/){:target="_blank"}. + +Note that unlike standard Kubernetes objects, which rely on the built-in [`kube-controller-manager`](/docs/reference/generated/kube-controller-manager/){:target="_blank"}, you'll need to write and run your own [custom controllers](https://github.com/kubernetes/sample-controller){:target="_blank"}. + +You may also find the following info helpful: +* [How to know if custom resources are right for your use case](/docs/concepts/api-extension/custom-resources/#should-i-use-a-configmap-or-a-custom-resource){:target="_blank"} +* [How to decide between CRDs and API aggregation](/docs/concepts/api-extension/custom-resources/#choosing-a-method-for-adding-custom-resources){:target="_blank"} + +#### Service Catalog + +If you want to consume or provide complete services (rather than individual resources), **{% glossary_tooltip text="Service Catalog" term_id="service-catalog" %}** provides a [specification](https://github.com/openservicebrokerapi/servicebroker){:target="_blank"} for doing so. These services are registered using {% glossary_tooltip text="Service Brokers" term_id="service-broker" %} (see [some examples](https://github.com/openservicebrokerapi/servicebroker/blob/master/gettingStarted.md#example-service-brokers){:target="_blank"}). + +If you do not have a {% glossary_tooltip text="cluster operator" term_id="cluster-operator" %} to manage the installation of Service Catalog, you can do so using [Helm](/docs/tasks/service-catalog/install-service-catalog-using-helm/){:target="_blank"} or an [installer binary](/docs/tasks/service-catalog/install-service-catalog-using-sc/){:target="_blank"}. + + +## Explore additional resources + +#### References + +The following topics are also useful for building more complex applications: +* [Other points of extensibility within Kubernetes](/docs/concepts/overview/extending/){:target="_blank"} - A conceptual overview of where you can hook into the Kubernetes architecture. +* [Kubernetes Client Libraries](/docs/reference/client-libraries/){:target="_blank"} - Useful for building apps that need to interact heavily with the Kubernetes API. + +#### What's next +Congrats on completing the Application Developer user journey! You've covered the majority of features that Kubernetes has to offer. What now? + +* If you'd like to suggest new features or keep up with the latest developments around Kubernetes app development, consider joining a {% glossary_tooltip term_id="sig" %} such as [SIG Apps](https://github.com/kubernetes/community/tree/master/sig-apps){:target="_blank"}. + +* If you are interested in learning more about the inner workings of Kubernetes (e.g. networking), consider checking out the [Cluster Operator journey](/docs/user-journeys/users/cluster-operator/foundational/){:target="_blank"}. + +{% endcapture %} + +{% include templates/user-journey-content.md %} diff --git a/docs/user-journeys/users/application-developer/foundational.md b/docs/user-journeys/users/application-developer/foundational.md new file mode 100644 index 0000000000..ff2126bd23 --- /dev/null +++ b/docs/user-journeys/users/application-developer/foundational.md @@ -0,0 +1,232 @@ +--- +approvers: +- chenopis +layout: docsportal +css: /css/style_user_journeys.css, https://fonts.googleapis.com/icon?family=Material+Icons +js: https://use.fontawesome.com/4bcc658a89.js, https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js +title: Foundational +track: "USERS › APPLICATION DEVELOPER › FOUNDATIONAL" +--- + +{% capture overview %} +If you're a developer looking to run applications on Kubernetes, this page and its linked topics can help you get started with the fundamentals. Though this page primarily describes development workflows, [the subsequent page in the series](/docs/home/?path=users&persona=app-developer&level=intermediate){:target="_blank"} cover more advanced, production setups. + +{: .note } +**A quick note**
    This app developer "user journey" is *not* a comprehensive overview of Kubernetes. It focuses more on *what* you develop, test, and deploy to Kubernetes, rather than *how* the underlying infrastructure works.

    Though it's possible for a single person to manage both, in many organizations, it’s common to assign the latter to a dedicated {% glossary_tooltip text="cluster operator" term_id="cluster-operator" %}. + +{% endcapture %} + + +{% capture body %} +## Get started with a cluster + +#### Web-based Environment + +If you're brand new to Kubernetes and simply want to experiment without setting up a full development environment, *web-based environments* are a good place to start: + +* [Kubernetes Basics](/docs/tutorials/kubernetes-basics/#basics-modules){:target="_blank"} - Introduces you to six common Kubernetes workflows. Each section walks you through browser-based, interactive exercises complete with their own Kubernetes environment. + +* [Katacoda](https://www.katacoda.com/courses/kubernetes/playground){:target="_blank"} - The playground equivalent of the environment used in *Kubernetes Basics* above. Katacoda also provides [more advanced tutorials](https://www.katacoda.com/courses/kubernetes/){:target="_blank"}, such as "Liveness and Readiness Healthchecks". + + +* [Play with Kubernetes](http://labs.play-with-k8s.com/){:target="_blank"} - A less structured environment than the *Katacoda* playground, for those who are more comfortable with Kubernetes concepts and want to explore further. It supports the ability to spin up multiple nodes. + + +#### Minikube (Recommended) + +Web-based environments are easy to access, but are not persistent. If you want to continue exploring Kubernetes in a workspace that you can come back to and change, *Minikube* is a good option. + +Minikube can be installed locally, and runs a simple, single-node Kubernetes cluster inside a virtual machine (VM). This cluster is fully functioning and contains all core Kubernetes components. Many developers have found this sufficient for local application development. + +* [Install Minikube](/docs/tasks/tools/install-minikube/){:target="_blank"}. + +* [Install kubectl](/docs/tasks/tools/install-kubectl/){:target="_blank"}. ({% glossary_tooltip text="What is kubectl?" term_id="kubectl" %}) + +* *(Optional)* [Install Docker](/docs/setup/independent/install-kubeadm/#installing-docker){:target="_blank"} if you plan to run your Minikube cluster as part of a local development environment. + + Minikube includes a Docker daemon, but if you're developing applications locally, you'll want an independent Docker instance to support your workflow. This allows you to create {% glossary_tooltip text="containers" term_id="container" %} and push them to a container registry. + + {: .note } + Version 1.12 is recommended for full compatibility with Kubernetes, but a few other versions are tested and known to work. + + +You can get basic information about your cluster with the commands `kubectl cluster-info` and `kubectl get nodes`. However, to get a good idea of what's really going on, you need to deploy an application to your cluster. This is covered in the next section. + +## Deploy an application + +#### Basic Workloads + +The following examples demonstrate the fundamentals of deploying Kubernetes apps: + * **Stateless Apps**: [Deploy a simple nginx server](/docs/tasks/run-application/run-stateless-application-deployment/){:target="_blank"}. + + * **Stateful Apps**: [Deploy a MySQL database](/docs/tasks/run-application/run-single-instance-stateful-application/){:target="_blank"}. + +Through these deployment tasks, you'll gain familiarity with the following: +* General concepts + + * **Configuration files** - Written in YAML or JSON, these files describe the desired state of your application in terms of Kubernetes API objects. A file can include one or more API object descriptions (*manifests*). (See [the example YAML](/docs/tasks/run-application/run-stateless-application-deployment/#creating-and-exploring-an-nginx-deployment) from the stateless app). + + * **{% glossary_tooltip text="Pods" term_id="pod" %}** - This is the basic unit for all of the workloads you run on Kubernetes. These workloads, such as *Deployments* and *Jobs*, are composed of one or more Pods. To learn more, check out [this explanation of Pods and Nodes](/docs/tutorials/kubernetes-basics/explore-intro/){:target="_blank"}. + +* Common workload objects + * **{% glossary_tooltip text="Deployment" term_id="deployment" %}** - The most common way of running *X* copies (Pods) of your application. Supports rolling updates to your container images. + + * **{% glossary_tooltip text="Service" term_id="deployment" %}** - By itself, a Deployment can't receive traffic. Setting up a Service is one of the simplest ways to configure a Deployment to receive and loadbalance requests. Depending on the `type` of Service used, these requests can come from external client apps or be limited to apps within the same cluster. A Service is tied to a specific Deployment using {% glossary_tooltip text="label" term_id="labels" %} selection. + +The subsequent topics are also useful to know for basic application deployment. + +#### Metadata + +You can also specify custom information about your Kubernetes API objects by attaching key/value fields. Kubernetes provides two ways of doing this: + +* **{% glossary_tooltip text="Labels" term_id="labels" %}** - Identifying metadata that you can use to sort and select sets of API objects. Labels have many applications, including the following: + + * *To keep the right number of replicas (Pods) running in a Deployment.* The specified label (`app: nginx` in the [stateless app example](/docs/tasks/run-application/run-stateless-application-deployment/#creating-and-exploring-an-nginx-deployment){:target="_blank"}) is used to stamp the Deployment's newly created Pods (as the value of the `spec.template.labels` configuration field), and to query which Pods it already manages (as the value of `spec.selector.matchLabels`). + + * *To tie a Service to a Deployment* using the `selector` field, which is demonstrated in the [stateful app example](/docs/tasks/run-application/run-single-instance-stateful-application/#deploy-mysql){:target="_blank"}. + + * *To look for specific subset of Kubernetes objects, when you are using {% glossary_tooltip text="kubectl" term_id="kubectl" %}.* For instance, the command `kubectl get deployments --selector=app=nginx` only displays Deployments from the nginx app. + +* **{% glossary_tooltip text="Annotations" term_id="annotation" %}** - Nonidentifying metadata that you can attach to API objects, usually if you don't intend to use them for sorting purposes. These often serve as supplementary data about an app's deployment, such as Git SHAs, PR numbers, or URL pointers to observability dashboards. + + +#### Storage + +You'll also want to think about storage. Kubernetes provides different types of storage API objects for different storage needs: + +* **{% glossary_tooltip text="Volumes" term_id="volume" %}** - Let you define storage for your cluster that is tied to the lifecycle of a Pod. It is therefore more persistent than container storage. Learn [how to configure volume storage](/docs/tasks/configure-pod-container/configure-volume-storage/){:target="_blank"}, or [read more about about volume storage](/docs/concepts/storage/volumes/){:target="_blank"}. + +* **{% glossary_tooltip text="PersistentVolumes" term_id="persistent-volume" %}** and **{% glossary_tooltip text="PersistentVolumeClaims" term_id="persistent-volume-claim" %}** - Let you define storage at the cluster level. Typically a cluster operator defines the PersistentVolume objects for the cluster, and cluster users (application developers, you) define the PersistentVolumeClaim objects that your application requires. Learn [how to set up persistent storage for your cluster](/docs/tasks/configure-pod-container/configure-persistent-volume-storage/){:target="_blank"} or [read more about persistent volumes](/docs/concepts/storage/persistent-volumes/){:target="_blank"}. + +#### Configuration + +To avoid having to unnecessarily rebuild your container images, you should decouple your application's *configuration data* from the code required to run it. There are a couple ways of doing this, which you should choose according to your use case: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ApproachType of DataHow it's mountedExample
    Using a manifest's container definitionNon-confidentialEnvironment variableCommand-line flag
    Using {% glossary_tooltip text="ConfigMaps" term_id="configmap" %}Non-confidentialEnvironment variable OR local filenginx configuration
    Using {% glossary_tooltip text="Secrets" term_id="secret" %}ConfidentialEnvironment variable OR local fileDatabase credentials
    + +{: .note } +If you have any data that you want to keep private, you should be using a Secret. Otherwise there is nothing stopping that data from being exposed to malicious users. + +## Understand basic Kubernetes architecture + +As an app developer, you don't need to know everything about the inner workings of Kubernetes, but you may find it helpful to understand it at a high level. + +#### What Kubernetes offers + +Say that your team is deploying an ordinary Rails application. You've run some calculations and determined that you need five instances of your app running at any given time, in order to handle external traffic. + +If you're not running Kubernetes or a similar automated system, you might find the following scenario familiar: + +
    + +1. One instance of your app (a complete machine instance or just a container) goes down. +2. Because your team has monitoring set up, this pages the person on call. +3. The on-call person has to go in, investigate, and manually spin up a new instance. +4. Depending how your team handles DNS/networking, the on-call person may also need to also update the service discovery mechanism to point at the IP of the new Rails instance rather than the old. + +
    + +This process can be tedious and also inconvenient, especially if (2) happens in the early hours of the morning! + +**If you have Kubernetes set up, however, manual intervention is not as necessary.** The Kubernetes [control plane](/docs/concepts/overview/components/#master-components){:target="_blank"}, which runs on your cluster's master node, will gracefully handle (3) and (4) on your behalf. As a a result, Kubernetes is often referred to as a *self-healing* system. + +There are two key parts of the control plane that facilitate this behavior: the *Kubernetes API server* and the *Controllers*. + +#### Kubernetes API Server + +For Kubernetes to be useful, it needs to know *what* sort of cluster state you want it to maintain. Your YAML of JSON *configuration files* declare this desired state in terms of one or more API objects, such as {% glossary_tooltip text="Deployments" term_id="deployment" %}. To make updates to your cluster's state, you submit these files to the {% glossary_tooltip text="Kubernetes API" term_id="kubernetes-api" %} server (`kube-apiserver`). + +Examples of state include but are not limited to the following: + +* The applications or other workloads to run +* The container images for your applications and workloads +* Allocation of network and disk resources + +Note that the API server is just the gateway, and that object data is actually stored in a highly available datastore called [*etcd*](https://github.com/coreos/etcd){:target="_blank"}. For most intents and purposes, though, you can focus on the API server. Most reads and writes to cluster state take place as API requests. + +You can read more about the Kubernetes API [here](/docs/concepts/overview/working-with-objects/kubernetes-objects/){:target="_blank"}. + +#### Controllers + +Once you’ve declared your desired state through the Kubernetes API, the *controllers* work to make the cluster’s current state match this desired state. + +The standard controller processes are [`kube-controller-manager`](/docs/reference/generated/kube-controller-manager/){:target="_blank"} and [`cloud-controller-manager`](/docs/concepts/overview/components/#cloud-controller-manager){:target="_blank"}, but you can also write your own controllers as well. + +All of these controllers implement a *control loop*. For simplicity, you can think of this as the following: + +
    + 1. What is the current state of the cluster (X)? + 2. What is the desired state of the cluster (Y)? + 3. X == Y ? + * `true` - Do nothing. + * `false` - Perform tasks to get to Y (such as starting or restarting containers, +or scaling the number of replicas of a given application).
    + + *(Return to 1)* +
    + +By continuously looping, these controllers ensure the cluster can pick up new updates and avoid drifting from the desired state. These ideas are covered in more detail [here](https://kubernetes.io/docs/concepts/){:target="_blank"}. + +## Additional resources + +The Kubernetes documentation is rich in detail. Here's a curated list of resources to help you start digging deeper. + +### Basic concepts + +* [More about the components that run Kubernetes](/docs/concepts/overview/components/){:target="_blank"} + +* [Understanding Kubernetes objects](/docs/concepts/overview/working-with-objects/kubernetes-objects/){:target="_blank"} + +* [More about Node objects](/docs/concepts/architecture/nodes/){:target="_blank"} + +* [More about Pod objects](/docs/concepts/workloads/pods/pod-overview/){:target="_blank"} + +### Tutorials + +* [Kubernetes Basics](/docs/tutorials/kubernetes-basics/){:target="_blank"} + +* [Hello Minikube](/docs/tutorials/stateless-application/hello-minikube/){:target="_blank"} *(Runs on Mac only)* + +* [Kubernetes 101](/docs/user-guide/walkthrough/){:target="_blank"} + +* [Kubernetes 201](/docs/user-guide/walkthrough/k8s201/){:target="_blank"} + +* [Kubernetes object management](/docs/tutorials/object-management-kubectl/object-management/){:target="_blank"} + +### What's next +If you feel fairly comfortable with the topics on this page and want to learn more, check out the following user journeys: +* [Intermediate App Developer](/docs/user-journeys/users/application-developer/intermediate/){:target="_blank"} - Dive deeper, with the next level of this journey. +* [Foundational Cluster Operator](/docs/user-journeys/users/cluster-operator/foundational/){:target="_blank"} - Build breadth, by exploring other journeys. + +{% endcapture %} + + +{% include templates/user-journey-content.md %} diff --git a/docs/user-journeys/users/application-developer/intermediate.md b/docs/user-journeys/users/application-developer/intermediate.md new file mode 100644 index 0000000000..c973b3c248 --- /dev/null +++ b/docs/user-journeys/users/application-developer/intermediate.md @@ -0,0 +1,157 @@ +--- +approvers: +- chenopis +layout: docsportal +css: /css/style_user_journeys.css, https://fonts.googleapis.com/icon?family=Material+Icons +js: https://use.fontawesome.com/4bcc658a89.js, https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js +title: Intermediate +track: "USERS › APPLICATION DEVELOPER › INTERMEDIATE" +--- +{% assign reference_docs_url = '/docs/reference/generated/kubernetes-api/' | append: site.latest %} + +{% capture overview %} + +{: .note } + This page assumes that you've experimented with Kubernetes before. At this point, you should have basic experience interacting with a Kubernetes cluster (locally with Minikube, or elsewhere), and using API objects like Deployments to run your applications.

    If not, you should review the [Beginner App Developer](/docs/user-journeys/users/application-developer/foundational/){:target="_blank"} topics first. + +After checking out the current page and its linked sections, you should have a better understanding of the following: +* Additional Kubernetes workload patterns, beyond Deployments +* What it takes to make a Kubernetes application production-ready +* Community tools that can improve your development workflow + +{% endcapture %} + + +{% capture body %} + +## Learn additional workload patterns + +As your Kubernetes use cases become more complex, you may find it helpful to familiarize yourself with more of the toolkit that Kubernetes provides. [Basic workload](/docs/user-journeys/users/application-developer/foundational/#section-2){:target="_blank"} objects like {% glossary_tooltip text="Deployments" term_id="deployment" %} make it straightforward to run, update, and scale applications, but they are not ideal for every scenario. + +The following API objects provide functionality for additional workload types, whether they are *persistent* or *terminating*. + +#### Persistent Workloads + +Like Deployments, these API objects run indefinitely on a cluster until they are manually terminated. They are best for long-running applications. + +* **{% glossary_tooltip text="StatefulSets" term_id="statefulset" %}** - Like Deployments, StatefulSets allow you to specify that a certain number of replicas should be running for your application. + + {: .note } + It's misleading to say that Deployments can't handle stateful workloads. Using {% glossary_tooltip text="PersistentVolumes" term_id="persistent-volume" %}, you can persist data beyond the lifecycle of any individual Pod in your Deployment. + + However, StatefulSets can provide stronger guarantees about "recovery" behavior than Deployments. StatefulSets maintain a sticky, stable identity for their Pods. The following table provides some concrete examples of what this might look like: + + | | Deployment | StatefulSet | + |---|---|---| + | **Example Pod name** | `example-b1c4` | `example-0` | + | **When a Pod dies** | Reschedule on *any* node, with new name `example-a51z` | Reschedule on same node, as `example-0` | + | **When a node becomes unreachable** | Pod(s) are scheduled onto new node, with new names | Pod(s) are marked as "Unknown", and aren't rescheduled unless the Node object is forcefully deleted | + + In practice, this means that StatefulSets are best suited for scenarios where replicas (Pods) need to coordinate their workloads in a strongly consistent manner. Guaranteeing an identity for each Pod helps avoid [split brain](https://en.wikipedia.org/wiki/Split-brain_(computing)){:target="_blank"} side-effects in the case when a node becomes unreachable ([network partition](https://en.wikipedia.org/wiki/Network_partition){:target="_blank"}). This makes StatefulSets a great fit for distributed datastores like Cassandra or Elasticsearch. + + +* **{% glossary_tooltip text="DaemonSets" term_id="daemonset" %}** - DaemonSets run continuously on every node in your cluster, even as nodes are added or swapped in. This guarantee is particularly useful for setting up global behavior across your cluster, such as: + + * Logging and monitoring, from applications like `fluentd` + * Network proxy or [service mesh](https://www.linux.com/news/whats-service-mesh-and-why-do-i-need-one){:target="_blank"} + + +#### Terminating Workloads + +In contrast to Deployments, these API objects are finite. They stop once the specified number of Pods have completed successfully. + +* **{% glossary_tooltip text="Jobs" term_id="job" %}** - You can use these for one-off tasks like running a script or setting up a work queue. These tasks can be executed sequentially or in parallel. These tasks should be relatively independent, as Jobs do not support closely communicating parallel processes. [Read more about Job patterns](/docs/concepts/workloads/controllers/jobs-run-to-completion/#job-patterns){:target="_blank"}. + +* **{% glossary_tooltip text="CronJobs" term_id="cronjob" %}** - These are similar to Jobs, but allow you to schedule their execution for a specific time or for periodic recurrence. You might use CronJobs to send reminder emails or to run backup jobs. They are set up with a similar syntax as *crontab*. + +#### Other Resources + +For more info, you can check out [a list of additional Kubernetes resource types](/docs/reference/kubectl/overview/#resource-types){:target="_blank"} as well as the [API reference docs]({{ reference_docs_url }}){:target="_blank"}. + +There may be additional features not mentioned here that you may find useful, which are covered in the [full Kubernetes documentation](/docs/home/?path=browse){:target="_blank"}. + +## Deploy a production-ready workload + +The beginner tutorials on this site, such as the [Guestbook app](/docs/tutorials/stateless-application/guestbook/){:target="_blank"}, are geared towards getting workloads up and running on your cluster. This prototyping is great for building your intuition around Kubernetes! However, in order to reliably and securely promote your workloads to production, you'll need to follow some additional best practices. + +#### Declarative configuration + +You are likely interacting with your Kubernetes cluster via {% glossary_tooltip text="kubectl" term_id="kubectl" %}. kubectl can be used to debug the current state of your cluster (such as checking the number of nodes), or to modify live Kubernetes objects (such as updating a workload's replica count with `kubectl scale`). + +When using kubectl to update your Kubernetes objects, it's important to be aware that different commands correspond to different approaches: +* [Purely imperative](/docs/tutorials/object-management-kubectl/imperative-object-management-command/){:target="_blank"} +* [Imperative with local configuration files](/docs/tutorials/object-management-kubectl/imperative-object-management-configuration/){:target="_blank"} (typically YAML) +* [Declarative with local configuration files](/docs/tutorials/object-management-kubectl/declarative-object-management-configuration/){:target="_blank"} (typically YAML) + +There are pros and cons to each approach, though the declarative approach (such as `kubectl apply -f`) may be most helpful in production. With this approach, you rely on local YAML files as the source of truth about your desired state. This enables you to version control your configuration, which is helpful for code reviews and audit tracking. + +For additional configuration best practices, familiarize yourself with [this guide](/docs/concepts/configuration/overview/){:target="_blank"}. + +#### Security + +You may be familiar with the *principle of least privilege*---if you are too generous with permissions when writing or using software, the negative effects of a compromise can escalate out of control. Would you be cautious handing out `sudo` privileges to software on your OS? If so, you should be just as careful when granting your workload permissions to the {% glossary_tooltip text="Kuberetes API" term_id="kubernetes-api" %} server! The API server is the gateway for your cluster's source of truth; it provides endpoints to read or modify cluster state. + +You (or your {% glossary_tooltip text="cluster operator" term_id="cluster-operator" %}) can lock down API access with the following: +* **{% glossary_tooltip text="ServiceAccounts" term_id="service-account" %}** - An "identity" that your Pods can be tied to +* **{% glossary_tooltip text="RBAC" term_id="rbac" %}** - One way of granting your ServiceAccount explicit permissions + +For even more comprehensive reading about security best practices, consider checking out the following topics: +* [Authentication](/docs/admin/authentication/){:target="_blank"} (Is the user who they say they are?) +* [Authorization](/docs/admin/authorization/){:target="_blank"} (Does the user actually have permissions to do what they're asking?) + +#### Resource isolation and management + +If your workloads are operating in a *multi-tenant* environment with multiple teams or projects, your container(s) are not necessarily running alone on their node(s). They are sharing node resources with other containers which you do not own. + +Even if your cluster operator is managing the cluster on your behalf, it is helpful to be aware of the following: +* **{% glossary_tooltip text="Namespaces" term_id="namespace" %}**, used for isolation +* **[Resource quotas](/docs/concepts/policy/resource-quotas/){:target="_blank"}**, which affect what your team's workloads can use +* **[Memory](/docs/tasks/configure-pod-container/assign-memory-resource/){:target="_blank"} and [CPU](/docs/tasks/configure-pod-container/assign-cpu-resource/){:target="_blank"} requests**, for a given Pod or container +* **[Monitoring](/docs/tasks/debug-application-cluster/resource-usage-monitoring/){:target="_blank"}**, both on the cluster level and the app level + +This list may not be completely comprehensive, but many teams have existing processes that take care of all this. If this is not the case, you'll find the Kubernetes documentation fairly rich in detail. + +## Improve your dev workflow with tooling + +As an app developer, you'll likely encounter the following tools in your workflow. + +#### kubectl + +`kubectl` is a command-line tool that allows you to easily read or modify your Kubernetes cluster. It provides convenient, short commands for common operations like scaling app instances and getting node info. How does kubectl do this? It's basically just a user-friendly wrapper for making API requests. It's written using [client-go](https://github.com/kubernetes/client-go/#client-go){:target="_blank"}, the Go library for the Kubernetes API. + +To learn about the most commonly used kubectl commands, check out the [kubectl cheatsheet](/docs/reference/kubectl/cheatsheet/){:target="_blank"}. It explains topics such as the following: +* [kubeconfig files](/docs/tasks/access-application-cluster/configure-access-multiple-clusters/){:target="_blank"} - Your kubeconfig file tells kubectl what cluster to talk to, and can reference multiple clusters (such as dev and prod). +* [The various output formats available](/docs/reference/kubectl/cheatsheet/#formatting-output){:target="_blank"} - This is useful to know when you are using `kubectl get` to list information about certain API objects. + +* [The JSONPath output format](/docs/reference/kubectl/jsonpath/){:target="_blank"} - This is related to the output formats above. JSONPath is especially useful for parsing specific subfields out of `kubectl get` output (such as the URL of a {% glossary_tooltip text="Service" term_id="service" %}). + +* [`kubectl run` vs `kubectl apply`](/docs/reference/kubectl/conventions/){:target="_blank"} - This ties into the [declarative configuration](#declarative-configuration) discussion in the previous section. + +For the full list of kubectl commands and their options, check out [the reference guide](/docs/reference/generated/kubectl/kubectl-commands){:target="_blank"}. + +#### Helm + +To leverage pre-packaged configurations from the community, you can use **{% glossary_tooltip text="Helm charts" term_id="helm-chart" %}**. + +Helm charts package up YAML configurations for specific apps like Jenkins and Postgres. You can then install and run these apps on your cluster with minimal extra configuration. This approach makes the most sense for "off-the-shelf" components which do not require much custom implementation logic. + +For writing your own Kubernetes app configurations, there is a [thriving ecosystem of tools](https://docs.google.com/a/heptio.com/spreadsheets/d/1FCgqz1Ci7_VCz_wdh8vBitZ3giBtac_H8SBw4uxnrsE/edit?usp=drive_web){:target="_blank"} that you may find useful. + +## Explore additional resources + +#### References +Now that you're fairly familiar with Kubernetes, you may find it useful to browse the following reference pages. Doing so provides a high level view of what other features may exist: + +* [Commonly used `kubectl` commands](/docs/reference/kubectl/cheatsheet/){:target="_blank"} +* [Kubernetes API reference]({{ reference_docs_url }}){:target="_blank"} +* [Standardized Glossary](/docs/reference/glossary/){:target="_blank"} + +In addition, [the Kubernetes blog](http://blog.kubernetes.io/){:target="_blank"} often has helpful posts on Kubernetes design patterns and case studies. + +#### What's next +If you feel fairly comfortable with the topics on this page and want to learn more, check out the following user journeys: +* [Advanced App Developer](/docs/user-journeys/users/application-developer/advanced/){:target="_blank"} - Dive deeper, with the next level of this journey. +* [Foundational Cluster Operator](/docs/user-journeys/users/cluster-operator/foundational/){:target="_blank"} - Build breadth, by exploring other journeys. +{% endcapture %} + +{% include templates/user-journey-content.md %} diff --git a/docs/user-journeys/users/cluster-operator/advanced.md b/docs/user-journeys/users/cluster-operator/advanced.md new file mode 100644 index 0000000000..763d8c6869 --- /dev/null +++ b/docs/user-journeys/users/cluster-operator/advanced.md @@ -0,0 +1,84 @@ +--- +approvers: +- chenopis +layout: docsportal +css: /css/style_user_journeys.css, https://fonts.googleapis.com/icon?family=Material+Icons +js: https://use.fontawesome.com/4bcc658a89.js, https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js +title: Advanced Topics +track: "USERS > CLUSTER OPERATOR > ADVANCED" +--- + +{% capture overview %} + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id felis non enim faucibus lacinia. Aliquam massa mauris, interdum a ex ut, sagittis rutrum nulla. In pellentesque est at molestie fringilla. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec eu mi at velit lacinia venenatis ac nec sem. In volutpat pellentesque dui ut commodo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis sollicitudin eleifend felis non facilisis. Pellentesque leo urna, congue id auctor non, varius a nunc. Duis ultrices, odio ut hendrerit suscipit, nisi mauris dignissim mauris, nec bibendum ante neque ut augue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam condimentum libero sit amet rutrum fermentum. Proin posuere condimentum odio. Aenean volutpat, ex vel tincidunt tincidunt, massa odio condimentum lectus, vel iaculis libero dolor in nisi. + +{% endcapture %} + + + +{% capture body %} +## Setup federated clusters + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id felis non enim faucibus lacinia. Aliquam massa mauris, interdum a ex ut, sagittis rutrum nulla. In pellentesque est at molestie fringilla. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec eu mi at velit lacinia venenatis ac nec sem. In volutpat pellentesque dui ut commodo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis sollicitudin eleifend felis non facilisis. Pellentesque leo urna, congue id auctor non, varius a nunc. Duis ultrices, odio ut hendrerit suscipit, nisi mauris dignissim mauris, nec bibendum ante neque ut augue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam condimentum libero sit amet rutrum fermentum. Proin posuere condimentum odio. Aenean volutpat, ex vel tincidunt tincidunt, massa odio condimentum lectus, vel iaculis libero dolor in nisi. + +Curabitur bibendum tempor mi, vel lacinia nisi vulputate ac. Nulla dignissim consectetur nisl nec tincidunt. Etiam pharetra facilisis sapien, non gravida velit fermentum sed. Ut ac ultrices nunc, in vestibulum urna. Suspendisse accumsan euismod felis, sit amet rhoncus neque volutpat luctus. Aliquam tincidunt pellentesque mauris, sed tempus diam. Mauris in elit eget justo tempor suscipit. + +Aenean suscipit arcu ac leo tincidunt tempus. Donec maximus tellus libero, ac ullamcorper magna lobortis ac. Integer mollis nisl vitae magna gravida, nec ornare ex consectetur. Sed mattis tincidunt nisi, at consequat tellus malesuada non. Integer vel semper nisi, ut fringilla velit. Nam felis ex, congue non dui vitae, sollicitudin convallis turpis. Phasellus porttitor maximus turpis, in varius nibh fermentum aliquam. Cras finibus lacus non diam porttitor porttitor. Nulla fringilla sagittis nibh nec condimentum. Duis egestas mauris nec dolor hendrerit ullamcorper sit amet in mi. Phasellus sollicitudin justo diam. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id felis non enim faucibus lacinia. Aliquam massa mauris, interdum a ex ut, sagittis rutrum nulla. In pellentesque est at molestie fringilla. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec eu mi at velit lacinia venenatis ac nec sem. In volutpat pellentesque dui ut commodo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis sollicitudin eleifend felis non facilisis. Pellentesque leo urna, congue id auctor non, varius a nunc. Duis ultrices, odio ut hendrerit suscipit, nisi mauris dignissim mauris, nec bibendum ante neque ut augue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam condimentum libero sit amet rutrum fermentum. Proin posuere condimentum odio. Aenean volutpat, ex vel tincidunt tincidunt, massa odio condimentum lectus, vel iaculis libero dolor in nisi. + +Curabitur bibendum tempor mi, vel lacinia nisi vulputate ac. Nulla dignissim consectetur nisl nec tincidunt. Etiam pharetra facilisis sapien, non gravida velit fermentum sed. Ut ac ultrices nunc, in vestibulum urna. Suspendisse accumsan euismod felis, sit amet rhoncus neque volutpat luctus. Aliquam tincidunt pellentesque mauris, sed tempus diam. Mauris in elit eget justo tempor suscipit. + +Aenean suscipit arcu ac leo tincidunt tempus. Donec maximus tellus libero, ac ullamcorper magna lobortis ac. Integer mollis nisl vitae magna gravida, nec ornare ex consectetur. Sed mattis tincidunt nisi, at consequat tellus malesuada non. Integer vel semper nisi, ut fringilla velit. Nam felis ex, congue non dui vitae, sollicitudin convallis turpis. Phasellus porttitor maximus turpis, in varius nibh fermentum aliquam. Cras finibus lacus non diam porttitor porttitor. Nulla fringilla sagittis nibh nec condimentum. Duis egestas mauris nec dolor hendrerit ullamcorper sit amet in mi. Phasellus sollicitudin justo diam. + +## Deploy an application with advanced features + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id felis non enim faucibus lacinia. Aliquam massa mauris, interdum a ex ut, sagittis rutrum nulla. In pellentesque est at molestie fringilla. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec eu mi at velit lacinia venenatis ac nec sem. In volutpat pellentesque dui ut commodo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis sollicitudin eleifend felis non facilisis. Pellentesque leo urna, congue id auctor non, varius a nunc. Duis ultrices, odio ut hendrerit suscipit, nisi mauris dignissim mauris, nec bibendum ante neque ut augue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam condimentum libero sit amet rutrum fermentum. Proin posuere condimentum odio. Aenean volutpat, ex vel tincidunt tincidunt, massa odio condimentum lectus, vel iaculis libero dolor in nisi. + +Curabitur bibendum tempor mi, vel lacinia nisi vulputate ac. Nulla dignissim consectetur nisl nec tincidunt. Etiam pharetra facilisis sapien, non gravida velit fermentum sed. Ut ac ultrices nunc, in vestibulum urna. Suspendisse accumsan euismod felis, sit amet rhoncus neque volutpat luctus. Aliquam tincidunt pellentesque mauris, sed tempus diam. Mauris in elit eget justo tempor suscipit. + +Aenean suscipit arcu ac leo tincidunt tempus. Donec maximus tellus libero, ac ullamcorper magna lobortis ac. Integer mollis nisl vitae magna gravida, nec ornare ex consectetur. Sed mattis tincidunt nisi, at consequat tellus malesuada non. Integer vel semper nisi, ut fringilla velit. Nam felis ex, congue non dui vitae, sollicitudin convallis turpis. Phasellus porttitor maximus turpis, in varius nibh fermentum aliquam. Cras finibus lacus non diam porttitor porttitor. Nulla fringilla sagittis nibh nec condimentum. Duis egestas mauris nec dolor hendrerit ullamcorper sit amet in mi. Phasellus sollicitudin justo diam. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id felis non enim faucibus lacinia. Aliquam massa mauris, interdum a ex ut, sagittis rutrum nulla. In pellentesque est at molestie fringilla. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec eu mi at velit lacinia venenatis ac nec sem. In volutpat pellentesque dui ut commodo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis sollicitudin eleifend felis non facilisis. Pellentesque leo urna, congue id auctor non, varius a nunc. Duis ultrices, odio ut hendrerit suscipit, nisi mauris dignissim mauris, nec bibendum ante neque ut augue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam condimentum libero sit amet rutrum fermentum. Proin posuere condimentum odio. Aenean volutpat, ex vel tincidunt tincidunt, massa odio condimentum lectus, vel iaculis libero dolor in nisi. + +Curabitur bibendum tempor mi, vel lacinia nisi vulputate ac. Nulla dignissim consectetur nisl nec tincidunt. Etiam pharetra facilisis sapien, non gravida velit fermentum sed. Ut ac ultrices nunc, in vestibulum urna. Suspendisse accumsan euismod felis, sit amet rhoncus neque volutpat luctus. Aliquam tincidunt pellentesque mauris, sed tempus diam. Mauris in elit eget justo tempor suscipit. + +Aenean suscipit arcu ac leo tincidunt tempus. Donec maximus tellus libero, ac ullamcorper magna lobortis ac. Integer mollis nisl vitae magna gravida, nec ornare ex consectetur. Sed mattis tincidunt nisi, at consequat tellus malesuada non. Integer vel semper nisi, ut fringilla velit. Nam felis ex, congue non dui vitae, sollicitudin convallis turpis. Phasellus porttitor maximus turpis, in varius nibh fermentum aliquam. Cras finibus lacus non diam porttitor porttitor. Nulla fringilla sagittis nibh nec condimentum. Duis egestas mauris nec dolor hendrerit ullamcorper sit amet in mi. Phasellus sollicitudin justo diam. + +## Explore advanced topics + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id felis non enim faucibus lacinia. Aliquam massa mauris, interdum a ex ut, sagittis rutrum nulla. In pellentesque est at molestie fringilla. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec eu mi at velit lacinia venenatis ac nec sem. In volutpat pellentesque dui ut commodo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis sollicitudin eleifend felis non facilisis. Pellentesque leo urna, congue id auctor non, varius a nunc. Duis ultrices, odio ut hendrerit suscipit, nisi mauris dignissim mauris, nec bibendum ante neque ut augue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam condimentum libero sit amet rutrum fermentum. Proin posuere condimentum odio. Aenean volutpat, ex vel tincidunt tincidunt, massa odio condimentum lectus, vel iaculis libero dolor in nisi. + +Curabitur bibendum tempor mi, vel lacinia nisi vulputate ac. Nulla dignissim consectetur nisl nec tincidunt. Etiam pharetra facilisis sapien, non gravida velit fermentum sed. Ut ac ultrices nunc, in vestibulum urna. Suspendisse accumsan euismod felis, sit amet rhoncus neque volutpat luctus. Aliquam tincidunt pellentesque mauris, sed tempus diam. Mauris in elit eget justo tempor suscipit. + +Aenean suscipit arcu ac leo tincidunt tempus. Donec maximus tellus libero, ac ullamcorper magna lobortis ac. Integer mollis nisl vitae magna gravida, nec ornare ex consectetur. Sed mattis tincidunt nisi, at consequat tellus malesuada non. Integer vel semper nisi, ut fringilla velit. Nam felis ex, congue non dui vitae, sollicitudin convallis turpis. Phasellus porttitor maximus turpis, in varius nibh fermentum aliquam. Cras finibus lacus non diam porttitor porttitor. Nulla fringilla sagittis nibh nec condimentum. Duis egestas mauris nec dolor hendrerit ullamcorper sit amet in mi. Phasellus sollicitudin justo diam. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id felis non enim faucibus lacinia. Aliquam massa mauris, interdum a ex ut, sagittis rutrum nulla. In pellentesque est at molestie fringilla. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec eu mi at velit lacinia venenatis ac nec sem. In volutpat pellentesque dui ut commodo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis sollicitudin eleifend felis non facilisis. Pellentesque leo urna, congue id auctor non, varius a nunc. Duis ultrices, odio ut hendrerit suscipit, nisi mauris dignissim mauris, nec bibendum ante neque ut augue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam condimentum libero sit amet rutrum fermentum. Proin posuere condimentum odio. Aenean volutpat, ex vel tincidunt tincidunt, massa odio condimentum lectus, vel iaculis libero dolor in nisi. + +Curabitur bibendum tempor mi, vel lacinia nisi vulputate ac. Nulla dignissim consectetur nisl nec tincidunt. Etiam pharetra facilisis sapien, non gravida velit fermentum sed. Ut ac ultrices nunc, in vestibulum urna. Suspendisse accumsan euismod felis, sit amet rhoncus neque volutpat luctus. Aliquam tincidunt pellentesque mauris, sed tempus diam. Mauris in elit eget justo tempor suscipit. + +Aenean suscipit arcu ac leo tincidunt tempus. Donec maximus tellus libero, ac ullamcorper magna lobortis ac. Integer mollis nisl vitae magna gravida, nec ornare ex consectetur. Sed mattis tincidunt nisi, at consequat tellus malesuada non. Integer vel semper nisi, ut fringilla velit. Nam felis ex, congue non dui vitae, sollicitudin convallis turpis. Phasellus porttitor maximus turpis, in varius nibh fermentum aliquam. Cras finibus lacus non diam porttitor porttitor. Nulla fringilla sagittis nibh nec condimentum. Duis egestas mauris nec dolor hendrerit ullamcorper sit amet in mi. Phasellus sollicitudin justo diam. + +## Additional resources + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id felis non enim faucibus lacinia. Aliquam massa mauris, interdum a ex ut, sagittis rutrum nulla. In pellentesque est at molestie fringilla. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec eu mi at velit lacinia venenatis ac nec sem. In volutpat pellentesque dui ut commodo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis sollicitudin eleifend felis non facilisis. Pellentesque leo urna, congue id auctor non, varius a nunc. Duis ultrices, odio ut hendrerit suscipit, nisi mauris dignissim mauris, nec bibendum ante neque ut augue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam condimentum libero sit amet rutrum fermentum. Proin posuere condimentum odio. Aenean volutpat, ex vel tincidunt tincidunt, massa odio condimentum lectus, vel iaculis libero dolor in nisi. + +Curabitur bibendum tempor mi, vel lacinia nisi vulputate ac. Nulla dignissim consectetur nisl nec tincidunt. Etiam pharetra facilisis sapien, non gravida velit fermentum sed. Ut ac ultrices nunc, in vestibulum urna. Suspendisse accumsan euismod felis, sit amet rhoncus neque volutpat luctus. Aliquam tincidunt pellentesque mauris, sed tempus diam. Mauris in elit eget justo tempor suscipit. + +Aenean suscipit arcu ac leo tincidunt tempus. Donec maximus tellus libero, ac ullamcorper magna lobortis ac. Integer mollis nisl vitae magna gravida, nec ornare ex consectetur. Sed mattis tincidunt nisi, at consequat tellus malesuada non. Integer vel semper nisi, ut fringilla velit. Nam felis ex, congue non dui vitae, sollicitudin convallis turpis. Phasellus porttitor maximus turpis, in varius nibh fermentum aliquam. Cras finibus lacus non diam porttitor porttitor. Nulla fringilla sagittis nibh nec condimentum. Duis egestas mauris nec dolor hendrerit ullamcorper sit amet in mi. Phasellus sollicitudin justo diam. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id felis non enim faucibus lacinia. Aliquam massa mauris, interdum a ex ut, sagittis rutrum nulla. In pellentesque est at molestie fringilla. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec eu mi at velit lacinia venenatis ac nec sem. In volutpat pellentesque dui ut commodo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis sollicitudin eleifend felis non facilisis. Pellentesque leo urna, congue id auctor non, varius a nunc. Duis ultrices, odio ut hendrerit suscipit, nisi mauris dignissim mauris, nec bibendum ante neque ut augue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam condimentum libero sit amet rutrum fermentum. Proin posuere condimentum odio. Aenean volutpat, ex vel tincidunt tincidunt, massa odio condimentum lectus, vel iaculis libero dolor in nisi. + +Curabitur bibendum tempor mi, vel lacinia nisi vulputate ac. Nulla dignissim consectetur nisl nec tincidunt. Etiam pharetra facilisis sapien, non gravida velit fermentum sed. Ut ac ultrices nunc, in vestibulum urna. Suspendisse accumsan euismod felis, sit amet rhoncus neque volutpat luctus. Aliquam tincidunt pellentesque mauris, sed tempus diam. Mauris in elit eget justo tempor suscipit. + +Aenean suscipit arcu ac leo tincidunt tempus. Donec maximus tellus libero, ac ullamcorper magna lobortis ac. Integer mollis nisl vitae magna gravida, nec ornare ex consectetur. Sed mattis tincidunt nisi, at consequat tellus malesuada non. Integer vel semper nisi, ut fringilla velit. Nam felis ex, congue non dui vitae, sollicitudin convallis turpis. Phasellus porttitor maximus turpis, in varius nibh fermentum aliquam. Cras finibus lacus non diam porttitor porttitor. Nulla fringilla sagittis nibh nec condimentum. Duis egestas mauris nec dolor hendrerit ullamcorper sit amet in mi. Phasellus sollicitudin justo diam. + +{% endcapture %} + +{% include templates/user-journey-content.md %} diff --git a/docs/user-journeys/users/cluster-operator/foundational.md b/docs/user-journeys/users/cluster-operator/foundational.md new file mode 100644 index 0000000000..2b12c8e076 --- /dev/null +++ b/docs/user-journeys/users/cluster-operator/foundational.md @@ -0,0 +1,95 @@ +--- +approvers: +- chenopis +layout: docsportal +css: /css/style_user_journeys.css, https://fonts.googleapis.com/icon?family=Material+Icons +js: https://use.fontawesome.com/4bcc658a89.js, https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js +title: Foundational +track: "USERS › CLUSTER OPERATOR › FOUNDATIONAL" +--- + +{% capture overview %} + +If you want to learn how to get started managing and operating a Kubernetes cluster, this page and the linked topics will introduce you to foundational concepts and tasks. +The concepts introduce you to a Kubernetes cluster and key concepts to understand and manage it, favoring focusing on the cluster itself over the software running within the cluster. + +{% endcapture %} + + + +{% capture body %} + +## Get an overview of Kubernetes + +If you have not already done so, start your understanding by reading through [What is Kubernetes?](/docs/concepts/overview/what-is-kubernetes/), which will introduce you to a number of basic concepts and terms. + +Kubernetes is quite flexible, and can a cluster can be run in a wide variety of places. You can interact with Kubernetes entirely on your own laptop or local development machine with it running within a virtual machine. Kubernetes can also run on virtual machines hosted either locally or in a cloud provider, and you can run a kubernetes cluster on bare metal. + +A cluster is made up of one or more [Nodes](/docs/concepts/architecture/nodes/); where a node is a physical or virtual machine. If there are more than one node in your cluster, then each of the nodes are connected with a [cluster network](/docs/concepts/cluster-administration/networking/). Regardless of how many nodes, all Kubernetes clusters will generally have the same components, which are described in [Kubernetes Components](/docs/concepts/overview/components). + +## Learn about Kubernetes basics + +A good way to become familiar with how to manage and operate a Kubernetes cluster is by setting them up. +One of the most compact ways to experiment with a cluster is [Installing and using Minikube](/docs/tasks/tools/install-minikube/). +Minikube is a command line tool for setting up and running a single-node cluster within a virtual machine on your local laptop or development computer. Minikube is even available through your browser at the [Katacoda Kubernetes Playground](https://www.katacoda.com/courses/kubernetes/playground). +Katacoda provides a browser-based connection to a single-node cluster, using minikube behind the scenes, to support a number of tutorials to explore Kubernetes. You can also leverage the web-based [Play with Kubernetes](http://labs.play-with-k8s.com/) to the same ends - a temporary cluster to play with in on the web. + +You interact with Kubernetes either through a dashboard, an API, or using a command-line tool (such as `kubectl`) that interacts with the Kubernetes API. +Be familiar with how to [Organizing Cluster Access](/docs/concepts/configuration/organize-cluster-access-kubeconfig/) with configuration files. +The Kubernetes API exposes a number of resources that provide the building blocks and abstractions that are used to run software on Kubernetes. +Learn more about these resources at [Understanding Kubernetes Objects](/docs/concepts/overview/kubernetes-objects) +These resources are covered in a number of articles within the Kubernetes documentation. + +* [Pod Overview](/docs/concepts/workloads/pods/pod-overview/) + * [Pods](/docs/concepts/workloads/pods/pod/) + * [ReplicaSets](/docs/concepts/workloads/controllers/replicaset/) + * [Deployments](/docs/concepts/workloads/controllers/deployment/) + * [Garbage Collection](/docs/concepts/workloads/controllers/garbage-collection/) + * [Container Images](/docs/concepts/containers/images/) + * [Container Environment Variables](docs/concepts/containers/container-environment-variables/) +* [Labels and Selectors](/docs/concepts/overview/working-with-objects/labels/) +* [Namespaces](/docs/concepts/overview/working-with-objects/namespaces/) + * [Namespaces Walkthrough](/docs/tasks/administer-cluster/namespaces-walkthrough/) +* [Services](/docs/concepts/services-networking/service/) +* [Annotations](/docs/concepts/overview/working-with-objects/annotations/) +* [ConfigMaps](/docs/tasks/configure-pod-container/configmap/) +* [Secrets](/docs/concepts/configuration/secret/) + +As a cluster operator you may not need to use all these resources although you should be familiar with them to understand how the cluster is working and being used. +There are a number of additional resources that you should be aware of, some listed under [Intermediate Resources](/docs/user-journeys/cluster-operator/intermediate#section-1). +You should also be familiar with [how to manage kubernetes resources](/docs/concepts/cluster-administration/manage-deployment/). + +## Get information about my cluster + +You can [access clusters using the cluster API](/docs/tasks/administer-cluster/access-cluster-api/). +If you are not already familiar, run through the tutorial to [view your cluster's Pods and Nodes](/docs/tutorials/kubernetes-basics/explore-intro/). +Using kubectl, you can retrieve information very quickly. +To get basic information about the nodes in your cluster run the command `kubectl get nodes`. +You can get more detailed information for the same nodes with the command `kubectl describe nodes`. +You can see the status of the core of kubernetes with the command `kubectl get componentstatuses`. + +Some additional resources for getting information about your cluster and how it is operating include: + +* [Tools for Monitoring Compute, Storage, and Network Resources](/docs/tasks/debug-application-cluster/resource-usage-monitoring/) +* [Core metrics pipeline](/docs/tasks/debug-application-cluster/core-metrics-pipeline/) + * [Metrics](/docs/concepts/cluster-administration/controller-metrics/) + +## Explore additional resources + +### Tutorials + +* [Kubernetes Basics](/docs/tutorials/kubernetes-basics/) +* [Kubernetes 101](/docs/user-guide/walkthrough/) - kubectl command line interface and Pods +* [Kubernetes 201](/docs/user-guide/walkthrough/k8s201/) - labels, deployments, services, and health checking +* [Configuring Redis with a ConfigMap](/docs/tutorials/configuration/configure-redis-using-configmap/) +* Stateless Applications + * [Deploying PHP Guestbook with Redis](/docs/tutorials/stateless-application/guestbook/) + * [Expose an External IP address to access an application](/docs/tutorials/stateless-application/expose-external-ip-address/) + +{% endcapture %} + +{% include templates/user-journey-content.md %} diff --git a/docs/user-journeys/users/cluster-operator/intermediate.md b/docs/user-journeys/users/cluster-operator/intermediate.md new file mode 100644 index 0000000000..f7fbeeedd2 --- /dev/null +++ b/docs/user-journeys/users/cluster-operator/intermediate.md @@ -0,0 +1,108 @@ +--- +approvers: +- chenopis +layout: docsportal +css: /css/style_user_journeys.css, https://fonts.googleapis.com/icon?family=Material+Icons +js: https://use.fontawesome.com/4bcc658a89.js, https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js +title: Intermediate +track: "USERS > CLUSTER OPERATOR > INTERMEDIATE" +--- + +{% capture overview %} + +If you're a cluster operator looking to expand your grasp of Kubernetes, this page and its linked topics extend the information provided on the [foundational cluster operator page](/docs/user-journeys/users/cluster-operator/foundational). Here we'll get you going on key Kubernetes tasks that you need to manage a complete production cluster. + +{% endcapture %} + +{% capture body %} + +## Work with Ingress, Networking, Storage, Workloads + +Introductions to Kubernetes typically discuss simpler stateless applications. As you move into fuller dev, testing, and production environments, you need to consider more complex cases: + +Communication: Ingress and Networking + +* [Ingress](/docs/concepts/services-networking/ingress/) + +Storage: Volumes and PersistentVolumes + +* [Volumes](/docs/concepts/storage/volumes/) +* [Persistent Volumes](/docs/concepts/storage/persistent-volumes/) + +Workloads + +* [DaemonSets](/docs/concepts/workloads/controllers/daemonset/) +* [Stateful Sets](/docs/concepts/workloads/controllers/statefulset/) +* [Jobs](/docs/concepts/workloads/controllers/jobs-run-to-completion/) +* [CronJobs](/docs/concepts/workloads/controllers/cron-jobs/) + +Pods + +* [Pod Lifecycle](/docs/concepts/workloads/pods/pod-lifecycle/) + * [Init Containers](/docs/concepts/workloads/pods/init-containers/) + * [Pod Presets](/docs/concepts/workloads/pods/podpreset/) + * [Container Lifecycle Hooks](docs/concepts/containers/container-lifecycle-hooks/) + +And how Pods work with scheduling, priority, disruptions: + +* [Taints and Tolerations](/docs/concepts/configuration/taint-and-toleration/) +* [Pods and Priority](/docs/concepts/configuration/pod-priority-preemption/) +* [Disruptions](/docs/concepts/workloads/pods/disruptions/) +* [Assigning Pods to Nodes](docs/concepts/configuration/assign-pod-node/) +* [Managing compute resources for containers](docs/concepts/configuration/manage-compute-resources-container/) +* [Configuration best practices](docs/concepts/configuration/overview/) + +## Implement security best practices + +Securing your cluster includes work beyond the scope of Kubernetes itself. (TODO: identify major items) + +In Kubernetes, you configure access control: + +* [Controlling Access to the Kubernetes API](docs/admin/accessing-the-api/) +* [Authenticating](/docs/admin/authentication/) +* [Using Admission Controllers](/docs/admin/admission-controllers/) + +You also configure authorization. That is, you determine not just how users and services authenticate to the API server, or whether they have access, but also what resources they have access to. Role-based access control (RBAC) is currently the recommended mechanism for controlling authorization to Kubernetes resources. Other authorization modes are available for more specific use cases. + +* [Authorization Overview](/docs/admin/authorization/) +* [Using RBAC Authorization](/docs/admin/authorization/rbac/) + +You should create Secrets to hold sensitive data such as passwords, tokens, or keys. Be aware, however, that there are limitations to the protections that a Secret can provide. See [the Risks section of the Secrets documentation](/docs/concepts/configuration/secret/#risks). + + + +## Implement custom logging and monitoring + +Monitoring the health and state of your cluster is important. Collecting metrics, logging, and providing access to that information are common needs. Kubernetes provides some basic logging structure, but you will almost certainly want to use additional tools to help aggregate and analyze log data. + +Start with the [basics on Kubernetes logging](/docs/concepts/cluster-administration/logging/) to understand how containers do logging and common patterns. You will probably want to add something to gather and aggregate those logs. See the following topics: + +* [Logging Using Elasticsearch and Kibana](/docs/tasks/debug-application-cluster/logging-elasticsearch-kibana/) +* [Logging Using Stackdriver](/docs/tasks/debug-application-cluster/logging-stackdriver/) + +Like log aggregation, many clusters utilize additional software to help capture metrics and display them. There is an overview at of tools at [Tools for Monitoring Compute, Storage, and Network Resources](/docs/tasks/debug-application-cluster/resource-usage-monitoring/). +Kubernetes also supports a [core metrics pipeline](/docs/tasks/debug-application-cluster/core-metrics-pipeline/) which can be used by Horizontal Pod Autoscaler with custom metrics. + +[Prometheus](https://prometheus.io/), which is another CNCF project, is a common choice to support capture and temporary collection of metrics. There are several options to installing Prometheus, including using the [stable/prometheus](https://github.com/kubernetes/charts/tree/master/stable/prometheus) [helm](https://helm.sh/) chart, and CoreOS provides a [prometheus operator](https://github.com/coreos/prometheus-operator) and [kube-prometheus](https://github.com/coreos/prometheus-operator/tree/master/contrib/kube-prometheus) which adds on Grafana dashboards and common configurations. + +A common configuration on [minikube](https://github.com/kubernetes/minikube) and some kubernetes clusters used [Heapster](https://github.com/kubernetes/heapster) +[along with InfluxDB and Grafana](https://github.com/kubernetes/heapster/blob/master/docs/influxdb.md). +There is a [walkthrough of how to install this configuration in your cluster](https://blog.kublr.com/how-to-utilize-the-heapster-influxdb-grafana-stack-in-kubernetes-for-monitoring-pods-4a553f4d36c9). +As of Kubernetes 1.9, the [sig-instrumentation](https://github.com/kubernetes/community/tree/master/sig-instrumentation) team is shifting away from an all-inclusive monitoring pattern with heapster, described in [Prometheus vs. Heapster vs. Kubernetes Metrics APIs](https://brancz.com/2018/01/05/prometheus-vs-heapster-vs-kubernetes-metrics-apis/). + +Hosted data analytics services such as [Datadog](https://docs.datadoghq.com/integrations/kubernetes/) also offer Kubernetes integration. + +## Additional resources + +Cluster Administration: + +* [Troubleshoot Clusters](/docs/tasks/debug-application-cluster/debug-cluster/) +* [Debug Pods and Replication Controllers](/docs/tasks/debug-application-cluster/debug-pod-replication-controller/) +* [Debug Init Containers](/docs/tasks/debug-application-cluster/debug-init-containers/) +* [Debug Stateful Sets](/docs/tasks/debug-application-cluster/debug-stateful-set/) +* [Debug Applications](/docs/tasks/debug-application-cluster/debug-application/) +* [Using explorer to investigate your cluster](https://github.com/kubernetes/examples/blob/master/staging/explorer/README.md) + +{% endcapture %} + +{% include templates/user-journey-content.md %} diff --git a/images/journeys/placeholder.png b/images/journeys/placeholder.png new file mode 100644 index 0000000000000000000000000000000000000000..bc45d90becdb42ab8ccc5188582a4c3c3e4344c3 GIT binary patch literal 2011 zcmd6o`&*J}8pqi*ZBjS4(U#0S&^u;I%1&g2nyGj|1|(0UW~Cw}T54t`Ds-4Jt&s-t zP$Cw2L}#>xbzE)1X1rX(B5jBq#x=(<+eATS3>DCQ=EwaH=7;BfuIs(u>v^yH`~7^M zyPQmlu-odi6$XRZ;UjS|V3&b)cZ(Hxk{sj|7|i-19v2*UrG9=QIcIwcymac!-Tmaq zr1V|sPFZO&8ymXO^kn=0CLq6eNOqf}&G@4Z1D3?b=^*@_j2AL zAtfeMwIPArwX+5pT`30dok=iBl+G?nr zCf+GPUX9%0P%1c5veu+fC`_^%xere(`FyH8mb#j`<^~L=B zMu{Y_`dJ2zd-yN1dXYTGdFVn4MZI`jNsk|C2#l?Sb{X5}j8cZA;g|XEPmIOawSa%G z23!AJMh#YRz1iuj(k_WaVrqNo;kDy-R3)yqwicYgRzG@`WX~~q4CPfp<>8H-w;1Na zUcROe)bN$a-;AQ2x!l?>dF;cN2Y?W6ThM%xa{iK1XK=K<7BIr|u0j*<9bC6RAhRMU z;!@%56X!K=-y(t{ABn{Sg8w+Cd8kgO!e`gkl9m}MTp1MfjKySjCUi812%daS-&{rw z&ERQBt$T*@9KtxxL&pT<(bunQ`X)NHTJ3Zp(#pk&ll>^0d(zWEs-jRgX2@Fl!e8H< z2A0KnWn%d=r}CX6xH4R@{n@On+kvvJC`wLScFUD@Q!hB+m1cR`D6NDzY7ArX?N<*y ze>#g!GLSbIIMEL@@xAMAqnfdigl!xZYT_!SCS)cl8y=zi}i;IdndU7Ub zKYmPTj>*)D-yaV|Bnr?($1u*CS(@}+4J1@$&uX=#!L&Sq=I@WNI1wVV&TGr2!MtzP z>U3gjY-spE;9ndjx|AepjqjFfZko# zEFw$YgsBe1@zEO_EYLwE~H#mZd2dKLEhWLI6l6<%JV((KDGL;*39-8Vbl4Z z4u)i1;aw~yyz>P`diO;jh3BmVGin`=TY4gW({_kQ+#I~nUt8&LJFI*B9G}nMXFK5f zad#q>LZP%LbYT7c70b)rKceC)p$-OS140xYRW)nXi$9+rW%PK_yOU-wVpqeDjL#Vu zf&BXVrv`Iz^iSD-2l*t&QgeQo049V-xz>&WvQ$|;z-fa1t1nNLMn4(EaC~9%?4QPM%}5%(gWIUZsT8H#_k4P2#+Jzb9)~zi_Oeaa$0P4RM^Gqsan2>o z%Jei2ylIZXH@+;>dlLTrg@~&1F7BVCNKTI2iQ2#9bss7pekTHu0y}?1J>SsjSQLB9 zx-UHFXs0Me)uGft7$Wf@gr6>K0GQFce{nt6F4nuLJj`drp*u2q#^rauPVFtDmV;L9 zE$M!|HPfozRre{=amWB59UKgkqSINTfah`oaQMZ@$nw;{&FY|I;=t&}m*n0PGbAqp z4kB!~yoTkoohrhm)``pbBa?;#7ORUP=^Pjc^;;l>K!nPPs;PwqvQ*b~&KWSqR-1O< zR`N}bwGcZ!zC+oo`*wva>bS9&i(hA6p;ZNiLjC)UkvCAbhh|GvD$I4aZ+?6C<&5Fx zgHO)<4JUe#eSfO2vqd4q@?S)qziWOB@?$oaFe6sy(h+4;Chqgrxqp47>AR)Iuw0)m zE-v=n{76v!Q_Lep4!c^+ghKhlv|Au!1=!sc;d=mAo^MvFDSg;kHxz6NCNH9OxA8#!E c->_V_urU*eHbwi~!O(``!$`Q!kki-y2a0BrWdHyG literal 0 HcmV?d00001 diff --git a/js/user-journeys/home.js b/js/user-journeys/home.js new file mode 100644 index 0000000000..23f6f54e57 --- /dev/null +++ b/js/user-journeys/home.js @@ -0,0 +1,312 @@ +$( document ).ready(function() { + // UI defaults, used if page is loaded without other params + var defaults = { + path: 'users', + persona: 'app-developer', + level: 'foundational' + }; + // Top-level path types + var pathTypes = [ + 'users', + 'contributors', + 'migrators', + 'browse', + 'about' + ]; + // Paths that do not adhere to the actual user journey UI + var specialJourneyPaths = [ + 'browse', + 'about', + ]; + // Load persona JSON data structure + var info = JSON.parse($('#user-persona-data').html()); + + var containerDivs = [ + '.applicationDeveloperContainer', + '.infobarWrapper', + '#cardWrapper', + '#browsedocsWrapper', + '#aboutWrapper' + ]; + + // Stateful wrapper for a regular hash. Stores parameters AND keeps them in + // sync with the URL state. + var urlParamHash = function() { + var paramHash = {}; + + // Initialize internal params based on URL state + function init() { + var sPageURL = decodeURIComponent(window.location.search.substring(1)), + sURLVariables = sPageURL.split('&'), + sParameterName, + i; + + paramHash = {}; + for (i = 0; i < sURLVariables.length; i++) { + sParameterName = sURLVariables[i].split('='); + if (sParameterName[0] != "" && sParameterName[1] != "") + paramHash[sParameterName[0]] = sParameterName[1]; + } + return paramHash; // for visibility + } + + // Update both internal params and URL state + function set(key, value) { + if (value == null) { + delete paramHash[key]; + } else { + paramHash[key] = value; + } + + var urlWithoutQuery = window.location.href.split('?')[0]; + var urlHash = window.location.hash; + window.history.pushState(null,null, urlWithoutQuery + "?" + $.param(paramHash) + window.location.hash); + return paramHash; // for visibility + } + + // Get value from hash based on key + function get(key) { + return paramHash[key]; + } + + // Return number of elements in hash + function numElts() { + return Object.keys(paramHash).length; + } + + return { + init: init, + set: set, + get: get, + numElts: numElts, + }; + }(); + + // Create persona buttons in "I am..." section, e.g. Application Developer + function buildCards() { + for (var c in info) { + var card = document.createElement('div'); + card.className += "card_" + c; + + for (var i in info[c]) { + var button = document.createElement('div'); + button.className += 'buttons'; + button.setAttribute('data-button', i); + button.innerText = info[c][i]["name"]; + card.appendChild(button); + } + $('.cards').append(card); + } + } + + // Generate HTML for info links + function getInfoLinkHtml( + i = 1 //enumeration index for link id + , linkLabel = "Missing link label." //info link text + , linkUrl = "/docs/home/" //link to content + , linkIcon = "fa-ellipsis-h" //icon preceding info link text + ) { + var html = ''; + + /* + html template: +
    +
    + +
    +
    Missing link label.
    +
    + + defaults: + label: "Missing link label." + icon: "fa-ellipsis-h" + url: "docs.html" + */ + + html = '
    ' + + '
    ' + + '' + + '
    ' + + '
    '+linkLabel+'
    ' + + '
    '; + + return html; + } + + // Set links in the "I want to..." section, e.g. Setup a development environment + function setInfoData() { + var path = urlParamHash.get("path"); + var persona = urlParamHash.get("persona"); + var level = urlParamHash.get("level"); + + // info links specific to type/button/level + var contentArray = (typeof info[path][persona] !== 'undefined') + ? info[path][persona][level] + : [{ + label: 'Please select a role or persona in the "I AM..." section above.', + url: '#cardWrapper', + icon: 'fa-exclamation' + }]; + + //clear contents of #infobarLinks div + $('#infobarLinks').empty(); + //process and add each info link + for(i = 1; i <= contentArray.length; i++) { + var content = contentArray[i-1]; + + //append link to the end of the div + $('#infobarLinks').append(getInfoLinkHtml(i,content.label,content.url,content.icon)); + } + $('.infobarWrapper').css('visibility', 'visible'); + } + + // Hide persona wizard section if Browse Docs button is clicked + function toggleSections(path){ + for (i in containerDivs) { + if (!isSpecialJourney(path)) { + $(containerDivs[i]).show(); + } else { + $(containerDivs[i]).hide(); + } + } + + if (!isSpecialJourney(path)) { + $('.card_' + path).show(); + // TBD: Add code to set button to default to first in path list? + } else if (path == "browse") { + $('#browsedocsWrapper').show(); + } else if (path == "about") { + $('#aboutWrapper').show(); + } + } + + function isSpecialJourney(path) { + return (specialJourneyPaths.indexOf(path) != -1); + } + + // Click handler for high-level user journey paths ("Users", "Contributors", etc) + function handlePathClick(targetElt, fromPageload) { + // (1) Update stored state if necessary + var type = urlParamHash.get("path"); + if (!fromPageload) { + for (var i in pathTypes) { + var pathType = pathTypes[i]; + if (RegExp(pathType).test(targetElt.className)) { + type = pathType; + } + } + urlParamHash.set("path", type); + urlParamHash.set("persona", null); + urlParamHash.set("level", null); + } + + // (2) HTML behavior + $('.navButton').removeClass("keepShow"); + $(targetElt).addClass("keepShow"); + $('.cards > div').hide(); + // Hide or show user journeys if "Browse Docs is selected" + toggleSections(type); + } + + // Click handler + scroll for persona buttons in "I am..." section + // NOTE: ALL persona clicks also set a level. + function handlePersonaClick(targetElt, fromPageload, noScroll) { + // (1) Update stored state if necessary + if (!fromPageload) { + var persona = targetElt.getAttribute('data-button'); + urlParamHash.set('persona', persona); + } + // Use default level if not specified, in order to display the proper + // path-persona-level content + if (urlParamHash.get('level') == null) { + urlParamHash.set('level', defaults.level); + } + + // (2) HTML behavior + $('.buttons').removeClass('selected'); + $(targetElt).addClass('selected'); + // Update header to display new persona and level + var cardText = targetElt.innerText; + $('#subTitle').text(cardText); + handleLevelClick($('.level[data-name="' + urlParamHash.get('level') + '"]')[0], fromPageload); + // Scroll to user journey content + if (!noScroll) { + $('html,body').animate({ scrollTop: $("#subTitle").offset().top },'slow'); + } + } + + function handleLevelClick(targetElt, fromPageload) { + // (1) Update stored state if necessary + var level = targetElt.getAttribute('data-name'); + if (!fromPageload) { + urlParamHash.set('level', level); + } + + // (2) HTML behavior + $('.level').removeClass('selected'); + $(targetElt).addClass('selected'); + // Data loading to display the right content + setInfoData(); + } + + function showPersonaDefinition(targetElt) { + var persona = targetElt.getAttribute('data-button'); + + console.log($('.persona-def-data[data-name="' + persona + '"]')[0].innerHTML); + $("#persona-definition").html($('.persona-def-data[data-name="' + persona + '"]')[0].innerHTML); + $("#persona-definition").css("visibility", "visible"); + } + + function attachCardEvents() { + // Set up click handling for all paths ("Users", "Contributors", etc) + $('.paths .navButton').on('click', function(e) { + handlePathClick(e.currentTarget); + }); + // Set up click handling for personas ("Application Developer", etc) + $('.cards .buttons').on('click', function(e) { + handlePersonaClick(e.currentTarget); + }); + // Show persona definitions when hovering over card + $('.cards .buttons').hover( function(e) { + showPersonaDefinition(e.currentTarget); + }, function(e) { + $("#persona-definition").css("visibility", "hidden"); + $("#persona-definition").html("."); + }); + // Set up click handling for levels ("Foundational", "Intermediate", etc) + $('.level').on('click', function(e) { + handleLevelClick(e.currentTarget); + }); + } + + // Set up state based on URL query parameters or defaults + function setupCardState() { + // Initialize stored state + urlParamHash.init(); + var noScroll = urlParamHash.numElts() == 0; + for (key in defaults) { + if (!isSpecialJourney(urlParamHash.get('path')) && urlParamHash.get(key) == undefined) { + urlParamHash.set(key, defaults[key]); + } + } + // Update UI + handlePathClick($('.paths .' + urlParamHash.get('path'))[0], true); + if (!isSpecialJourney(urlParamHash.get('path'))) { + setTimeout(function() { + var elt = $('div[data-button="' + urlParamHash.get('persona') + '"]')[0]; + handlePersonaClick(elt, true, noScroll); + }, 200); + } + } + + function main() { + // Set up UI + buildCards(); + attachCardEvents(); + // Set up and display user journey state + setupCardState(); + } + + // What actually executes on page load + main(); +}); diff --git a/js/user-journeys/toc.js b/js/user-journeys/toc.js new file mode 100644 index 0000000000..dc527bc550 --- /dev/null +++ b/js/user-journeys/toc.js @@ -0,0 +1,30 @@ +$( document ).ready(function() { + function scrollToHash(hash) { + if (hash.length > 0) { + $('html, body').animate({ + scrollTop: $(`#${hash}`).offset().top + }, 500); + } + } + + $('#content h2').each(function(index) { + var title = $(this).text(); + var id = $(this).attr("id"); + + // inject headers into user journeys table-of-contents (buttons) + $("#user-journeys-toc").append(`
    ${index + 1}. ${title}
    `) + + // replace content headers with styled banners + $(this).replaceWith(`


    ${index + 1}
      ${title}
    `) + }); + + $('div#user-journeys-toc a').each(function() { + $(this).click(function() { + var target = $(this).attr("href").replace("#", ""); + scrollToHash(target); + }); + }); + + // jump to section in URL now that anchors are created + scrollToHash(window.location.hash.substr(1)); +}); From a2449a9b22111bd3bad263fae75f7e3117fc0b25 Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Tue, 30 Jan 2018 13:35:04 -0800 Subject: [PATCH 015/329] Add chenopis back to approvers --- OWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/OWNERS b/OWNERS index 3431420ffd..6e3f7880d9 100644 --- a/OWNERS +++ b/OWNERS @@ -9,3 +9,4 @@ approvers: - bradamant3 - steveperry-53 - zacharysarah +- chenopis From 49f548ada82e4ba9e09dffd0f9b070f2d47bc80d Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Wed, 31 Jan 2018 05:55:06 +0800 Subject: [PATCH 016/329] Fix typo (#7141) --- .../configuration/manage-compute-resources-container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/configuration/manage-compute-resources-container.md b/docs/concepts/configuration/manage-compute-resources-container.md index 189d2c845f..f23d55e2bc 100644 --- a/docs/concepts/configuration/manage-compute-resources-container.md +++ b/docs/concepts/configuration/manage-compute-resources-container.md @@ -70,7 +70,7 @@ CPU is always requested as an absolute quantity, never as a relative quantity; Limits and requests for `memory` are measured in bytes. You can express memory as a plain integer or as a fixed-point integer using one of these suffixes: -E, P, T, G, M, k. You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, +E, P, T, G, M, K. You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, Mi, Ki. For example, the following represent roughly the same value: ```shell From f0c44257e65ee3a2216b845118465a2bc04562a8 Mon Sep 17 00:00:00 2001 From: leahnp Date: Tue, 30 Jan 2018 17:10:34 -0500 Subject: [PATCH 017/329] Link updates and rephrasing (#7068) * removed link to self * removed reference to deprecated documentation * revised confusing statement, added more recent link to Kelsey Hightower Kubecon2017 talk --- docs/concepts/cluster-administration/federation.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/docs/concepts/cluster-administration/federation.md b/docs/concepts/cluster-administration/federation.md index 93626d925f..41dd2fde95 100644 --- a/docs/concepts/cluster-administration/federation.md +++ b/docs/concepts/cluster-administration/federation.md @@ -34,7 +34,6 @@ why you might want multiple clusters are: * Fault isolation: It might be better to have multiple small clusters rather than a single large cluster for fault isolation (for example: multiple clusters in different availability zones of a cloud provider). - See [Multi cluster guide](/docs/concepts/cluster-administration/federation/) for details. * Scalability: There are scalability limits to a single kubernetes cluster (this should not be the case for most users. For more details: [Kubernetes Scaling and Performance Goals](https://git.k8s.io/community/sig-scalability/goals.md)). @@ -64,11 +63,7 @@ some caveats: Federations of Kubernetes Clusters can include clusters running in different cloud providers (e.g. Google Cloud, AWS), and on-premises -(e.g. on OpenStack). Simply create all of the clusters that you -require, in the appropriate cloud providers and/or locations, and -register each cluster's API endpoint and credentials with your -Federation API Server (See the -[federation admin guide](/docs/admin/federation/) for details). +(e.g. on OpenStack). [Kubefed](https://kubernetes.io/docs/tasks/federation/set-up-cluster-federation-kubefed/) is the recommended way to deploy federated clusters. Thereafter, your [API resources](#api-resources) can span different clusters and cloud providers. @@ -132,8 +127,9 @@ We suggest that all the VMs in a Kubernetes cluster should be in the same availa - when the Kubernetes developers are designing the system (e.g. making assumptions about latency, bandwidth, or correlated failures) they are assuming all the machines are in a single data center, or otherwise closely connected. -It is okay to have multiple clusters per availability zone, though on balance we think fewer is better. -Reasons to prefer fewer clusters are: +It is recommended to run fewer clusters with more VMs per availability zone; but it is possible to run multiple clusters per availability zones. + +Reasons to prefer fewer clusters per availability zone are: - improved bin packing of Pods in some cases with more nodes in one cluster (less resource fragmentation). - reduced operational overhead (though the advantage is diminished as ops tooling and processes mature). @@ -176,6 +172,7 @@ clusters up to 5000 nodes. See [Building Large Clusters](/docs/admin/cluster-lar proposal](https://github.com/kubernetes/community/blob/{{page.githubbranch}}/contributors/design-proposals/multicluster/federation.md). * See this [setup guide](/docs/tutorials/federation/set-up-cluster-federation-kubefed/) for cluster federation. * See this [Kubecon2016 talk on federation](https://www.youtube.com/watch?v=pq9lbkmxpS8) +* See this [Kubecon2017 Europe update on federation](https://www.youtube.com/watch?v=kwOvOLnFYck) {% endcapture %} {% include templates/concept.md %} From e242b92de409a305b67a94f847a7def5b25aeb8f Mon Sep 17 00:00:00 2001 From: RaviSantosh Gudimetla Date: Wed, 31 Jan 2018 12:27:47 -0500 Subject: [PATCH 018/329] Update guaranteed-scheduling-critical-addon-pods.md --- .../guaranteed-scheduling-critical-addon-pods.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md index c992e26935..85db60f231 100644 --- a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md +++ b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md @@ -47,7 +47,8 @@ killed for this purpose. Please ensure that rescheduler is enabled along with pr Rescheduler doesn't have any user facing configuration (component config) or API. -### Marking pod as critical when using Rescheduler(This will be deprecated). +### Marking pod as critical when using Rescheduler. +** Marking pod as critical when using Rescheduler. To be considered critical, the pod has to run in the `kube-system` namespace (configurable via flag) and @@ -60,8 +61,4 @@ The first one marks a pod a critical. The second one is required by Rescheduler To be considered critical, the pod has to run in the `kube-system` namespace (configurable via flag) and -* have the priorityClass set as "system-cluster-critical" or "system-node-critical", the latter being the highest for entire cluster. - -or - -* have the `scheduler.alpha.kubernetes.io/critical-pod` annotation set to empty string(This will be deprecated too). This ensures that the pod gets "system-cluster-critical" priority. +* Have the priorityClass set as "system-cluster-critical" or "system-node-critical", the latter being the highest for entire cluster and `scheduler.alpha.kubernetes.io/critical-pod` annotation set to empty string(This will be deprecated too). From fee7ebe50a241f995c843ea09c1112c430ca245e Mon Sep 17 00:00:00 2001 From: Andrew Watson Date: Wed, 31 Jan 2018 15:56:09 -0500 Subject: [PATCH 019/329] The "Service Load Balancer" project is deprecated (#7052) According to its own description. --- docs/concepts/services-networking/ingress.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/concepts/services-networking/ingress.md b/docs/concepts/services-networking/ingress.md index a22a817f54..38c189e4f2 100644 --- a/docs/concepts/services-networking/ingress.md +++ b/docs/concepts/services-networking/ingress.md @@ -297,7 +297,6 @@ You can expose a Service in multiple ways that don't directly involve the Ingres * Use [Service.Type=LoadBalancer](/docs/concepts/services-networking/service/#type-loadbalancer) * Use [Service.Type=NodePort](/docs/concepts/services-networking/service/#type-nodeport) * Use a [Port Proxy](https://git.k8s.io/contrib/for-demos/proxy-to-service) -* Deploy the [Service loadbalancer](https://git.k8s.io/contrib/service-loadbalancer). This allows you to share a single IP among multiple Services and achieve more advanced loadbalancing through Service Annotations. {% endcapture %} {% include templates/concept.md %} From 9fb8aadbece2879594eef3d0fc1b50c0005d835c Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Thu, 1 Feb 2018 05:45:51 +0800 Subject: [PATCH 020/329] Fix broken links and API version (#7145) * Fix broken links and API version * Fix CI error --- docs/concepts/cluster-administration/manage-deployment.md | 5 +++-- docs/concepts/cluster-administration/nginx-app.yaml | 7 ++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/concepts/cluster-administration/manage-deployment.md b/docs/concepts/cluster-administration/manage-deployment.md index fbd059e156..f1c640a7b2 100644 --- a/docs/concepts/cluster-administration/manage-deployment.md +++ b/docs/concepts/cluster-administration/manage-deployment.md @@ -49,7 +49,7 @@ It is a recommended practice to put resources related to the same microservice o A URL can also be specified as a configuration source, which is handy for deploying directly from configuration files checked into github: ```shell -$ kubectl create -f https://raw.githubusercontent.com/kubernetes/kubernetes/master/docs/user-guide/nginx-deployment.yaml +$ kubectl create -f https://raw.githubusercontent.com/kubernetes/website/master/docs/user-guide/nginx-deployment.yaml deployment "nginx-deployment" created ``` @@ -85,7 +85,7 @@ NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE my-nginx-svc 10.0.0.208 80/TCP 0s ``` -With the above commands, we first create resources under docs/user-guide/nginx/ and print the resources created with `-o name` output format +With the above commands, we first create resources under `docs/user-guide/nginx/` and print the resources created with `-o name` output format (print each resource as resource/name). Then we `grep` only the "service", and then print it with `kubectl get`. If you happen to organize your resources across several subdirectories within a particular directory, you can recursively perform the operations on the subdirectories also, by specifying `--recursive` or `-R` alongside the `--filename,-f` flag. @@ -328,6 +328,7 @@ Currently, resources are created without this annotation, so the first invocatio All subsequent calls to `kubectl apply`, and other commands that modify the configuration, such as `kubectl replace` and `kubectl edit`, will update the annotation, allowing subsequent calls to `kubectl apply` to detect and perform deletions using a three-way diff. **Note:** To use apply, always create resource initially with either `kubectl apply` or `kubectl create --save-config`. +{: .note} ### kubectl edit diff --git a/docs/concepts/cluster-administration/nginx-app.yaml b/docs/concepts/cluster-administration/nginx-app.yaml index bc7e095646..c3f926b74e 100644 --- a/docs/concepts/cluster-administration/nginx-app.yaml +++ b/docs/concepts/cluster-administration/nginx-app.yaml @@ -11,12 +11,17 @@ spec: selector: app: nginx --- -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx + labels: + app: nginx spec: replicas: 3 + selector: + matchLabels: + app: nginx template: metadata: labels: From 2651747e25ed26fcfc505d821e31b846264ae979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Hern=C3=A1ndez?= <3452489+jhernandezb@users.noreply.github.com> Date: Wed, 31 Jan 2018 21:40:05 -0600 Subject: [PATCH 021/329] fix broken links in user-journeys docs (#7171) --- .../users/cluster-operator/foundational.md | 2 +- .../users/cluster-operator/intermediate.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/user-journeys/users/cluster-operator/foundational.md b/docs/user-journeys/users/cluster-operator/foundational.md index 2b12c8e076..1ceef6b559 100644 --- a/docs/user-journeys/users/cluster-operator/foundational.md +++ b/docs/user-journeys/users/cluster-operator/foundational.md @@ -50,7 +50,7 @@ These resources are covered in a number of articles within the Kubernetes docume * [Deployments](/docs/concepts/workloads/controllers/deployment/) * [Garbage Collection](/docs/concepts/workloads/controllers/garbage-collection/) * [Container Images](/docs/concepts/containers/images/) - * [Container Environment Variables](docs/concepts/containers/container-environment-variables/) + * [Container Environment Variables](/docs/concepts/containers/container-environment-variables/) * [Labels and Selectors](/docs/concepts/overview/working-with-objects/labels/) * [Namespaces](/docs/concepts/overview/working-with-objects/namespaces/) * [Namespaces Walkthrough](/docs/tasks/administer-cluster/namespaces-walkthrough/) diff --git a/docs/user-journeys/users/cluster-operator/intermediate.md b/docs/user-journeys/users/cluster-operator/intermediate.md index f7fbeeedd2..e7038e5454 100644 --- a/docs/user-journeys/users/cluster-operator/intermediate.md +++ b/docs/user-journeys/users/cluster-operator/intermediate.md @@ -41,16 +41,16 @@ Pods * [Pod Lifecycle](/docs/concepts/workloads/pods/pod-lifecycle/) * [Init Containers](/docs/concepts/workloads/pods/init-containers/) * [Pod Presets](/docs/concepts/workloads/pods/podpreset/) - * [Container Lifecycle Hooks](docs/concepts/containers/container-lifecycle-hooks/) + * [Container Lifecycle Hooks](/docs/concepts/containers/container-lifecycle-hooks/) And how Pods work with scheduling, priority, disruptions: * [Taints and Tolerations](/docs/concepts/configuration/taint-and-toleration/) * [Pods and Priority](/docs/concepts/configuration/pod-priority-preemption/) * [Disruptions](/docs/concepts/workloads/pods/disruptions/) -* [Assigning Pods to Nodes](docs/concepts/configuration/assign-pod-node/) -* [Managing compute resources for containers](docs/concepts/configuration/manage-compute-resources-container/) -* [Configuration best practices](docs/concepts/configuration/overview/) +* [Assigning Pods to Nodes](/docs/concepts/configuration/assign-pod-node/) +* [Managing compute resources for containers](/docs/concepts/configuration/manage-compute-resources-container/) +* [Configuration best practices](/docs/concepts/configuration/overview/) ## Implement security best practices @@ -58,7 +58,7 @@ Securing your cluster includes work beyond the scope of Kubernetes itself. (TODO In Kubernetes, you configure access control: -* [Controlling Access to the Kubernetes API](docs/admin/accessing-the-api/) +* [Controlling Access to the Kubernetes API](/docs/admin/accessing-the-api/) * [Authenticating](/docs/admin/authentication/) * [Using Admission Controllers](/docs/admin/admission-controllers/) From 086a985b37fa9bd4a1e4b6b79b1f0dae15b7ec00 Mon Sep 17 00:00:00 2001 From: yinshuxun <18052012746@163.com> Date: Thu, 1 Feb 2018 13:47:21 +0800 Subject: [PATCH 022/329] fix typo --- cn/docs/admin/authorization/abac.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cn/docs/admin/authorization/abac.md b/cn/docs/admin/authorization/abac.md index bdf17e9c82..a78cd4d0d8 100644 --- a/cn/docs/admin/authorization/abac.md +++ b/cn/docs/admin/authorization/abac.md @@ -135,7 +135,7 @@ system:serviceaccount::default {"apiVersion":"abac.authorization.kubernetes.io/v1beta1","kind":"Policy","spec":{"user":"system:serviceaccount:kube-system:default","namespace":"*","resource":"*","apiGroup":"*"}} ``` -需要重新启动 apitorver 以获取新的策略行. +需要重新启动 apiserver 以获取新的策略行. {% endcapture %} {% include templates/concept.md %} From bcf97b595e67a8f0afae0191e3e2cdc9319af659 Mon Sep 17 00:00:00 2001 From: Lihua Tang Date: Thu, 1 Feb 2018 19:59:05 +0800 Subject: [PATCH 023/329] Typo fix: negotation -> negotiation (#7190) --- docs/reference/api-concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/api-concepts.md b/docs/reference/api-concepts.md index ad647a568e..609b9f55ae 100644 --- a/docs/reference/api-concepts.md +++ b/docs/reference/api-concepts.md @@ -152,7 +152,7 @@ Note that the `resourceVersion` of the list remains constant across each request ## Alternate representations of resources -By default Kubernetes returns objects serialized to JSON with content type `application/json`. This is the default serialization format for the API. However, clients may request the more efficient Protobuf representation of these objects for better performance at scale. The Kubernetes API implements standard HTTP content type negotation: passing an `Accept` header with a `GET` call will request that the server return objects in the provided content type, while sending an object in Protobuf to the server for a `PUT` or `POST` call takes the `Content-Type` header. The server will return a `Content-Type` header if the requested format is supported, or the `406 Not acceptable` error if an invalid content type is provided. +By default Kubernetes returns objects serialized to JSON with content type `application/json`. This is the default serialization format for the API. However, clients may request the more efficient Protobuf representation of these objects for better performance at scale. The Kubernetes API implements standard HTTP content type negotiation: passing an `Accept` header with a `GET` call will request that the server return objects in the provided content type, while sending an object in Protobuf to the server for a `PUT` or `POST` call takes the `Content-Type` header. The server will return a `Content-Type` header if the requested format is supported, or the `406 Not acceptable` error if an invalid content type is provided. See the API documentation for a list of supported content types for each API. From b3f879e39508d1a9fe8c0b84db46b607cd25a2e7 Mon Sep 17 00:00:00 2001 From: Wei Li Date: Thu, 1 Feb 2018 20:02:09 +0800 Subject: [PATCH 024/329] Typo fix: programtic -> programmatic (#7194) --- docs/reference/api-concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/api-concepts.md b/docs/reference/api-concepts.md index 609b9f55ae..c2a283f410 100644 --- a/docs/reference/api-concepts.md +++ b/docs/reference/api-concepts.md @@ -12,7 +12,7 @@ This page describes common concepts in the Kubernetes API. {% endcapture %} {% capture body %} -The Kubernetes API is a resource-based (RESTful) programatic interface provided via HTTP. It supports retrieving, creating, +The Kubernetes API is a resource-based (RESTful) programmatic interface provided via HTTP. It supports retrieving, creating, updating, and deleting primary resources via the standard HTTP verbs (POST, PUT, PATCH, DELETE, GET), includes additional subresources for many objects that allow fine grained authorization (such as binding a pod to a node), and can accept and serve those resources in different representations for convenience or efficiency. It also supports efficient change notifications on resources via "watches" and consistent lists to allow other components to effectively cache and synchronize the state of resources. ## Standard API terminology From c4fba11dfe7ebf242e7a3de22debb9b3e31d80e6 Mon Sep 17 00:00:00 2001 From: Kay Yan Date: Thu, 1 Feb 2018 20:13:08 +0800 Subject: [PATCH 025/329] fix a type in cloud controller (#7193) --- docs/concepts/architecture/cloud-controller.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/architecture/cloud-controller.md b/docs/concepts/architecture/cloud-controller.md index fe87703e9a..d7ce662c20 100644 --- a/docs/concepts/architecture/cloud-controller.md +++ b/docs/concepts/architecture/cloud-controller.md @@ -8,7 +8,7 @@ The cloud controller manager (CCM) concept (not to be confused with the binary) The cloud controller manager's design is based on a plugin mechanism that allows new cloud providers to integrate with Kubernetes easily by using plugins. There are plans in place for on-boarding new cloud providers on Kubernetes, and for migrating cloud provider from the old model to the new CCM model. -This document discusses the concepts behind the the cloud controller manager, and gives details about its associated functions. +This document discusses the concepts behind the cloud controller manager, and gives details about its associated functions. Here's the architecture of a Kubernetes cluster without the cloud controller manager: From cb24427b0d96eb5669c4b83405e193b9844d1b55 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Thu, 1 Feb 2018 20:16:12 +0800 Subject: [PATCH 026/329] Fix error reference link (#7195) --- docs/tasks/administer-cluster/access-cluster-services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/administer-cluster/access-cluster-services.md b/docs/tasks/administer-cluster/access-cluster-services.md index e969f4dd56..c452f73a29 100644 --- a/docs/tasks/administer-cluster/access-cluster-services.md +++ b/docs/tasks/administer-cluster/access-cluster-services.md @@ -69,7 +69,7 @@ This shows the proxy-verb URL for accessing each service. For example, this cluster has cluster-level logging enabled (using Elasticsearch), which can be reached at `https://104.197.5.247/api/v1/namespaces/kube-system/services/elasticsearch-logging/proxy/` if suitable credentials are passed, or through a kubectl proxy at, for example: `http://localhost:8080/api/v1/namespaces/kube-system/services/elasticsearch-logging/proxy/`. -(See [above](#accessing-the-cluster-api) for how to pass credentials or use kubectl proxy.) +(See [Access Clusters Using the Kubernetes API](/docs/tasks/administer-cluster/access-cluster-api/#accessing-the-cluster-api) for how to pass credentials or use kubectl proxy.) #### Manually constructing apiserver proxy URLs From 5595aa1abbc76fd60e9e34155d0f81697967c4b1 Mon Sep 17 00:00:00 2001 From: yinshuxun <18052012746@163.com> Date: Thu, 1 Feb 2018 20:18:05 +0800 Subject: [PATCH 027/329] fix typo (#7186) --- docs/user-journeys/users/application-developer/intermediate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-journeys/users/application-developer/intermediate.md b/docs/user-journeys/users/application-developer/intermediate.md index c973b3c248..ea361c7ab6 100644 --- a/docs/user-journeys/users/application-developer/intermediate.md +++ b/docs/user-journeys/users/application-developer/intermediate.md @@ -89,7 +89,7 @@ For additional configuration best practices, familiarize yourself with [this gui #### Security -You may be familiar with the *principle of least privilege*---if you are too generous with permissions when writing or using software, the negative effects of a compromise can escalate out of control. Would you be cautious handing out `sudo` privileges to software on your OS? If so, you should be just as careful when granting your workload permissions to the {% glossary_tooltip text="Kuberetes API" term_id="kubernetes-api" %} server! The API server is the gateway for your cluster's source of truth; it provides endpoints to read or modify cluster state. +You may be familiar with the *principle of least privilege*---if you are too generous with permissions when writing or using software, the negative effects of a compromise can escalate out of control. Would you be cautious handing out `sudo` privileges to software on your OS? If so, you should be just as careful when granting your workload permissions to the {% glossary_tooltip text="Kubernetes API" term_id="kubernetes-api" %} server! The API server is the gateway for your cluster's source of truth; it provides endpoints to read or modify cluster state. You (or your {% glossary_tooltip text="cluster operator" term_id="cluster-operator" %}) can lock down API access with the following: * **{% glossary_tooltip text="ServiceAccounts" term_id="service-account" %}** - An "identity" that your Pods can be tied to From 4f98a3b529524698153e096d7c3dbcc68ebb5e3c Mon Sep 17 00:00:00 2001 From: yinshuxun <18052012746@163.com> Date: Thu, 1 Feb 2018 20:20:12 +0800 Subject: [PATCH 028/329] fix typo (#7187) --- docs/getting-started-guides/windows/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started-guides/windows/index.md b/docs/getting-started-guides/windows/index.md index b8a33e1e96..8db4a79706 100644 --- a/docs/getting-started-guides/windows/index.md +++ b/docs/getting-started-guides/windows/index.md @@ -431,7 +431,7 @@ Persistent Volume Claims are supported for supported volume types. ### Metrics -Windows Stats use a hybrid model: pod and container level stats come from CRI (via dockershim), while node level stats come from the "winstats" package that exports cadvisor like datastructures using windows specific perf counters from the node. +Windows Stats use a hybrid model: pod and container level stats come from CRI (via dockershim), while node level stats come from the "winstats" package that exports cadvisor like data structures using windows specific perf counters from the node. ## Known Limitations for Windows Server Containers with v1.9 Some of these limitations will be addressed by the community in future releases of Kubernetes @@ -442,4 +442,4 @@ Some of these limitations will be addressed by the community in future releases - Hyper-V Containers are not supported -> As of this writing, the Kube-proxy binary requires a pending Kubernetes [pull request](https://github.com/kubernetes/kubernetes/pull/56529) to work properly. You may need to [build](#build) the binaries manually to work around this. \ No newline at end of file +> As of this writing, the Kube-proxy binary requires a pending Kubernetes [pull request](https://github.com/kubernetes/kubernetes/pull/56529) to work properly. You may need to [build](#build) the binaries manually to work around this. From 75702ccc3451ec0feed4b8a039bb4a9cc6e2bfb5 Mon Sep 17 00:00:00 2001 From: Lihua Tang Date: Thu, 1 Feb 2018 20:21:05 +0800 Subject: [PATCH 029/329] Typo fix: compatability -> compatibility (#7188) --- docs/setup/independent/install-kubeadm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/independent/install-kubeadm.md b/docs/setup/independent/install-kubeadm.md index be46887898..8d94bf1dfe 100644 --- a/docs/setup/independent/install-kubeadm.md +++ b/docs/setup/independent/install-kubeadm.md @@ -139,7 +139,7 @@ systemctl enable docker && systemctl start docker {% endcapture %} **Note**: Make sure that the cgroup driver used by kubelet is the same as the one used by -Docker. To ensure compatability you can either update Docker, like so: +Docker. To ensure compatibility you can either update Docker, like so: ```bash cat << EOF > /etc/docker/daemon.json From 73c8b5431cce7eadba44cd0f0e30e1192464dd1b Mon Sep 17 00:00:00 2001 From: JounQin Date: Thu, 1 Feb 2018 20:22:05 +0800 Subject: [PATCH 030/329] Typo fix: synchornous -> synchronous (#7177) --- docs/concepts/api-extension/custom-resources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/api-extension/custom-resources.md b/docs/concepts/api-extension/custom-resources.md index a7a0ccbbef..2d83b396b9 100644 --- a/docs/concepts/api-extension/custom-resources.md +++ b/docs/concepts/api-extension/custom-resources.md @@ -57,7 +57,7 @@ In a Declarative API, typically: Imperative APIs are not declarative. Signs that your API might not be declarative include: - - The client says "do this", and then gets a synchornous response back when it is done. + - The client says "do this", and then gets a synchronous response back when it is done. - The client says "do this", and then gets an operation ID back, and has to check a separate Operation objects to determine completion of the request. - You talk about Remote Procedure Calls (RPCs). - Directly storing large amounts of data (e.g. > a few kB per object, or >1000s of objects). From 6bb4ec5cf0292aa003be97b0e2489855e738bff0 Mon Sep 17 00:00:00 2001 From: Lingming Xia Date: Thu, 1 Feb 2018 20:24:09 +0800 Subject: [PATCH 031/329] fix typo in docs/concepts/api-extension/custom-resources.md (#7185) --- docs/concepts/api-extension/custom-resources.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/api-extension/custom-resources.md b/docs/concepts/api-extension/custom-resources.md index 2d83b396b9..15fa657559 100644 --- a/docs/concepts/api-extension/custom-resources.md +++ b/docs/concepts/api-extension/custom-resources.md @@ -39,7 +39,7 @@ When creating a new API, consider whether to [aggregate your API with the Kubern |-|-| | Your API is [Declarative](#declarative-apis). | Your API does not fit the [Declarative](#declarative-apis) model. | | You want your new types to be readable and writable using `kubectl`.| `kubectl` support is not required | -| You want to view your new types in a Kubernetes UI, such as dashboard, alongside built-in types. | Kuberetes UI support is not required. | +| You want to view your new types in a Kubernetes UI, such as dashboard, alongside built-in types. | Kubernetes UI support is not required. | | You are developing a new API. | You already have program that serves your API and works well. | | You are willing to accept the format restriction that Kubernetes puts on REST resource paths, such as API Groups and Namespaces. (See the [API Overview](/docs/concepts/overview/kubernetes-api/).) | You need to have specific REST paths to be compatible with an already defined REST API. | | Your resources are naturally scoped to a cluster or to namespaces of a cluster. | Cluster or namespace scoped resources are a poor fit; you need control over the specifics of resource paths. | @@ -182,7 +182,7 @@ When you create a custom resource, either via a CRDs or an AA, you get many feat | Admission Webhooks | Set default values and validate extension resources during any create/update/delete operation. | | UI/CLI Display | Kubectl, dashboard can display extension resources. | | Unset vs Empty | Clients can distinguish unset fields from zero-valued fields. | -| Client Libraries Generation | Kubernetes provides generic clent libraries, as well as tools to generate type-specific client libraries. | +| Client Libraries Generation | Kubernetes provides generic client libraries, as well as tools to generate type-specific client libraries. | | Labels and annotations | Common metadata across objects that tools know how to edit for core and custom resources. | ## Preparing to install a custom resource From e1c3c0c067aaa4c5bbcdbfc46ae66fa641421b49 Mon Sep 17 00:00:00 2001 From: qiupeng-huacloud Date: Thu, 1 Feb 2018 20:26:08 +0800 Subject: [PATCH 032/329] configure-pod-container/configmap/ is out of date, change it to normal link: /configure-pod-container/configure-pod-configmap/ (#7158) Signed-off-by: qiupeng-huacloud --- _redirects | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_redirects b/_redirects index cb4a8e953d..e9b4c86be6 100644 --- a/_redirects +++ b/_redirects @@ -290,9 +290,9 @@ /docs/user-guide/application-troubleshooting/ /docs/tasks/debug-application-cluster/debug-application/ 301 /docs/user-guide/compute-resources/ /docs/concepts/configuration/manage-compute-resources-container/ 301 /docs/user-guide/config-best-practices/ /docs/concepts/configuration/overview/ 301 -/docs/user-guide/configmap/ /docs/tasks/configure-pod-container/configmap/ 301 +/docs/user-guide/configmap/ /docs/tasks/configure-pod-container/configure-pod-configmap/ 301 /docs/user-guide/configmap/README/ /docs/tasks/configure-pod-container/configure-pod-configmap/ 301 -/docs/user-guide/configuring-containers/ /docs/tasks/configure-pod-container/configmap/ 301 +/docs/user-guide/configuring-containers/ /docs/tasks/configure-pod-container/configure-pod-configmap/ 301 /docs/user-guide/connecting-applications/ /docs/concepts/services-networking/connect-applications-service/ 301 /docs/user-guide/connecting-to-applications-port-forward/ /docs/tasks/access-application-cluster/port-forward-access-application-cluster/ 301 /docs/user-guide/connecting-to-applications-proxy/ /docs/tasks/access-kubernetes-api/http-proxy-access-api/ 301 From c674f6865f05c6d94380b67d3ba38e24ee3abff9 Mon Sep 17 00:00:00 2001 From: JounQin Date: Thu, 1 Feb 2018 22:17:10 +0800 Subject: [PATCH 033/329] Typo fix: Config view show -> Config view shows (#7181) --- docs/tasks/access-application-cluster/web-ui-dashboard.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/access-application-cluster/web-ui-dashboard.md b/docs/tasks/access-application-cluster/web-ui-dashboard.md index 79443ba64f..0c02dc5289 100644 --- a/docs/tasks/access-application-cluster/web-ui-dashboard.md +++ b/docs/tasks/access-application-cluster/web-ui-dashboard.md @@ -156,7 +156,7 @@ Services and discovery view shows Kubernetes resources that allow for exposing s Storage view shows Persistent Volume Claim resources which are used by applications for storing data. #### Config -Config view show all Kubernetes resources that are used for live configuration of applications running in clusters. This is now Config Maps and Secrets. The view allows for editing and managing config objects and displays secrets hidden by default. +Config view shows all Kubernetes resources that are used for live configuration of applications running in clusters. This is now Config Maps and Secrets. The view allows for editing and managing config objects and displays secrets hidden by default. ![Secret detail view](/images/docs/ui-dashboard-secret-detail.png) From f490860c79e21182368e162031a586590673d084 Mon Sep 17 00:00:00 2001 From: Alex Contini Date: Thu, 1 Feb 2018 09:47:22 -0500 Subject: [PATCH 034/329] updates to mobile - spacing, column stacking and padding Some css updates to the mobile version, ignore my last PRs please! --- css/style_user_journeys.css | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/css/style_user_journeys.css b/css/style_user_journeys.css index 7b0da3d20e..21d9cb3605 100644 --- a/css/style_user_journeys.css +++ b/css/style_user_journeys.css @@ -889,3 +889,37 @@ th, td { th { font-weight: normal; } + + + +@media screen and (max-width: 580px) { + +.browsecolumn { +width: 95%; + +} + +.paths { + +margin-top : 10%; +padding:4%; + +} + +.navButton { +padding:2%; + +} + +.buttons { +padding:4%; +} + +.whitebar { +padding:5%; + +} + + +} + From f4c2f56f266ba0ab9bda22afd304d76964b855a6 Mon Sep 17 00:00:00 2001 From: Alex Contini Date: Thu, 1 Feb 2018 10:34:20 -0500 Subject: [PATCH 035/329] Increase maximum mobile width dimensions from 580px to 640px Increase maximum viewport dimensions from 580px to 640px \assign @Bradamant3 --- css/style_user_journeys.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/style_user_journeys.css b/css/style_user_journeys.css index 21d9cb3605..a68d77e5cf 100644 --- a/css/style_user_journeys.css +++ b/css/style_user_journeys.css @@ -892,7 +892,7 @@ th { -@media screen and (max-width: 580px) { +@media screen and (max-width: 640px) { .browsecolumn { width: 95%; From effcc3db9448f3d58d27558d45578b3f567162ae Mon Sep 17 00:00:00 2001 From: RaviSantosh Gudimetla Date: Thu, 1 Feb 2018 10:57:05 -0500 Subject: [PATCH 036/329] Update guaranteed-scheduling-critical-addon-pods.md --- .../guaranteed-scheduling-critical-addon-pods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md index 85db60f231..e1652edafc 100644 --- a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md +++ b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md @@ -41,7 +41,7 @@ while the other pods shouldn't tolerate the taint. The taint is removed once the *Warning:* currently there is no guarantee which node is chosen and which pods are being killed in order to schedule critical pods, so if rescheduler is enabled your pods might be occasionally -killed for this purpose. Please ensure that rescheduler is enabled along with priorities & preemptions in default-scheduler as it may have unwanted side-effects. +killed for this purpose. Please ensure that rescheduler is not enabled along with priorities & preemptions in default-scheduler as rescheduler is oblivious to priorities and it may evict high priority pods, instead of low priority ones. ## Config From fd195d32c2fb3d06fe52f8a120ba7275b6f4f1c4 Mon Sep 17 00:00:00 2001 From: "Patrick M. Slattery" <5231477+patrickmslatteryvt@users.noreply.github.com> Date: Thu, 1 Feb 2018 08:50:09 -0800 Subject: [PATCH 037/329] Firewalld updates (#7203) --- .../fedora/fedora_manual_config.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/getting-started-guides/fedora/fedora_manual_config.md b/docs/getting-started-guides/fedora/fedora_manual_config.md index 6ce8eb357a..539a6db6c3 100644 --- a/docs/getting-started-guides/fedora/fedora_manual_config.md +++ b/docs/getting-started-guides/fedora/fedora_manual_config.md @@ -60,11 +60,14 @@ the name of the master server: KUBE_MASTER="--master=http://fed-master:8080" ``` -* Disable the firewall on both the master and node, as docker does not play well with other firewall rule managers. Please note that iptables-services does not exist on default fedora server install. +* Disable the firewall on both the master and node, as Docker does not play well with other firewall rule managers. Please note that iptables.service does not exist on the default Fedora Server install. ```shell -systemctl disable iptables-services firewalld -systemctl stop iptables-services firewalld +systemctl mask firewalld.service +systemctl stop firewalld.service + +systemctl disable iptables.service +systemctl stop iptables.service ``` **Configure the Kubernetes services on the master.** From 8828567afd19c6b22fe41869f9c6ecf13909b9ea Mon Sep 17 00:00:00 2001 From: jianglingxia Date: Fri, 2 Feb 2018 01:02:10 +0800 Subject: [PATCH 038/329] update the yaml of deployment and replicas (#7107) * update the yaml of deployment and replicas * update the yaml comment --- docs/concepts/cluster-administration/certificates.md | 2 +- docs/concepts/workloads/controllers/frontend.yaml | 2 +- docs/concepts/workloads/controllers/nginx-deployment.yaml | 2 +- docs/tasks/federation/policy-engine-deployment.yaml | 2 +- docs/tasks/federation/replicaset-example-policy.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/concepts/cluster-administration/certificates.md b/docs/concepts/cluster-administration/certificates.md index 1c218b674d..565fbca3e2 100644 --- a/docs/concepts/cluster-administration/certificates.md +++ b/docs/concepts/cluster-administration/certificates.md @@ -16,7 +16,7 @@ manually through `easyrsa`, `openssl` or `cfssl`. 1. Download, unpack, and initialize the patched version of easyrsa3. - curl -L -O https://storage.googleapis.com/kubernetes-release/easy-rsa/easy-rsa.tar.gz + curl -LO https://storage.googleapis.com/kubernetes-release/easy-rsa/easy-rsa.tar.gz tar xzf easy-rsa.tar.gz cd easy-rsa-master/easyrsa3 ./easyrsa init-pki diff --git a/docs/concepts/workloads/controllers/frontend.yaml b/docs/concepts/workloads/controllers/frontend.yaml index 9b6cdec382..b2e8f2adc8 100644 --- a/docs/concepts/workloads/controllers/frontend.yaml +++ b/docs/concepts/workloads/controllers/frontend.yaml @@ -1,4 +1,4 @@ -apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2 +apiVersion: apps/v1 kind: ReplicaSet metadata: name: frontend diff --git a/docs/concepts/workloads/controllers/nginx-deployment.yaml b/docs/concepts/workloads/controllers/nginx-deployment.yaml index 914209612d..f7f95deebb 100644 --- a/docs/concepts/workloads/controllers/nginx-deployment.yaml +++ b/docs/concepts/workloads/controllers/nginx-deployment.yaml @@ -1,4 +1,4 @@ -apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2 +apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment diff --git a/docs/tasks/federation/policy-engine-deployment.yaml b/docs/tasks/federation/policy-engine-deployment.yaml index a08dd79d81..44f7069d4b 100644 --- a/docs/tasks/federation/policy-engine-deployment.yaml +++ b/docs/tasks/federation/policy-engine-deployment.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: labels: diff --git a/docs/tasks/federation/replicaset-example-policy.yaml b/docs/tasks/federation/replicaset-example-policy.yaml index 03b09d73f5..43dc83b18b 100644 --- a/docs/tasks/federation/replicaset-example-policy.yaml +++ b/docs/tasks/federation/replicaset-example-policy.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: ReplicaSet metadata: labels: From f15d03a1f67dc9f0b5be020a13dc1b393e91f107 Mon Sep 17 00:00:00 2001 From: Kai Chen Date: Fri, 2 Feb 2018 07:40:04 +0800 Subject: [PATCH 039/329] Update the workloads API versions to 1.9 for rest of the docs (#7099) * Update the workloads API versions to 1.9 for rest of the docs * Remove comments per CR feedback * Add a comment to be clear about which versions will work with the example --- docs/admin/authentication.md | 2 +- docs/tasks/inject-data-application/podpreset-replicaset.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/admin/authentication.md b/docs/admin/authentication.md index 7f46f8ce5c..cb55df9406 100644 --- a/docs/admin/authentication.md +++ b/docs/admin/authentication.md @@ -185,7 +185,7 @@ talk to the API server. Accounts may be explicitly associated with pods using th NOTE: `serviceAccountName` is usually omitted because this is done automatically. ``` -apiVersion: apps/v1beta2 +apiVersion: apps/v1 # this apiVersion is relevant as of Kubernetes 1.9 kind: Deployment metadata: name: nginx-deployment diff --git a/docs/tasks/inject-data-application/podpreset-replicaset.yaml b/docs/tasks/inject-data-application/podpreset-replicaset.yaml index a48a6bc5ba..e9d49a9d1d 100644 --- a/docs/tasks/inject-data-application/podpreset-replicaset.yaml +++ b/docs/tasks/inject-data-application/podpreset-replicaset.yaml @@ -1,4 +1,4 @@ -apiVersion: apps/v1beta2 +apiVersion: apps/v1 kind: ReplicaSet metadata: name: frontend From d571e8c30bde81c32217ceed0e288d3340b8d171 Mon Sep 17 00:00:00 2001 From: Rcluoyi <35790437+Rcluoyi@users.noreply.github.com> Date: Fri, 2 Feb 2018 10:37:05 +0800 Subject: [PATCH 040/329] configure-pod-container/configmap and docs/user-journeys/cluster-operator have been changed. (#7206) Signed-off-by: renchao --- docs/user-journeys/users/cluster-operator/foundational.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-journeys/users/cluster-operator/foundational.md b/docs/user-journeys/users/cluster-operator/foundational.md index 1ceef6b559..3f35cf57d8 100644 --- a/docs/user-journeys/users/cluster-operator/foundational.md +++ b/docs/user-journeys/users/cluster-operator/foundational.md @@ -56,11 +56,11 @@ These resources are covered in a number of articles within the Kubernetes docume * [Namespaces Walkthrough](/docs/tasks/administer-cluster/namespaces-walkthrough/) * [Services](/docs/concepts/services-networking/service/) * [Annotations](/docs/concepts/overview/working-with-objects/annotations/) -* [ConfigMaps](/docs/tasks/configure-pod-container/configmap/) +* [ConfigMaps](/docs/tasks/configure-pod-container/configure-pod-configmap/) * [Secrets](/docs/concepts/configuration/secret/) As a cluster operator you may not need to use all these resources although you should be familiar with them to understand how the cluster is working and being used. -There are a number of additional resources that you should be aware of, some listed under [Intermediate Resources](/docs/user-journeys/cluster-operator/intermediate#section-1). +There are a number of additional resources that you should be aware of, some listed under [Intermediate Resources](/docs/user-journeys/users/cluster-operator/intermediate#section-1). You should also be familiar with [how to manage kubernetes resources](/docs/concepts/cluster-administration/manage-deployment/). ## Get information about my cluster From 0c0509da79d4aca39f2c8cbd8c3163eece8c4e85 Mon Sep 17 00:00:00 2001 From: Joseph Heck Date: Thu, 1 Feb 2018 23:43:07 -0500 Subject: [PATCH 041/329] updates to more correctly obey the style guide (#7213) * updates to more correctly obey the style guide * fixing per review --- docs/user-journeys/users/cluster-operator/foundational.md | 6 +++--- docs/user-journeys/users/cluster-operator/intermediate.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/user-journeys/users/cluster-operator/foundational.md b/docs/user-journeys/users/cluster-operator/foundational.md index 3f35cf57d8..7804bd0387 100644 --- a/docs/user-journeys/users/cluster-operator/foundational.md +++ b/docs/user-journeys/users/cluster-operator/foundational.md @@ -10,8 +10,8 @@ track: "USERS › CLUSTER OPERATOR › FOUNDATIONAL" {% capture overview %} -If you want to learn how to get started managing and operating a Kubernetes cluster, this page and the linked topics will introduce you to foundational concepts and tasks. -The concepts introduce you to a Kubernetes cluster and key concepts to understand and manage it, favoring focusing on the cluster itself over the software running within the cluster. +If you want to learn how to get started managing and operating a Kubernetes cluster, this page and the linked topics introduce you to the foundational concepts and tasks. +This page introduces you to a Kubernetes cluster and key concepts to understand and manage it. The content focuses primarily on the cluster itself rather than the software running within the cluster. {% endcapture %} @@ -25,7 +25,7 @@ Metrics ## Get an overview of Kubernetes -If you have not already done so, start your understanding by reading through [What is Kubernetes?](/docs/concepts/overview/what-is-kubernetes/), which will introduce you to a number of basic concepts and terms. +If you have not already done so, start your understanding by reading through [What is Kubernetes?](/docs/concepts/overview/what-is-kubernetes/), which introduces a number of basic concepts and terms. Kubernetes is quite flexible, and can a cluster can be run in a wide variety of places. You can interact with Kubernetes entirely on your own laptop or local development machine with it running within a virtual machine. Kubernetes can also run on virtual machines hosted either locally or in a cloud provider, and you can run a kubernetes cluster on bare metal. diff --git a/docs/user-journeys/users/cluster-operator/intermediate.md b/docs/user-journeys/users/cluster-operator/intermediate.md index e7038e5454..1c7a93eee3 100644 --- a/docs/user-journeys/users/cluster-operator/intermediate.md +++ b/docs/user-journeys/users/cluster-operator/intermediate.md @@ -10,7 +10,7 @@ track: "USERS > CLUSTER OPERATOR > INTERMEDIATE" {% capture overview %} -If you're a cluster operator looking to expand your grasp of Kubernetes, this page and its linked topics extend the information provided on the [foundational cluster operator page](/docs/user-journeys/users/cluster-operator/foundational). Here we'll get you going on key Kubernetes tasks that you need to manage a complete production cluster. +If you are a cluster operator looking to expand your grasp of Kubernetes, this page and its linked topics extend the information provided on the [foundational cluster operator page](/docs/user-journeys/users/cluster-operator/foundational). From this page you can get information on key Kubernetes tasks needed to manage a complete production cluster. {% endcapture %} @@ -73,9 +73,9 @@ You should create Secrets to hold sensitive data such as passwords, tokens, or k ## Implement custom logging and monitoring -Monitoring the health and state of your cluster is important. Collecting metrics, logging, and providing access to that information are common needs. Kubernetes provides some basic logging structure, but you will almost certainly want to use additional tools to help aggregate and analyze log data. +Monitoring the health and state of your cluster is important. Collecting metrics, logging, and providing access to that information are common needs. Kubernetes provides some basic logging structure and you may want to use additional tools to help aggregate and analyze log data. -Start with the [basics on Kubernetes logging](/docs/concepts/cluster-administration/logging/) to understand how containers do logging and common patterns. You will probably want to add something to gather and aggregate those logs. See the following topics: +Start with the [basics on Kubernetes logging](/docs/concepts/cluster-administration/logging/) to understand how containers do logging and common patterns. Cluster operators often want to add something to gather and aggregate those logs. See the following topics: * [Logging Using Elasticsearch and Kibana](/docs/tasks/debug-application-cluster/logging-elasticsearch-kibana/) * [Logging Using Stackdriver](/docs/tasks/debug-application-cluster/logging-stackdriver/) From 5c74774b89d97ab4c2f80a231a8e9dbd9fd6402a Mon Sep 17 00:00:00 2001 From: alaudazs <35983778+alaudazs@users.noreply.github.com> Date: Fri, 2 Feb 2018 17:23:11 +0800 Subject: [PATCH 042/329] fix small typo error (#7184) CRTL -> CTRL --- docs/tutorials/stateful-application/zookeeper.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorials/stateful-application/zookeeper.md b/docs/tutorials/stateful-application/zookeeper.md index 2a98697479..17d1b9aa3a 100644 --- a/docs/tutorials/stateful-application/zookeeper.md +++ b/docs/tutorials/stateful-application/zookeeper.md @@ -120,7 +120,7 @@ StatefulSet controller create the StatefulSet's Pods. kubectl get pods -w -l app=zk ``` -Once the `zk-2` Pod is Running and Ready, use `CRTL-C` to terminate kubectl. +Once the `zk-2` Pod is Running and Ready, use `CTRL-C` to terminate kubectl. ```shell NAME READY STATUS RESTARTS AGE @@ -365,7 +365,7 @@ Watch the termination of the Pods in the StatefulSet. kubectl get pods -w -l app=zk ``` -When `zk-0` if fully terminated, use `CRTL-C` to terminate kubectl. +When `zk-0` if fully terminated, use `CTRL-C` to terminate kubectl. ```shell zk-2 1/1 Terminating 0 9m @@ -396,7 +396,7 @@ Watch the StatefulSet controller recreate the StatefulSet's Pods. kubectl get pods -w -l app=zk ``` -Once the `zk-2` Pod is Running and Ready, use `CRTL-C` to terminate kubectl. +Once the `zk-2` Pod is Running and Ready, use `CTRL-C` to terminate kubectl. ```shell NAME READY STATUS RESTARTS AGE @@ -1075,7 +1075,7 @@ There are pending pods when an error occurred: Cannot evict pod as it would viol pod/zk-2 {% endraw %}``` -Use `CRTL-C` to terminate to kubectl. +Use `CTRL-C` to terminate to kubectl. You can not drain the third node because evicting `zk-2` would violate `zk-budget`. However, the node will remain cordoned. From b0a20183d899478863d21b2b9d04d1cc635d5400 Mon Sep 17 00:00:00 2001 From: pigletfly Date: Fri, 2 Feb 2018 17:24:05 +0800 Subject: [PATCH 043/329] fix typo (#7196) --- _includes/partner-script.js | 2 +- cn/docs/concepts/containers/images.md | 2 +- docs/home/contribute/includes.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/partner-script.js b/_includes/partner-script.js index d319ab48d8..72af85ac4a 100644 --- a/_includes/partner-script.js +++ b/_includes/partner-script.js @@ -1125,7 +1125,7 @@ name: 'Pure Storage', logo: 'pure_storage', link: 'https://hub.docker.com/r/purestorage/k8s/', - blurb: 'Our flexvol driver and dynamic provisioner allow FlashArray/Flashblade storage devices to be consumed as first class persistent storage from within Kuberentes.' + blurb: 'Our flexvol driver and dynamic provisioner allow FlashArray/Flashblade storage devices to be consumed as first class persistent storage from within Kubernetes.' }, { type: 0, diff --git a/cn/docs/concepts/containers/images.md b/cn/docs/concepts/containers/images.md index 19dfa52de4..f630c443e9 100644 --- a/cn/docs/concepts/containers/images.md +++ b/cn/docs/concepts/containers/images.md @@ -195,7 +195,7 @@ $ kubectl describe pods/private-image-test-1 | grep "Failed" **注意:** Google Kubernetes Engine,GCE及其他自动创建node的云平台上,推荐使用本方法。 -Kuberentes支持在pod中指定仓库密钥。 +Kubernetes支持在pod中指定仓库密钥。 #### 使用Docker Config创建Secret diff --git a/docs/home/contribute/includes.md b/docs/home/contribute/includes.md index 4a6bdba027..f26196f1fb 100644 --- a/docs/home/contribute/includes.md +++ b/docs/home/contribute/includes.md @@ -19,7 +19,7 @@ version and state of the documented feature. ### Feature state demo -Below is a demo of the feature state snippet. Here it is used to display the feature as stable in Kuberentes version 1.6. +Below is a demo of the feature state snippet. Here it is used to display the feature as stable in Kubernetes version 1.6. {% assign for_k8s_version = "1.6" %} {% include feature-state-stable.md %} From 237bf27cc3b16a7b77d5615e155f7e2f76af9036 Mon Sep 17 00:00:00 2001 From: RaviSantosh Gudimetla Date: Fri, 2 Feb 2018 09:48:09 -0500 Subject: [PATCH 044/329] Update guaranteed-scheduling-critical-addon-pods.md --- .../guaranteed-scheduling-critical-addon-pods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md index e1652edafc..bf54698b95 100644 --- a/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md +++ b/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods.md @@ -24,7 +24,7 @@ accordance with the [deprecation policy](/docs/reference/deprecation-policy) for **To avoid eviction of critical pods, you must [enable priorities in scheduler](docs/concepts/configuration/pod-priority-preemption/) -before upgrading to Kubernetes 1.8 or higher.** +before upgrading to Kubernetes 1.10 or higher.** Rescheduler ensures that critical add-ons are always scheduled (assuming the cluster has enough resources to run the critical add-on pods in the absence of regular pods). From e0bcd41118862ec2e43f468154c3ba99eed4784f Mon Sep 17 00:00:00 2001 From: "Bobby (Babak) Salamat" Date: Fri, 2 Feb 2018 07:10:09 -0800 Subject: [PATCH 045/329] Add information about PodStatus.nominatedNodeName (#7209) * Add information about PodStatus.nominatedNodeName * Addressed reviewer comments --- .../configuration/pod-priority-preemption.md | 38 +++++++++++++------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/docs/concepts/configuration/pod-priority-preemption.md b/docs/concepts/configuration/pod-priority-preemption.md index c373e802a9..e9ebcf1157 100644 --- a/docs/concepts/configuration/pod-priority-preemption.md +++ b/docs/concepts/configuration/pod-priority-preemption.md @@ -13,7 +13,7 @@ title: Pod Priority and Preemption indicates the importance of a Pod relative to other Pods. When a Pod cannot be scheduled, the scheduler tries to preempt (evict) lower priority Pods to make scheduling of the pending Pod possible. In Kubernetes 1.9 and later, Priority also affects scheduling -order of pods and out-of-resource eviction ordering on the Node. +order of Pods and out-of-resource eviction ordering on the Node. {% endcapture %} @@ -134,10 +134,10 @@ spec: ### Effect of Pod priority on scheduling order In Kubernetes 1.9 and later, when Pod priority is enabled, scheduler orders pending -pods by their priority and a pending Pod is placed ahead of other pending Pods with -lower priority in the scheduling queue. As a result, the higher priority pod may -by scheduled sooner that pods with lower priority if its scheduling requirements -are met. If such pod cannot be scheduled, scheduler will continue and tries to +Pods by their priority and a pending Pod is placed ahead of other pending Pods with +lower priority in the scheduling queue. As a result, the higher priority Pod may +by scheduled sooner that Pods with lower priority if its scheduling requirements +are met. If such Pod cannot be scheduled, scheduler will continue and tries to schedule other lower priority Pods. ## Preemption @@ -145,10 +145,24 @@ schedule other lower priority Pods. When Pods are created, they go to a queue and wait to be scheduled. The scheduler picks a Pod from the queue and tries to schedule it on a Node. If no Node is found that satisfies all the specified requirements of the Pod, preemption logic is triggered -for the pending Pod. Let's call the pending pod P. Preemption logic tries to find a Node +for the pending Pod. Let's call the pending Pod P. Preemption logic tries to find a Node where removal of one or more Pods with lower priority than P would enable P to be scheduled on that Node. If such a Node is found, one or more lower priority Pods get -deleted from the Node. After the Pods are gone, P can be scheduled on the Node. +deleted from the Node. After the Pods are gone, P can be scheduled on the Node. + +### User exposed information + +When Pod P preempts one or more Pods on Node N, `nominatedNodeName` field of Pod P's status is set to +the name of Node N. This field helps scheduler track resources reserved for Pod P and also gives +users information about preemptions in their clusters. + +Please note that Pod P is not necessarily scheduled to the "nominated Node". After victim Pods are +preempted, they get their graceful termination period. If another node becomes available while +scheduler is waiting for the victim Pods to terminate, scheduler will use the other node to schedule +Pod P. As a result `nominatedNodeName` and `nodeName` of Pod spec are not always the same. Also, if +scheduler preempts Pods on Node N, but then a higher priority Pod than Pod P arrives, scheduler may +give Node N to the new higher priority Pod. In such a case, scheduler clears `nominatedNodeName` of +Pod P. By doing this, scheduler makes Pod P eligible to preempt Pods on another Node. ### Limitations of preemption @@ -163,7 +177,7 @@ scheduled on the Node (N). In the meantime, the scheduler keeps scheduling other pending Pods. As victims exit or get terminated, the scheduler tries to schedule Pods in the pending queue. Therefore, there is usually a time gap between the point that scheduler preempts victims and the time that Pod P is scheduled. In order to -minimize this gap, one can set graceful termination period of lower priority pods +minimize this gap, one can set graceful termination period of lower priority Pods to zero or a small number. #### PodDisruptionBudget is supported, but not guaranteed! @@ -171,7 +185,7 @@ to zero or a small number. A [Pod Disruption Budget (PDB)](https://kubernetes.io/docs/concepts/workloads/pods/disruptions/) allows application owners to limit the number Pods of a replicated application that are down simultaneously from voluntary disruptions. Kubernetes 1.9 supports PDB -when preempting pods, but respecting PDB is best effort. The Scheduler tries to +when preempting Pods, but respecting PDB is best effort. The Scheduler tries to find victims whose PDB are not violated by preemption, but if no such victims are found, preemption will still happen, and lower priority Pods will be removed despite their PDBs being violated. @@ -180,11 +194,11 @@ despite their PDBs being violated. A Node is considered for preemption only when the answer to this question is yes: "If all the Pods with lower priority than -the pending Pod are removed from the Node, can the pending pod be scheduled on +the pending Pod are removed from the Node, can the pending Pod be scheduled on the Node?" **Note:** Preemption does not necessarily remove all lower-priority Pods. If the -pending pod can be scheduled by removing fewer than all lower-priority Pods, then +pending Pod can be scheduled by removing fewer than all lower-priority Pods, then only a portion of the lower-priority Pods are removed. Even so, the answer to the preceding question must be yes. If the answer is no, the Node is not considered for preemption. @@ -197,7 +211,7 @@ Node. Instead, it looks for another Node. The scheduler might find a suitable No or it might not. There is no guarantee that the pending Pod can be scheduled. Our recommended solution for this problem is to create inter-Pod affinity only towards -equal or higher priority pods. +equal or higher priority Pods. #### Cross node preemption From 98df5e5c6a83840fd4e59ec5a0b180028f77d084 Mon Sep 17 00:00:00 2001 From: Ben Drucker Date: Fri, 2 Feb 2018 07:13:09 -0800 Subject: [PATCH 046/329] Clean up docs on resizing persistent volumes (#7172) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Clean up docs on resizing persistent volumes * Replace em dash (—) with period --- docs/concepts/storage/persistent-volumes.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/concepts/storage/persistent-volumes.md b/docs/concepts/storage/persistent-volumes.md index 4324e6da43..31b606725e 100644 --- a/docs/concepts/storage/persistent-volumes.md +++ b/docs/concepts/storage/persistent-volumes.md @@ -171,10 +171,10 @@ parameters: allowVolumeExpansion: true ``` -Once both feature gate and aforementioned admission plug-in are turned on, an user can request larger volume for their `PersistentVolumeClaim` -by simply editing the claim and requesting bigger size. This in turn will trigger expansion of volume that is backing underlying `PersistentVolume`. +Once both feature gate and the aforementioned admission plug-in are turned on, an user can request larger volume for their `PersistentVolumeClaim` +by simply editing the claim and requesting a larger size. This in turn will trigger expansion of the volume that is backing the underlying `PersistentVolume`. -Under no circumstances a new `PersistentVolume` gets created to satisfy the claim. Kubernetes will attempt to resize existing volume to satisfy the claim. +Under no circumstances will a new `PersistentVolume` be created to satisfy the claim. Kubernetes will instead attempt to resize the existing volume. For expanding volumes containing a file system, file system resizing is only performed when a new Pod is started using the `PersistentVolumeClaim` in ReadWrite mode. In other words, if a volume being expanded is used in a pod or deployment, you will need to delete and recreate the pod for file system From 1f0f465a721949bcbae2339de40f8c2f6a5d243b Mon Sep 17 00:00:00 2001 From: Jakub Nowakowski Date: Fri, 2 Feb 2018 16:25:16 +0100 Subject: [PATCH 047/329] Kubernetes Objects: Updated links to docs resources (#7207) * Updated links to docs resources * Minor fixes after review Fixes after @tengqm review --- .../overview/working-with-objects/kubernetes-objects.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/overview/working-with-objects/kubernetes-objects.md b/docs/concepts/overview/working-with-objects/kubernetes-objects.md index 71133af5da..5266d8500d 100644 --- a/docs/concepts/overview/working-with-objects/kubernetes-objects.md +++ b/docs/concepts/overview/working-with-objects/kubernetes-objects.md @@ -17,7 +17,7 @@ This page explains how Kubernetes objects are represented in the Kubernetes API, A Kubernetes object is a "record of intent"--once you create the object, the Kubernetes system will constantly work to ensure 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://git.k8s.io/community/contributors/devel/api-conventions.md). When you use the `kubectl` command-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. +To work with Kubernetes objects--whether to create, modify, or delete them--you'll need to use the [Kubernetes API](/docs/concepts/overview/kubernetes-api/). When you use the `kubectl` command-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 using one of [Client Libraries](/docs/reference/client-libraries/). ### Object Spec and Status @@ -56,7 +56,7 @@ In the `.yaml` file for the Kubernetes object you want to create, you'll need to * `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/concepts/overview/kubernetes-api/) can help you find the spec format for all of the objects you can create using Kubernetes. +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/reference/generated/kubernetes-api/{{page.version}}/) can help you find the spec format for all of the objects you can create using Kubernetes. For example, the `spec` format for a `Pod` object can be found [here](/docs/reference/generated/kubernetes-api/{{page.version}}/#podspec-v1-core), and the `spec` format for a `Deployment` object can be found From 5eec3bca828b3e65a744968fa5018f358c4ff477 Mon Sep 17 00:00:00 2001 From: Ayush Pateria Date: Fri, 2 Feb 2018 21:24:14 +0530 Subject: [PATCH 048/329] Update persistent-volumes.md (#7155) * Add deprecation warning to recycle reclaim policy. * Format the deprecation warning --- docs/concepts/storage/persistent-volumes.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/concepts/storage/persistent-volumes.md b/docs/concepts/storage/persistent-volumes.md index 31b606725e..9091f39277 100644 --- a/docs/concepts/storage/persistent-volumes.md +++ b/docs/concepts/storage/persistent-volumes.md @@ -108,6 +108,9 @@ The Retain reclaim policy allows for manual reclamation of the resource. When th #### Recycling +**Warning:** The recycling reclaim policy is being deprecated. Instead, the recommended approach is to use dynamic provisioning. +{: .warning} + If supported by appropriate volume plugin, recycling performs a basic scrub (`rm -rf /thevolume/*`) on the volume and makes it available again for a new claim. However, an administrator can configure a custom recycler pod template using the Kubernetes controller manager command line arguments as described [here](/docs/admin/kube-controller-manager/). The custom recycler pod template must contain a `volumes` specification, as shown in the example below: From 38e05a2f9407e2496c8682ef95e2e5132929eddc Mon Sep 17 00:00:00 2001 From: JounQin Date: Fri, 2 Feb 2018 23:56:10 +0800 Subject: [PATCH 049/329] Closing link tag is redundant (#7176) --- docs/user-guide/update-demo/local/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/update-demo/local/index.html b/docs/user-guide/update-demo/local/index.html index 8399db9644..4c00b571c4 100644 --- a/docs/user-guide/update-demo/local/index.html +++ b/docs/user-guide/update-demo/local/index.html @@ -18,7 +18,7 @@ limitations under the License. - +
    From 90db7163854dbc05d6569351893419b8e53db282 Mon Sep 17 00:00:00 2001 From: Wei Li Date: Sat, 3 Feb 2018 00:00:15 +0800 Subject: [PATCH 050/329] Remove redundant closing tag li (#7180) --- _includes/header.html | 1 - 1 file changed, 1 deletion(-) diff --git a/_includes/header.html b/_includes/header.html index 8db73df89d..16b22650ba 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -23,7 +23,6 @@ {% endif %} {% endfor %} - From ad62225d5f9a1ffeafde320bd1406cd570f9e830 Mon Sep 17 00:00:00 2001 From: Xiaodong Zhang Date: Sat, 3 Feb 2018 00:09:07 +0800 Subject: [PATCH 051/329] Bump Deployment version (#7146) --- cn/docs/concepts/services-networking/nginx-secure-app.yaml | 5 ++++- cn/docs/concepts/services-networking/run-my-nginx.yaml | 5 ++++- cn/docs/user-guide/nginx-secure-app.yaml | 5 ++++- cn/docs/user-guide/run-my-nginx.yaml | 5 ++++- docs/concepts/services-networking/nginx-secure-app.yaml | 5 ++++- docs/concepts/services-networking/run-my-nginx.yaml | 5 ++++- docs/user-guide/nginx-secure-app.yaml | 5 ++++- docs/user-guide/run-my-nginx.yaml | 5 ++++- 8 files changed, 32 insertions(+), 8 deletions(-) diff --git a/cn/docs/concepts/services-networking/nginx-secure-app.yaml b/cn/docs/concepts/services-networking/nginx-secure-app.yaml index 9e4a16791e..ec180a18df 100644 --- a/cn/docs/concepts/services-networking/nginx-secure-app.yaml +++ b/cn/docs/concepts/services-networking/nginx-secure-app.yaml @@ -17,11 +17,14 @@ spec: selector: run: my-nginx --- -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx spec: + selector: + matchLabels: + run: my-nginx replicas: 1 template: metadata: diff --git a/cn/docs/concepts/services-networking/run-my-nginx.yaml b/cn/docs/concepts/services-networking/run-my-nginx.yaml index b3d8e336cd..76a879f5c4 100644 --- a/cn/docs/concepts/services-networking/run-my-nginx.yaml +++ b/cn/docs/concepts/services-networking/run-my-nginx.yaml @@ -1,8 +1,11 @@ -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx spec: + selector: + matchLabels: + run: my-nginx replicas: 2 template: metadata: diff --git a/cn/docs/user-guide/nginx-secure-app.yaml b/cn/docs/user-guide/nginx-secure-app.yaml index 9e4a16791e..ec180a18df 100644 --- a/cn/docs/user-guide/nginx-secure-app.yaml +++ b/cn/docs/user-guide/nginx-secure-app.yaml @@ -17,11 +17,14 @@ spec: selector: run: my-nginx --- -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx spec: + selector: + matchLabels: + run: my-nginx replicas: 1 template: metadata: diff --git a/cn/docs/user-guide/run-my-nginx.yaml b/cn/docs/user-guide/run-my-nginx.yaml index b3d8e336cd..76a879f5c4 100644 --- a/cn/docs/user-guide/run-my-nginx.yaml +++ b/cn/docs/user-guide/run-my-nginx.yaml @@ -1,8 +1,11 @@ -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx spec: + selector: + matchLabels: + run: my-nginx replicas: 2 template: metadata: diff --git a/docs/concepts/services-networking/nginx-secure-app.yaml b/docs/concepts/services-networking/nginx-secure-app.yaml index 9e4a16791e..ec180a18df 100644 --- a/docs/concepts/services-networking/nginx-secure-app.yaml +++ b/docs/concepts/services-networking/nginx-secure-app.yaml @@ -17,11 +17,14 @@ spec: selector: run: my-nginx --- -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx spec: + selector: + matchLabels: + run: my-nginx replicas: 1 template: metadata: diff --git a/docs/concepts/services-networking/run-my-nginx.yaml b/docs/concepts/services-networking/run-my-nginx.yaml index b3d8e336cd..76a879f5c4 100644 --- a/docs/concepts/services-networking/run-my-nginx.yaml +++ b/docs/concepts/services-networking/run-my-nginx.yaml @@ -1,8 +1,11 @@ -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx spec: + selector: + matchLabels: + run: my-nginx replicas: 2 template: metadata: diff --git a/docs/user-guide/nginx-secure-app.yaml b/docs/user-guide/nginx-secure-app.yaml index 9e4a16791e..ec180a18df 100644 --- a/docs/user-guide/nginx-secure-app.yaml +++ b/docs/user-guide/nginx-secure-app.yaml @@ -17,11 +17,14 @@ spec: selector: run: my-nginx --- -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx spec: + selector: + matchLabels: + run: my-nginx replicas: 1 template: metadata: diff --git a/docs/user-guide/run-my-nginx.yaml b/docs/user-guide/run-my-nginx.yaml index b3d8e336cd..76a879f5c4 100644 --- a/docs/user-guide/run-my-nginx.yaml +++ b/docs/user-guide/run-my-nginx.yaml @@ -1,8 +1,11 @@ -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx spec: + selector: + matchLabels: + run: my-nginx replicas: 2 template: metadata: From 17ee6902aa335bb99828c4f21adac9248af15843 Mon Sep 17 00:00:00 2001 From: Weibin Lin Date: Sat, 3 Feb 2018 00:10:06 +0800 Subject: [PATCH 052/329] Update apiVersion of Deployment to apps/v1 in v1.9 (#7163) --- docs/user-guide/walkthrough/deployment-update.yaml | 5 ++++- docs/user-guide/walkthrough/deployment.yaml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/walkthrough/deployment-update.yaml b/docs/user-guide/walkthrough/deployment-update.yaml index 8f0ac0b48c..14a7dc473b 100644 --- a/docs/user-guide/walkthrough/deployment-update.yaml +++ b/docs/user-guide/walkthrough/deployment-update.yaml @@ -1,8 +1,11 @@ -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment spec: + selector: + matchLabels: + app: nginx replicas: 2 template: metadata: diff --git a/docs/user-guide/walkthrough/deployment.yaml b/docs/user-guide/walkthrough/deployment.yaml index 8d14e2ef08..485be0dabc 100644 --- a/docs/user-guide/walkthrough/deployment.yaml +++ b/docs/user-guide/walkthrough/deployment.yaml @@ -1,8 +1,11 @@ -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment spec: + selector: + matchLabels: + app: nginx replicas: 2 # tells deployment to run 2 pods matching the template template: # create pods using pod definition in this template metadata: From 91bb74f8dfa9d0457f1a38380285d2b4c9d8ce18 Mon Sep 17 00:00:00 2001 From: steveperry-53 Date: Fri, 2 Feb 2018 12:21:18 -0800 Subject: [PATCH 053/329] Odds and ends --- .../application-developer/foundational.md | 18 +++++++++--------- .../application-developer/intermediate.md | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/user-journeys/users/application-developer/foundational.md b/docs/user-journeys/users/application-developer/foundational.md index ff2126bd23..f0eff01342 100644 --- a/docs/user-journeys/users/application-developer/foundational.md +++ b/docs/user-journeys/users/application-developer/foundational.md @@ -9,7 +9,7 @@ track: "USERS › APPLICATION DEVELOPER › FOUNDATIONAL" --- {% capture overview %} -If you're a developer looking to run applications on Kubernetes, this page and its linked topics can help you get started with the fundamentals. Though this page primarily describes development workflows, [the subsequent page in the series](/docs/home/?path=users&persona=app-developer&level=intermediate){:target="_blank"} cover more advanced, production setups. +If you're a developer looking to run applications on Kubernetes, this page and its linked topics can help you get started with the fundamentals. Though this page primarily describes development workflows, [the subsequent page in the series](/docs/home/?path=users&persona=app-developer&level=intermediate){:target="_blank"} covers more advanced, production setups. {: .note } **A quick note**
    This app developer "user journey" is *not* a comprehensive overview of Kubernetes. It focuses more on *what* you develop, test, and deploy to Kubernetes, rather than *how* the underlying infrastructure works.

    Though it's possible for a single person to manage both, in many organizations, it’s common to assign the latter to a dedicated {% glossary_tooltip text="cluster operator" term_id="cluster-operator" %}. @@ -20,7 +20,7 @@ If you're a developer looking to run applications on Kubernetes, this page and i {% capture body %} ## Get started with a cluster -#### Web-based Environment +#### Web-based environment If you're brand new to Kubernetes and simply want to experiment without setting up a full development environment, *web-based environments* are a good place to start: @@ -32,7 +32,7 @@ If you're brand new to Kubernetes and simply want to experiment without setting * [Play with Kubernetes](http://labs.play-with-k8s.com/){:target="_blank"} - A less structured environment than the *Katacoda* playground, for those who are more comfortable with Kubernetes concepts and want to explore further. It supports the ability to spin up multiple nodes. -#### Minikube (Recommended) +#### Minikube (recommended) Web-based environments are easy to access, but are not persistent. If you want to continue exploring Kubernetes in a workspace that you can come back to and change, *Minikube* is a good option. @@ -54,12 +54,12 @@ You can get basic information about your cluster with the commands `kubectl clus ## Deploy an application -#### Basic Workloads +#### Basic workloads The following examples demonstrate the fundamentals of deploying Kubernetes apps: - * **Stateless Apps**: [Deploy a simple nginx server](/docs/tasks/run-application/run-stateless-application-deployment/){:target="_blank"}. + * **Stateless apps**: [Deploy a simple nginx server](/docs/tasks/run-application/run-stateless-application-deployment/){:target="_blank"}. - * **Stateful Apps**: [Deploy a MySQL database](/docs/tasks/run-application/run-single-instance-stateful-application/){:target="_blank"}. + * **Stateful apps**: [Deploy a MySQL database](/docs/tasks/run-application/run-single-instance-stateful-application/){:target="_blank"}. Through these deployment tasks, you'll gain familiarity with the following: * General concepts @@ -156,13 +156,13 @@ If you're not running Kubernetes or a similar automated system, you might find t This process can be tedious and also inconvenient, especially if (2) happens in the early hours of the morning! -**If you have Kubernetes set up, however, manual intervention is not as necessary.** The Kubernetes [control plane](/docs/concepts/overview/components/#master-components){:target="_blank"}, which runs on your cluster's master node, will gracefully handle (3) and (4) on your behalf. As a a result, Kubernetes is often referred to as a *self-healing* system. +**If you have Kubernetes set up, however, manual intervention is not as necessary.** The Kubernetes [control plane](/docs/concepts/overview/components/#master-components){:target="_blank"}, which runs on your cluster's master node, gracefully handles (3) and (4) on your behalf. As a a result, Kubernetes is often referred to as a *self-healing* system. There are two key parts of the control plane that facilitate this behavior: the *Kubernetes API server* and the *Controllers*. -#### Kubernetes API Server +#### Kubernetes API server -For Kubernetes to be useful, it needs to know *what* sort of cluster state you want it to maintain. Your YAML of JSON *configuration files* declare this desired state in terms of one or more API objects, such as {% glossary_tooltip text="Deployments" term_id="deployment" %}. To make updates to your cluster's state, you submit these files to the {% glossary_tooltip text="Kubernetes API" term_id="kubernetes-api" %} server (`kube-apiserver`). +For Kubernetes to be useful, it needs to know *what* sort of cluster state you want it to maintain. Your YAML or JSON *configuration files* declare this desired state in terms of one or more API objects, such as {% glossary_tooltip text="Deployments" term_id="deployment" %}. To make updates to your cluster's state, you submit these files to the {% glossary_tooltip text="Kubernetes API" term_id="kubernetes-api" %} server (`kube-apiserver`). Examples of state include but are not limited to the following: diff --git a/docs/user-journeys/users/application-developer/intermediate.md b/docs/user-journeys/users/application-developer/intermediate.md index ea361c7ab6..638b5e74e8 100644 --- a/docs/user-journeys/users/application-developer/intermediate.md +++ b/docs/user-journeys/users/application-developer/intermediate.md @@ -30,7 +30,7 @@ As your Kubernetes use cases become more complex, you may find it helpful to fam The following API objects provide functionality for additional workload types, whether they are *persistent* or *terminating*. -#### Persistent Workloads +#### Persistent workloads Like Deployments, these API objects run indefinitely on a cluster until they are manually terminated. They are best for long-running applications. @@ -47,7 +47,7 @@ Like Deployments, these API objects run indefinitely on a cluster until they are | **When a Pod dies** | Reschedule on *any* node, with new name `example-a51z` | Reschedule on same node, as `example-0` | | **When a node becomes unreachable** | Pod(s) are scheduled onto new node, with new names | Pod(s) are marked as "Unknown", and aren't rescheduled unless the Node object is forcefully deleted | - In practice, this means that StatefulSets are best suited for scenarios where replicas (Pods) need to coordinate their workloads in a strongly consistent manner. Guaranteeing an identity for each Pod helps avoid [split brain](https://en.wikipedia.org/wiki/Split-brain_(computing)){:target="_blank"} side-effects in the case when a node becomes unreachable ([network partition](https://en.wikipedia.org/wiki/Network_partition){:target="_blank"}). This makes StatefulSets a great fit for distributed datastores like Cassandra or Elasticsearch. + In practice, this means that StatefulSets are best suited for scenarios where replicas (Pods) need to coordinate their workloads in a strongly consistent manner. Guaranteeing an identity for each Pod helps avoid [split-brain](https://en.wikipedia.org/wiki/Split-brain_(computing)){:target="_blank"} side effects in the case when a node becomes unreachable ([network partition](https://en.wikipedia.org/wiki/Network_partition){:target="_blank"}). This makes StatefulSets a great fit for distributed datastores like Cassandra or Elasticsearch. * **{% glossary_tooltip text="DaemonSets" term_id="daemonset" %}** - DaemonSets run continuously on every node in your cluster, even as nodes are added or swapped in. This guarantee is particularly useful for setting up global behavior across your cluster, such as: @@ -56,7 +56,7 @@ Like Deployments, these API objects run indefinitely on a cluster until they are * Network proxy or [service mesh](https://www.linux.com/news/whats-service-mesh-and-why-do-i-need-one){:target="_blank"} -#### Terminating Workloads +#### Terminating workloads In contrast to Deployments, these API objects are finite. They stop once the specified number of Pods have completed successfully. @@ -64,7 +64,7 @@ In contrast to Deployments, these API objects are finite. They stop once the spe * **{% glossary_tooltip text="CronJobs" term_id="cronjob" %}** - These are similar to Jobs, but allow you to schedule their execution for a specific time or for periodic recurrence. You might use CronJobs to send reminder emails or to run backup jobs. They are set up with a similar syntax as *crontab*. -#### Other Resources +#### Other resources For more info, you can check out [a list of additional Kubernetes resource types](/docs/reference/kubectl/overview/#resource-types){:target="_blank"} as well as the [API reference docs]({{ reference_docs_url }}){:target="_blank"}. @@ -72,7 +72,7 @@ There may be additional features not mentioned here that you may find useful, wh ## Deploy a production-ready workload -The beginner tutorials on this site, such as the [Guestbook app](/docs/tutorials/stateless-application/guestbook/){:target="_blank"}, are geared towards getting workloads up and running on your cluster. This prototyping is great for building your intuition around Kubernetes! However, in order to reliably and securely promote your workloads to production, you'll need to follow some additional best practices. +The beginner tutorials on this site, such as the [Guestbook app](/docs/tutorials/stateless-application/guestbook/){:target="_blank"}, are geared towards getting workloads up and running on your cluster. This prototyping is great for building your intuition around Kubernetes! However, in order to reliably and securely promote your workloads to production, you need to follow some additional best practices. #### Declarative configuration From 5c0a31cdb64a493d8e9f2fca5a581f32e71dbe9f Mon Sep 17 00:00:00 2001 From: liaoj82 <36027963+liaoj82@users.noreply.github.com> Date: Sat, 3 Feb 2018 04:52:05 +0800 Subject: [PATCH 054/329] Update network-plugins.md (#7191) --- docs/concepts/cluster-administration/network-plugins.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/cluster-administration/network-plugins.md b/docs/concepts/cluster-administration/network-plugins.md index cf32b735a5..9d3ec0b89d 100644 --- a/docs/concepts/cluster-administration/network-plugins.md +++ b/docs/concepts/cluster-administration/network-plugins.md @@ -18,7 +18,7 @@ Network plugins in Kubernetes come in a few flavors: ## Installation -The kubelet has a single default network plugin, and a default network common to the entire cluster. It probes for plugins when it starts up, remembers what it found, and executes the selected plugin at appropriate times in the pod lifecycle (this is only true for docker, as rkt manages its own CNI plugins). There are two Kubelet command line parameters to keep in mind when using plugins: +The kubelet has a single default network plugin, and a default network common to the entire cluster. It probes for plugins when it starts up, remembers what it found, and executes the selected plugin at appropriate times in the pod lifecycle (this is only true for Docker, as rkt manages its own CNI plugins). There are two Kubelet command line parameters to keep in mind when using plugins: * `network-plugin-dir`: Kubelet probes this directory for plugins on startup * `network-plugin`: The network plugin to use from `network-plugin-dir`. It must match the name reported by a plugin probed from the plugin directory. For CNI plugins, this is simply "cni". @@ -27,7 +27,7 @@ The kubelet has a single default network plugin, and a default network common to Besides providing the [`NetworkPlugin` interface](https://github.com/kubernetes/kubernetes/tree/{{page.fullversion}}/pkg/kubelet/network/plugins.go) to configure and clean up pod networking, the plugin may also need specific support for kube-proxy. The iptables proxy obviously depends on iptables, and the plugin may need to ensure that container traffic is made available to iptables. For example, if the plugin connects containers to a Linux bridge, the plugin must set the `net/bridge/bridge-nf-call-iptables` sysctl to `1` to ensure that the iptables proxy functions correctly. If the plugin does not use a Linux bridge (but instead something like Open vSwitch or some other mechanism) it should ensure container traffic is appropriately routed for the proxy. -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. +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. ### CNI From e4b0184be2e44a3d073113cb3c43bf154d199a28 Mon Sep 17 00:00:00 2001 From: Lingming Xia Date: Sat, 3 Feb 2018 05:17:06 +0800 Subject: [PATCH 055/329] use of a variable like instead of (#7183) --- docs/tasks/administer-cluster/memory-available.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tasks/administer-cluster/memory-available.sh b/docs/tasks/administer-cluster/memory-available.sh index 3e93dd2dc1..a699b1d2e2 100644 --- a/docs/tasks/administer-cluster/memory-available.sh +++ b/docs/tasks/administer-cluster/memory-available.sh @@ -10,7 +10,7 @@ memory_capacity_in_bytes=$((memory_capacity_in_kb * 1024)) memory_usage_in_bytes=$(cat /sys/fs/cgroup/memory/memory.usage_in_bytes) memory_total_inactive_file=$(cat /sys/fs/cgroup/memory/memory.stat | grep total_inactive_file | awk '{print $2}') -memory_working_set=$memory_usage_in_bytes +memory_working_set=${memory_usage_in_bytes} if [ "$memory_working_set" -lt "$memory_total_inactive_file" ]; then memory_working_set=0 @@ -28,4 +28,4 @@ echo "memory.total_inactive_file $memory_total_inactive_file" echo "memory.working_set $memory_working_set" echo "memory.available_in_bytes $memory_available_in_bytes" echo "memory.available_in_kb $memory_available_in_kb" -echo "memory.available_in_mb $memory_available_in_mb" \ No newline at end of file +echo "memory.available_in_mb $memory_available_in_mb" From c1faa033703f0dbcbbea590fd9df1da367afbc47 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Sat, 3 Feb 2018 05:28:09 +0800 Subject: [PATCH 056/329] Fix some format (#7139) --- .../concepts/workloads/controllers/deployment.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/concepts/workloads/controllers/deployment.md b/docs/concepts/workloads/controllers/deployment.md index 68ef204b2b..1482f673f9 100644 --- a/docs/concepts/workloads/controllers/deployment.md +++ b/docs/concepts/workloads/controllers/deployment.md @@ -52,9 +52,10 @@ In this example: [Docker Hub](https://hub.docker.com/) image at version 1.7.9. * The Deployment opens port 80 for use by the Pods. -Note: `matchLabels` is a map of {key,value} pairs. A single {key,value} in the matchLabels map -is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", +**Note:** `matchLabels` is a map of {key,value} pairs. A single {key,value} in the `matchLabels` map +is equivalent to an element of `matchExpressions`, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. +{: .note} The `template` field contains the following instructions: @@ -69,9 +70,10 @@ To create this Deployment, run the following command: kubectl create -f https://raw.githubusercontent.com/kubernetes/website/master/docs/concepts/workloads/controllers/nginx-deployment.yaml ``` -Note: You can append `--record` to this command to record the current command in the annotations of +**Note:** You can append `--record` to this command to record the current command in the annotations of the created or updated resource. This is useful for future review, such as investigating which commands were executed in each Deployment revision. +{: .note} Next, run `kubectl get deployments`. The output is similar to the following: @@ -145,7 +147,7 @@ The created ReplicaSet ensures that there are three `nginx` Pods running at all **Note:** Do not change this label. {: .note} -The `pod-template-hash label` is added by the Deployment controller to every ReplicaSet that a Deployment creates or adopts. +The `pod-template-hash` label is added by the Deployment controller to every ReplicaSet that a Deployment creates or adopts. This label ensures that child ReplicaSets of a Deployment do not overlap. It is generated by hashing the `PodTemplate` of the ReplicaSet and using the resulting hash as the label value that is added to the ReplicaSet selector, Pod template labels, and in any existing Pods that the ReplicaSet might have. @@ -273,7 +275,7 @@ in the new ReplicaSet, and the old ReplicaSet is scaled down to 0. ### Rollover (aka multiple updates in-flight) -Each time a new deployment object is observed by the deployment controller, a ReplicaSet is created to bring up +Each time a new deployment object is observed by the Deployment controller, a ReplicaSet is created to bring up the desired Pods if there is no existing ReplicaSet doing so. Existing ReplicaSet controlling Pods whose labels match `.spec.selector` but whose template does not match `.spec.template` are scaled down. Eventually, the new ReplicaSet will be scaled to `.spec.replicas` and all old ReplicaSets will be scaled to 0. @@ -362,7 +364,7 @@ nginx-deployment-3066724191-eocby 0/1 ImagePullBackOff 0 6s **Note:** The Deployment controller will stop the bad rollout automatically, and will stop scaling up the new ReplicaSet. This depends on the rollingUpdate parameters (`maxUnavailable` specifically) that you have specified. -Kubernetes by default sets the value to 1 and spec.replicas to 1 so if you haven't cared about setting those +Kubernetes by default sets the value to 1 and `spec.replicas` to 1 so if you haven't cared about setting those parameters, your Deployment can have 100% unavailability by default! This will be fixed in Kubernetes in a future version. {: .note} @@ -526,7 +528,7 @@ deployment "nginx-deployment" image updated ``` The image update starts a new rollout with ReplicaSet nginx-deployment-1989198191, but it's blocked due to the -maxUnavailable requirement that we mentioned above. +`maxUnavailable` requirement that we mentioned above. ```shell $ kubectl get rs From aab6a69687ab1e01a4502bffe6f40969dc441dfb Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Sat, 3 Feb 2018 05:32:13 +0800 Subject: [PATCH 057/329] Fix Pod's property name (#7157) --- .../configuration/pod-priority-preemption.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/concepts/configuration/pod-priority-preemption.md b/docs/concepts/configuration/pod-priority-preemption.md index e9ebcf1157..1a85f4593b 100644 --- a/docs/concepts/configuration/pod-priority-preemption.md +++ b/docs/concepts/configuration/pod-priority-preemption.md @@ -26,9 +26,9 @@ To use priority and preemption in Kubernetes 1.8 and later, follow these steps: 1. Add one or more PriorityClasses. -1. Create Pods with `PriorityClassName` set to one of the added PriorityClasses. +1. Create Pods with `priorityClassName` set to one of the added PriorityClasses. Of course you do not need to create the Pods directly; normally you would add -`PriorityClassName` to the Pod template of a collection object like a Deployment. +`priorityClassName` to the Pod template of a collection object like a Deployment. The following sections provide more information about these steps. @@ -49,13 +49,13 @@ Also enable scheduling.k8s.io/v1alpha1 API and Priority [admission controller](/ ``` After the feature is enabled, you can create [PriorityClasses](#priorityclass) -and create Pods with [`PriorityClassName`](#pod-priority) set. +and create Pods with [`priorityClassName`](#pod-priority) set. If you try the feature and then decide to disable it, you must remove the PodPriority command-line flag or set it to false, and then restart the API server and scheduler. After the feature is disabled, the existing Pods keep their priority fields, but preemption is disabled, and priority fields are ignored, and you -cannot set PriorityClassName in new Pods. +cannot set `priorityClassName` in new Pods. ## PriorityClass @@ -71,9 +71,9 @@ object for each such mapping that they want. PriorityClass also has two optional fields: `globalDefault` and `description`. The `globalDefault` field indicates that the value of this PriorityClass should -be used for Pods without a `PriorityClassName`. Only one PriorityClass with +be used for Pods without a `priorityClassName`. Only one PriorityClass with `globalDefault` set to true can exist in the system. If there is no PriorityClass -with `globalDefault` set, the priority of Pods with no `PriorityClassName` is zero. +with `globalDefault` set, the priority of Pods with no `priorityClassName` is zero. The `description` field is an arbitrary string. It is meant to tell users of the cluster when they should use this PriorityClass. From a7d76d7f806b6d66940f45a4964b4b0841007c7e Mon Sep 17 00:00:00 2001 From: Joseph Heck Date: Fri, 2 Feb 2018 16:33:08 -0500 Subject: [PATCH 058/329] content updates from Steve's review (#7217) * content updates from Steve's review * catching that missed 'k'->'K' * two more changes based on feedback --- .../users/cluster-operator/foundational.md | 25 +++++++++++-------- .../users/cluster-operator/intermediate.md | 20 +++++++-------- 2 files changed, 24 insertions(+), 21 deletions(-) diff --git a/docs/user-journeys/users/cluster-operator/foundational.md b/docs/user-journeys/users/cluster-operator/foundational.md index 7804bd0387..7d44ecc6ac 100644 --- a/docs/user-journeys/users/cluster-operator/foundational.md +++ b/docs/user-journeys/users/cluster-operator/foundational.md @@ -27,21 +27,24 @@ Metrics If you have not already done so, start your understanding by reading through [What is Kubernetes?](/docs/concepts/overview/what-is-kubernetes/), which introduces a number of basic concepts and terms. -Kubernetes is quite flexible, and can a cluster can be run in a wide variety of places. You can interact with Kubernetes entirely on your own laptop or local development machine with it running within a virtual machine. Kubernetes can also run on virtual machines hosted either locally or in a cloud provider, and you can run a kubernetes cluster on bare metal. +Kubernetes is quite flexible, and a cluster can be run in a wide variety of places. You can interact with Kubernetes entirely on your own laptop or local development machine with it running within a virtual machine. Kubernetes can also run on virtual machines hosted either locally or in a cloud provider, and you can run a Kubernetes cluster on bare metal. + +A cluster is made up of one or more [Nodes](/docs/concepts/architecture/nodes/); where a node is a physical or virtual machine. +If there is more than one node in your cluster then the nodes are connected with a [cluster network](/docs/concepts/cluster-administration/networking/). +Regardless of how many nodes, all Kubernetes clusters generally have the same components, which are described in [Kubernetes Components](/docs/concepts/overview/components). -A cluster is made up of one or more [Nodes](/docs/concepts/architecture/nodes/); where a node is a physical or virtual machine. If there are more than one node in your cluster, then each of the nodes are connected with a [cluster network](/docs/concepts/cluster-administration/networking/). Regardless of how many nodes, all Kubernetes clusters will generally have the same components, which are described in [Kubernetes Components](/docs/concepts/overview/components). ## Learn about Kubernetes basics -A good way to become familiar with how to manage and operate a Kubernetes cluster is by setting them up. +A good way to become familiar with how to manage and operate a Kubernetes cluster is by setting one up. One of the most compact ways to experiment with a cluster is [Installing and using Minikube](/docs/tasks/tools/install-minikube/). Minikube is a command line tool for setting up and running a single-node cluster within a virtual machine on your local laptop or development computer. Minikube is even available through your browser at the [Katacoda Kubernetes Playground](https://www.katacoda.com/courses/kubernetes/playground). -Katacoda provides a browser-based connection to a single-node cluster, using minikube behind the scenes, to support a number of tutorials to explore Kubernetes. You can also leverage the web-based [Play with Kubernetes](http://labs.play-with-k8s.com/) to the same ends - a temporary cluster to play with in on the web. +Katacoda provides a browser-based connection to a single-node cluster, using minikube behind the scenes, to support a number of tutorials to explore Kubernetes. You can also leverage the web-based [Play with Kubernetes](http://labs.play-with-k8s.com/) to the same ends - a temporary cluster to play with on the web. You interact with Kubernetes either through a dashboard, an API, or using a command-line tool (such as `kubectl`) that interacts with the Kubernetes API. -Be familiar with how to [Organizing Cluster Access](/docs/concepts/configuration/organize-cluster-access-kubeconfig/) with configuration files. +Be familiar with [Organizing Cluster Access](/docs/concepts/configuration/organize-cluster-access-kubeconfig/) by using configuration files. The Kubernetes API exposes a number of resources that provide the building blocks and abstractions that are used to run software on Kubernetes. -Learn more about these resources at [Understanding Kubernetes Objects](/docs/concepts/overview/kubernetes-objects) +Learn more about these resources at [Understanding Kubernetes Objects](/docs/concepts/overview/kubernetes-objects). These resources are covered in a number of articles within the Kubernetes documentation. * [Pod Overview](/docs/concepts/workloads/pods/pod-overview/) @@ -59,15 +62,15 @@ These resources are covered in a number of articles within the Kubernetes docume * [ConfigMaps](/docs/tasks/configure-pod-container/configure-pod-configmap/) * [Secrets](/docs/concepts/configuration/secret/) -As a cluster operator you may not need to use all these resources although you should be familiar with them to understand how the cluster is working and being used. +As a cluster operator you may not need to use all these resources, although you should be familiar with them to understand how the cluster is being used. There are a number of additional resources that you should be aware of, some listed under [Intermediate Resources](/docs/user-journeys/users/cluster-operator/intermediate#section-1). You should also be familiar with [how to manage kubernetes resources](/docs/concepts/cluster-administration/manage-deployment/). -## Get information about my cluster +## Get information about your cluster -You can [access clusters using the cluster API](/docs/tasks/administer-cluster/access-cluster-api/). -If you are not already familiar, run through the tutorial to [view your cluster's Pods and Nodes](/docs/tutorials/kubernetes-basics/explore-intro/). -Using kubectl, you can retrieve information very quickly. +You can [access clusters using the Kubernetes API](/docs/tasks/administer-cluster/access-cluster-api/). +If you are not already familiar with how to do this, you can review the [introductory tutorial](/docs/tutorials/kubernetes-basics/explore-intro/). +Using `kubectl`, you can retrieve information about your Kubernetes cluster very quickly. To get basic information about the nodes in your cluster run the command `kubectl get nodes`. You can get more detailed information for the same nodes with the command `kubectl describe nodes`. You can see the status of the core of kubernetes with the command `kubectl get componentstatuses`. diff --git a/docs/user-journeys/users/cluster-operator/intermediate.md b/docs/user-journeys/users/cluster-operator/intermediate.md index 1c7a93eee3..fc56c41e31 100644 --- a/docs/user-journeys/users/cluster-operator/intermediate.md +++ b/docs/user-journeys/users/cluster-operator/intermediate.md @@ -16,9 +16,9 @@ If you are a cluster operator looking to expand your grasp of Kubernetes, this p {% capture body %} -## Work with Ingress, Networking, Storage, Workloads +## Work with ingress, networking, storage, and workloads -Introductions to Kubernetes typically discuss simpler stateless applications. As you move into fuller dev, testing, and production environments, you need to consider more complex cases: +Introductions to Kubernetes typically discuss simple stateless applications. As you move into more complex development, testing, and production environments, you need to consider more complex cases: Communication: Ingress and Networking @@ -49,12 +49,12 @@ And how Pods work with scheduling, priority, disruptions: * [Pods and Priority](/docs/concepts/configuration/pod-priority-preemption/) * [Disruptions](/docs/concepts/workloads/pods/disruptions/) * [Assigning Pods to Nodes](/docs/concepts/configuration/assign-pod-node/) -* [Managing compute resources for containers](/docs/concepts/configuration/manage-compute-resources-container/) -* [Configuration best practices](/docs/concepts/configuration/overview/) +* [Managing Compute Resources for Containers](/docs/concepts/configuration/manage-compute-resources-container/) +* [Configuration Best Practices](/docs/concepts/configuration/overview/) ## Implement security best practices -Securing your cluster includes work beyond the scope of Kubernetes itself. (TODO: identify major items) +Securing your cluster includes work beyond the scope of Kubernetes itself. In Kubernetes, you configure access control: @@ -62,7 +62,7 @@ In Kubernetes, you configure access control: * [Authenticating](/docs/admin/authentication/) * [Using Admission Controllers](/docs/admin/admission-controllers/) -You also configure authorization. That is, you determine not just how users and services authenticate to the API server, or whether they have access, but also what resources they have access to. Role-based access control (RBAC) is currently the recommended mechanism for controlling authorization to Kubernetes resources. Other authorization modes are available for more specific use cases. +You also configure authorization. That is, you determine not just how users and services authenticate to the API server, or whether they have access, but also what resources they have access to. Role-based access control (RBAC) is the recommended mechanism for controlling authorization to Kubernetes resources. Other authorization modes are available for more specific use cases. * [Authorization Overview](/docs/admin/authorization/) * [Using RBAC Authorization](/docs/admin/authorization/rbac/) @@ -73,19 +73,19 @@ You should create Secrets to hold sensitive data such as passwords, tokens, or k ## Implement custom logging and monitoring -Monitoring the health and state of your cluster is important. Collecting metrics, logging, and providing access to that information are common needs. Kubernetes provides some basic logging structure and you may want to use additional tools to help aggregate and analyze log data. +Monitoring the health and state of your cluster is important. Collecting metrics, logging, and providing access to that information are common needs. Kubernetes provides some basic logging structure, and you may want to use additional tools to help aggregate and analyze log data. Start with the [basics on Kubernetes logging](/docs/concepts/cluster-administration/logging/) to understand how containers do logging and common patterns. Cluster operators often want to add something to gather and aggregate those logs. See the following topics: * [Logging Using Elasticsearch and Kibana](/docs/tasks/debug-application-cluster/logging-elasticsearch-kibana/) * [Logging Using Stackdriver](/docs/tasks/debug-application-cluster/logging-stackdriver/) -Like log aggregation, many clusters utilize additional software to help capture metrics and display them. There is an overview at of tools at [Tools for Monitoring Compute, Storage, and Network Resources](/docs/tasks/debug-application-cluster/resource-usage-monitoring/). +Like log aggregation, many clusters utilize additional software to help capture metrics and display them. There is an overview of tools at [Tools for Monitoring Compute, Storage, and Network Resources](/docs/tasks/debug-application-cluster/resource-usage-monitoring/). Kubernetes also supports a [core metrics pipeline](/docs/tasks/debug-application-cluster/core-metrics-pipeline/) which can be used by Horizontal Pod Autoscaler with custom metrics. -[Prometheus](https://prometheus.io/), which is another CNCF project, is a common choice to support capture and temporary collection of metrics. There are several options to installing Prometheus, including using the [stable/prometheus](https://github.com/kubernetes/charts/tree/master/stable/prometheus) [helm](https://helm.sh/) chart, and CoreOS provides a [prometheus operator](https://github.com/coreos/prometheus-operator) and [kube-prometheus](https://github.com/coreos/prometheus-operator/tree/master/contrib/kube-prometheus) which adds on Grafana dashboards and common configurations. +[Prometheus](https://prometheus.io/), which is another CNCF project, is a common choice to support capture and temporary collection of metrics. There are several options for installing Prometheus, including using the [stable/prometheus](https://github.com/kubernetes/charts/tree/master/stable/prometheus) [helm](https://helm.sh/) chart, and CoreOS provides a [prometheus operator](https://github.com/coreos/prometheus-operator) and [kube-prometheus](https://github.com/coreos/prometheus-operator/tree/master/contrib/kube-prometheus), which adds on Grafana dashboards and common configurations. -A common configuration on [minikube](https://github.com/kubernetes/minikube) and some kubernetes clusters used [Heapster](https://github.com/kubernetes/heapster) +A common configuration on [Minikube](https://github.com/kubernetes/minikube) and some Kubernetes clusters uses [Heapster](https://github.com/kubernetes/heapster) [along with InfluxDB and Grafana](https://github.com/kubernetes/heapster/blob/master/docs/influxdb.md). There is a [walkthrough of how to install this configuration in your cluster](https://blog.kublr.com/how-to-utilize-the-heapster-influxdb-grafana-stack-in-kubernetes-for-monitoring-pods-4a553f4d36c9). As of Kubernetes 1.9, the [sig-instrumentation](https://github.com/kubernetes/community/tree/master/sig-instrumentation) team is shifting away from an all-inclusive monitoring pattern with heapster, described in [Prometheus vs. Heapster vs. Kubernetes Metrics APIs](https://brancz.com/2018/01/05/prometheus-vs-heapster-vs-kubernetes-metrics-apis/). From bd230c86ef5db4dc4965436d07f212e36779d9cc Mon Sep 17 00:00:00 2001 From: Rimas Mocevicius Date: Sat, 3 Feb 2018 01:45:05 +0000 Subject: [PATCH 059/329] Remove deprecated Kubernetes on Mesos docs (#6668) * Removed depreciated Kubernetes on Mesos docs * remove mesos references --- _data/setup.yml | 1 - docs/getting-started-guides/mesos-docker.md | 320 ---------------- docs/getting-started-guides/mesos/OWNERS | 5 - docs/getting-started-guides/mesos/index.md | 341 ------------------ .../mesos/k8s-firewall.png | Bin 88722 -> 0 bytes .../mesos/k8s-guestbook.png | Bin 44000 -> 0 bytes docs/setup/pick-right-solution.md | 4 +- 7 files changed, 1 insertion(+), 670 deletions(-) delete mode 100644 docs/getting-started-guides/mesos-docker.md delete mode 100644 docs/getting-started-guides/mesos/OWNERS delete mode 100644 docs/getting-started-guides/mesos/index.md delete mode 100755 docs/getting-started-guides/mesos/k8s-firewall.png delete mode 100755 docs/getting-started-guides/mesos/k8s-guestbook.png diff --git a/_data/setup.yml b/_data/setup.yml index 4e76785aad..182b2892ac 100644 --- a/_data/setup.yml +++ b/_data/setup.yml @@ -73,7 +73,6 @@ toc: - docs/getting-started-guides/rkt/index.md - docs/getting-started-guides/rkt/notes.md - - docs/getting-started-guides/mesos/index.md - docs/getting-started-guides/mesos-docker.md - title: Bare Metal diff --git a/docs/getting-started-guides/mesos-docker.md b/docs/getting-started-guides/mesos-docker.md deleted file mode 100644 index 05a26dac05..0000000000 --- a/docs/getting-started-guides/mesos-docker.md +++ /dev/null @@ -1,320 +0,0 @@ ---- -approvers: -- jdef -- karlkfi -title: Kubernetes on Mesos on Docker ---- - -The mesos/docker provider uses docker-compose to launch Kubernetes as a Mesos framework, running in docker with its -dependencies (etcd & mesos). - -* TOC -{:toc} - -## Cluster Goals - -- kubernetes development -- pod/service development -- demoing -- fast deployment -- minimal hardware requirements -- minimal configuration -- entry point for exploration -- simplified networking -- fast end-to-end tests -- local deployment - -Non-Goals: - -- high availability -- fault tolerance -- remote deployment -- production usage -- monitoring -- long running -- state persistence across restarts - -## Cluster Topology - -The cluster consists of several docker containers linked together by docker-managed hostnames: - -| Component | Hostname | Description | -|-------------------------------|-----------------------------|-----------------------------------------------------------------------------------------| -| docker-grand-ambassador | | Proxy to allow circular hostname linking in docker | -| etcd | etcd | Key/Value store used by Mesos | -| Mesos Master | mesosmaster1 | REST endpoint for interacting with Mesos | -| Mesos Slave (x2) | mesosslave1, mesosslave2 | Mesos agents that offer resources and run framework executors (e.g. Kubernetes Kublets) | -| Kubernetes API Server | apiserver | REST endpoint for interacting with Kubernetes | -| Kubernetes Controller Manager | controller | | -| Kubernetes Scheduler | scheduler | Schedules container deployment by accepting Mesos offers | - -## Prerequisites - -Required: - -- [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) - version control system -- [Docker CLI](https://docs.docker.com/) - container management command line client -- [Docker Engine](https://docs.docker.com/) - container management daemon - - On Mac, use [Docker Machine](https://docs.docker.com/machine/install-machine/) -- [Docker Compose](https://docs.docker.com/compose/install/) - multi-container application orchestration - -Optional: - -- [Virtual Box](https://www.virtualbox.org/wiki/Downloads) - - Free x86 virtualization engine with a Docker Machine driver -- [Golang](https://golang.org/doc/install) - Go programming language - - Required to build Kubernetes locally -- [Make](https://en.wikipedia.org/wiki/Make_(software)) - Utility for building executables from source - - Required to build Kubernetes locally with make - -### Install on Mac (Homebrew) - -It's possible to install all of the above via [Homebrew](http://brew.sh/) on a Mac. - -Some steps print instructions for configuring or launching. Make sure each is properly set up before continuing to the next step. - -```shell -brew install git -brew install caskroom/cask/brew-cask -brew cask install virtualbox -brew install docker -brew install docker-machine -brew install docker-compose -``` - -### Install on Linux - -Most of the above are available via apt and yum, but depending on your distribution, you may have to install via other -means to get the latest versions. - -It is recommended to use Ubuntu, simply because it best supports AUFS, used by docker to mount volumes. Alternate file -systems may not fully support docker-in-docker. - -In order to build Kubernetes, the current user must be in a docker group with sudo privileges. -See the docker docs for [instructions](https://docs.docker.com/installation/ubuntulinux/#create-a-docker-group). - - -#### Docker Machine Config (Mac) - -If on a Mac using docker-machine, the following steps will make the docker IPs (in the virtualbox VM) reachable from the -host machine (Mac). - -1. Create VM - - oracle-virtualbox - - ```shell - docker-machine create --driver virtualbox kube-dev - eval "$(docker-machine env kube-dev)" - ``` - -2. Set the VM's host-only network to "promiscuous mode": - - oracle-virtualbox - - ```conf - docker-machine stop kube-dev - VBoxManage modifyvm kube-dev --nicpromisc2 allow-all - docker-machine start kube-dev - ``` - - This allows the VM to accept packets that were sent to a different IP. - - Since the host-only network routes traffic between VMs and the host, other VMs will also be able to access the docker - IPs, if they have the following route. - -1. Route traffic to docker through the docker-machine IP: - -```shell -sudo route -n add -net 172.17.0.0 $(docker-machine ip kube-dev) -``` - - Since the docker-machine IP can change when the VM is restarted, this route may need to be updated over time. - To delete the route later: `sudo route delete 172.17.0.0` - - -## Walkthrough - -1. Checkout source - - ```shell - git clone https://github.com/kubernetes/kubernetes - cd kubernetes - ``` - - By default, that will get you the bleeding edge of master branch. - You may want a [release branch](https://github.com/kubernetes/kubernetes/releases) instead, - if you have trouble with master. - -1. Build binaries - - You'll need to build kubectl (CLI) for your local architecture and operating system and the rest of the server binaries for linux/amd64. - - Building a new release covers both cases: - - ```shell - KUBERNETES_CONTRIB=mesos build/release.sh - ``` - - For developers, it may be faster to [build locally](#build-locally). - -1. [Optional] Build docker images - - The following docker images are built as part of `./cluster/kube-up.sh`, but it may make sense to build them manually the first time because it may take a while. - - 1. Test image includes all the dependencies required for running e2e tests. - - ```shell - ./cluster/mesos/docker/test/build.sh - ``` - - In the future, this image may be available to download. It doesn't contain anything specific to the current release, except its build dependencies. - - 1. Kubernetes-Mesos image includes the compiled linux binaries. - - ```shell - ./cluster/mesos/docker/km/build.sh - ``` - - This image needs to be built every time you recompile the server binaries. - -1. [Optional] Configure Mesos resources - - By default, the mesos-slaves are configured to offer a fixed amount of resources (cpus, memory, disk, ports). - If you want to customize these values, update the `MESOS_RESOURCES` environment variables in `./cluster/mesos/docker/docker-compose.yml`. - If you delete the `MESOS_RESOURCES` environment variables, the resource amounts will be auto-detected based on the host resources, which will over-provision by > 2x. - - If the configured resources are not available on the host, you may want to increase the resources available to Docker Engine. - You may have to increase you VM disk, memory, or cpu allocation. See the Docker Machine docs for details - ([Virtualbox](https://docs.docker.com/machine/drivers/virtualbox)) - - -1. Configure provider - - ```shell - export KUBERNETES_PROVIDER=mesos/docker - ``` - - This tells cluster scripts to use the code within `cluster/mesos/docker`. - -1. Create cluster - - ```shell - ./cluster/kube-up.sh - ``` - - If you manually built all the above docker images, you can skip that step during kube-up: - - ```shell - MESOS_DOCKER_SKIP_BUILD=true ./cluster/kube-up.sh - ``` - - After deploying the cluster, `~/.kube/config` will be created or updated to configure kubectl to target the new cluster. - -1. Explore tutorials - - To learn more about Pods, Volumes, Labels, Services, and Replication Controllers, start with the - [Kubernetes Tutorials](/docs/tutorials/). - - To skip to a more advanced example, see the [Guestbook Example](https://github.com/kubernetes/examples/tree/{{page.githubbranch}}/guestbook/) - -1. Destroy cluster - - ```shell - ./cluster/kube-down.sh - ``` - -## Addons - -The `kube-up` for the mesos/docker provider will automatically deploy KubeDNS and KubeUI addons as pods/services. - -Check their status with: - -```shell -./cluster/kubectl.sh get pods --namespace=kube-system -``` - -### KubeUI - -The web-based Kubernetes UI is accessible in a browser through the API Server proxy: `https://:6443/ui/`. - -By default, basic-auth is configured with user `admin` and password `admin`. - -The IP of the API Server can be found using `./cluster/kubectl.sh cluster-info`. - - -## End To End Testing - -Warning: e2e tests can take a long time to run. You may not want to run them immediately if you're just getting started. - -While your cluster is up, you can run the end-to-end tests: - -```shell -./cluster/test-e2e.sh -``` - -Notable parameters: -- Increase the logging verbosity: `-v=2` -- Run only a subset of the tests (regex matching): `-ginkgo.focus=` - -To build, deploy, test, and destroy, all in one command (plus unit & integration tests): - -```shell -make test_e2e -``` - -## Kubernetes CLI - -When compiling from source, it's simpler to use the `./cluster/kubectl.sh` script, which detects your platform & -architecture and proxies commands to the appropriate `kubectl` binary. - -ex: `./cluster/kubectl.sh get pods` - - -## Helpful scripts - -- Kill all docker containers - - ```shell - docker ps -q -a | xargs docker rm -f - ``` - -- Clean up unused docker volumes - - ```shell - docker run -v /var/run/docker.sock:/var/run/docker.sock -v /var/lib/docker:/var/lib/docker --rm martin/docker-cleanup-volumes - ``` - -## Build Locally - -The steps above tell you how to build in a container, for minimal local dependencies. But if you have Go and Make installed you can build locally much faster: - -```shell -KUBERNETES_CONTRIB=mesos make -``` - -However, if you're not on linux, you'll still need to compile the linux/amd64 server binaries: - -```shell -KUBERNETES_CONTRIB=mesos build/run.sh hack/build-go.sh -``` - -The above two steps should be significantly faster than cross-compiling a whole new release for every supported platform (which is what `./build/release.sh` does). - -Breakdown: - -- `KUBERNETES_CONTRIB=mesos` - enables building of the contrib/mesos binaries -- `hack/build-go.sh` - builds the Go binaries for the current architecture (linux/amd64 when in a docker container) -- `make` - delegates to `hack/build-go.sh` -- `build/run.sh` - executes a command in the build container -- `build/release.sh` - cross compiles Kubernetes for all supported architectures and operating systems (slow) - -## Support Level - - -IaaS Provider | Config. Mgmt | OS | Networking | Docs | Conforms | Support Level --------------------- | ------------ | ------ | ---------- | --------------------------------------------- | ---------| ---------------------------- -Mesos/Docker | custom | Ubuntu | Docker | [docs](/docs/getting-started-guides/mesos-docker) | | Community ([Kubernetes-Mesos Authors](https://github.com/mesosphere/kubernetes-mesos/blob/master/AUTHORS.md)) - -For support level information on all solutions, see the [Table of solutions](/docs/getting-started-guides/#table-of-solutions) chart. - diff --git a/docs/getting-started-guides/mesos/OWNERS b/docs/getting-started-guides/mesos/OWNERS deleted file mode 100644 index d90129ea58..0000000000 --- a/docs/getting-started-guides/mesos/OWNERS +++ /dev/null @@ -1,5 +0,0 @@ -approvers: -- jdef -- sttts -- thockin - diff --git a/docs/getting-started-guides/mesos/index.md b/docs/getting-started-guides/mesos/index.md deleted file mode 100644 index 08d92cbeb0..0000000000 --- a/docs/getting-started-guides/mesos/index.md +++ /dev/null @@ -1,341 +0,0 @@ ---- -approvers: -- jdef -title: Kubernetes on Mesos ---- - -* TOC -{:toc} - -## About Kubernetes on Mesos - - - -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. - -This tutorial will walk you through setting up Kubernetes on a Mesos cluster. -It provides a step by step walk through of adding Kubernetes to a Mesos cluster and starting your first pod with an nginx webserver. - -**NOTE:** There are [known issues with the current implementation][7] and support for centralized logging and monitoring is not yet available. -Please [file an issue against the kubernetes-mesos project][8] if you have problems completing the steps below. - -Further information is available in the Kubernetes on Mesos [contrib directory][13]. - -### Prerequisites - -- Understanding of [Apache Mesos][6] -- A running [Mesos cluster on Google Compute Engine][5] -- A [VPN connection][10] to the cluster -- A machine in the cluster which should become the Kubernetes *master node* with: - - Go (see [here](https://git.k8s.io/community/contributors/devel/development.md) for required versions) - - make (i.e. build-essential) - - Docker - -**Note**: You *can*, but you *don't have to* deploy Kubernetes-Mesos on the same machine the Mesos master is running on. - -### Deploy Kubernetes-Mesos - -Log into the future Kubernetes *master node* over SSH, replacing the placeholder below with the correct IP address. - -```shell -ssh jclouds@${ip_address_of_master_node} -``` - -Build Kubernetes-Mesos. - -```shell -git clone https://github.com/kubernetes-incubator/kube-mesos-framework -cd kube-mesos-framework -make -``` - -Set some environment variables. -The internal IP address of the master may be obtained via `hostname -i`. - -```shell -export KUBERNETES_MASTER_IP=$(hostname -i) -export KUBERNETES_MASTER=http://${KUBERNETES_MASTER_IP}:8888 -``` - -Note that KUBERNETES_MASTER is used as the api endpoint. If you have existing `~/.kube/config` and point to another endpoint, you need to add option `--server=${KUBERNETES_MASTER}` to kubectl in later steps. - -### Deploy etcd - -Start etcd and verify that it is running: - -```shell -sudo docker run -d --hostname $(uname -n) --name etcd \ - -p 4001:4001 -p 7001:7001 quay.io/coreos/etcd:v2.2.1 \ - --listen-client-urls http://0.0.0.0:4001 \ - --advertise-client-urls http://${KUBERNETES_MASTER_IP}:4001 -``` - -```shell -$ sudo docker ps -CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -fd7bac9e2301 quay.io/coreos/etcd:v2.2.1 "/etcd" 5s ago Up 3s 2379/tcp, 2380/... etcd -``` - -It's also a good idea to ensure your etcd instance is reachable by testing it - -```shell -curl -L http://${KUBERNETES_MASTER_IP}:4001/v2/keys/ -``` - -If connectivity is OK, you will see an output of the available keys in etcd (if any). - -### Start Kubernetes-Mesos Services - -Update your PATH to more easily run the Kubernetes-Mesos binaries: - -```shell -export PATH="$(pwd)/_output/local/go/bin:$PATH" -``` - -Identify your Mesos master: depending on your Mesos installation this is either a `host:port` like `mesos-master:5050` or a ZooKeeper URL like `zk://zookeeper:2181/mesos`. -In order to let Kubernetes survive Mesos master changes, the ZooKeeper URL is recommended for production environments. - -```shell -export MESOS_MASTER= -``` - -Create a cloud config file `mesos-cloud.conf` in the current directory with the following contents: - -```shell -$ cat <mesos-cloud.conf -[mesos-cloud] - mesos-master = ${MESOS_MASTER} -EOF -``` - -Now start the kubernetes-mesos API server, controller manager, and scheduler on the master node: - -```shell -$ km apiserver \ - --address=${KUBERNETES_MASTER_IP} \ - --etcd-servers=http://${KUBERNETES_MASTER_IP}:4001 \ - --service-cluster-ip-range=10.10.10.0/24 \ - --port=8888 \ - --cloud-provider=mesos \ - --cloud-config=mesos-cloud.conf \ - --secure-port=0 \ - --v=1 >apiserver.log 2>&1 & - -$ km controller-manager \ - --master=${KUBERNETES_MASTER_IP}:8888 \ - --cloud-provider=mesos \ - --cloud-config=./mesos-cloud.conf \ - --v=1 >controller.log 2>&1 & - -$ km scheduler \ - --address=${KUBERNETES_MASTER_IP} \ - --mesos-master=${MESOS_MASTER} \ - --etcd-servers=http://${KUBERNETES_MASTER_IP}:4001 \ - --mesos-user=root \ - --api-servers=${KUBERNETES_MASTER_IP}:8888 \ - --cluster-dns=10.10.10.10 \ - --cluster-domain=cluster.local \ - --v=2 >scheduler.log 2>&1 & -``` - -Disown your background jobs so that they'll stay running if you log out. - -```shell -disown -a -``` - -#### Validate KM Services - -Interact with the kubernetes-mesos framework via `kubectl`: - -```shell -$ kubectl get pods -NAME READY STATUS RESTARTS AGE -``` - -```shell -# NOTE: your service IPs will likely differ -$ kubectl get services -NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE -k8sm-scheduler 10.10.10.113 10251/TCP 1d -kubernetes 10.10.10.1 443/TCP 1d -``` - -Lastly, look for Kubernetes in the Mesos web GUI by pointing your browser to -`http://`. Make sure you have an active VPN connection. -Go to the Frameworks tab, and look for an active framework named "Kubernetes". - -## Spin up a pod - -Write a JSON pod description to a local file: - -```shell -$ cat <nginx.yaml -``` - -```yaml -apiVersion: v1 -kind: Pod -metadata: - name: nginx -spec: - containers: - - name: nginx - image: nginx - ports: - - containerPort: 80 -EOPOD -``` - -Send the pod description to Kubernetes using the `kubectl` CLI: - -```shell -$ kubectl create -f ./nginx.yaml -pod "nginx" created -``` - -Wait a minute or two while `dockerd` downloads the image layers from the internet. -We can use the `kubectl` interface to monitor the status of our pod: - -```shell -$ kubectl get pods -NAME READY STATUS RESTARTS AGE -nginx 1/1 Running 0 14s -``` - -Verify that the pod task is running in the Mesos web GUI. Click on the -Kubernetes framework. The next screen should show the running Mesos task that -started the Kubernetes pod. - -## Launching kube-dns - -Kube-dns is an addon for Kubernetes which adds DNS-based service discovery to the cluster. For a detailed explanation see [DNS in Kubernetes][4]. - -The kube-dns addon runs as a pod inside the cluster. The pod consists of three co-located containers: - -- a local etcd instance -- the [kube-dns][11] DNS server - -We assume that kube-dns will use - -- the service IP `10.10.10.10` -- and the `cluster.local` domain. - -Note that we have passed these two values already as parameter to the apiserver above. - -A template for a replication controller spinning up the pod with the 3 containers can be found at [cluster/addons/dns/kubedns-controller.yaml.in][12] in the repository. The following steps are necessary in order to get a valid replication controller yaml file: - -{% assign dns_replicas = "{{ pillar['dns_replicas'] }}" %} -{% assign dns_domain = "{{ pillar['dns_domain'] }}" %} -- replace `{{ dns_replicas }}` with `1` -- replace `{{ dns_domain }}` with `cluster.local.` -- add `--kube_master_url=${KUBERNETES_MASTER}` parameter to the kube2sky container command. - -In addition the service template at [cluster/addons/dns/kubedns-controller.yaml.in][12] needs the following replacement: - -{% assign dns_server = "{{ pillar['dns_server'] }}" %} -- `{{ dns_server }}` with `10.10.10.10`. - -To do this automatically: - -```shell{% raw %} -sed -e "s/{{ pillar\['dns_replicas'\] }}/1/g;"\ -"s,\(command = \"/kube2sky\"\),\\1\\"$'\n'" - --kube_master_url=${KUBERNETES_MASTER},;"\ -"s/{{ pillar\['dns_domain'\] }}/cluster.local/g" \ - cluster/addons/dns/kubedns-controller.yaml.in > kubedns-controller.yaml -sed -e "s/{{ pillar\['dns_server'\] }}/10.10.10.10/g" \ - cluster/addons/dns/kubedns-svc.yaml.in > kubedns-svc.yaml{% endraw %} -``` - -Now the kube-dns pod and service are ready to be launched: - -```shell -kubectl create -f ./kubedns-controller.yaml -kubectl create -f ./kubedns-svc.yaml -``` - -Check with `kubectl get pods --namespace=kube-system` that 3/3 containers of the pods are eventually up and running. Note that the kube-dns pods run in the `kube-system` namespace, not in `default`. - -To check that the new DNS service in the cluster works, we start a busybox pod and use that to do a DNS lookup. First create the `busybox.yaml` pod spec: - -```shell -cat <busybox.yaml -``` - -```yaml -apiVersion: v1 -kind: Pod -metadata: - name: busybox - namespace: default -spec: - containers: - - image: busybox - command: - - sleep - - "3600" - imagePullPolicy: IfNotPresent - name: busybox - restartPolicy: Always -EOF -``` - -Then start the pod: - -```shell -kubectl create -f ./busybox.yaml -``` - -When the pod is up and running, start a lookup for the Kubernetes master service, made available on 10.10.10.1 by default: - -```shell -kubectl exec busybox -- nslookup kubernetes -``` - -If everything works fine, you will get this output: - -```shell -Server: 10.10.10.10 -Address 1: 10.10.10.10 - -Name: kubernetes -Address 1: 10.10.10.1 -``` - -## Support Level - - -IaaS Provider | Config. Mgmt | OS | Networking | Docs | Conforms | Support Level --------------------- | ------------ | ------ | ---------- | --------------------------------------------- | ---------| ---------------------------- -Mesos/GCE | | | | [docs](/docs/getting-started-guides/mesos/) | | Community ([Kubernetes-Mesos Authors](https://github.com/mesosphere/kubernetes-mesos/blob/master/AUTHORS.md)) - - -For support level information on all solutions, see the [Table of solutions](/docs/getting-started-guides/#table-of-solutions/) chart. - -## What next? - -Try out some of the standard [Kubernetes examples][9]. - -Read about Kubernetes on Mesos' architecture in the [contrib directory][13]. - -**NOTE:** Some examples require Kubernetes DNS to be installed on the cluster. -Future work will add instructions to this guide to enable support for Kubernetes DNS. - -**NOTE:** Please be aware that there are [known issues with the current Kubernetes-Mesos implementation][7]. - -[1]: https://docs.mesosphere.com/latest/usage/service-guides/hdfs/ -[2]: https://docs.mesosphere.com/latest/usage/service-guides/spark/ -[3]: https://mesos.github.io/chronos/docs/getting-started.html -[4]: https://releases.k8s.io/{{page.githubbranch}}/cluster/addons/dns/README.md -[5]: https://dcos.io/docs/latest/administration/installing/cloud/gce/ -[6]: http://mesos.apache.org/ -[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/examples/tree/{{page.githubbranch}}/ -[10]: http://open.mesosphere.com/getting-started/cloud/google/mesosphere/#vpn-setup -[11]: https://git.k8s.io/kubernetes/cluster/addons/dns/README.md#kube-dns -[12]: https://git.k8s.io/kubernetes/cluster/addons/dns/kubedns-controller.yaml.in -[13]: https://github.com/kubernetes-incubator/kube-mesos-framework/blob/master/README.md diff --git a/docs/getting-started-guides/mesos/k8s-firewall.png b/docs/getting-started-guides/mesos/k8s-firewall.png deleted file mode 100755 index ed1c57ca7d0980056b9d088b4d3822c4dc0fd223..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 88722 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 Km2wm>-T8lGZ)9Kq diff --git a/docs/getting-started-guides/mesos/k8s-guestbook.png b/docs/getting-started-guides/mesos/k8s-guestbook.png deleted file mode 100755 index 07d2458b3b54fd0975f35f0a6f78fb0e48e287ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 44000 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
    NdlsC{ZEfuA7bbgvz`f(d;eP*7 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 Date: Sun, 4 Feb 2018 11:15:05 -0800 Subject: [PATCH 060/329] Reduce the number of missing definitions. (#7156) --- .../generated/kubernetes-api/v1.9/index.html | 5603 +++++++++++++---- .../generated/kubernetes-api/v1.9/navData.js | 2 +- 2 files changed, 4421 insertions(+), 1184 deletions(-) diff --git a/docs/reference/generated/kubernetes-api/v1.9/index.html b/docs/reference/generated/kubernetes-api/v1.9/index.html index 1b33696eba..a73e08cd66 100644 --- a/docs/reference/generated/kubernetes-api/v1.9/index.html +++ b/docs/reference/generated/kubernetes-api/v1.9/index.html @@ -11,7 +11,7 @@ - +
    • kubectl
    • curl

    API OVERVIEW

    @@ -520,10 +520,6 @@ Appears In: -200
    CronJob -OK - - 201
    CronJob Created @@ -531,6 +527,10 @@ Appears In: 202
    CronJob Accepted + +200
    CronJob +OK +

    Patch

    @@ -2235,10 +2235,6 @@ spec: -202
    DaemonSet -Accepted - - 200
    DaemonSet OK @@ -2246,6 +2242,10 @@ spec: 201
    DaemonSet Created + +202
    DaemonSet +Accepted +

    Patch

    @@ -2427,13 +2427,13 @@ spec: -201
    DaemonSet -Created - - 200
    DaemonSet OK + +201
    DaemonSet +Created +

    Delete

    @@ -3498,13 +3498,13 @@ $ curl -X GET http:// -201
    DaemonSet -Created - - 200
    DaemonSet OK + +201
    DaemonSet +Created +
    @@ -5988,6 +5988,273 @@ $
    kubectl proxy +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified Deployment

    +

    HTTP Request

    +

    GET /apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified Deployment

    +

    HTTP Request

    +

    PUT /apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    Scale
    OK
    201
    Scale
    Created
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified Deployment

    +

    HTTP Request

    +

    PATCH /apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK

    Job v1 batch

    @@ -6372,10 +6639,6 @@ spec: -200
    Job -OK - - 201
    Job Created @@ -6383,6 +6646,10 @@ spec: 202
    Job Accepted + +200
    Job +OK +

    Patch

    @@ -8402,6 +8669,106 @@ Appears In: +

    Create Eviction

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    create eviction of a Pod

    +

    HTTP Request

    +

    POST /api/v1/namespaces/{namespace}/pods/{name}/eviction

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Eviction
    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
    Eviction
    +

    Response

    + + + + + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    Eviction
    OK
    201
    Eviction
    Created
    202
    Eviction
    Accepted

    Patch

    kubectl Command

    @@ -11110,7 +11477,7 @@ Appears In: -

    Misc Operations

    +

    Misc Operations

    See supported operations below...

    Read Log

    @@ -11426,9 +11793,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -11524,7 +11891,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -11616,7 +11983,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -11703,16 +12070,16 @@ Appears In: -200
    ReplicaSet -OK - - 201
    ReplicaSet Created + +200
    ReplicaSet +OK + -

    Delete

    +

    Delete

    kubectl Command

    @@ -11816,7 +12183,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -11921,9 +12288,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -12008,7 +12375,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -12113,7 +12480,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -12203,7 +12570,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -12312,7 +12679,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -12417,7 +12784,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -12507,9 +12874,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -12601,7 +12968,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -12678,7 +13045,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -12765,11 +13132,278 @@ Appears In: +200
    ReplicaSet +OK + + 201
    ReplicaSet Created + + +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified ReplicaSet

    +

    HTTP Request

    +

    GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale

    +

    Path Parameters

    + + - + + + + + + + + + + + + + + +
    200
    ReplicaSet
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified ReplicaSet

    +

    HTTP Request

    +

    PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    201
    Scale
    Created
    200
    Scale
    OK
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified ReplicaSet

    +

    HTTP Request

    +

    PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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

    + + + + + + + + + + @@ -12983,9 +13617,9 @@ Appears In:
    CodeDescription
    200
    Scale
    OK
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -13068,10 +13702,6 @@ Appears In: -202
    ReplicationController -Accepted - - 200
    ReplicationController OK @@ -13079,9 +13709,13 @@ Appears In: 201
    ReplicationController Created + +202
    ReplicationController +Accepted + -

    Patch

    +

    Patch

    kubectl Command

    @@ -13173,7 +13807,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -13260,16 +13894,16 @@ Appears In: -200
    ReplicationController -OK - - 201
    ReplicationController Created + +200
    ReplicationController +OK + -

    Delete

    +

    Delete

    kubectl Command

    @@ -13373,7 +14007,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -13478,9 +14112,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -13565,7 +14199,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -13670,7 +14304,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -13760,7 +14394,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -13869,7 +14503,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -13974,7 +14608,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -14064,9 +14698,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -14158,7 +14792,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -14235,7 +14869,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -14331,6 +14965,273 @@ Appears In: +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified ReplicationController

    +

    HTTP Request

    +

    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified ReplicationController

    +

    HTTP Request

    +

    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    Scale
    OK
    201
    Scale
    Created
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified ReplicationController

    +

    HTTP Request

    +

    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK

    StatefulSet v1 apps

    @@ -14526,9 +15427,9 @@ Appears In:
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -14624,7 +15525,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -14716,7 +15617,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -14803,16 +15704,16 @@ Appears In: -201
    StatefulSet -Created - - 200
    StatefulSet OK + +201
    StatefulSet +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -14916,7 +15817,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -15021,9 +15922,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -15108,7 +16009,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -15213,7 +16114,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -15303,7 +16204,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -15412,7 +16313,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -15517,7 +16418,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -15607,9 +16508,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -15701,7 +16602,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -15778,7 +16679,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -15874,6 +16775,273 @@ Appears In: +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified StatefulSet

    +

    HTTP Request

    +

    GET /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified StatefulSet

    +

    HTTP Request

    +

    PUT /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    201
    Scale
    Created
    200
    Scale
    OK
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified StatefulSet

    +

    HTTP Request

    +

    PATCH /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    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 @@ -15975,9 +17143,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -16060,6 +17228,10 @@ Appears In: +200
    Endpoints +OK + + 201
    Endpoints Created @@ -16067,13 +17239,9 @@ Appears In: 202
    Endpoints Accepted - -200
    Endpoints -OK - -

    Patch

    +

    Patch

    kubectl Command

    @@ -16165,7 +17333,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -16261,7 +17429,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -16365,7 +17533,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -16470,9 +17638,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -16557,7 +17725,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -16662,7 +17830,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -16752,7 +17920,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -16861,7 +18029,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -16966,7 +18134,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -17191,9 +18359,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -17276,6 +18444,10 @@ Appears In: +202
    Ingress +Accepted + + 200
    Ingress OK @@ -17283,13 +18455,9 @@ Appears In: 201
    Ingress Created - -202
    Ingress -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -17381,7 +18549,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -17477,7 +18645,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -17581,7 +18749,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -17686,9 +18854,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -17773,7 +18941,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -17878,7 +19046,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -17968,7 +19136,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -18077,7 +19245,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -18182,7 +19350,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -18272,9 +19440,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -18366,7 +19534,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -18443,7 +19611,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -18530,13 +19698,13 @@ Appears In: -201
    Ingress -Created - - 200
    Ingress OK + +201
    Ingress +Created +
    @@ -18762,9 +19930,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -18904,6 +20072,10 @@ service "service-example" created +202
    Service +Accepted + + 200
    Service OK @@ -18911,13 +20083,9 @@ service "service-example" created 201
    Service Created - -202
    Service -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -19050,7 +20218,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Replace
    +

    Replace

    kubectl Command

    @@ -19219,7 +20387,7 @@ service "deployment-example" replaced -

    Delete

    +

    Delete

    kubectl Command

    @@ -19306,9 +20474,9 @@ service "deployment-example" deleted -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -19468,7 +20636,7 @@ $ kubectl get -

    List

    +

    List

    kubectl Command

    @@ -19572,7 +20740,7 @@ $
    kubectl proxy -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -19662,7 +20830,7 @@ $ kubectl proxy -

    Watch

    +

    Watch

    kubectl Command

    @@ -19852,7 +21020,7 @@ $ kubectl proxy -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -19957,7 +21125,7 @@ $ kubectl proxy -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -20047,9 +21215,9 @@ $ kubectl proxy -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -20141,7 +21309,7 @@ $ kubectl proxy -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -20218,7 +21386,7 @@ $ kubectl proxy -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -20314,9 +21482,9 @@ $ kubectl proxy -

    Proxy Operations

    +

    Proxy Operations

    See supported operations below...

    -

    Create Connect Proxy

    +

    Create Connect Proxy

    kubectl Command

    @@ -20393,7 +21561,7 @@ $ kubectl proxy -

    Create Connect Proxy Path

    +

    Create Connect Proxy Path

    kubectl Command

    @@ -20474,7 +21642,7 @@ $ kubectl proxy -

    Create Proxy

    +

    Create Proxy

    kubectl Command

    @@ -20536,7 +21704,7 @@ $ kubectl proxy -

    Create Proxy Path

    +

    Create Proxy Path

    kubectl Command

    @@ -20602,7 +21770,7 @@ $ kubectl proxy -

    Delete Connect Proxy

    +

    Delete Connect Proxy

    kubectl Command

    @@ -20679,7 +21847,7 @@ $ kubectl proxy -

    Delete Connect Proxy Path

    +

    Delete Connect Proxy Path

    kubectl Command

    @@ -20760,7 +21928,7 @@ $ kubectl proxy -

    Delete Proxy

    +

    Delete Proxy

    kubectl Command

    @@ -20822,7 +21990,7 @@ $ kubectl proxy -

    Delete Proxy Path

    +

    Delete Proxy Path

    kubectl Command

    @@ -20888,7 +22056,7 @@ $ kubectl proxy -

    Get Connect Proxy

    +

    Get Connect Proxy

    kubectl Command

    @@ -20965,7 +22133,7 @@ $ kubectl proxy -

    Get Connect Proxy Path

    +

    Get Connect Proxy Path

    kubectl Command

    @@ -21046,7 +22214,7 @@ $ kubectl proxy -

    Get Proxy

    +

    Get Proxy

    kubectl Command

    @@ -21108,7 +22276,7 @@ $ kubectl proxy -

    Get Proxy Path

    +

    Get Proxy Path

    kubectl Command

    @@ -21174,7 +22342,7 @@ $ kubectl proxy -

    Head Connect Proxy

    +

    Head Connect Proxy

    kubectl Command

    @@ -21251,7 +22419,7 @@ $ kubectl proxy -

    Head Connect Proxy Path

    +

    Head Connect Proxy Path

    kubectl Command

    @@ -21332,7 +22500,7 @@ $ kubectl proxy -

    Replace Connect Proxy

    +

    Replace Connect Proxy

    kubectl Command

    @@ -21409,7 +22577,7 @@ $ kubectl proxy -

    Replace Connect Proxy Path

    +

    Replace Connect Proxy Path

    kubectl Command

    @@ -21490,7 +22658,7 @@ $ kubectl proxy -

    Replace Proxy

    +

    Replace Proxy

    kubectl Command

    @@ -21552,7 +22720,7 @@ $ kubectl proxy -

    Replace Proxy Path

    +

    Replace Proxy Path

    kubectl Command

    @@ -21706,9 +22874,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -21804,7 +22972,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -21896,7 +23064,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -21992,7 +23160,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -22096,7 +23264,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -22201,9 +23369,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -22288,7 +23456,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -22393,7 +23561,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -22483,7 +23651,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -22592,7 +23760,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -22697,7 +23865,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -22874,9 +24042,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -22972,7 +24140,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -23064,7 +24232,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -23160,7 +24328,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -23264,7 +24432,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -23369,9 +24537,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -23456,7 +24624,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -23561,7 +24729,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -23651,7 +24819,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -23760,7 +24928,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -23865,7 +25033,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -24122,9 +25290,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -24207,6 +25375,10 @@ Appears In: +201
    PersistentVolumeClaim +Created + + 202
    PersistentVolumeClaim Accepted @@ -24214,13 +25386,9 @@ Appears In: 200
    PersistentVolumeClaim OK - -201
    PersistentVolumeClaim -Created - -

    Patch

    +

    Patch

    kubectl Command

    @@ -24312,7 +25480,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -24408,7 +25576,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -24512,7 +25680,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -24617,9 +25785,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -24704,7 +25872,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -24809,7 +25977,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -24899,7 +26067,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -25008,7 +26176,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -25113,7 +26281,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -25203,9 +26371,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -25297,7 +26465,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -25374,7 +26542,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -25573,9 +26741,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -25656,7 +26824,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -25744,7 +26912,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -25836,7 +27004,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -25936,7 +27104,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -26026,9 +27194,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -26109,7 +27277,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -26199,7 +27367,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -26304,7 +27472,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -26691,9 +27859,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -26761,10 +27929,6 @@ Appears In: -200
    VolumeAttachment -OK - - 201
    VolumeAttachment Created @@ -26772,9 +27936,13 @@ Appears In: 202
    VolumeAttachment Accepted + +200
    VolumeAttachment +OK + -

    Patch

    +

    Patch

    kubectl Command

    @@ -26862,7 +28030,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -26954,7 +28122,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -27054,7 +28222,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -27144,9 +28312,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -27227,7 +28395,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -27317,7 +28485,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -27422,7 +28590,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -27608,9 +28776,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -27706,7 +28874,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -27798,7 +28966,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -27894,7 +29062,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -27998,7 +29166,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -28103,9 +29271,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -28190,7 +29358,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -28295,7 +29463,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -28385,7 +29553,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -28494,7 +29662,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -28599,7 +29767,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -28836,9 +30004,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -28906,6 +30074,10 @@ Appears In: +200
    CustomResourceDefinition +OK + + 201
    CustomResourceDefinition Created @@ -28913,13 +30085,9 @@ Appears In: 202
    CustomResourceDefinition Accepted - -200
    CustomResourceDefinition -OK - -

    Patch

    +

    Patch

    kubectl Command

    @@ -29007,7 +30175,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -29099,7 +30267,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -29199,7 +30367,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -29289,9 +30457,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -29372,7 +30540,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -29462,7 +30630,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -29567,7 +30735,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -29657,9 +30825,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -29885,9 +31053,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -29983,7 +31151,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -30075,7 +31243,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -30171,7 +31339,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -30275,7 +31443,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -30380,9 +31548,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -30467,7 +31635,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -30572,7 +31740,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -30662,7 +31830,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -30771,7 +31939,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -30876,7 +32044,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -31067,9 +32235,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -31165,7 +32333,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -31257,7 +32425,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -31353,7 +32521,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -31457,7 +32625,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -31562,9 +32730,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -31649,7 +32817,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -31754,7 +32922,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -31844,7 +33012,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -31953,7 +33121,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -32058,7 +33226,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -32306,9 +33474,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -32391,6 +33559,10 @@ Appears In: +200
    HorizontalPodAutoscaler +OK + + 201
    HorizontalPodAutoscaler Created @@ -32398,13 +33570,9 @@ Appears In: 202
    HorizontalPodAutoscaler Accepted - -200
    HorizontalPodAutoscaler -OK - -

    Patch

    +

    Patch

    kubectl Command

    @@ -32496,7 +33664,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -32583,16 +33751,16 @@ Appears In: -200
    HorizontalPodAutoscaler -OK - - 201
    HorizontalPodAutoscaler Created + +200
    HorizontalPodAutoscaler +OK + -

    Delete

    +

    Delete

    kubectl Command

    @@ -32696,7 +33864,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -32801,9 +33969,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -32888,7 +34056,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -32993,7 +34161,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -33083,7 +34251,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -33192,7 +34360,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -33297,7 +34465,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -33387,9 +34555,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -33481,7 +34649,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -33558,7 +34726,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -33733,9 +34901,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -33803,10 +34971,6 @@ Appears In: -201
    InitializerConfiguration -Created - - 202
    InitializerConfiguration Accepted @@ -33814,9 +34978,13 @@ Appears In: 200
    InitializerConfiguration OK + +201
    InitializerConfiguration +Created + -

    Patch

    +

    Patch

    kubectl Command

    @@ -33904,7 +35072,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -33996,7 +35164,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -34096,7 +35264,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -34186,9 +35354,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -34269,7 +35437,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -34359,7 +35527,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -34464,7 +35632,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -34633,9 +35801,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -34716,7 +35884,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -34804,7 +35972,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -34896,7 +36064,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -34996,7 +36164,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -35086,9 +36254,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -35169,7 +36337,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -35259,7 +36427,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -35364,7 +36532,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -35533,9 +36701,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -35616,7 +36784,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -35704,7 +36872,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -35796,7 +36964,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -35896,7 +37064,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -35986,9 +37154,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -36069,7 +37237,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -36159,7 +37327,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -36264,7 +37432,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -36474,9 +37642,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -36559,10 +37727,6 @@ Appears In: -200
    PodTemplate -OK - - 201
    PodTemplate Created @@ -36570,9 +37734,13 @@ Appears In: 202
    PodTemplate Accepted + +200
    PodTemplate +OK + -

    Patch

    +

    Patch

    kubectl Command

    @@ -36664,7 +37832,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -36760,7 +37928,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -36864,7 +38032,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -36969,9 +38137,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -37056,7 +38224,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -37161,7 +38329,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -37251,7 +38419,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -37360,7 +38528,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -37465,7 +38633,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -37710,9 +38878,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -37808,7 +38976,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -37900,7 +39068,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -37996,7 +39164,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -38100,7 +39268,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -38205,9 +39373,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -38292,7 +39460,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -38397,7 +39565,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -38487,7 +39655,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -38596,7 +39764,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -38701,7 +39869,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -38791,9 +39959,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -38885,7 +40053,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -38962,7 +40130,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -39151,9 +40319,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -39221,10 +40389,6 @@ Appears In: -200
    PriorityClass -OK - - 201
    PriorityClass Created @@ -39232,9 +40396,13 @@ Appears In: 202
    PriorityClass Accepted + +200
    PriorityClass +OK + -

    Patch

    +

    Patch

    kubectl Command

    @@ -39322,7 +40490,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -39405,16 +40573,16 @@ Appears In: -201
    PriorityClass -Created - - 200
    PriorityClass OK + +201
    PriorityClass +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -39514,7 +40682,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -39604,9 +40772,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -39687,7 +40855,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -39777,7 +40945,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -39882,7 +41050,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -40095,9 +41263,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -40193,7 +41361,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -40285,7 +41453,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -40372,16 +41540,16 @@ Appears In: -201
    PodPreset -Created - - 200
    PodPreset OK + +201
    PodPreset +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -40485,7 +41653,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -40590,9 +41758,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -40677,7 +41845,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -40782,7 +41950,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -40872,7 +42040,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -40981,7 +42149,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -41086,7 +42254,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -41345,9 +42513,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -41415,6 +42583,10 @@ Appears In: +202
    PodSecurityPolicy +Accepted + + 200
    PodSecurityPolicy OK @@ -41422,13 +42594,9 @@ Appears In: 201
    PodSecurityPolicy Created - -202
    PodSecurityPolicy -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -41516,7 +42684,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -41608,7 +42776,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -41708,7 +42876,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -41798,9 +42966,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -41881,7 +43049,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -41971,7 +43139,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -42076,7 +43244,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -42320,9 +43488,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -42403,7 +43571,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -42491,7 +43659,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -42583,7 +43751,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -42683,7 +43851,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -42773,9 +43941,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -42856,7 +44024,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -42946,7 +44114,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -43051,7 +44219,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -43141,9 +44309,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -43280,9 +44448,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -43529,9 +44697,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -43599,6 +44767,10 @@ Appears In: +202
    CertificateSigningRequest +Accepted + + 200
    CertificateSigningRequest OK @@ -43606,13 +44778,9 @@ Appears In: 201
    CertificateSigningRequest Created - -202
    CertificateSigningRequest -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -43700,7 +44868,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -43783,16 +44951,16 @@ Appears In: -201
    CertificateSigningRequest -Created - - 200
    CertificateSigningRequest OK + +201
    CertificateSigningRequest +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -43892,7 +45060,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -43982,9 +45150,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -44065,7 +45233,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -44155,7 +45323,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -44260,7 +45428,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -44350,9 +45518,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -44530,9 +45698,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -44613,7 +45781,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -44701,7 +45869,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -44784,16 +45952,16 @@ Appears In: -200
    ClusterRole -OK - - 201
    ClusterRole Created + +200
    ClusterRole +OK + -

    Delete

    +

    Delete

    kubectl Command

    @@ -44893,7 +46061,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -44983,9 +46151,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -45058,7 +46226,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -45148,7 +46316,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -45253,7 +46421,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -45429,9 +46597,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -45499,6 +46667,10 @@ Appears In: +202
    ClusterRoleBinding +Accepted + + 200
    ClusterRoleBinding OK @@ -45506,13 +46678,9 @@ Appears In: 201
    ClusterRoleBinding Created - -202
    ClusterRoleBinding -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -45600,7 +46768,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -45692,7 +46860,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -45792,7 +46960,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -45882,9 +47050,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -45957,7 +47125,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -46047,7 +47215,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -46152,7 +47320,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -46321,9 +47489,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -46396,7 +47564,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -46538,9 +47706,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -46623,10 +47791,6 @@ Appears In: -202
    LocalSubjectAccessReview -Accepted - - 200
    LocalSubjectAccessReview OK @@ -46634,6 +47798,10 @@ Appears In: 201
    LocalSubjectAccessReview Created + +202
    LocalSubjectAccessReview +Accepted +
    @@ -46763,9 +47931,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -46846,7 +48014,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -46934,7 +48102,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -47026,7 +48194,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -47126,9 +48294,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -47209,7 +48377,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -47299,7 +48467,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -47404,7 +48572,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -47494,9 +48662,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -47584,7 +48752,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -47657,7 +48825,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -47932,9 +49100,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -48002,6 +49170,10 @@ Appears In: +202
    Node +Accepted + + 200
    Node OK @@ -48009,13 +49181,9 @@ Appears In: 201
    Node Created - -202
    Node -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -48103,7 +49271,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -48195,7 +49363,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -48295,7 +49463,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -48385,9 +49553,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -48468,7 +49636,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -48558,7 +49726,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -48663,7 +49831,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -48753,9 +49921,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -48843,7 +50011,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -48916,7 +50084,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -48999,18 +50167,18 @@ Appears In: -201
    Node -Created - - 200
    Node OK + +201
    Node +Created + -

    Proxy Operations

    +

    Proxy Operations

    See supported operations below...

    -

    Create Connect Proxy

    +

    Create Connect Proxy

    kubectl Command

    @@ -49083,7 +50251,7 @@ Appears In: -

    Create Connect Proxy Path

    +

    Create Connect Proxy Path

    kubectl Command

    @@ -49160,7 +50328,7 @@ Appears In: -

    Create Proxy

    +

    Create Proxy

    kubectl Command

    @@ -49218,7 +50386,7 @@ Appears In: -

    Create Proxy Path

    +

    Create Proxy Path

    kubectl Command

    @@ -49280,7 +50448,7 @@ Appears In: -

    Delete Connect Proxy

    +

    Delete Connect Proxy

    kubectl Command

    @@ -49353,7 +50521,7 @@ Appears In: -

    Delete Connect Proxy Path

    +

    Delete Connect Proxy Path

    kubectl Command

    @@ -49430,7 +50598,7 @@ Appears In: -

    Delete Proxy

    +

    Delete Proxy

    kubectl Command

    @@ -49488,7 +50656,7 @@ Appears In: -

    Delete Proxy Path

    +

    Delete Proxy Path

    kubectl Command

    @@ -49550,7 +50718,7 @@ Appears In: -

    Get Connect Proxy

    +

    Get Connect Proxy

    kubectl Command

    @@ -49623,7 +50791,7 @@ Appears In: -

    Get Connect Proxy Path

    +

    Get Connect Proxy Path

    kubectl Command

    @@ -49700,7 +50868,7 @@ Appears In: -

    Get Proxy

    +

    Get Proxy

    kubectl Command

    @@ -49758,7 +50926,7 @@ Appears In: -

    Get Proxy Path

    +

    Get Proxy Path

    kubectl Command

    @@ -49820,7 +50988,7 @@ Appears In: -

    Head Connect Proxy

    +

    Head Connect Proxy

    kubectl Command

    @@ -49893,7 +51061,7 @@ Appears In: -

    Head Connect Proxy Path

    +

    Head Connect Proxy Path

    kubectl Command

    @@ -49970,7 +51138,7 @@ Appears In: -

    Replace Connect Proxy

    +

    Replace Connect Proxy

    kubectl Command

    @@ -50043,7 +51211,7 @@ Appears In: -

    Replace Connect Proxy Path

    +

    Replace Connect Proxy Path

    kubectl Command

    @@ -50120,7 +51288,7 @@ Appears In: -

    Replace Proxy

    +

    Replace Proxy

    kubectl Command

    @@ -50178,7 +51346,7 @@ Appears In: -

    Replace Proxy Path

    +

    Replace Proxy Path

    kubectl Command

    @@ -50492,9 +51660,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -50562,6 +51730,10 @@ Appears In: +202
    PersistentVolume +Accepted + + 200
    PersistentVolume OK @@ -50569,13 +51741,9 @@ Appears In: 201
    PersistentVolume Created - -202
    PersistentVolume -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -50663,7 +51831,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -50746,16 +51914,16 @@ Appears In: -201
    PersistentVolume -Created - - 200
    PersistentVolume OK + +201
    PersistentVolume +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -50855,7 +52023,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -50945,9 +52113,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -51028,7 +52196,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -51118,7 +52286,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -51223,7 +52391,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -51313,9 +52481,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -51403,7 +52571,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -51476,7 +52644,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -51703,9 +52871,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -51801,7 +52969,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -51893,7 +53061,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -51980,16 +53148,16 @@ Appears In: -201
    ResourceQuota -Created - - 200
    ResourceQuota OK + +201
    ResourceQuota +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -52093,7 +53261,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -52198,9 +53366,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -52285,7 +53453,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -52390,7 +53558,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -52480,7 +53648,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -52589,7 +53757,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -52694,7 +53862,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -52784,9 +53952,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -52878,7 +54046,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -52955,7 +54123,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -53133,9 +54301,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -53218,6 +54386,10 @@ Appears In: +200
    Role +OK + + 201
    Role Created @@ -53225,13 +54397,9 @@ Appears In: 202
    Role Accepted - -200
    Role -OK - -

    Patch

    +

    Patch

    kubectl Command

    @@ -53323,7 +54491,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -53419,7 +54587,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -53523,7 +54691,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -53628,9 +54796,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -53707,7 +54875,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -53812,7 +54980,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -53902,7 +55070,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -54011,7 +55179,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -54116,7 +55284,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -54292,9 +55460,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -54377,6 +55545,10 @@ Appears In: +202
    RoleBinding +Accepted + + 200
    RoleBinding OK @@ -54384,13 +55556,9 @@ Appears In: 201
    RoleBinding Created - -202
    RoleBinding -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -54482,7 +55650,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -54578,7 +55746,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -54682,7 +55850,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -54787,9 +55955,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -54866,7 +56034,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -54971,7 +56139,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -55061,7 +56229,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -55170,7 +56338,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -55275,7 +56443,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -55443,9 +56611,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -55513,6 +56681,10 @@ Appears In: +202
    SelfSubjectAccessReview +Accepted + + 200
    SelfSubjectAccessReview OK @@ -55520,10 +56692,6 @@ Appears In: 201
    SelfSubjectAccessReview Created - -202
    SelfSubjectAccessReview -Accepted -
    @@ -55600,9 +56768,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -55670,10 +56838,6 @@ Appears In: -200
    SelfSubjectRulesReview -OK - - 201
    SelfSubjectRulesReview Created @@ -55681,6 +56845,10 @@ Appears In: 202
    SelfSubjectRulesReview Accepted + +200
    SelfSubjectRulesReview +OK +
    @@ -55770,9 +56938,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -55855,6 +57023,10 @@ Appears In: +200
    ServiceAccount +OK + + 201
    ServiceAccount Created @@ -55862,13 +57034,9 @@ Appears In: 202
    ServiceAccount Accepted - -200
    ServiceAccount -OK - -

    Patch

    +

    Patch

    kubectl Command

    @@ -55960,7 +57128,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -56056,7 +57224,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -56160,7 +57328,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -56265,9 +57433,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -56352,7 +57520,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -56457,7 +57625,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -56547,7 +57715,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -56656,7 +57824,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -56761,7 +57929,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -56982,9 +58150,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -57052,6 +58220,10 @@ Appears In: +200
    SubjectAccessReview +OK + + 201
    SubjectAccessReview Created @@ -57059,10 +58231,6 @@ Appears In: 202
    SubjectAccessReview Accepted - -200
    SubjectAccessReview -OK -
    @@ -57169,9 +58337,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -57239,6 +58407,10 @@ Appears In: +202
    TokenReview +Accepted + + 200
    TokenReview OK @@ -57246,10 +58418,6 @@ Appears In: 201
    TokenReview Created - -202
    TokenReview -Accepted -
    @@ -57368,9 +58536,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -57453,6 +58621,10 @@ Appears In: +200
    NetworkPolicy +OK + + 201
    NetworkPolicy Created @@ -57460,13 +58632,9 @@ Appears In: 202
    NetworkPolicy Accepted - -200
    NetworkPolicy -OK - -

    Patch

    +

    Patch

    kubectl Command

    @@ -57558,7 +58726,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -57645,16 +58813,16 @@ Appears In: -201
    NetworkPolicy -Created - - 200
    NetworkPolicy OK + +201
    NetworkPolicy +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -57758,7 +58926,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -57863,9 +59031,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -57950,7 +59118,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -58055,7 +59223,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -58145,7 +59313,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -58254,7 +59422,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -58359,7 +59527,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -68758,9 +69926,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -68828,10 +69996,6 @@ Appears In: -200
    ClusterRole -OK - - 201
    ClusterRole Created @@ -68839,9 +70003,13 @@ Appears In: 202
    ClusterRole Accepted + +200
    ClusterRole +OK + -

    Patch

    +

    Patch

    kubectl Command

    @@ -68929,7 +70097,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -69021,7 +70189,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -69121,7 +70289,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -69211,9 +70379,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -69286,7 +70454,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -69376,7 +70544,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -69481,7 +70649,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -69657,9 +70825,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -69727,6 +70895,10 @@ Appears In: +201
    ClusterRole +Created + + 202
    ClusterRole Accepted @@ -69734,13 +70906,9 @@ Appears In: 200
    ClusterRole OK - -201
    ClusterRole -Created - -

    Patch

    +

    Patch

    kubectl Command

    @@ -69828,7 +70996,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -69920,7 +71088,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -70020,7 +71188,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -70110,9 +71278,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -70185,7 +71353,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -70275,7 +71443,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -70380,7 +71548,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -70556,9 +71724,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -70626,6 +71794,10 @@ Appears In: +200
    ClusterRoleBinding +OK + + 201
    ClusterRoleBinding Created @@ -70633,13 +71805,9 @@ Appears In: 202
    ClusterRoleBinding Accepted - -200
    ClusterRoleBinding -OK - -

    Patch

    +

    Patch

    kubectl Command

    @@ -70727,7 +71895,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -70810,16 +71978,16 @@ Appears In: -200
    ClusterRoleBinding -OK - - 201
    ClusterRoleBinding Created + +200
    ClusterRoleBinding +OK + -

    Delete

    +

    Delete

    kubectl Command

    @@ -70919,7 +72087,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -71009,9 +72177,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -71084,7 +72252,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -71174,7 +72342,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -71279,7 +72447,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -71455,9 +72623,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -71538,7 +72706,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -71626,7 +72794,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -71709,16 +72877,16 @@ Appears In: -201
    ClusterRoleBinding -Created - - 200
    ClusterRoleBinding OK + +201
    ClusterRoleBinding +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -71818,7 +72986,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -71908,9 +73076,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -71983,7 +73151,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -72073,7 +73241,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -72178,7 +73346,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -72354,9 +73522,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -72439,6 +73607,10 @@ Appears In: +201
    ControllerRevision +Created + + 202
    ControllerRevision Accepted @@ -72446,13 +73618,9 @@ Appears In: 200
    ControllerRevision OK - -201
    ControllerRevision -Created - -

    Patch

    +

    Patch

    kubectl Command

    @@ -72544,7 +73712,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -72640,7 +73808,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -72744,7 +73912,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -72849,9 +74017,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -72936,7 +74104,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -73041,7 +74209,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -73131,7 +74299,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -73240,7 +74408,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -73345,7 +74513,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -73521,9 +74689,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -73606,6 +74774,10 @@ Appears In: +201
    ControllerRevision +Created + + 202
    ControllerRevision Accepted @@ -73613,13 +74785,9 @@ Appears In: 200
    ControllerRevision OK - -201
    ControllerRevision -Created - -

    Patch

    +

    Patch

    kubectl Command

    @@ -73711,7 +74879,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -73798,16 +74966,16 @@ Appears In: -200
    ControllerRevision -OK - - 201
    ControllerRevision Created + +200
    ControllerRevision +OK + -

    Delete

    +

    Delete

    kubectl Command

    @@ -73911,7 +75079,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -74016,9 +75184,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -74103,7 +75271,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -74208,7 +75376,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -74298,7 +75466,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -74407,7 +75575,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -74512,7 +75680,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -74760,9 +75928,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -74858,7 +76026,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -74950,7 +76118,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -75046,7 +76214,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -75150,7 +76318,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -75255,9 +76423,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -75342,7 +76510,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -75447,7 +76615,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -75537,7 +76705,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -75646,7 +76814,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -75751,7 +76919,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -75841,9 +77009,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -75935,7 +77103,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -76012,7 +77180,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -76365,9 +77533,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -76553,10 +77721,6 @@ spec: -202
    DaemonSet -Accepted - - 200
    DaemonSet OK @@ -76564,9 +77728,13 @@ spec: 201
    DaemonSet Created + +202
    DaemonSet +Accepted + -

    Patch

    +

    Patch

    kubectl Command

    @@ -76658,7 +77826,7 @@ spec: -

    Replace

    +

    Replace

    kubectl Command

    @@ -76745,16 +77913,16 @@ spec: -200
    DaemonSet -OK - - 201
    DaemonSet Created + +200
    DaemonSet +OK + -

    Delete

    +

    Delete

    kubectl Command

    @@ -76868,7 +78036,7 @@ orphanDependents: false -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -76973,9 +78141,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -77059,7 +78227,7 @@ $ curl -X GET http:// -

    List

    +

    List

    kubectl Command

    @@ -77164,7 +78332,7 @@ $ curl -X GET http:// -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -77254,7 +78422,7 @@ $ curl -X GET http:// -

    Watch

    +

    Watch

    kubectl Command

    @@ -77363,7 +78531,7 @@ $ curl -X GET http:// -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -77468,7 +78636,7 @@ $ curl -X GET http:// -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -77558,9 +78726,9 @@ $ curl -X GET http:// -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -77652,7 +78820,7 @@ $ curl -X GET http:// -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -77729,7 +78897,7 @@ $ curl -X GET http:// -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -78033,9 +79201,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -78234,7 +79402,7 @@ spec: -

    Patch

    +

    Patch

    kubectl Command

    @@ -78326,7 +79494,7 @@ spec: -

    Replace

    +

    Replace

    kubectl Command

    @@ -78413,16 +79581,16 @@ spec: -200
    DaemonSet -OK - - 201
    DaemonSet Created + +200
    DaemonSet +OK + -

    Delete

    +

    Delete

    kubectl Command

    @@ -78536,7 +79704,7 @@ orphanDependents: false -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -78641,9 +79809,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -78727,7 +79895,7 @@ $ curl -X GET http:// -

    List

    +

    List

    kubectl Command

    @@ -78832,7 +80000,7 @@ $ curl -X GET http:// -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -78922,7 +80090,7 @@ $ curl -X GET http:// -

    Watch

    +

    Watch

    kubectl Command

    @@ -79031,7 +80199,7 @@ $ curl -X GET http:// -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -79136,7 +80304,7 @@ $ curl -X GET http:// -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -79226,9 +80394,9 @@ $ curl -X GET http:// -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -79320,7 +80488,7 @@ $ curl -X GET http:// -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -79397,7 +80565,7 @@ $ curl -X GET http:// -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -79944,9 +81112,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -80139,7 +81307,7 @@ spec: -

    Patch

    +

    Patch

    kubectl Command

    @@ -80304,7 +81472,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Replace +

    Replace

    kubectl Command

    @@ -80502,7 +81670,7 @@ spec: -

    Delete

    +

    Delete

    kubectl Command

    @@ -80616,7 +81784,7 @@ orphanDependents: false -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -80721,9 +81889,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -80945,7 +82113,7 @@ $ curl -X GET http:// -

    List

    +

    List

    kubectl Command

    @@ -81331,7 +82499,7 @@ $
    kubectl proxy -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -81421,7 +82589,7 @@ $
    kubectl proxy -

    Watch

    +

    Watch

    kubectl Command

    @@ -81677,7 +82845,7 @@ $
    kubectl proxy -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -81782,7 +82950,7 @@ $
    kubectl proxy -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -81872,9 +83040,9 @@ $
    kubectl proxy -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -81966,7 +83134,7 @@ $
    kubectl proxy -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -82043,7 +83211,7 @@ $
    kubectl proxy -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -82139,6 +83307,273 @@ $
    kubectl proxy +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified Deployment

    +

    HTTP Request

    +

    GET /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified Deployment

    +

    HTTP Request

    +

    PUT /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    201
    Scale
    Created
    200
    Scale
    OK
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified Deployment

    +

    HTTP Request

    +

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK

    Deployment v1beta1 apps

    @@ -82412,9 +83847,9 @@ Appears In:
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -82594,10 +84029,6 @@ spec: -202
    Deployment -Accepted - - 200
    Deployment OK @@ -82605,9 +84036,13 @@ spec: 201
    Deployment Created + +202
    Deployment +Accepted + -

    Patch

    +

    Patch

    kubectl Command

    @@ -82772,7 +84207,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Replace +

    Replace

    kubectl Command

    @@ -82970,7 +84405,7 @@ spec: -

    Delete

    +

    Delete

    kubectl Command

    @@ -83084,7 +84519,7 @@ orphanDependents: false -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -83189,9 +84624,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -83413,7 +84848,7 @@ $ curl -X GET http:// -

    List

    +

    List

    kubectl Command

    @@ -83799,7 +85234,7 @@ $
    kubectl proxy -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -83889,7 +85324,7 @@ $
    kubectl proxy -

    Watch

    +

    Watch

    kubectl Command

    @@ -84145,7 +85580,7 @@ $
    kubectl proxy -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -84250,7 +85685,7 @@ $
    kubectl proxy -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -84340,9 +85775,9 @@ $
    kubectl proxy -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -84434,7 +85869,7 @@ $
    kubectl proxy -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -84511,7 +85946,7 @@ $
    kubectl proxy -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -84607,6 +86042,373 @@ $
    kubectl proxy +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified Deployment

    +

    HTTP Request

    +

    GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified Deployment

    +

    HTTP Request

    +

    PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    Scale
    OK
    201
    Scale
    Created
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified Deployment

    +

    HTTP Request

    +

    PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Rollback

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    create rollback of a Deployment

    +

    HTTP Request

    +

    POST /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the DeploymentRollback
    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
    DeploymentRollback
    +

    Response

    + + + + + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    DeploymentRollback
    OK
    201
    DeploymentRollback
    Created
    202
    DeploymentRollback
    Accepted

    Deployment v1beta1 extensions

    @@ -84880,9 +86682,9 @@ Appears In:
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -85075,7 +86877,7 @@ spec: -

    Patch

    +

    Patch

    kubectl Command

    @@ -85240,7 +87042,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Replace +

    Replace

    kubectl Command

    @@ -85429,16 +87231,16 @@ spec: -200
    Deployment -OK - - 201
    Deployment Created + +200
    Deployment +OK + -

    Delete

    +

    Delete

    kubectl Command

    @@ -85552,7 +87354,7 @@ orphanDependents: false -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -85657,9 +87459,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -85881,7 +87683,7 @@ $ curl -X GET http:// -

    List

    +

    List

    kubectl Command

    @@ -86267,7 +88069,7 @@ $
    kubectl proxy -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -86357,7 +88159,7 @@ $
    kubectl proxy -

    Watch

    +

    Watch

    kubectl Command

    @@ -86613,7 +88415,7 @@ $
    kubectl proxy -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -86718,7 +88520,7 @@ $
    kubectl proxy -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -86808,9 +88610,9 @@ $
    kubectl proxy -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -86902,7 +88704,7 @@ $
    kubectl proxy -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -86979,7 +88781,7 @@ $ kubectl proxy -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -87066,15 +88868,382 @@ $ kubectl proxy +200
    Deployment +OK + + 201
    Deployment Created + + +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified Deployment

    +

    HTTP Request

    +

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

    +

    Path Parameters

    + + - + + + + + + + + + + + + + + +
    200
    Deployment
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified Deployment

    +

    HTTP Request

    +

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

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    Scale
    OK
    201
    Scale
    Created
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified Deployment

    +

    HTTP Request

    +

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

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Rollback

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    create rollback of a Deployment

    +

    HTTP Request

    +

    POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the DeploymentRollback
    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
    DeploymentRollback
    +

    Response

    + + + + + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    DeploymentRollback
    OK
    201
    DeploymentRollback
    Created
    202
    DeploymentRollback
    Accepted

    DeploymentCondition v1beta2 apps

    @@ -87398,9 +89567,9 @@ Appears In:
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -87483,6 +89652,10 @@ Appears In: +202
    Event +Accepted + + 200
    Event OK @@ -87490,13 +89663,9 @@ Appears In: 201
    Event Created - -202
    Event -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -87588,7 +89757,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -87684,7 +89853,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -87788,7 +89957,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -87893,9 +90062,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -87980,7 +90149,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -88085,7 +90254,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -88175,7 +90344,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -88284,7 +90453,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -88389,7 +90558,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -88692,9 +90861,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -88777,10 +90946,6 @@ Appears In: -202
    HorizontalPodAutoscaler -Accepted - - 200
    HorizontalPodAutoscaler OK @@ -88788,9 +90953,13 @@ Appears In: 201
    HorizontalPodAutoscaler Created + +202
    HorizontalPodAutoscaler +Accepted + -

    Patch

    +

    Patch

    kubectl Command

    @@ -88882,7 +91051,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -88969,16 +91138,16 @@ Appears In: -201
    HorizontalPodAutoscaler -Created - - 200
    HorizontalPodAutoscaler OK + +201
    HorizontalPodAutoscaler +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -89082,7 +91251,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -89187,9 +91356,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -89274,7 +91443,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -89379,7 +91548,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -89469,7 +91638,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -89578,7 +91747,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -89683,7 +91852,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -89773,9 +91942,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -89867,7 +92036,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -89944,7 +92113,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -90233,9 +92402,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -90318,10 +92487,6 @@ Appears In: -200
    LocalSubjectAccessReview -OK - - 201
    LocalSubjectAccessReview Created @@ -90329,6 +92494,10 @@ Appears In: 202
    LocalSubjectAccessReview Accepted + +200
    LocalSubjectAccessReview +OK +
    @@ -90447,9 +92616,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -90545,7 +92714,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -90637,7 +92806,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -90724,16 +92893,16 @@ Appears In: -201
    NetworkPolicy -Created - - 200
    NetworkPolicy OK + +201
    NetworkPolicy +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -90837,7 +93006,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -90942,9 +93111,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -91029,7 +93198,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -91134,7 +93303,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -91224,7 +93393,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -91333,7 +93502,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -91438,7 +93607,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -92099,9 +94268,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -92197,7 +94366,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -92289,7 +94458,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -92385,7 +94554,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -92489,7 +94658,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -92594,9 +94763,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -92681,7 +94850,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -92786,7 +94955,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -92876,7 +95045,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -92985,7 +95154,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -93090,7 +95259,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -93180,9 +95349,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -93274,7 +95443,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -93351,7 +95520,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -93447,6 +95616,273 @@ Appears In: +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified ReplicaSet

    +

    HTTP Request

    +

    GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified ReplicaSet

    +

    HTTP Request

    +

    PUT /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    Scale
    OK
    201
    Scale
    Created
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified ReplicaSet

    +

    HTTP Request

    +

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK

    ReplicaSet v1beta1 extensions

    @@ -93609,9 +96045,9 @@ Appears In:
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -93694,6 +96130,10 @@ Appears In: +200
    ReplicaSet +OK + + 201
    ReplicaSet Created @@ -93701,13 +96141,9 @@ Appears In: 202
    ReplicaSet Accepted - -200
    ReplicaSet -OK - -

    Patch

    +

    Patch

    kubectl Command

    @@ -93799,7 +96235,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -93895,7 +96331,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -93999,7 +96435,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -94104,9 +96540,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -94191,7 +96627,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -94296,7 +96732,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -94386,7 +96822,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -94495,7 +96931,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -94600,7 +97036,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -94690,9 +97126,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -94784,7 +97220,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -94861,7 +97297,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -94957,6 +97393,273 @@ Appears In: +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified ReplicaSet

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified ReplicaSet

    +

    HTTP Request

    +

    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    201
    Scale
    Created
    200
    Scale
    OK
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified ReplicaSet

    +

    HTTP Request

    +

    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK

    ReplicaSetCondition v1beta2 apps

    @@ -95280,9 +97983,9 @@ Appears In:
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -95365,10 +98068,6 @@ Appears In: -202
    Role -Accepted - - 200
    Role OK @@ -95376,9 +98075,13 @@ Appears In: 201
    Role Created + +202
    Role +Accepted + -

    Patch

    +

    Patch

    kubectl Command

    @@ -95470,7 +98173,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -95566,7 +98269,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -95670,7 +98373,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -95775,9 +98478,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -95854,7 +98557,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -95959,7 +98662,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -96049,7 +98752,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -96158,7 +98861,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -96263,7 +98966,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -96435,9 +99138,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -96533,7 +99236,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -96625,7 +99328,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -96712,16 +99415,16 @@ Appears In: -201
    Role -Created - - 200
    Role OK + +201
    Role +Created + -

    Delete

    +

    Delete

    kubectl Command

    @@ -96825,7 +99528,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -96930,9 +99633,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -97009,7 +99712,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -97114,7 +99817,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -97204,7 +99907,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -97313,7 +100016,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -97418,7 +100121,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -97594,9 +100297,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -97692,7 +100395,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -97784,7 +100487,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -97880,7 +100583,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -97984,7 +100687,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -98089,9 +100792,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -98168,7 +100871,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -98273,7 +100976,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -98363,7 +101066,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -98472,7 +101175,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -98577,7 +101280,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -98753,9 +101456,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -98838,10 +101541,6 @@ Appears In: -202
    RoleBinding -Accepted - - 200
    RoleBinding OK @@ -98849,9 +101548,13 @@ Appears In: 201
    RoleBinding Created + +202
    RoleBinding +Accepted + -

    Patch

    +

    Patch

    kubectl Command

    @@ -98943,7 +101646,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -99039,7 +101742,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -99143,7 +101846,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -99248,9 +101951,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -99327,7 +102030,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -99432,7 +102135,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -99522,7 +102225,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -99631,7 +102334,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -99736,7 +102439,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -100447,9 +103150,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -100517,10 +103220,6 @@ Appears In: -200
    SelfSubjectAccessReview -OK - - 201
    SelfSubjectAccessReview Created @@ -100528,6 +103227,10 @@ Appears In: 202
    SelfSubjectAccessReview Accepted + +200
    SelfSubjectAccessReview +OK +
    @@ -100604,9 +103307,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -100926,9 +103629,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -101024,7 +103727,7 @@ Appears In: -

    Patch

    +

    Patch

    kubectl Command

    @@ -101116,7 +103819,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -101212,7 +103915,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -101316,7 +104019,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -101421,9 +104124,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -101508,7 +104211,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -101613,7 +104316,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -101703,7 +104406,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -101812,7 +104515,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -101917,7 +104620,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -102007,9 +104710,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -102101,7 +104804,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -102178,7 +104881,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -102274,6 +104977,273 @@ Appears In: +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified StatefulSet

    +

    HTTP Request

    +

    GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified StatefulSet

    +

    HTTP Request

    +

    PUT /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    Scale
    OK
    201
    Scale
    Created
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified StatefulSet

    +

    HTTP Request

    +

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK

    StatefulSet v1beta1 apps

    @@ -102469,9 +105439,9 @@ Appears In:
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -102554,10 +105524,6 @@ Appears In: -202
    StatefulSet -Accepted - - 200
    StatefulSet OK @@ -102565,9 +105531,13 @@ Appears In: 201
    StatefulSet Created + +202
    StatefulSet +Accepted + -

    Patch

    +

    Patch

    kubectl Command

    @@ -102659,7 +105629,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -102755,7 +105725,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -102859,7 +105829,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -102964,9 +105934,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -103051,7 +106021,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -103156,7 +106126,7 @@ Appears In: -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -103246,7 +106216,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -103355,7 +106325,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -103460,7 +106430,7 @@ Appears In: -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -103550,9 +106520,9 @@ Appears In: -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -103644,7 +106614,7 @@ Appears In: -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -103721,7 +106691,7 @@ Appears In: -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -103817,6 +106787,273 @@ Appears In: +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read scale of the specified StatefulSet

    +

    HTTP Request

    +

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

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK
    +

    Replace Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace scale of the specified StatefulSet

    +

    HTTP Request

    +

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

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    +

    Response

    + + + + + + + + + + + + + + + + + +
    CodeDescription
    200
    Scale
    OK
    201
    Scale
    Created
    +

    Patch Scale

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update scale of the specified StatefulSet

    +

    HTTP Request

    +

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

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Scale
    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
    Scale
    OK

    StatefulSetCondition v1beta2 apps

    @@ -104132,9 +107369,9 @@ Appears In:
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -104202,6 +107439,10 @@ Appears In: +202
    StorageClass +Accepted + + 200
    StorageClass OK @@ -104209,13 +107450,9 @@ Appears In: 201
    StorageClass Created - -202
    StorageClass -Accepted - -

    Patch

    +

    Patch

    kubectl Command

    @@ -104303,7 +107540,7 @@ Appears In: -

    Replace

    +

    Replace

    kubectl Command

    @@ -104395,7 +107632,7 @@ Appears In: -

    Delete

    +

    Delete

    kubectl Command

    @@ -104495,7 +107732,7 @@ Appears In: -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -104585,9 +107822,9 @@ Appears In: -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -104668,7 +107905,7 @@ Appears In: -

    List

    +

    List

    kubectl Command

    @@ -104758,7 +107995,7 @@ Appears In: -

    Watch

    +

    Watch

    kubectl Command

    @@ -104863,7 +108100,7 @@ Appears In: -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -105196,9 +108433,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -105266,6 +108503,10 @@ Appears In: +200
    SubjectAccessReview +OK + + 201
    SubjectAccessReview Created @@ -105273,10 +108514,6 @@ Appears In: 202
    SubjectAccessReview Accepted - -200
    SubjectAccessReview -OK -
    @@ -105438,9 +108675,9 @@ Appears In: -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -105508,6 +108745,10 @@ Appears In: +202
    TokenReview +Accepted + + 200
    TokenReview OK @@ -105515,10 +108756,6 @@ Appears In: 201
    TokenReview Created - -202
    TokenReview -Accepted -
    diff --git a/docs/reference/generated/kubernetes-api/v1.9/navData.js b/docs/reference/generated/kubernetes-api/v1.9/navData.js index 2dcaef9600..a34efaf07b 100644 --- a/docs/reference/generated/kubernetes-api/v1.9/navData.js +++ b/docs/reference/generated/kubernetes-api/v1.9/navData.js @@ -1 +1 @@ -(function(){navData = {"toc":[{"section":"userinfo-v1beta1-authentication","subsections":[]},{"section":"tokenreview-v1beta1-authentication","subsections":[{"section":"-strong-write-operations-strong--968","subsections":[{"section":"create-969"}]}]},{"section":"subjectrulesreviewstatus-v1beta1-authorization","subsections":[]},{"section":"subjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--966","subsections":[{"section":"create-967"}]}]},{"section":"subject-v1alpha1-rbac","subsections":[]},{"section":"subject-v1beta1-rbac","subsections":[]},{"section":"storageclass-v1beta1-storage","subsections":[{"section":"-strong-read-operations-strong--961","subsections":[{"section":"watch-list-965"},{"section":"watch-964"},{"section":"list-963"},{"section":"read-962"}]},{"section":"-strong-write-operations-strong--955","subsections":[{"section":"delete-collection-960"},{"section":"delete-959"},{"section":"replace-958"},{"section":"patch-957"},{"section":"create-956"}]}]},{"section":"statefulsetupdatestrategy-v1beta1-apps","subsections":[]},{"section":"statefulsetupdatestrategy-v1beta2-apps","subsections":[]},{"section":"statefulsetcondition-v1beta1-apps","subsections":[]},{"section":"statefulsetcondition-v1beta2-apps","subsections":[]},{"section":"statefulset-v1beta1-apps","subsections":[{"section":"-strong-status-operations-strong--951","subsections":[{"section":"replace-status-954"},{"section":"read-status-953"},{"section":"patch-status-952"}]},{"section":"-strong-read-operations-strong--944","subsections":[{"section":"watch-list-all-namespaces-950"},{"section":"watch-list-949"},{"section":"watch-948"},{"section":"list-all-namespaces-947"},{"section":"list-946"},{"section":"read-945"}]},{"section":"-strong-write-operations-strong--938","subsections":[{"section":"delete-collection-943"},{"section":"delete-942"},{"section":"replace-941"},{"section":"patch-940"},{"section":"create-939"}]}]},{"section":"statefulset-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--934","subsections":[{"section":"replace-status-937"},{"section":"read-status-936"},{"section":"patch-status-935"}]},{"section":"-strong-read-operations-strong--927","subsections":[{"section":"watch-list-all-namespaces-933"},{"section":"watch-list-932"},{"section":"watch-931"},{"section":"list-all-namespaces-930"},{"section":"list-929"},{"section":"read-928"}]},{"section":"-strong-write-operations-strong--921","subsections":[{"section":"delete-collection-926"},{"section":"delete-925"},{"section":"replace-924"},{"section":"patch-923"},{"section":"create-922"}]}]},{"section":"servicereference-v1beta1-apiregistration","subsections":[]},{"section":"selfsubjectrulesreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--919","subsections":[{"section":"create-920"}]}]},{"section":"selfsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--917","subsections":[{"section":"create-918"}]}]},{"section":"scale-v1beta1-extensions","subsections":[]},{"section":"scale-v1beta1-apps","subsections":[]},{"section":"scale-v1beta2-apps","subsections":[]},{"section":"rollingupdatestatefulsetstrategy-v1beta1-apps","subsections":[]},{"section":"rollingupdatestatefulsetstrategy-v1beta2-apps","subsections":[]},{"section":"rollbackconfig-v1beta1-extensions","subsections":[]},{"section":"roleref-v1alpha1-rbac","subsections":[]},{"section":"roleref-v1beta1-rbac","subsections":[]},{"section":"rolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--910","subsections":[{"section":"watch-list-all-namespaces-916"},{"section":"watch-list-915"},{"section":"watch-914"},{"section":"list-all-namespaces-913"},{"section":"list-912"},{"section":"read-911"}]},{"section":"-strong-write-operations-strong--904","subsections":[{"section":"delete-collection-909"},{"section":"delete-908"},{"section":"replace-907"},{"section":"patch-906"},{"section":"create-905"}]}]},{"section":"rolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--897","subsections":[{"section":"watch-list-all-namespaces-903"},{"section":"watch-list-902"},{"section":"watch-901"},{"section":"list-all-namespaces-900"},{"section":"list-899"},{"section":"read-898"}]},{"section":"-strong-write-operations-strong--891","subsections":[{"section":"delete-collection-896"},{"section":"delete-895"},{"section":"replace-894"},{"section":"patch-893"},{"section":"create-892"}]}]},{"section":"role-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--884","subsections":[{"section":"watch-list-all-namespaces-890"},{"section":"watch-list-889"},{"section":"watch-888"},{"section":"list-all-namespaces-887"},{"section":"list-886"},{"section":"read-885"}]},{"section":"-strong-write-operations-strong--878","subsections":[{"section":"delete-collection-883"},{"section":"delete-882"},{"section":"replace-881"},{"section":"patch-880"},{"section":"create-879"}]}]},{"section":"role-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--871","subsections":[{"section":"watch-list-all-namespaces-877"},{"section":"watch-list-876"},{"section":"watch-875"},{"section":"list-all-namespaces-874"},{"section":"list-873"},{"section":"read-872"}]},{"section":"-strong-write-operations-strong--865","subsections":[{"section":"delete-collection-870"},{"section":"delete-869"},{"section":"replace-868"},{"section":"patch-867"},{"section":"create-866"}]}]},{"section":"resourcerule-v1beta1-authorization","subsections":[]},{"section":"resourceattributes-v1beta1-authorization","subsections":[]},{"section":"replicasetcondition-v1beta1-extensions","subsections":[]},{"section":"replicasetcondition-v1beta2-apps","subsections":[]},{"section":"replicaset-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--861","subsections":[{"section":"replace-status-864"},{"section":"read-status-863"},{"section":"patch-status-862"}]},{"section":"-strong-read-operations-strong--854","subsections":[{"section":"watch-list-all-namespaces-860"},{"section":"watch-list-859"},{"section":"watch-858"},{"section":"list-all-namespaces-857"},{"section":"list-856"},{"section":"read-855"}]},{"section":"-strong-write-operations-strong--848","subsections":[{"section":"delete-collection-853"},{"section":"delete-852"},{"section":"replace-851"},{"section":"patch-850"},{"section":"create-849"}]}]},{"section":"replicaset-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--844","subsections":[{"section":"replace-status-847"},{"section":"read-status-846"},{"section":"patch-status-845"}]},{"section":"-strong-read-operations-strong--837","subsections":[{"section":"watch-list-all-namespaces-843"},{"section":"watch-list-842"},{"section":"watch-841"},{"section":"list-all-namespaces-840"},{"section":"list-839"},{"section":"read-838"}]},{"section":"-strong-write-operations-strong--831","subsections":[{"section":"delete-collection-836"},{"section":"delete-835"},{"section":"replace-834"},{"section":"patch-833"},{"section":"create-832"}]}]},{"section":"policyrule-v1alpha1-rbac","subsections":[]},{"section":"policyrule-v1beta1-rbac","subsections":[]},{"section":"nonresourcerule-v1beta1-authorization","subsections":[]},{"section":"nonresourceattributes-v1beta1-authorization","subsections":[]},{"section":"networkpolicyport-v1beta1-extensions","subsections":[]},{"section":"networkpolicypeer-v1beta1-extensions","subsections":[]},{"section":"networkpolicyingressrule-v1beta1-extensions","subsections":[]},{"section":"networkpolicyegressrule-v1beta1-extensions","subsections":[]},{"section":"networkpolicy-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--824","subsections":[{"section":"watch-list-all-namespaces-830"},{"section":"watch-list-829"},{"section":"watch-828"},{"section":"list-all-namespaces-827"},{"section":"list-826"},{"section":"read-825"}]},{"section":"-strong-write-operations-strong--818","subsections":[{"section":"delete-collection-823"},{"section":"delete-822"},{"section":"replace-821"},{"section":"patch-820"},{"section":"create-819"}]}]},{"section":"localsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--816","subsections":[{"section":"create-817"}]}]},{"section":"jobtemplatespec-v2alpha1-batch","subsections":[]},{"section":"initializer-v1alpha1-admissionregistration","subsections":[]},{"section":"ipblock-v1beta1-extensions","subsections":[]},{"section":"horizontalpodautoscaler-v2beta1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--812","subsections":[{"section":"replace-status-815"},{"section":"read-status-814"},{"section":"patch-status-813"}]},{"section":"-strong-read-operations-strong--805","subsections":[{"section":"watch-list-all-namespaces-811"},{"section":"watch-list-810"},{"section":"watch-809"},{"section":"list-all-namespaces-808"},{"section":"list-807"},{"section":"read-806"}]},{"section":"-strong-write-operations-strong--799","subsections":[{"section":"delete-collection-804"},{"section":"delete-803"},{"section":"replace-802"},{"section":"patch-801"},{"section":"create-800"}]}]},{"section":"eventseries-v1beta1-events","subsections":[]},{"section":"event-v1beta1-events","subsections":[{"section":"-strong-read-operations-strong--792","subsections":[{"section":"watch-list-all-namespaces-798"},{"section":"watch-list-797"},{"section":"watch-796"},{"section":"list-all-namespaces-795"},{"section":"list-794"},{"section":"read-793"}]},{"section":"-strong-write-operations-strong--786","subsections":[{"section":"delete-collection-791"},{"section":"delete-790"},{"section":"replace-789"},{"section":"patch-788"},{"section":"create-787"}]}]},{"section":"deploymentcondition-v1beta1-extensions","subsections":[]},{"section":"deploymentcondition-v1beta1-apps","subsections":[]},{"section":"deploymentcondition-v1beta2-apps","subsections":[]},{"section":"deployment-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--782","subsections":[{"section":"replace-status-785"},{"section":"read-status-784"},{"section":"patch-status-783"}]},{"section":"-strong-read-operations-strong--775","subsections":[{"section":"watch-list-all-namespaces-781"},{"section":"watch-list-780"},{"section":"watch-779"},{"section":"list-all-namespaces-778"},{"section":"list-777"},{"section":"read-776"}]},{"section":"-strong-write-operations-strong--769","subsections":[{"section":"delete-collection-774"},{"section":"delete-773"},{"section":"replace-772"},{"section":"patch-771"},{"section":"create-770"}]}]},{"section":"deployment-v1beta1-apps","subsections":[{"section":"-strong-status-operations-strong--765","subsections":[{"section":"replace-status-768"},{"section":"read-status-767"},{"section":"patch-status-766"}]},{"section":"-strong-read-operations-strong--758","subsections":[{"section":"watch-list-all-namespaces-764"},{"section":"watch-list-763"},{"section":"watch-762"},{"section":"list-all-namespaces-761"},{"section":"list-760"},{"section":"read-759"}]},{"section":"-strong-write-operations-strong--752","subsections":[{"section":"delete-collection-757"},{"section":"delete-756"},{"section":"replace-755"},{"section":"patch-754"},{"section":"create-753"}]}]},{"section":"deployment-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--748","subsections":[{"section":"replace-status-751"},{"section":"read-status-750"},{"section":"patch-status-749"}]},{"section":"-strong-read-operations-strong--741","subsections":[{"section":"watch-list-all-namespaces-747"},{"section":"watch-list-746"},{"section":"watch-745"},{"section":"list-all-namespaces-744"},{"section":"list-743"},{"section":"read-742"}]},{"section":"-strong-write-operations-strong--735","subsections":[{"section":"delete-collection-740"},{"section":"delete-739"},{"section":"replace-738"},{"section":"patch-737"},{"section":"create-736"}]}]},{"section":"daemonsetupdatestrategy-v1beta1-extensions","subsections":[]},{"section":"daemonsetupdatestrategy-v1beta2-apps","subsections":[]},{"section":"daemonsetcondition-v1beta1-extensions","subsections":[]},{"section":"daemonsetcondition-v1beta2-apps","subsections":[]},{"section":"daemonset-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--731","subsections":[{"section":"replace-status-734"},{"section":"read-status-733"},{"section":"patch-status-732"}]},{"section":"-strong-read-operations-strong--724","subsections":[{"section":"watch-list-all-namespaces-730"},{"section":"watch-list-729"},{"section":"watch-728"},{"section":"list-all-namespaces-727"},{"section":"list-726"},{"section":"read-725"}]},{"section":"-strong-write-operations-strong--718","subsections":[{"section":"delete-collection-723"},{"section":"delete-722"},{"section":"replace-721"},{"section":"patch-720"},{"section":"create-719"}]}]},{"section":"daemonset-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--714","subsections":[{"section":"replace-status-717"},{"section":"read-status-716"},{"section":"patch-status-715"}]},{"section":"-strong-read-operations-strong--707","subsections":[{"section":"watch-list-all-namespaces-713"},{"section":"watch-list-712"},{"section":"watch-711"},{"section":"list-all-namespaces-710"},{"section":"list-709"},{"section":"read-708"}]},{"section":"-strong-write-operations-strong--701","subsections":[{"section":"delete-collection-706"},{"section":"delete-705"},{"section":"replace-704"},{"section":"patch-703"},{"section":"create-702"}]}]},{"section":"crossversionobjectreference-v2beta1-autoscaling","subsections":[]},{"section":"cronjob-v2alpha1-batch","subsections":[{"section":"-strong-status-operations-strong--697","subsections":[{"section":"replace-status-700"},{"section":"read-status-699"},{"section":"patch-status-698"}]},{"section":"-strong-read-operations-strong--690","subsections":[{"section":"watch-list-all-namespaces-696"},{"section":"watch-list-695"},{"section":"watch-694"},{"section":"list-all-namespaces-693"},{"section":"list-692"},{"section":"read-691"}]},{"section":"-strong-write-operations-strong--684","subsections":[{"section":"delete-collection-689"},{"section":"delete-688"},{"section":"replace-687"},{"section":"patch-686"},{"section":"create-685"}]}]},{"section":"controllerrevision-v1beta1-apps","subsections":[{"section":"-strong-read-operations-strong--677","subsections":[{"section":"watch-list-all-namespaces-683"},{"section":"watch-list-682"},{"section":"watch-681"},{"section":"list-all-namespaces-680"},{"section":"list-679"},{"section":"read-678"}]},{"section":"-strong-write-operations-strong--671","subsections":[{"section":"delete-collection-676"},{"section":"delete-675"},{"section":"replace-674"},{"section":"patch-673"},{"section":"create-672"}]}]},{"section":"controllerrevision-v1beta2-apps","subsections":[{"section":"-strong-read-operations-strong--664","subsections":[{"section":"watch-list-all-namespaces-670"},{"section":"watch-list-669"},{"section":"watch-668"},{"section":"list-all-namespaces-667"},{"section":"list-666"},{"section":"read-665"}]},{"section":"-strong-write-operations-strong--658","subsections":[{"section":"delete-collection-663"},{"section":"delete-662"},{"section":"replace-661"},{"section":"patch-660"},{"section":"create-659"}]}]},{"section":"clusterrolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--653","subsections":[{"section":"watch-list-657"},{"section":"watch-656"},{"section":"list-655"},{"section":"read-654"}]},{"section":"-strong-write-operations-strong--647","subsections":[{"section":"delete-collection-652"},{"section":"delete-651"},{"section":"replace-650"},{"section":"patch-649"},{"section":"create-648"}]}]},{"section":"clusterrolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--642","subsections":[{"section":"watch-list-646"},{"section":"watch-645"},{"section":"list-644"},{"section":"read-643"}]},{"section":"-strong-write-operations-strong--636","subsections":[{"section":"delete-collection-641"},{"section":"delete-640"},{"section":"replace-639"},{"section":"patch-638"},{"section":"create-637"}]}]},{"section":"clusterrole-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--631","subsections":[{"section":"watch-list-635"},{"section":"watch-634"},{"section":"list-633"},{"section":"read-632"}]},{"section":"-strong-write-operations-strong--625","subsections":[{"section":"delete-collection-630"},{"section":"delete-629"},{"section":"replace-628"},{"section":"patch-627"},{"section":"create-626"}]}]},{"section":"clusterrole-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--620","subsections":[{"section":"watch-list-624"},{"section":"watch-623"},{"section":"list-622"},{"section":"read-621"}]},{"section":"-strong-write-operations-strong--614","subsections":[{"section":"delete-collection-619"},{"section":"delete-618"},{"section":"replace-617"},{"section":"patch-616"},{"section":"create-615"}]}]},{"section":"aggregationrule-v1alpha1-rbac","subsections":[]},{"section":"aggregationrule-v1beta1-rbac","subsections":[]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"weightedpodaffinityterm-v1-core"},{"section":"webhookclientconfig-v1beta1-admissionregistration"},{"section":"webhook-v1beta1-admissionregistration"},{"section":"watchevent-v1-meta"},{"section":"vspherevirtualdiskvolumesource-v1-core"},{"section":"volumeprojection-v1-core"},{"section":"volumemount-v1-core"},{"section":"volumeerror-v1alpha1-storage"},{"section":"volumedevice-v1-core"},{"section":"volumeattachmentsource-v1alpha1-storage"},{"section":"userinfo-v1-authentication"},{"section":"toleration-v1-core"},{"section":"time-v1-meta"},{"section":"taint-v1-core"},{"section":"tcpsocketaction-v1-core"},{"section":"supplementalgroupsstrategyoptions-v1beta1-extensions"},{"section":"subjectrulesreviewstatus-v1-authorization"},{"section":"subject-v1-rbac"},{"section":"storageosvolumesource-v1-core"},{"section":"storageospersistentvolumesource-v1-core"},{"section":"statusdetails-v1-meta"},{"section":"statuscause-v1-meta"},{"section":"status-v1-meta"},{"section":"statefulsetupdatestrategy-v1-apps"},{"section":"statefulsetcondition-v1-apps"},{"section":"sessionaffinityconfig-v1-core"},{"section":"servicereference-v1beta1-admissionregistration"},{"section":"serviceport-v1-core"},{"section":"serveraddressbyclientcidr-v1-meta"},{"section":"securitycontext-v1-core"},{"section":"secretvolumesource-v1-core"},{"section":"secretreference-v1-core"},{"section":"secretprojection-v1-core"},{"section":"secretkeyselector-v1-core"},{"section":"secretenvsource-v1-core"},{"section":"scaleiovolumesource-v1-core"},{"section":"scaleiopersistentvolumesource-v1-core"},{"section":"scale-v1-autoscaling"},{"section":"selinuxstrategyoptions-v1beta1-extensions"},{"section":"selinuxoptions-v1-core"},{"section":"runasuserstrategyoptions-v1beta1-extensions"},{"section":"rulewithoperations-v1beta1-admissionregistration"},{"section":"rule-v1alpha1-admissionregistration"},{"section":"rollingupdatestatefulsetstrategy-v1-apps"},{"section":"rollbackconfig-v1beta1-apps"},{"section":"roleref-v1-rbac"},{"section":"resourcerule-v1-authorization"},{"section":"resourcerequirements-v1-core"},{"section":"resourcemetricstatus-v2beta1-autoscaling"},{"section":"resourcemetricsource-v2beta1-autoscaling"},{"section":"resourcefieldselector-v1-core"},{"section":"resourceattributes-v1-authorization"},{"section":"replicationcontrollercondition-v1-core"},{"section":"replicasetcondition-v1-apps"},{"section":"rbdvolumesource-v1-core"},{"section":"rbdpersistentvolumesource-v1-core"},{"section":"quobytevolumesource-v1-core"},{"section":"quantity-resource-core"},{"section":"projectedvolumesource-v1-core"},{"section":"probe-v1-core"},{"section":"preferredschedulingterm-v1-core"},{"section":"preconditions-v1-meta"},{"section":"portworxvolumesource-v1-core"},{"section":"policyrule-v1-rbac"},{"section":"podsmetricstatus-v2beta1-autoscaling"},{"section":"podsmetricsource-v2beta1-autoscaling"},{"section":"podsecuritycontext-v1-core"},{"section":"poddnsconfigoption-v1-core"},{"section":"poddnsconfig-v1-core"},{"section":"podcondition-v1-core"},{"section":"podantiaffinity-v1-core"},{"section":"podaffinityterm-v1-core"},{"section":"podaffinity-v1-core"},{"section":"photonpersistentdiskvolumesource-v1-core"},{"section":"persistentvolumeclaimvolumesource-v1-core"},{"section":"persistentvolumeclaimcondition-v1-core"},{"section":"patch-v1-meta"},{"section":"ownerreference-v1-meta"},{"section":"objectreference-v1-core"},{"section":"objectmetricstatus-v2beta1-autoscaling"},{"section":"objectmetricsource-v2beta1-autoscaling"},{"section":"objectmeta-v1-meta"},{"section":"objectfieldselector-v1-core"},{"section":"nonresourcerule-v1-authorization"},{"section":"nonresourceattributes-v1-authorization"},{"section":"nodesysteminfo-v1-core"},{"section":"nodeselectorterm-v1-core"},{"section":"nodeselectorrequirement-v1-core"},{"section":"nodeselector-v1-core"},{"section":"nodedaemonendpoints-v1-core"},{"section":"nodeconfigsource-v1-core"},{"section":"nodecondition-v1-core"},{"section":"nodeaffinity-v1-core"},{"section":"nodeaddress-v1-core"},{"section":"networkpolicyport-v1-networking"},{"section":"networkpolicypeer-v1-networking"},{"section":"networkpolicyingressrule-v1-networking"},{"section":"networkpolicyegressrule-v1-networking"},{"section":"nfsvolumesource-v1-core"},{"section":"microtime-v1-meta"},{"section":"metricstatus-v2beta1-autoscaling"},{"section":"metricspec-v2beta1-autoscaling"},{"section":"localvolumesource-v1-core"},{"section":"localobjectreference-v1-core"},{"section":"loadbalancerstatus-v1-core"},{"section":"loadbalanceringress-v1-core"},{"section":"listmeta-v1-meta"},{"section":"limitrangeitem-v1-core"},{"section":"lifecycle-v1-core"},{"section":"labelselectorrequirement-v1-meta"},{"section":"labelselector-v1-meta"},{"section":"keytopath-v1-core"},{"section":"jobtemplatespec-v1beta1-batch"},{"section":"jobcondition-v1-batch"},{"section":"jsonschemapropsorbool-v1beta1-apiextensions"},{"section":"jsonschemapropsorarray-v1beta1-apiextensions"},{"section":"jsonschemaprops-v1beta1-apiextensions"},{"section":"json-v1beta1-apiextensions"},{"section":"initializers-v1-meta"},{"section":"initializer-v1-meta"},{"section":"ingresstls-v1beta1-extensions"},{"section":"ingressrule-v1beta1-extensions"},{"section":"ingressbackend-v1beta1-extensions"},{"section":"iscsivolumesource-v1-core"},{"section":"iscsipersistentvolumesource-v1-core"},{"section":"ipblock-v1-networking"},{"section":"idrange-v1beta1-extensions"},{"section":"hostportrange-v1beta1-extensions"},{"section":"hostpathvolumesource-v1-core"},{"section":"hostalias-v1-core"},{"section":"horizontalpodautoscalercondition-v2beta1-autoscaling"},{"section":"handler-v1-core"},{"section":"httpingressrulevalue-v1beta1-extensions"},{"section":"httpingresspath-v1beta1-extensions"},{"section":"httpheader-v1-core"},{"section":"httpgetaction-v1-core"},{"section":"groupversionfordiscovery-v1-meta"},{"section":"glusterfsvolumesource-v1-core"},{"section":"gitrepovolumesource-v1-core"},{"section":"gcepersistentdiskvolumesource-v1-core"},{"section":"flockervolumesource-v1-core"},{"section":"flexvolumesource-v1-core"},{"section":"fsgroupstrategyoptions-v1beta1-extensions"},{"section":"fcvolumesource-v1-core"},{"section":"externaldocumentation-v1beta1-apiextensions"},{"section":"execaction-v1-core"},{"section":"eviction-v1beta1-policy"},{"section":"eventsource-v1-core"},{"section":"eventseries-v1-core"},{"section":"envvarsource-v1-core"},{"section":"envvar-v1-core"},{"section":"envfromsource-v1-core"},{"section":"endpointsubset-v1-core"},{"section":"endpointport-v1-core"},{"section":"endpointaddress-v1-core"},{"section":"emptydirvolumesource-v1-core"},{"section":"downwardapivolumesource-v1-core"},{"section":"downwardapivolumefile-v1-core"},{"section":"downwardapiprojection-v1-core"},{"section":"deploymentcondition-v1-apps"},{"section":"deleteoptions-v1-meta"},{"section":"daemonsetupdatestrategy-v1-apps"},{"section":"daemonsetcondition-v1-apps"},{"section":"daemonendpoint-v1-core"},{"section":"customresourcevalidation-v1beta1-apiextensions"},{"section":"customresourcedefinitionnames-v1beta1-apiextensions"},{"section":"customresourcedefinitioncondition-v1beta1-apiextensions"},{"section":"crossversionobjectreference-v1-autoscaling"},{"section":"containerstatewaiting-v1-core"},{"section":"containerstateterminated-v1-core"},{"section":"containerstaterunning-v1-core"},{"section":"containerstate-v1-core"},{"section":"containerport-v1-core"},{"section":"containerimage-v1-core"},{"section":"configmapvolumesource-v1-core"},{"section":"configmapprojection-v1-core"},{"section":"configmapkeyselector-v1-core"},{"section":"configmapenvsource-v1-core"},{"section":"componentcondition-v1-core"},{"section":"clientipconfig-v1-core"},{"section":"cindervolumesource-v1-core"},{"section":"certificatesigningrequestcondition-v1beta1-certificates"},{"section":"cephfsvolumesource-v1-core"},{"section":"cephfspersistentvolumesource-v1-core"},{"section":"capabilities-v1-core"},{"section":"csipersistentvolumesource-v1-core"},{"section":"azurefilevolumesource-v1-core"},{"section":"azurefilepersistentvolumesource-v1-core"},{"section":"azurediskvolumesource-v1-core"},{"section":"attachedvolume-v1-core"},{"section":"allowedhostpath-v1beta1-extensions"},{"section":"allowedflexvolume-v1beta1-extensions"},{"section":"aggregationrule-v1-rbac"},{"section":"affinity-v1-core"},{"section":"awselasticblockstorevolumesource-v1-core"},{"section":"apiversions-v1-meta"},{"section":"apiservicecondition-v1beta1-apiregistration"},{"section":"apiresource-v1-meta"},{"section":"apigroup-v1-meta"}]},{"section":"networkpolicy-v1-networking","subsections":[{"section":"-strong-read-operations-strong--607","subsections":[{"section":"watch-list-all-namespaces-613"},{"section":"watch-list-612"},{"section":"watch-611"},{"section":"list-all-namespaces-610"},{"section":"list-609"},{"section":"read-608"}]},{"section":"-strong-write-operations-strong--601","subsections":[{"section":"delete-collection-606"},{"section":"delete-605"},{"section":"replace-604"},{"section":"patch-603"},{"section":"create-602"}]}]},{"section":"tokenreview-v1-authentication","subsections":[{"section":"-strong-write-operations-strong--599","subsections":[{"section":"create-600"}]}]},{"section":"subjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--597","subsections":[{"section":"create-598"}]}]},{"section":"serviceaccount-v1-core","subsections":[{"section":"-strong-read-operations-strong--590","subsections":[{"section":"watch-list-all-namespaces-596"},{"section":"watch-list-595"},{"section":"watch-594"},{"section":"list-all-namespaces-593"},{"section":"list-592"},{"section":"read-591"}]},{"section":"-strong-write-operations-strong--584","subsections":[{"section":"delete-collection-589"},{"section":"delete-588"},{"section":"replace-587"},{"section":"patch-586"},{"section":"create-585"}]}]},{"section":"selfsubjectrulesreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--582","subsections":[{"section":"create-583"}]}]},{"section":"selfsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--580","subsections":[{"section":"create-581"}]}]},{"section":"rolebinding-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--573","subsections":[{"section":"watch-list-all-namespaces-579"},{"section":"watch-list-578"},{"section":"watch-577"},{"section":"list-all-namespaces-576"},{"section":"list-575"},{"section":"read-574"}]},{"section":"-strong-write-operations-strong--567","subsections":[{"section":"delete-collection-572"},{"section":"delete-571"},{"section":"replace-570"},{"section":"patch-569"},{"section":"create-568"}]}]},{"section":"role-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--560","subsections":[{"section":"watch-list-all-namespaces-566"},{"section":"watch-list-565"},{"section":"watch-564"},{"section":"list-all-namespaces-563"},{"section":"list-562"},{"section":"read-561"}]},{"section":"-strong-write-operations-strong--554","subsections":[{"section":"delete-collection-559"},{"section":"delete-558"},{"section":"replace-557"},{"section":"patch-556"},{"section":"create-555"}]}]},{"section":"resourcequota-v1-core","subsections":[{"section":"-strong-status-operations-strong--550","subsections":[{"section":"replace-status-553"},{"section":"read-status-552"},{"section":"patch-status-551"}]},{"section":"-strong-read-operations-strong--543","subsections":[{"section":"watch-list-all-namespaces-549"},{"section":"watch-list-548"},{"section":"watch-547"},{"section":"list-all-namespaces-546"},{"section":"list-545"},{"section":"read-544"}]},{"section":"-strong-write-operations-strong--537","subsections":[{"section":"delete-collection-542"},{"section":"delete-541"},{"section":"replace-540"},{"section":"patch-539"},{"section":"create-538"}]}]},{"section":"persistentvolume-v1-core","subsections":[{"section":"-strong-status-operations-strong--533","subsections":[{"section":"replace-status-536"},{"section":"read-status-535"},{"section":"patch-status-534"}]},{"section":"-strong-read-operations-strong--528","subsections":[{"section":"watch-list-532"},{"section":"watch-531"},{"section":"list-530"},{"section":"read-529"}]},{"section":"-strong-write-operations-strong--522","subsections":[{"section":"delete-collection-527"},{"section":"delete-526"},{"section":"replace-525"},{"section":"patch-524"},{"section":"create-523"}]}]},{"section":"node-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--503","subsections":[{"section":"replace-proxy-path-521"},{"section":"replace-proxy-520"},{"section":"replace-connect-proxy-path-519"},{"section":"replace-connect-proxy-518"},{"section":"head-connect-proxy-path-517"},{"section":"head-connect-proxy-516"},{"section":"get-proxy-path-515"},{"section":"get-proxy-514"},{"section":"get-connect-proxy-path-513"},{"section":"get-connect-proxy-512"},{"section":"delete-proxy-path-511"},{"section":"delete-proxy-510"},{"section":"delete-connect-proxy-path-509"},{"section":"delete-connect-proxy-508"},{"section":"create-proxy-path-507"},{"section":"create-proxy-506"},{"section":"create-connect-proxy-path-505"},{"section":"create-connect-proxy-504"}]},{"section":"-strong-status-operations-strong--499","subsections":[{"section":"replace-status-502"},{"section":"read-status-501"},{"section":"patch-status-500"}]},{"section":"-strong-read-operations-strong--494","subsections":[{"section":"watch-list-498"},{"section":"watch-497"},{"section":"list-496"},{"section":"read-495"}]},{"section":"-strong-write-operations-strong--488","subsections":[{"section":"delete-collection-493"},{"section":"delete-492"},{"section":"replace-491"},{"section":"patch-490"},{"section":"create-489"}]}]},{"section":"namespace-v1-core","subsections":[{"section":"-strong-status-operations-strong--484","subsections":[{"section":"replace-status-487"},{"section":"read-status-486"},{"section":"patch-status-485"}]},{"section":"-strong-read-operations-strong--479","subsections":[{"section":"watch-list-483"},{"section":"watch-482"},{"section":"list-481"},{"section":"read-480"}]},{"section":"-strong-write-operations-strong--474","subsections":[{"section":"delete-478"},{"section":"replace-477"},{"section":"patch-476"},{"section":"create-475"}]}]},{"section":"localsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--472","subsections":[{"section":"create-473"}]}]},{"section":"componentstatus-v1-core","subsections":[{"section":"-strong-read-operations-strong--469","subsections":[{"section":"list-471"},{"section":"read-470"}]}]},{"section":"clusterrolebinding-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--464","subsections":[{"section":"watch-list-468"},{"section":"watch-467"},{"section":"list-466"},{"section":"read-465"}]},{"section":"-strong-write-operations-strong--458","subsections":[{"section":"delete-collection-463"},{"section":"delete-462"},{"section":"replace-461"},{"section":"patch-460"},{"section":"create-459"}]}]},{"section":"clusterrole-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--453","subsections":[{"section":"watch-list-457"},{"section":"watch-456"},{"section":"list-455"},{"section":"read-454"}]},{"section":"-strong-write-operations-strong--447","subsections":[{"section":"delete-collection-452"},{"section":"delete-451"},{"section":"replace-450"},{"section":"patch-449"},{"section":"create-448"}]}]},{"section":"certificatesigningrequest-v1beta1-certificates","subsections":[{"section":"-strong-status-operations-strong--445","subsections":[{"section":"replace-status-446"}]},{"section":"-strong-read-operations-strong--440","subsections":[{"section":"watch-list-444"},{"section":"watch-443"},{"section":"list-442"},{"section":"read-441"}]},{"section":"-strong-write-operations-strong--434","subsections":[{"section":"delete-collection-439"},{"section":"delete-438"},{"section":"replace-437"},{"section":"patch-436"},{"section":"create-435"}]}]},{"section":"binding-v1-core","subsections":[{"section":"-strong-write-operations-strong--432","subsections":[{"section":"create-433"}]}]},{"section":"apiservice-v1beta1-apiregistration","subsections":[{"section":"-strong-status-operations-strong--430","subsections":[{"section":"replace-status-431"}]},{"section":"-strong-read-operations-strong--425","subsections":[{"section":"watch-list-429"},{"section":"watch-428"},{"section":"list-427"},{"section":"read-426"}]},{"section":"-strong-write-operations-strong--419","subsections":[{"section":"delete-collection-424"},{"section":"delete-423"},{"section":"replace-422"},{"section":"patch-421"},{"section":"create-420"}]}]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"podsecuritypolicy-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--414","subsections":[{"section":"watch-list-418"},{"section":"watch-417"},{"section":"list-416"},{"section":"read-415"}]},{"section":"-strong-write-operations-strong--408","subsections":[{"section":"delete-collection-413"},{"section":"delete-412"},{"section":"replace-411"},{"section":"patch-410"},{"section":"create-409"}]}]},{"section":"podpreset-v1alpha1-settings","subsections":[{"section":"-strong-read-operations-strong--401","subsections":[{"section":"watch-list-all-namespaces-407"},{"section":"watch-list-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":"replace-398"},{"section":"patch-397"},{"section":"create-396"}]}]},{"section":"priorityclass-v1alpha1-scheduling","subsections":[{"section":"-strong-read-operations-strong--390","subsections":[{"section":"watch-list-394"},{"section":"watch-393"},{"section":"list-392"},{"section":"read-391"}]},{"section":"-strong-write-operations-strong--384","subsections":[{"section":"delete-collection-389"},{"section":"delete-388"},{"section":"replace-387"},{"section":"patch-386"},{"section":"create-385"}]}]},{"section":"poddisruptionbudget-v1beta1-policy","subsections":[{"section":"-strong-status-operations-strong--380","subsections":[{"section":"replace-status-383"},{"section":"read-status-382"},{"section":"patch-status-381"}]},{"section":"-strong-read-operations-strong--373","subsections":[{"section":"watch-list-all-namespaces-379"},{"section":"watch-list-378"},{"section":"watch-377"},{"section":"list-all-namespaces-376"},{"section":"list-375"},{"section":"read-374"}]},{"section":"-strong-write-operations-strong--367","subsections":[{"section":"delete-collection-372"},{"section":"delete-371"},{"section":"replace-370"},{"section":"patch-369"},{"section":"create-368"}]}]},{"section":"podtemplate-v1-core","subsections":[{"section":"-strong-read-operations-strong--360","subsections":[{"section":"watch-list-all-namespaces-366"},{"section":"watch-list-365"},{"section":"watch-364"},{"section":"list-all-namespaces-363"},{"section":"list-362"},{"section":"read-361"}]},{"section":"-strong-write-operations-strong--354","subsections":[{"section":"delete-collection-359"},{"section":"delete-358"},{"section":"replace-357"},{"section":"patch-356"},{"section":"create-355"}]}]},{"section":"validatingwebhookconfiguration-v1beta1-admissionregistration","subsections":[{"section":"-strong-read-operations-strong--349","subsections":[{"section":"watch-list-353"},{"section":"watch-352"},{"section":"list-351"},{"section":"read-350"}]},{"section":"-strong-write-operations-strong--343","subsections":[{"section":"delete-collection-348"},{"section":"delete-347"},{"section":"replace-346"},{"section":"patch-345"},{"section":"create-344"}]}]},{"section":"mutatingwebhookconfiguration-v1beta1-admissionregistration","subsections":[{"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":"replace-335"},{"section":"patch-334"},{"section":"create-333"}]}]},{"section":"initializerconfiguration-v1alpha1-admissionregistration","subsections":[{"section":"-strong-read-operations-strong--327","subsections":[{"section":"watch-list-331"},{"section":"watch-330"},{"section":"list-329"},{"section":"read-328"}]},{"section":"-strong-write-operations-strong--321","subsections":[{"section":"delete-collection-326"},{"section":"delete-325"},{"section":"replace-324"},{"section":"patch-323"},{"section":"create-322"}]}]},{"section":"horizontalpodautoscaler-v1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--317","subsections":[{"section":"replace-status-320"},{"section":"read-status-319"},{"section":"patch-status-318"}]},{"section":"-strong-read-operations-strong--310","subsections":[{"section":"watch-list-all-namespaces-316"},{"section":"watch-list-315"},{"section":"watch-314"},{"section":"list-all-namespaces-313"},{"section":"list-312"},{"section":"read-311"}]},{"section":"-strong-write-operations-strong--304","subsections":[{"section":"delete-collection-309"},{"section":"delete-308"},{"section":"replace-307"},{"section":"patch-306"},{"section":"create-305"}]}]},{"section":"limitrange-v1-core","subsections":[{"section":"-strong-read-operations-strong--297","subsections":[{"section":"watch-list-all-namespaces-303"},{"section":"watch-list-302"},{"section":"watch-301"},{"section":"list-all-namespaces-300"},{"section":"list-299"},{"section":"read-298"}]},{"section":"-strong-write-operations-strong--291","subsections":[{"section":"delete-collection-296"},{"section":"delete-295"},{"section":"replace-294"},{"section":"patch-293"},{"section":"create-292"}]}]},{"section":"event-v1-core","subsections":[{"section":"-strong-read-operations-strong--284","subsections":[{"section":"watch-list-all-namespaces-290"},{"section":"watch-list-289"},{"section":"watch-288"},{"section":"list-all-namespaces-287"},{"section":"list-286"},{"section":"read-285"}]},{"section":"-strong-write-operations-strong--278","subsections":[{"section":"delete-collection-283"},{"section":"delete-282"},{"section":"replace-281"},{"section":"patch-280"},{"section":"create-279"}]}]},{"section":"customresourcedefinition-v1beta1-apiextensions","subsections":[{"section":"-strong-status-operations-strong--276","subsections":[{"section":"replace-status-277"}]},{"section":"-strong-read-operations-strong--271","subsections":[{"section":"watch-list-275"},{"section":"watch-274"},{"section":"list-273"},{"section":"read-272"}]},{"section":"-strong-write-operations-strong--265","subsections":[{"section":"delete-collection-270"},{"section":"delete-269"},{"section":"replace-268"},{"section":"patch-267"},{"section":"create-266"}]}]},{"section":"controllerrevision-v1-apps","subsections":[{"section":"-strong-read-operations-strong--258","subsections":[{"section":"watch-list-all-namespaces-264"},{"section":"watch-list-263"},{"section":"watch-262"},{"section":"list-all-namespaces-261"},{"section":"list-260"},{"section":"read-259"}]},{"section":"-strong-write-operations-strong--252","subsections":[{"section":"delete-collection-257"},{"section":"delete-256"},{"section":"replace-255"},{"section":"patch-254"},{"section":"create-253"}]}]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volumeattachment-v1alpha1-storage","subsections":[{"section":"-strong-read-operations-strong--247","subsections":[{"section":"watch-list-251"},{"section":"watch-250"},{"section":"list-249"},{"section":"read-248"}]},{"section":"-strong-write-operations-strong--241","subsections":[{"section":"delete-collection-246"},{"section":"delete-245"},{"section":"replace-244"},{"section":"patch-243"},{"section":"create-242"}]}]},{"section":"volume-v1-core","subsections":[]},{"section":"storageclass-v1-storage","subsections":[{"section":"-strong-read-operations-strong--236","subsections":[{"section":"watch-list-240"},{"section":"watch-239"},{"section":"list-238"},{"section":"read-237"}]},{"section":"-strong-write-operations-strong--230","subsections":[{"section":"delete-collection-235"},{"section":"delete-234"},{"section":"replace-233"},{"section":"patch-232"},{"section":"create-231"}]}]},{"section":"persistentvolumeclaim-v1-core","subsections":[{"section":"-strong-status-operations-strong--226","subsections":[{"section":"replace-status-229"},{"section":"read-status-228"},{"section":"patch-status-227"}]},{"section":"-strong-read-operations-strong--219","subsections":[{"section":"watch-list-all-namespaces-225"},{"section":"watch-list-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":"replace-216"},{"section":"patch-215"},{"section":"create-214"}]}]},{"section":"secret-v1-core","subsections":[{"section":"-strong-read-operations-strong--206","subsections":[{"section":"watch-list-all-namespaces-212"},{"section":"watch-list-211"},{"section":"watch-210"},{"section":"list-all-namespaces-209"},{"section":"list-208"},{"section":"read-207"}]},{"section":"-strong-write-operations-strong--200","subsections":[{"section":"delete-collection-205"},{"section":"delete-204"},{"section":"replace-203"},{"section":"patch-202"},{"section":"create-201"}]}]},{"section":"configmap-v1-core","subsections":[{"section":"-strong-read-operations-strong--193","subsections":[{"section":"watch-list-all-namespaces-199"},{"section":"watch-list-198"},{"section":"watch-197"},{"section":"list-all-namespaces-196"},{"section":"list-195"},{"section":"read-194"}]},{"section":"-strong-write-operations-strong--187","subsections":[{"section":"delete-collection-192"},{"section":"delete-191"},{"section":"replace-190"},{"section":"patch-189"},{"section":"create-188"}]}]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--168","subsections":[{"section":"replace-proxy-path-186"},{"section":"replace-proxy-185"},{"section":"replace-connect-proxy-path-184"},{"section":"replace-connect-proxy-183"},{"section":"head-connect-proxy-path-182"},{"section":"head-connect-proxy-181"},{"section":"get-proxy-path-180"},{"section":"get-proxy-179"},{"section":"get-connect-proxy-path-178"},{"section":"get-connect-proxy-177"},{"section":"delete-proxy-path-176"},{"section":"delete-proxy-175"},{"section":"delete-connect-proxy-path-174"},{"section":"delete-connect-proxy-173"},{"section":"create-proxy-path-172"},{"section":"create-proxy-171"},{"section":"create-connect-proxy-path-170"},{"section":"create-connect-proxy-169"}]},{"section":"-strong-status-operations-strong--164","subsections":[{"section":"replace-status-167"},{"section":"read-status-166"},{"section":"patch-status-165"}]},{"section":"-strong-read-operations-strong--157","subsections":[{"section":"watch-list-all-namespaces-163"},{"section":"watch-list-162"},{"section":"watch-161"},{"section":"list-all-namespaces-160"},{"section":"list-159"},{"section":"read-158"}]},{"section":"-strong-write-operations-strong--152","subsections":[{"section":"delete-156"},{"section":"replace-155"},{"section":"patch-154"},{"section":"create-153"}]}]},{"section":"ingress-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--148","subsections":[{"section":"replace-status-151"},{"section":"read-status-150"},{"section":"patch-status-149"}]},{"section":"-strong-read-operations-strong--141","subsections":[{"section":"watch-list-all-namespaces-147"},{"section":"watch-list-146"},{"section":"watch-145"},{"section":"list-all-namespaces-144"},{"section":"list-143"},{"section":"read-142"}]},{"section":"-strong-write-operations-strong--135","subsections":[{"section":"delete-collection-140"},{"section":"delete-139"},{"section":"replace-138"},{"section":"patch-137"},{"section":"create-136"}]}]},{"section":"endpoints-v1-core","subsections":[{"section":"-strong-read-operations-strong--128","subsections":[{"section":"watch-list-all-namespaces-134"},{"section":"watch-list-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":"replace-125"},{"section":"patch-124"},{"section":"create-123"}]}]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1-apps","subsections":[{"section":"-strong-status-operations-strong--118","subsections":[{"section":"replace-status-121"},{"section":"read-status-120"},{"section":"patch-status-119"}]},{"section":"-strong-read-operations-strong--111","subsections":[{"section":"watch-list-all-namespaces-117"},{"section":"watch-list-116"},{"section":"watch-115"},{"section":"list-all-namespaces-114"},{"section":"list-113"},{"section":"read-112"}]},{"section":"-strong-write-operations-strong--105","subsections":[{"section":"delete-collection-110"},{"section":"delete-109"},{"section":"replace-108"},{"section":"patch-107"},{"section":"create-106"}]}]},{"section":"replicationcontroller-v1-core","subsections":[{"section":"-strong-status-operations-strong--101","subsections":[{"section":"replace-status-104"},{"section":"read-status-103"},{"section":"patch-status-102"}]},{"section":"-strong-read-operations-strong--94","subsections":[{"section":"watch-list-all-namespaces-100"},{"section":"watch-list-99"},{"section":"watch-98"},{"section":"list-all-namespaces-97"},{"section":"list-96"},{"section":"read-95"}]},{"section":"-strong-write-operations-strong--88","subsections":[{"section":"delete-collection-93"},{"section":"delete-92"},{"section":"replace-91"},{"section":"patch-90"},{"section":"create-89"}]}]},{"section":"replicaset-v1-apps","subsections":[{"section":"-strong-status-operations-strong--84","subsections":[{"section":"replace-status-87"},{"section":"read-status-86"},{"section":"patch-status-85"}]},{"section":"-strong-read-operations-strong--77","subsections":[{"section":"watch-list-all-namespaces-83"},{"section":"watch-list-82"},{"section":"watch-81"},{"section":"list-all-namespaces-80"},{"section":"list-79"},{"section":"read-78"}]},{"section":"-strong-write-operations-strong--71","subsections":[{"section":"delete-collection-76"},{"section":"delete-75"},{"section":"replace-74"},{"section":"patch-73"},{"section":"create-72"}]}]},{"section":"pod-v1-core","subsections":[{"section":"-strong-misc-operations-strong-","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":"replace-57"},{"section":"patch-56"},{"section":"create-55"}]}]},{"section":"job-v1-batch","subsections":[{"section":"-strong-status-operations-strong--50","subsections":[{"section":"replace-status-53"},{"section":"read-status-52"},{"section":"patch-status-51"}]},{"section":"-strong-read-operations-strong--43","subsections":[{"section":"watch-list-all-namespaces-49"},{"section":"watch-list-48"},{"section":"watch-47"},{"section":"list-all-namespaces-46"},{"section":"list-45"},{"section":"read-44"}]},{"section":"-strong-write-operations-strong--37","subsections":[{"section":"delete-collection-42"},{"section":"delete-41"},{"section":"replace-40"},{"section":"patch-39"},{"section":"create-38"}]}]},{"section":"deployment-v1-apps","subsections":[{"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":"replace-23"},{"section":"patch-22"},{"section":"create-21"}]}]},{"section":"daemonset-v1-apps","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":"replace-6"},{"section":"patch-5"},{"section":"create-4"}]}]},{"section":"cronjob-v1beta1-batch","subsections":[{"section":"-strong-status-operations-strong-","subsections":[{"section":"replace-status"},{"section":"read-status"},{"section":"patch-status"}]},{"section":"-strong-read-operations-strong-","subsections":[{"section":"watch-list-all-namespaces"},{"section":"watch-list"},{"section":"watch"},{"section":"list-all-namespaces"},{"section":"list"},{"section":"read-2"}]},{"section":"-strong-write-operations-strong-","subsections":[{"section":"delete-collection"},{"section":"delete-1"},{"section":"replace"},{"section":"patch"},{"section":"create"}]}]},{"section":"container-v1-core","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]},{"section":"-strong-api-overview-strong-","subsections":[{"section":"resource-operations"},{"section":"resource-objects"},{"section":"resource-categories"}]}],"flatToc":["userinfo-v1beta1-authentication","create-969","-strong-write-operations-strong--968","tokenreview-v1beta1-authentication","subjectrulesreviewstatus-v1beta1-authorization","create-967","-strong-write-operations-strong--966","subjectaccessreview-v1beta1-authorization","subject-v1alpha1-rbac","subject-v1beta1-rbac","watch-list-965","watch-964","list-963","read-962","-strong-read-operations-strong--961","delete-collection-960","delete-959","replace-958","patch-957","create-956","-strong-write-operations-strong--955","storageclass-v1beta1-storage","statefulsetupdatestrategy-v1beta1-apps","statefulsetupdatestrategy-v1beta2-apps","statefulsetcondition-v1beta1-apps","statefulsetcondition-v1beta2-apps","replace-status-954","read-status-953","patch-status-952","-strong-status-operations-strong--951","watch-list-all-namespaces-950","watch-list-949","watch-948","list-all-namespaces-947","list-946","read-945","-strong-read-operations-strong--944","delete-collection-943","delete-942","replace-941","patch-940","create-939","-strong-write-operations-strong--938","statefulset-v1beta1-apps","replace-status-937","read-status-936","patch-status-935","-strong-status-operations-strong--934","watch-list-all-namespaces-933","watch-list-932","watch-931","list-all-namespaces-930","list-929","read-928","-strong-read-operations-strong--927","delete-collection-926","delete-925","replace-924","patch-923","create-922","-strong-write-operations-strong--921","statefulset-v1beta2-apps","servicereference-v1beta1-apiregistration","create-920","-strong-write-operations-strong--919","selfsubjectrulesreview-v1beta1-authorization","create-918","-strong-write-operations-strong--917","selfsubjectaccessreview-v1beta1-authorization","scale-v1beta1-extensions","scale-v1beta1-apps","scale-v1beta2-apps","rollingupdatestatefulsetstrategy-v1beta1-apps","rollingupdatestatefulsetstrategy-v1beta2-apps","rollbackconfig-v1beta1-extensions","roleref-v1alpha1-rbac","roleref-v1beta1-rbac","watch-list-all-namespaces-916","watch-list-915","watch-914","list-all-namespaces-913","list-912","read-911","-strong-read-operations-strong--910","delete-collection-909","delete-908","replace-907","patch-906","create-905","-strong-write-operations-strong--904","rolebinding-v1alpha1-rbac","watch-list-all-namespaces-903","watch-list-902","watch-901","list-all-namespaces-900","list-899","read-898","-strong-read-operations-strong--897","delete-collection-896","delete-895","replace-894","patch-893","create-892","-strong-write-operations-strong--891","rolebinding-v1beta1-rbac","watch-list-all-namespaces-890","watch-list-889","watch-888","list-all-namespaces-887","list-886","read-885","-strong-read-operations-strong--884","delete-collection-883","delete-882","replace-881","patch-880","create-879","-strong-write-operations-strong--878","role-v1alpha1-rbac","watch-list-all-namespaces-877","watch-list-876","watch-875","list-all-namespaces-874","list-873","read-872","-strong-read-operations-strong--871","delete-collection-870","delete-869","replace-868","patch-867","create-866","-strong-write-operations-strong--865","role-v1beta1-rbac","resourcerule-v1beta1-authorization","resourceattributes-v1beta1-authorization","replicasetcondition-v1beta1-extensions","replicasetcondition-v1beta2-apps","replace-status-864","read-status-863","patch-status-862","-strong-status-operations-strong--861","watch-list-all-namespaces-860","watch-list-859","watch-858","list-all-namespaces-857","list-856","read-855","-strong-read-operations-strong--854","delete-collection-853","delete-852","replace-851","patch-850","create-849","-strong-write-operations-strong--848","replicaset-v1beta1-extensions","replace-status-847","read-status-846","patch-status-845","-strong-status-operations-strong--844","watch-list-all-namespaces-843","watch-list-842","watch-841","list-all-namespaces-840","list-839","read-838","-strong-read-operations-strong--837","delete-collection-836","delete-835","replace-834","patch-833","create-832","-strong-write-operations-strong--831","replicaset-v1beta2-apps","policyrule-v1alpha1-rbac","policyrule-v1beta1-rbac","nonresourcerule-v1beta1-authorization","nonresourceattributes-v1beta1-authorization","networkpolicyport-v1beta1-extensions","networkpolicypeer-v1beta1-extensions","networkpolicyingressrule-v1beta1-extensions","networkpolicyegressrule-v1beta1-extensions","watch-list-all-namespaces-830","watch-list-829","watch-828","list-all-namespaces-827","list-826","read-825","-strong-read-operations-strong--824","delete-collection-823","delete-822","replace-821","patch-820","create-819","-strong-write-operations-strong--818","networkpolicy-v1beta1-extensions","create-817","-strong-write-operations-strong--816","localsubjectaccessreview-v1beta1-authorization","jobtemplatespec-v2alpha1-batch","initializer-v1alpha1-admissionregistration","ipblock-v1beta1-extensions","replace-status-815","read-status-814","patch-status-813","-strong-status-operations-strong--812","watch-list-all-namespaces-811","watch-list-810","watch-809","list-all-namespaces-808","list-807","read-806","-strong-read-operations-strong--805","delete-collection-804","delete-803","replace-802","patch-801","create-800","-strong-write-operations-strong--799","horizontalpodautoscaler-v2beta1-autoscaling","eventseries-v1beta1-events","watch-list-all-namespaces-798","watch-list-797","watch-796","list-all-namespaces-795","list-794","read-793","-strong-read-operations-strong--792","delete-collection-791","delete-790","replace-789","patch-788","create-787","-strong-write-operations-strong--786","event-v1beta1-events","deploymentcondition-v1beta1-extensions","deploymentcondition-v1beta1-apps","deploymentcondition-v1beta2-apps","replace-status-785","read-status-784","patch-status-783","-strong-status-operations-strong--782","watch-list-all-namespaces-781","watch-list-780","watch-779","list-all-namespaces-778","list-777","read-776","-strong-read-operations-strong--775","delete-collection-774","delete-773","replace-772","patch-771","create-770","-strong-write-operations-strong--769","deployment-v1beta1-extensions","replace-status-768","read-status-767","patch-status-766","-strong-status-operations-strong--765","watch-list-all-namespaces-764","watch-list-763","watch-762","list-all-namespaces-761","list-760","read-759","-strong-read-operations-strong--758","delete-collection-757","delete-756","replace-755","patch-754","create-753","-strong-write-operations-strong--752","deployment-v1beta1-apps","replace-status-751","read-status-750","patch-status-749","-strong-status-operations-strong--748","watch-list-all-namespaces-747","watch-list-746","watch-745","list-all-namespaces-744","list-743","read-742","-strong-read-operations-strong--741","delete-collection-740","delete-739","replace-738","patch-737","create-736","-strong-write-operations-strong--735","deployment-v1beta2-apps","daemonsetupdatestrategy-v1beta1-extensions","daemonsetupdatestrategy-v1beta2-apps","daemonsetcondition-v1beta1-extensions","daemonsetcondition-v1beta2-apps","replace-status-734","read-status-733","patch-status-732","-strong-status-operations-strong--731","watch-list-all-namespaces-730","watch-list-729","watch-728","list-all-namespaces-727","list-726","read-725","-strong-read-operations-strong--724","delete-collection-723","delete-722","replace-721","patch-720","create-719","-strong-write-operations-strong--718","daemonset-v1beta1-extensions","replace-status-717","read-status-716","patch-status-715","-strong-status-operations-strong--714","watch-list-all-namespaces-713","watch-list-712","watch-711","list-all-namespaces-710","list-709","read-708","-strong-read-operations-strong--707","delete-collection-706","delete-705","replace-704","patch-703","create-702","-strong-write-operations-strong--701","daemonset-v1beta2-apps","crossversionobjectreference-v2beta1-autoscaling","replace-status-700","read-status-699","patch-status-698","-strong-status-operations-strong--697","watch-list-all-namespaces-696","watch-list-695","watch-694","list-all-namespaces-693","list-692","read-691","-strong-read-operations-strong--690","delete-collection-689","delete-688","replace-687","patch-686","create-685","-strong-write-operations-strong--684","cronjob-v2alpha1-batch","watch-list-all-namespaces-683","watch-list-682","watch-681","list-all-namespaces-680","list-679","read-678","-strong-read-operations-strong--677","delete-collection-676","delete-675","replace-674","patch-673","create-672","-strong-write-operations-strong--671","controllerrevision-v1beta1-apps","watch-list-all-namespaces-670","watch-list-669","watch-668","list-all-namespaces-667","list-666","read-665","-strong-read-operations-strong--664","delete-collection-663","delete-662","replace-661","patch-660","create-659","-strong-write-operations-strong--658","controllerrevision-v1beta2-apps","watch-list-657","watch-656","list-655","read-654","-strong-read-operations-strong--653","delete-collection-652","delete-651","replace-650","patch-649","create-648","-strong-write-operations-strong--647","clusterrolebinding-v1alpha1-rbac","watch-list-646","watch-645","list-644","read-643","-strong-read-operations-strong--642","delete-collection-641","delete-640","replace-639","patch-638","create-637","-strong-write-operations-strong--636","clusterrolebinding-v1beta1-rbac","watch-list-635","watch-634","list-633","read-632","-strong-read-operations-strong--631","delete-collection-630","delete-629","replace-628","patch-627","create-626","-strong-write-operations-strong--625","clusterrole-v1alpha1-rbac","watch-list-624","watch-623","list-622","read-621","-strong-read-operations-strong--620","delete-collection-619","delete-618","replace-617","patch-616","create-615","-strong-write-operations-strong--614","clusterrole-v1beta1-rbac","aggregationrule-v1alpha1-rbac","aggregationrule-v1beta1-rbac","-strong-old-api-versions-strong-","weightedpodaffinityterm-v1-core","webhookclientconfig-v1beta1-admissionregistration","webhook-v1beta1-admissionregistration","watchevent-v1-meta","vspherevirtualdiskvolumesource-v1-core","volumeprojection-v1-core","volumemount-v1-core","volumeerror-v1alpha1-storage","volumedevice-v1-core","volumeattachmentsource-v1alpha1-storage","userinfo-v1-authentication","toleration-v1-core","time-v1-meta","taint-v1-core","tcpsocketaction-v1-core","supplementalgroupsstrategyoptions-v1beta1-extensions","subjectrulesreviewstatus-v1-authorization","subject-v1-rbac","storageosvolumesource-v1-core","storageospersistentvolumesource-v1-core","statusdetails-v1-meta","statuscause-v1-meta","status-v1-meta","statefulsetupdatestrategy-v1-apps","statefulsetcondition-v1-apps","sessionaffinityconfig-v1-core","servicereference-v1beta1-admissionregistration","serviceport-v1-core","serveraddressbyclientcidr-v1-meta","securitycontext-v1-core","secretvolumesource-v1-core","secretreference-v1-core","secretprojection-v1-core","secretkeyselector-v1-core","secretenvsource-v1-core","scaleiovolumesource-v1-core","scaleiopersistentvolumesource-v1-core","scale-v1-autoscaling","selinuxstrategyoptions-v1beta1-extensions","selinuxoptions-v1-core","runasuserstrategyoptions-v1beta1-extensions","rulewithoperations-v1beta1-admissionregistration","rule-v1alpha1-admissionregistration","rollingupdatestatefulsetstrategy-v1-apps","rollbackconfig-v1beta1-apps","roleref-v1-rbac","resourcerule-v1-authorization","resourcerequirements-v1-core","resourcemetricstatus-v2beta1-autoscaling","resourcemetricsource-v2beta1-autoscaling","resourcefieldselector-v1-core","resourceattributes-v1-authorization","replicationcontrollercondition-v1-core","replicasetcondition-v1-apps","rbdvolumesource-v1-core","rbdpersistentvolumesource-v1-core","quobytevolumesource-v1-core","quantity-resource-core","projectedvolumesource-v1-core","probe-v1-core","preferredschedulingterm-v1-core","preconditions-v1-meta","portworxvolumesource-v1-core","policyrule-v1-rbac","podsmetricstatus-v2beta1-autoscaling","podsmetricsource-v2beta1-autoscaling","podsecuritycontext-v1-core","poddnsconfigoption-v1-core","poddnsconfig-v1-core","podcondition-v1-core","podantiaffinity-v1-core","podaffinityterm-v1-core","podaffinity-v1-core","photonpersistentdiskvolumesource-v1-core","persistentvolumeclaimvolumesource-v1-core","persistentvolumeclaimcondition-v1-core","patch-v1-meta","ownerreference-v1-meta","objectreference-v1-core","objectmetricstatus-v2beta1-autoscaling","objectmetricsource-v2beta1-autoscaling","objectmeta-v1-meta","objectfieldselector-v1-core","nonresourcerule-v1-authorization","nonresourceattributes-v1-authorization","nodesysteminfo-v1-core","nodeselectorterm-v1-core","nodeselectorrequirement-v1-core","nodeselector-v1-core","nodedaemonendpoints-v1-core","nodeconfigsource-v1-core","nodecondition-v1-core","nodeaffinity-v1-core","nodeaddress-v1-core","networkpolicyport-v1-networking","networkpolicypeer-v1-networking","networkpolicyingressrule-v1-networking","networkpolicyegressrule-v1-networking","nfsvolumesource-v1-core","microtime-v1-meta","metricstatus-v2beta1-autoscaling","metricspec-v2beta1-autoscaling","localvolumesource-v1-core","localobjectreference-v1-core","loadbalancerstatus-v1-core","loadbalanceringress-v1-core","listmeta-v1-meta","limitrangeitem-v1-core","lifecycle-v1-core","labelselectorrequirement-v1-meta","labelselector-v1-meta","keytopath-v1-core","jobtemplatespec-v1beta1-batch","jobcondition-v1-batch","jsonschemapropsorbool-v1beta1-apiextensions","jsonschemapropsorarray-v1beta1-apiextensions","jsonschemaprops-v1beta1-apiextensions","json-v1beta1-apiextensions","initializers-v1-meta","initializer-v1-meta","ingresstls-v1beta1-extensions","ingressrule-v1beta1-extensions","ingressbackend-v1beta1-extensions","iscsivolumesource-v1-core","iscsipersistentvolumesource-v1-core","ipblock-v1-networking","idrange-v1beta1-extensions","hostportrange-v1beta1-extensions","hostpathvolumesource-v1-core","hostalias-v1-core","horizontalpodautoscalercondition-v2beta1-autoscaling","handler-v1-core","httpingressrulevalue-v1beta1-extensions","httpingresspath-v1beta1-extensions","httpheader-v1-core","httpgetaction-v1-core","groupversionfordiscovery-v1-meta","glusterfsvolumesource-v1-core","gitrepovolumesource-v1-core","gcepersistentdiskvolumesource-v1-core","flockervolumesource-v1-core","flexvolumesource-v1-core","fsgroupstrategyoptions-v1beta1-extensions","fcvolumesource-v1-core","externaldocumentation-v1beta1-apiextensions","execaction-v1-core","eviction-v1beta1-policy","eventsource-v1-core","eventseries-v1-core","envvarsource-v1-core","envvar-v1-core","envfromsource-v1-core","endpointsubset-v1-core","endpointport-v1-core","endpointaddress-v1-core","emptydirvolumesource-v1-core","downwardapivolumesource-v1-core","downwardapivolumefile-v1-core","downwardapiprojection-v1-core","deploymentcondition-v1-apps","deleteoptions-v1-meta","daemonsetupdatestrategy-v1-apps","daemonsetcondition-v1-apps","daemonendpoint-v1-core","customresourcevalidation-v1beta1-apiextensions","customresourcedefinitionnames-v1beta1-apiextensions","customresourcedefinitioncondition-v1beta1-apiextensions","crossversionobjectreference-v1-autoscaling","containerstatewaiting-v1-core","containerstateterminated-v1-core","containerstaterunning-v1-core","containerstate-v1-core","containerport-v1-core","containerimage-v1-core","configmapvolumesource-v1-core","configmapprojection-v1-core","configmapkeyselector-v1-core","configmapenvsource-v1-core","componentcondition-v1-core","clientipconfig-v1-core","cindervolumesource-v1-core","certificatesigningrequestcondition-v1beta1-certificates","cephfsvolumesource-v1-core","cephfspersistentvolumesource-v1-core","capabilities-v1-core","csipersistentvolumesource-v1-core","azurefilevolumesource-v1-core","azurefilepersistentvolumesource-v1-core","azurediskvolumesource-v1-core","attachedvolume-v1-core","allowedhostpath-v1beta1-extensions","allowedflexvolume-v1beta1-extensions","aggregationrule-v1-rbac","affinity-v1-core","awselasticblockstorevolumesource-v1-core","apiversions-v1-meta","apiservicecondition-v1beta1-apiregistration","apiresource-v1-meta","apigroup-v1-meta","-strong-definitions-strong-","watch-list-all-namespaces-613","watch-list-612","watch-611","list-all-namespaces-610","list-609","read-608","-strong-read-operations-strong--607","delete-collection-606","delete-605","replace-604","patch-603","create-602","-strong-write-operations-strong--601","networkpolicy-v1-networking","create-600","-strong-write-operations-strong--599","tokenreview-v1-authentication","create-598","-strong-write-operations-strong--597","subjectaccessreview-v1-authorization","watch-list-all-namespaces-596","watch-list-595","watch-594","list-all-namespaces-593","list-592","read-591","-strong-read-operations-strong--590","delete-collection-589","delete-588","replace-587","patch-586","create-585","-strong-write-operations-strong--584","serviceaccount-v1-core","create-583","-strong-write-operations-strong--582","selfsubjectrulesreview-v1-authorization","create-581","-strong-write-operations-strong--580","selfsubjectaccessreview-v1-authorization","watch-list-all-namespaces-579","watch-list-578","watch-577","list-all-namespaces-576","list-575","read-574","-strong-read-operations-strong--573","delete-collection-572","delete-571","replace-570","patch-569","create-568","-strong-write-operations-strong--567","rolebinding-v1-rbac","watch-list-all-namespaces-566","watch-list-565","watch-564","list-all-namespaces-563","list-562","read-561","-strong-read-operations-strong--560","delete-collection-559","delete-558","replace-557","patch-556","create-555","-strong-write-operations-strong--554","role-v1-rbac","replace-status-553","read-status-552","patch-status-551","-strong-status-operations-strong--550","watch-list-all-namespaces-549","watch-list-548","watch-547","list-all-namespaces-546","list-545","read-544","-strong-read-operations-strong--543","delete-collection-542","delete-541","replace-540","patch-539","create-538","-strong-write-operations-strong--537","resourcequota-v1-core","replace-status-536","read-status-535","patch-status-534","-strong-status-operations-strong--533","watch-list-532","watch-531","list-530","read-529","-strong-read-operations-strong--528","delete-collection-527","delete-526","replace-525","patch-524","create-523","-strong-write-operations-strong--522","persistentvolume-v1-core","replace-proxy-path-521","replace-proxy-520","replace-connect-proxy-path-519","replace-connect-proxy-518","head-connect-proxy-path-517","head-connect-proxy-516","get-proxy-path-515","get-proxy-514","get-connect-proxy-path-513","get-connect-proxy-512","delete-proxy-path-511","delete-proxy-510","delete-connect-proxy-path-509","delete-connect-proxy-508","create-proxy-path-507","create-proxy-506","create-connect-proxy-path-505","create-connect-proxy-504","-strong-proxy-operations-strong--503","replace-status-502","read-status-501","patch-status-500","-strong-status-operations-strong--499","watch-list-498","watch-497","list-496","read-495","-strong-read-operations-strong--494","delete-collection-493","delete-492","replace-491","patch-490","create-489","-strong-write-operations-strong--488","node-v1-core","replace-status-487","read-status-486","patch-status-485","-strong-status-operations-strong--484","watch-list-483","watch-482","list-481","read-480","-strong-read-operations-strong--479","delete-478","replace-477","patch-476","create-475","-strong-write-operations-strong--474","namespace-v1-core","create-473","-strong-write-operations-strong--472","localsubjectaccessreview-v1-authorization","list-471","read-470","-strong-read-operations-strong--469","componentstatus-v1-core","watch-list-468","watch-467","list-466","read-465","-strong-read-operations-strong--464","delete-collection-463","delete-462","replace-461","patch-460","create-459","-strong-write-operations-strong--458","clusterrolebinding-v1-rbac","watch-list-457","watch-456","list-455","read-454","-strong-read-operations-strong--453","delete-collection-452","delete-451","replace-450","patch-449","create-448","-strong-write-operations-strong--447","clusterrole-v1-rbac","replace-status-446","-strong-status-operations-strong--445","watch-list-444","watch-443","list-442","read-441","-strong-read-operations-strong--440","delete-collection-439","delete-438","replace-437","patch-436","create-435","-strong-write-operations-strong--434","certificatesigningrequest-v1beta1-certificates","create-433","-strong-write-operations-strong--432","binding-v1-core","replace-status-431","-strong-status-operations-strong--430","watch-list-429","watch-428","list-427","read-426","-strong-read-operations-strong--425","delete-collection-424","delete-423","replace-422","patch-421","create-420","-strong-write-operations-strong--419","apiservice-v1beta1-apiregistration","-strong-cluster-strong-","watch-list-418","watch-417","list-416","read-415","-strong-read-operations-strong--414","delete-collection-413","delete-412","replace-411","patch-410","create-409","-strong-write-operations-strong--408","podsecuritypolicy-v1beta1-extensions","watch-list-all-namespaces-407","watch-list-406","watch-405","list-all-namespaces-404","list-403","read-402","-strong-read-operations-strong--401","delete-collection-400","delete-399","replace-398","patch-397","create-396","-strong-write-operations-strong--395","podpreset-v1alpha1-settings","watch-list-394","watch-393","list-392","read-391","-strong-read-operations-strong--390","delete-collection-389","delete-388","replace-387","patch-386","create-385","-strong-write-operations-strong--384","priorityclass-v1alpha1-scheduling","replace-status-383","read-status-382","patch-status-381","-strong-status-operations-strong--380","watch-list-all-namespaces-379","watch-list-378","watch-377","list-all-namespaces-376","list-375","read-374","-strong-read-operations-strong--373","delete-collection-372","delete-371","replace-370","patch-369","create-368","-strong-write-operations-strong--367","poddisruptionbudget-v1beta1-policy","watch-list-all-namespaces-366","watch-list-365","watch-364","list-all-namespaces-363","list-362","read-361","-strong-read-operations-strong--360","delete-collection-359","delete-358","replace-357","patch-356","create-355","-strong-write-operations-strong--354","podtemplate-v1-core","watch-list-353","watch-352","list-351","read-350","-strong-read-operations-strong--349","delete-collection-348","delete-347","replace-346","patch-345","create-344","-strong-write-operations-strong--343","validatingwebhookconfiguration-v1beta1-admissionregistration","watch-list-342","watch-341","list-340","read-339","-strong-read-operations-strong--338","delete-collection-337","delete-336","replace-335","patch-334","create-333","-strong-write-operations-strong--332","mutatingwebhookconfiguration-v1beta1-admissionregistration","watch-list-331","watch-330","list-329","read-328","-strong-read-operations-strong--327","delete-collection-326","delete-325","replace-324","patch-323","create-322","-strong-write-operations-strong--321","initializerconfiguration-v1alpha1-admissionregistration","replace-status-320","read-status-319","patch-status-318","-strong-status-operations-strong--317","watch-list-all-namespaces-316","watch-list-315","watch-314","list-all-namespaces-313","list-312","read-311","-strong-read-operations-strong--310","delete-collection-309","delete-308","replace-307","patch-306","create-305","-strong-write-operations-strong--304","horizontalpodautoscaler-v1-autoscaling","watch-list-all-namespaces-303","watch-list-302","watch-301","list-all-namespaces-300","list-299","read-298","-strong-read-operations-strong--297","delete-collection-296","delete-295","replace-294","patch-293","create-292","-strong-write-operations-strong--291","limitrange-v1-core","watch-list-all-namespaces-290","watch-list-289","watch-288","list-all-namespaces-287","list-286","read-285","-strong-read-operations-strong--284","delete-collection-283","delete-282","replace-281","patch-280","create-279","-strong-write-operations-strong--278","event-v1-core","replace-status-277","-strong-status-operations-strong--276","watch-list-275","watch-274","list-273","read-272","-strong-read-operations-strong--271","delete-collection-270","delete-269","replace-268","patch-267","create-266","-strong-write-operations-strong--265","customresourcedefinition-v1beta1-apiextensions","watch-list-all-namespaces-264","watch-list-263","watch-262","list-all-namespaces-261","list-260","read-259","-strong-read-operations-strong--258","delete-collection-257","delete-256","replace-255","patch-254","create-253","-strong-write-operations-strong--252","controllerrevision-v1-apps","-strong-metadata-strong-","watch-list-251","watch-250","list-249","read-248","-strong-read-operations-strong--247","delete-collection-246","delete-245","replace-244","patch-243","create-242","-strong-write-operations-strong--241","volumeattachment-v1alpha1-storage","volume-v1-core","watch-list-240","watch-239","list-238","read-237","-strong-read-operations-strong--236","delete-collection-235","delete-234","replace-233","patch-232","create-231","-strong-write-operations-strong--230","storageclass-v1-storage","replace-status-229","read-status-228","patch-status-227","-strong-status-operations-strong--226","watch-list-all-namespaces-225","watch-list-224","watch-223","list-all-namespaces-222","list-221","read-220","-strong-read-operations-strong--219","delete-collection-218","delete-217","replace-216","patch-215","create-214","-strong-write-operations-strong--213","persistentvolumeclaim-v1-core","watch-list-all-namespaces-212","watch-list-211","watch-210","list-all-namespaces-209","list-208","read-207","-strong-read-operations-strong--206","delete-collection-205","delete-204","replace-203","patch-202","create-201","-strong-write-operations-strong--200","secret-v1-core","watch-list-all-namespaces-199","watch-list-198","watch-197","list-all-namespaces-196","list-195","read-194","-strong-read-operations-strong--193","delete-collection-192","delete-191","replace-190","patch-189","create-188","-strong-write-operations-strong--187","configmap-v1-core","-strong-config-storage-strong-","replace-proxy-path-186","replace-proxy-185","replace-connect-proxy-path-184","replace-connect-proxy-183","head-connect-proxy-path-182","head-connect-proxy-181","get-proxy-path-180","get-proxy-179","get-connect-proxy-path-178","get-connect-proxy-177","delete-proxy-path-176","delete-proxy-175","delete-connect-proxy-path-174","delete-connect-proxy-173","create-proxy-path-172","create-proxy-171","create-connect-proxy-path-170","create-connect-proxy-169","-strong-proxy-operations-strong--168","replace-status-167","read-status-166","patch-status-165","-strong-status-operations-strong--164","watch-list-all-namespaces-163","watch-list-162","watch-161","list-all-namespaces-160","list-159","read-158","-strong-read-operations-strong--157","delete-156","replace-155","patch-154","create-153","-strong-write-operations-strong--152","service-v1-core","replace-status-151","read-status-150","patch-status-149","-strong-status-operations-strong--148","watch-list-all-namespaces-147","watch-list-146","watch-145","list-all-namespaces-144","list-143","read-142","-strong-read-operations-strong--141","delete-collection-140","delete-139","replace-138","patch-137","create-136","-strong-write-operations-strong--135","ingress-v1beta1-extensions","watch-list-all-namespaces-134","watch-list-133","watch-132","list-all-namespaces-131","list-130","read-129","-strong-read-operations-strong--128","delete-collection-127","delete-126","replace-125","patch-124","create-123","-strong-write-operations-strong--122","endpoints-v1-core","-strong-discovery-load-balancing-strong-","replace-status-121","read-status-120","patch-status-119","-strong-status-operations-strong--118","watch-list-all-namespaces-117","watch-list-116","watch-115","list-all-namespaces-114","list-113","read-112","-strong-read-operations-strong--111","delete-collection-110","delete-109","replace-108","patch-107","create-106","-strong-write-operations-strong--105","statefulset-v1-apps","replace-status-104","read-status-103","patch-status-102","-strong-status-operations-strong--101","watch-list-all-namespaces-100","watch-list-99","watch-98","list-all-namespaces-97","list-96","read-95","-strong-read-operations-strong--94","delete-collection-93","delete-92","replace-91","patch-90","create-89","-strong-write-operations-strong--88","replicationcontroller-v1-core","replace-status-87","read-status-86","patch-status-85","-strong-status-operations-strong--84","watch-list-all-namespaces-83","watch-list-82","watch-81","list-all-namespaces-80","list-79","read-78","-strong-read-operations-strong--77","delete-collection-76","delete-75","replace-74","patch-73","create-72","-strong-write-operations-strong--71","replicaset-v1-apps","read-log","-strong-misc-operations-strong-","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","replace-57","patch-56","create-55","-strong-write-operations-strong--54","pod-v1-core","replace-status-53","read-status-52","patch-status-51","-strong-status-operations-strong--50","watch-list-all-namespaces-49","watch-list-48","watch-47","list-all-namespaces-46","list-45","read-44","-strong-read-operations-strong--43","delete-collection-42","delete-41","replace-40","patch-39","create-38","-strong-write-operations-strong--37","job-v1-batch","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","replace-23","patch-22","create-21","-strong-write-operations-strong--20","deployment-v1-apps","replace-status-19","read-status-18","patch-status-17","-strong-status-operations-strong--16","watch-list-all-namespaces-15","watch-list-14","watch-13","list-all-namespaces-12","list-11","read-10","-strong-read-operations-strong--9","delete-collection-8","delete-7","replace-6","patch-5","create-4","-strong-write-operations-strong--3","daemonset-v1-apps","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","replace","patch","create","-strong-write-operations-strong-","cronjob-v1beta1-batch","container-v1-core","-strong-workloads-strong-","resource-operations","resource-objects","resource-categories","-strong-api-overview-strong-"]};})(); \ No newline at end of file +(function(){navData = {"toc":[{"section":"userinfo-v1beta1-authentication","subsections":[]},{"section":"tokenreview-v1beta1-authentication","subsections":[{"section":"-strong-write-operations-strong--1010","subsections":[{"section":"create-1011"}]}]},{"section":"subjectrulesreviewstatus-v1beta1-authorization","subsections":[]},{"section":"subjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--1008","subsections":[{"section":"create-1009"}]}]},{"section":"subject-v1alpha1-rbac","subsections":[]},{"section":"subject-v1beta1-rbac","subsections":[]},{"section":"storageclass-v1beta1-storage","subsections":[{"section":"-strong-read-operations-strong--1003","subsections":[{"section":"watch-list-1007"},{"section":"watch-1006"},{"section":"list-1005"},{"section":"read-1004"}]},{"section":"-strong-write-operations-strong--997","subsections":[{"section":"delete-collection-1002"},{"section":"delete-1001"},{"section":"replace-1000"},{"section":"patch-999"},{"section":"create-998"}]}]},{"section":"statefulsetupdatestrategy-v1beta1-apps","subsections":[]},{"section":"statefulsetupdatestrategy-v1beta2-apps","subsections":[]},{"section":"statefulsetcondition-v1beta1-apps","subsections":[]},{"section":"statefulsetcondition-v1beta2-apps","subsections":[]},{"section":"statefulset-v1beta1-apps","subsections":[{"section":"-strong-misc-operations-strong--993","subsections":[{"section":"patch-scale-996"},{"section":"replace-scale-995"},{"section":"read-scale-994"}]},{"section":"-strong-status-operations-strong--989","subsections":[{"section":"replace-status-992"},{"section":"read-status-991"},{"section":"patch-status-990"}]},{"section":"-strong-read-operations-strong--982","subsections":[{"section":"watch-list-all-namespaces-988"},{"section":"watch-list-987"},{"section":"watch-986"},{"section":"list-all-namespaces-985"},{"section":"list-984"},{"section":"read-983"}]},{"section":"-strong-write-operations-strong--976","subsections":[{"section":"delete-collection-981"},{"section":"delete-980"},{"section":"replace-979"},{"section":"patch-978"},{"section":"create-977"}]}]},{"section":"statefulset-v1beta2-apps","subsections":[{"section":"-strong-misc-operations-strong--972","subsections":[{"section":"patch-scale-975"},{"section":"replace-scale-974"},{"section":"read-scale-973"}]},{"section":"-strong-status-operations-strong--968","subsections":[{"section":"replace-status-971"},{"section":"read-status-970"},{"section":"patch-status-969"}]},{"section":"-strong-read-operations-strong--961","subsections":[{"section":"watch-list-all-namespaces-967"},{"section":"watch-list-966"},{"section":"watch-965"},{"section":"list-all-namespaces-964"},{"section":"list-963"},{"section":"read-962"}]},{"section":"-strong-write-operations-strong--955","subsections":[{"section":"delete-collection-960"},{"section":"delete-959"},{"section":"replace-958"},{"section":"patch-957"},{"section":"create-956"}]}]},{"section":"servicereference-v1beta1-apiregistration","subsections":[]},{"section":"selfsubjectrulesreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--953","subsections":[{"section":"create-954"}]}]},{"section":"selfsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--951","subsections":[{"section":"create-952"}]}]},{"section":"scale-v1beta1-extensions","subsections":[]},{"section":"scale-v1beta1-apps","subsections":[]},{"section":"scale-v1beta2-apps","subsections":[]},{"section":"rollingupdatestatefulsetstrategy-v1beta1-apps","subsections":[]},{"section":"rollingupdatestatefulsetstrategy-v1beta2-apps","subsections":[]},{"section":"rollbackconfig-v1beta1-extensions","subsections":[]},{"section":"roleref-v1alpha1-rbac","subsections":[]},{"section":"roleref-v1beta1-rbac","subsections":[]},{"section":"rolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--944","subsections":[{"section":"watch-list-all-namespaces-950"},{"section":"watch-list-949"},{"section":"watch-948"},{"section":"list-all-namespaces-947"},{"section":"list-946"},{"section":"read-945"}]},{"section":"-strong-write-operations-strong--938","subsections":[{"section":"delete-collection-943"},{"section":"delete-942"},{"section":"replace-941"},{"section":"patch-940"},{"section":"create-939"}]}]},{"section":"rolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--931","subsections":[{"section":"watch-list-all-namespaces-937"},{"section":"watch-list-936"},{"section":"watch-935"},{"section":"list-all-namespaces-934"},{"section":"list-933"},{"section":"read-932"}]},{"section":"-strong-write-operations-strong--925","subsections":[{"section":"delete-collection-930"},{"section":"delete-929"},{"section":"replace-928"},{"section":"patch-927"},{"section":"create-926"}]}]},{"section":"role-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--918","subsections":[{"section":"watch-list-all-namespaces-924"},{"section":"watch-list-923"},{"section":"watch-922"},{"section":"list-all-namespaces-921"},{"section":"list-920"},{"section":"read-919"}]},{"section":"-strong-write-operations-strong--912","subsections":[{"section":"delete-collection-917"},{"section":"delete-916"},{"section":"replace-915"},{"section":"patch-914"},{"section":"create-913"}]}]},{"section":"role-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--905","subsections":[{"section":"watch-list-all-namespaces-911"},{"section":"watch-list-910"},{"section":"watch-909"},{"section":"list-all-namespaces-908"},{"section":"list-907"},{"section":"read-906"}]},{"section":"-strong-write-operations-strong--899","subsections":[{"section":"delete-collection-904"},{"section":"delete-903"},{"section":"replace-902"},{"section":"patch-901"},{"section":"create-900"}]}]},{"section":"resourcerule-v1beta1-authorization","subsections":[]},{"section":"resourceattributes-v1beta1-authorization","subsections":[]},{"section":"replicasetcondition-v1beta1-extensions","subsections":[]},{"section":"replicasetcondition-v1beta2-apps","subsections":[]},{"section":"replicaset-v1beta1-extensions","subsections":[{"section":"-strong-misc-operations-strong--895","subsections":[{"section":"patch-scale-898"},{"section":"replace-scale-897"},{"section":"read-scale-896"}]},{"section":"-strong-status-operations-strong--891","subsections":[{"section":"replace-status-894"},{"section":"read-status-893"},{"section":"patch-status-892"}]},{"section":"-strong-read-operations-strong--884","subsections":[{"section":"watch-list-all-namespaces-890"},{"section":"watch-list-889"},{"section":"watch-888"},{"section":"list-all-namespaces-887"},{"section":"list-886"},{"section":"read-885"}]},{"section":"-strong-write-operations-strong--878","subsections":[{"section":"delete-collection-883"},{"section":"delete-882"},{"section":"replace-881"},{"section":"patch-880"},{"section":"create-879"}]}]},{"section":"replicaset-v1beta2-apps","subsections":[{"section":"-strong-misc-operations-strong--874","subsections":[{"section":"patch-scale-877"},{"section":"replace-scale-876"},{"section":"read-scale-875"}]},{"section":"-strong-status-operations-strong--870","subsections":[{"section":"replace-status-873"},{"section":"read-status-872"},{"section":"patch-status-871"}]},{"section":"-strong-read-operations-strong--863","subsections":[{"section":"watch-list-all-namespaces-869"},{"section":"watch-list-868"},{"section":"watch-867"},{"section":"list-all-namespaces-866"},{"section":"list-865"},{"section":"read-864"}]},{"section":"-strong-write-operations-strong--857","subsections":[{"section":"delete-collection-862"},{"section":"delete-861"},{"section":"replace-860"},{"section":"patch-859"},{"section":"create-858"}]}]},{"section":"policyrule-v1alpha1-rbac","subsections":[]},{"section":"policyrule-v1beta1-rbac","subsections":[]},{"section":"nonresourcerule-v1beta1-authorization","subsections":[]},{"section":"nonresourceattributes-v1beta1-authorization","subsections":[]},{"section":"networkpolicyport-v1beta1-extensions","subsections":[]},{"section":"networkpolicypeer-v1beta1-extensions","subsections":[]},{"section":"networkpolicyingressrule-v1beta1-extensions","subsections":[]},{"section":"networkpolicyegressrule-v1beta1-extensions","subsections":[]},{"section":"networkpolicy-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--850","subsections":[{"section":"watch-list-all-namespaces-856"},{"section":"watch-list-855"},{"section":"watch-854"},{"section":"list-all-namespaces-853"},{"section":"list-852"},{"section":"read-851"}]},{"section":"-strong-write-operations-strong--844","subsections":[{"section":"delete-collection-849"},{"section":"delete-848"},{"section":"replace-847"},{"section":"patch-846"},{"section":"create-845"}]}]},{"section":"localsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--842","subsections":[{"section":"create-843"}]}]},{"section":"jobtemplatespec-v2alpha1-batch","subsections":[]},{"section":"initializer-v1alpha1-admissionregistration","subsections":[]},{"section":"ipblock-v1beta1-extensions","subsections":[]},{"section":"horizontalpodautoscaler-v2beta1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--838","subsections":[{"section":"replace-status-841"},{"section":"read-status-840"},{"section":"patch-status-839"}]},{"section":"-strong-read-operations-strong--831","subsections":[{"section":"watch-list-all-namespaces-837"},{"section":"watch-list-836"},{"section":"watch-835"},{"section":"list-all-namespaces-834"},{"section":"list-833"},{"section":"read-832"}]},{"section":"-strong-write-operations-strong--825","subsections":[{"section":"delete-collection-830"},{"section":"delete-829"},{"section":"replace-828"},{"section":"patch-827"},{"section":"create-826"}]}]},{"section":"eventseries-v1beta1-events","subsections":[]},{"section":"event-v1beta1-events","subsections":[{"section":"-strong-read-operations-strong--818","subsections":[{"section":"watch-list-all-namespaces-824"},{"section":"watch-list-823"},{"section":"watch-822"},{"section":"list-all-namespaces-821"},{"section":"list-820"},{"section":"read-819"}]},{"section":"-strong-write-operations-strong--812","subsections":[{"section":"delete-collection-817"},{"section":"delete-816"},{"section":"replace-815"},{"section":"patch-814"},{"section":"create-813"}]}]},{"section":"deploymentcondition-v1beta1-extensions","subsections":[]},{"section":"deploymentcondition-v1beta1-apps","subsections":[]},{"section":"deploymentcondition-v1beta2-apps","subsections":[]},{"section":"deployment-v1beta1-extensions","subsections":[{"section":"-strong-misc-operations-strong--807","subsections":[{"section":"rollback-811"},{"section":"patch-scale-810"},{"section":"replace-scale-809"},{"section":"read-scale-808"}]},{"section":"-strong-status-operations-strong--803","subsections":[{"section":"replace-status-806"},{"section":"read-status-805"},{"section":"patch-status-804"}]},{"section":"-strong-read-operations-strong--796","subsections":[{"section":"watch-list-all-namespaces-802"},{"section":"watch-list-801"},{"section":"watch-800"},{"section":"list-all-namespaces-799"},{"section":"list-798"},{"section":"read-797"}]},{"section":"-strong-write-operations-strong--790","subsections":[{"section":"delete-collection-795"},{"section":"delete-794"},{"section":"replace-793"},{"section":"patch-792"},{"section":"create-791"}]}]},{"section":"deployment-v1beta1-apps","subsections":[{"section":"-strong-misc-operations-strong--786","subsections":[{"section":"rollback"},{"section":"patch-scale-789"},{"section":"replace-scale-788"},{"section":"read-scale-787"}]},{"section":"-strong-status-operations-strong--782","subsections":[{"section":"replace-status-785"},{"section":"read-status-784"},{"section":"patch-status-783"}]},{"section":"-strong-read-operations-strong--775","subsections":[{"section":"watch-list-all-namespaces-781"},{"section":"watch-list-780"},{"section":"watch-779"},{"section":"list-all-namespaces-778"},{"section":"list-777"},{"section":"read-776"}]},{"section":"-strong-write-operations-strong--769","subsections":[{"section":"delete-collection-774"},{"section":"delete-773"},{"section":"replace-772"},{"section":"patch-771"},{"section":"create-770"}]}]},{"section":"deployment-v1beta2-apps","subsections":[{"section":"-strong-misc-operations-strong--765","subsections":[{"section":"patch-scale-768"},{"section":"replace-scale-767"},{"section":"read-scale-766"}]},{"section":"-strong-status-operations-strong--761","subsections":[{"section":"replace-status-764"},{"section":"read-status-763"},{"section":"patch-status-762"}]},{"section":"-strong-read-operations-strong--754","subsections":[{"section":"watch-list-all-namespaces-760"},{"section":"watch-list-759"},{"section":"watch-758"},{"section":"list-all-namespaces-757"},{"section":"list-756"},{"section":"read-755"}]},{"section":"-strong-write-operations-strong--748","subsections":[{"section":"delete-collection-753"},{"section":"delete-752"},{"section":"replace-751"},{"section":"patch-750"},{"section":"create-749"}]}]},{"section":"daemonsetupdatestrategy-v1beta1-extensions","subsections":[]},{"section":"daemonsetupdatestrategy-v1beta2-apps","subsections":[]},{"section":"daemonsetcondition-v1beta1-extensions","subsections":[]},{"section":"daemonsetcondition-v1beta2-apps","subsections":[]},{"section":"daemonset-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--744","subsections":[{"section":"replace-status-747"},{"section":"read-status-746"},{"section":"patch-status-745"}]},{"section":"-strong-read-operations-strong--737","subsections":[{"section":"watch-list-all-namespaces-743"},{"section":"watch-list-742"},{"section":"watch-741"},{"section":"list-all-namespaces-740"},{"section":"list-739"},{"section":"read-738"}]},{"section":"-strong-write-operations-strong--731","subsections":[{"section":"delete-collection-736"},{"section":"delete-735"},{"section":"replace-734"},{"section":"patch-733"},{"section":"create-732"}]}]},{"section":"daemonset-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--727","subsections":[{"section":"replace-status-730"},{"section":"read-status-729"},{"section":"patch-status-728"}]},{"section":"-strong-read-operations-strong--720","subsections":[{"section":"watch-list-all-namespaces-726"},{"section":"watch-list-725"},{"section":"watch-724"},{"section":"list-all-namespaces-723"},{"section":"list-722"},{"section":"read-721"}]},{"section":"-strong-write-operations-strong--714","subsections":[{"section":"delete-collection-719"},{"section":"delete-718"},{"section":"replace-717"},{"section":"patch-716"},{"section":"create-715"}]}]},{"section":"crossversionobjectreference-v2beta1-autoscaling","subsections":[]},{"section":"cronjob-v2alpha1-batch","subsections":[{"section":"-strong-status-operations-strong--710","subsections":[{"section":"replace-status-713"},{"section":"read-status-712"},{"section":"patch-status-711"}]},{"section":"-strong-read-operations-strong--703","subsections":[{"section":"watch-list-all-namespaces-709"},{"section":"watch-list-708"},{"section":"watch-707"},{"section":"list-all-namespaces-706"},{"section":"list-705"},{"section":"read-704"}]},{"section":"-strong-write-operations-strong--697","subsections":[{"section":"delete-collection-702"},{"section":"delete-701"},{"section":"replace-700"},{"section":"patch-699"},{"section":"create-698"}]}]},{"section":"controllerrevision-v1beta1-apps","subsections":[{"section":"-strong-read-operations-strong--690","subsections":[{"section":"watch-list-all-namespaces-696"},{"section":"watch-list-695"},{"section":"watch-694"},{"section":"list-all-namespaces-693"},{"section":"list-692"},{"section":"read-691"}]},{"section":"-strong-write-operations-strong--684","subsections":[{"section":"delete-collection-689"},{"section":"delete-688"},{"section":"replace-687"},{"section":"patch-686"},{"section":"create-685"}]}]},{"section":"controllerrevision-v1beta2-apps","subsections":[{"section":"-strong-read-operations-strong--677","subsections":[{"section":"watch-list-all-namespaces-683"},{"section":"watch-list-682"},{"section":"watch-681"},{"section":"list-all-namespaces-680"},{"section":"list-679"},{"section":"read-678"}]},{"section":"-strong-write-operations-strong--671","subsections":[{"section":"delete-collection-676"},{"section":"delete-675"},{"section":"replace-674"},{"section":"patch-673"},{"section":"create-672"}]}]},{"section":"clusterrolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--666","subsections":[{"section":"watch-list-670"},{"section":"watch-669"},{"section":"list-668"},{"section":"read-667"}]},{"section":"-strong-write-operations-strong--660","subsections":[{"section":"delete-collection-665"},{"section":"delete-664"},{"section":"replace-663"},{"section":"patch-662"},{"section":"create-661"}]}]},{"section":"clusterrolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--655","subsections":[{"section":"watch-list-659"},{"section":"watch-658"},{"section":"list-657"},{"section":"read-656"}]},{"section":"-strong-write-operations-strong--649","subsections":[{"section":"delete-collection-654"},{"section":"delete-653"},{"section":"replace-652"},{"section":"patch-651"},{"section":"create-650"}]}]},{"section":"clusterrole-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--644","subsections":[{"section":"watch-list-648"},{"section":"watch-647"},{"section":"list-646"},{"section":"read-645"}]},{"section":"-strong-write-operations-strong--638","subsections":[{"section":"delete-collection-643"},{"section":"delete-642"},{"section":"replace-641"},{"section":"patch-640"},{"section":"create-639"}]}]},{"section":"clusterrole-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--633","subsections":[{"section":"watch-list-637"},{"section":"watch-636"},{"section":"list-635"},{"section":"read-634"}]},{"section":"-strong-write-operations-strong--627","subsections":[{"section":"delete-collection-632"},{"section":"delete-631"},{"section":"replace-630"},{"section":"patch-629"},{"section":"create-628"}]}]},{"section":"aggregationrule-v1alpha1-rbac","subsections":[]},{"section":"aggregationrule-v1beta1-rbac","subsections":[]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"weightedpodaffinityterm-v1-core"},{"section":"webhookclientconfig-v1beta1-admissionregistration"},{"section":"webhook-v1beta1-admissionregistration"},{"section":"watchevent-v1-meta"},{"section":"vspherevirtualdiskvolumesource-v1-core"},{"section":"volumeprojection-v1-core"},{"section":"volumemount-v1-core"},{"section":"volumeerror-v1alpha1-storage"},{"section":"volumedevice-v1-core"},{"section":"volumeattachmentsource-v1alpha1-storage"},{"section":"userinfo-v1-authentication"},{"section":"toleration-v1-core"},{"section":"time-v1-meta"},{"section":"taint-v1-core"},{"section":"tcpsocketaction-v1-core"},{"section":"supplementalgroupsstrategyoptions-v1beta1-extensions"},{"section":"subjectrulesreviewstatus-v1-authorization"},{"section":"subject-v1-rbac"},{"section":"storageosvolumesource-v1-core"},{"section":"storageospersistentvolumesource-v1-core"},{"section":"statusdetails-v1-meta"},{"section":"statuscause-v1-meta"},{"section":"status-v1-meta"},{"section":"statefulsetupdatestrategy-v1-apps"},{"section":"statefulsetcondition-v1-apps"},{"section":"sessionaffinityconfig-v1-core"},{"section":"servicereference-v1beta1-admissionregistration"},{"section":"serviceport-v1-core"},{"section":"serveraddressbyclientcidr-v1-meta"},{"section":"securitycontext-v1-core"},{"section":"secretvolumesource-v1-core"},{"section":"secretreference-v1-core"},{"section":"secretprojection-v1-core"},{"section":"secretkeyselector-v1-core"},{"section":"secretenvsource-v1-core"},{"section":"scaleiovolumesource-v1-core"},{"section":"scaleiopersistentvolumesource-v1-core"},{"section":"scale-v1-autoscaling"},{"section":"selinuxstrategyoptions-v1beta1-extensions"},{"section":"selinuxoptions-v1-core"},{"section":"runasuserstrategyoptions-v1beta1-extensions"},{"section":"rulewithoperations-v1beta1-admissionregistration"},{"section":"rule-v1alpha1-admissionregistration"},{"section":"rollingupdatestatefulsetstrategy-v1-apps"},{"section":"rollbackconfig-v1beta1-apps"},{"section":"roleref-v1-rbac"},{"section":"resourcerule-v1-authorization"},{"section":"resourcerequirements-v1-core"},{"section":"resourcemetricstatus-v2beta1-autoscaling"},{"section":"resourcemetricsource-v2beta1-autoscaling"},{"section":"resourcefieldselector-v1-core"},{"section":"resourceattributes-v1-authorization"},{"section":"replicationcontrollercondition-v1-core"},{"section":"replicasetcondition-v1-apps"},{"section":"rbdvolumesource-v1-core"},{"section":"rbdpersistentvolumesource-v1-core"},{"section":"quobytevolumesource-v1-core"},{"section":"quantity-resource-core"},{"section":"projectedvolumesource-v1-core"},{"section":"probe-v1-core"},{"section":"preferredschedulingterm-v1-core"},{"section":"preconditions-v1-meta"},{"section":"portworxvolumesource-v1-core"},{"section":"policyrule-v1-rbac"},{"section":"podsmetricstatus-v2beta1-autoscaling"},{"section":"podsmetricsource-v2beta1-autoscaling"},{"section":"podsecuritycontext-v1-core"},{"section":"poddnsconfigoption-v1-core"},{"section":"poddnsconfig-v1-core"},{"section":"podcondition-v1-core"},{"section":"podantiaffinity-v1-core"},{"section":"podaffinityterm-v1-core"},{"section":"podaffinity-v1-core"},{"section":"photonpersistentdiskvolumesource-v1-core"},{"section":"persistentvolumeclaimvolumesource-v1-core"},{"section":"persistentvolumeclaimcondition-v1-core"},{"section":"patch-v1-meta"},{"section":"ownerreference-v1-meta"},{"section":"objectreference-v1-core"},{"section":"objectmetricstatus-v2beta1-autoscaling"},{"section":"objectmetricsource-v2beta1-autoscaling"},{"section":"objectmeta-v1-meta"},{"section":"objectfieldselector-v1-core"},{"section":"nonresourcerule-v1-authorization"},{"section":"nonresourceattributes-v1-authorization"},{"section":"nodesysteminfo-v1-core"},{"section":"nodeselectorterm-v1-core"},{"section":"nodeselectorrequirement-v1-core"},{"section":"nodeselector-v1-core"},{"section":"nodedaemonendpoints-v1-core"},{"section":"nodeconfigsource-v1-core"},{"section":"nodecondition-v1-core"},{"section":"nodeaffinity-v1-core"},{"section":"nodeaddress-v1-core"},{"section":"networkpolicyport-v1-networking"},{"section":"networkpolicypeer-v1-networking"},{"section":"networkpolicyingressrule-v1-networking"},{"section":"networkpolicyegressrule-v1-networking"},{"section":"nfsvolumesource-v1-core"},{"section":"microtime-v1-meta"},{"section":"metricstatus-v2beta1-autoscaling"},{"section":"metricspec-v2beta1-autoscaling"},{"section":"localvolumesource-v1-core"},{"section":"localobjectreference-v1-core"},{"section":"loadbalancerstatus-v1-core"},{"section":"loadbalanceringress-v1-core"},{"section":"listmeta-v1-meta"},{"section":"limitrangeitem-v1-core"},{"section":"lifecycle-v1-core"},{"section":"labelselectorrequirement-v1-meta"},{"section":"labelselector-v1-meta"},{"section":"keytopath-v1-core"},{"section":"jobtemplatespec-v1beta1-batch"},{"section":"jobcondition-v1-batch"},{"section":"jsonschemapropsorbool-v1beta1-apiextensions"},{"section":"jsonschemapropsorarray-v1beta1-apiextensions"},{"section":"jsonschemaprops-v1beta1-apiextensions"},{"section":"json-v1beta1-apiextensions"},{"section":"initializers-v1-meta"},{"section":"initializer-v1-meta"},{"section":"ingresstls-v1beta1-extensions"},{"section":"ingressrule-v1beta1-extensions"},{"section":"ingressbackend-v1beta1-extensions"},{"section":"iscsivolumesource-v1-core"},{"section":"iscsipersistentvolumesource-v1-core"},{"section":"ipblock-v1-networking"},{"section":"idrange-v1beta1-extensions"},{"section":"hostportrange-v1beta1-extensions"},{"section":"hostpathvolumesource-v1-core"},{"section":"hostalias-v1-core"},{"section":"horizontalpodautoscalercondition-v2beta1-autoscaling"},{"section":"handler-v1-core"},{"section":"httpingressrulevalue-v1beta1-extensions"},{"section":"httpingresspath-v1beta1-extensions"},{"section":"httpheader-v1-core"},{"section":"httpgetaction-v1-core"},{"section":"groupversionfordiscovery-v1-meta"},{"section":"glusterfsvolumesource-v1-core"},{"section":"gitrepovolumesource-v1-core"},{"section":"gcepersistentdiskvolumesource-v1-core"},{"section":"flockervolumesource-v1-core"},{"section":"flexvolumesource-v1-core"},{"section":"fsgroupstrategyoptions-v1beta1-extensions"},{"section":"fcvolumesource-v1-core"},{"section":"externaldocumentation-v1beta1-apiextensions"},{"section":"execaction-v1-core"},{"section":"eviction-v1beta1-policy"},{"section":"eventsource-v1-core"},{"section":"eventseries-v1-core"},{"section":"envvarsource-v1-core"},{"section":"envvar-v1-core"},{"section":"envfromsource-v1-core"},{"section":"endpointsubset-v1-core"},{"section":"endpointport-v1-core"},{"section":"endpointaddress-v1-core"},{"section":"emptydirvolumesource-v1-core"},{"section":"downwardapivolumesource-v1-core"},{"section":"downwardapivolumefile-v1-core"},{"section":"downwardapiprojection-v1-core"},{"section":"deploymentcondition-v1-apps"},{"section":"deleteoptions-v1-meta"},{"section":"daemonsetupdatestrategy-v1-apps"},{"section":"daemonsetcondition-v1-apps"},{"section":"daemonendpoint-v1-core"},{"section":"customresourcevalidation-v1beta1-apiextensions"},{"section":"customresourcedefinitionnames-v1beta1-apiextensions"},{"section":"customresourcedefinitioncondition-v1beta1-apiextensions"},{"section":"crossversionobjectreference-v1-autoscaling"},{"section":"containerstatewaiting-v1-core"},{"section":"containerstateterminated-v1-core"},{"section":"containerstaterunning-v1-core"},{"section":"containerstate-v1-core"},{"section":"containerport-v1-core"},{"section":"containerimage-v1-core"},{"section":"configmapvolumesource-v1-core"},{"section":"configmapprojection-v1-core"},{"section":"configmapkeyselector-v1-core"},{"section":"configmapenvsource-v1-core"},{"section":"componentcondition-v1-core"},{"section":"clientipconfig-v1-core"},{"section":"cindervolumesource-v1-core"},{"section":"certificatesigningrequestcondition-v1beta1-certificates"},{"section":"cephfsvolumesource-v1-core"},{"section":"cephfspersistentvolumesource-v1-core"},{"section":"capabilities-v1-core"},{"section":"csipersistentvolumesource-v1-core"},{"section":"azurefilevolumesource-v1-core"},{"section":"azurefilepersistentvolumesource-v1-core"},{"section":"azurediskvolumesource-v1-core"},{"section":"attachedvolume-v1-core"},{"section":"allowedhostpath-v1beta1-extensions"},{"section":"allowedflexvolume-v1beta1-extensions"},{"section":"aggregationrule-v1-rbac"},{"section":"affinity-v1-core"},{"section":"awselasticblockstorevolumesource-v1-core"},{"section":"apiversions-v1-meta"},{"section":"apiservicecondition-v1beta1-apiregistration"},{"section":"apiresource-v1-meta"},{"section":"apigroup-v1-meta"}]},{"section":"networkpolicy-v1-networking","subsections":[{"section":"-strong-read-operations-strong--620","subsections":[{"section":"watch-list-all-namespaces-626"},{"section":"watch-list-625"},{"section":"watch-624"},{"section":"list-all-namespaces-623"},{"section":"list-622"},{"section":"read-621"}]},{"section":"-strong-write-operations-strong--614","subsections":[{"section":"delete-collection-619"},{"section":"delete-618"},{"section":"replace-617"},{"section":"patch-616"},{"section":"create-615"}]}]},{"section":"tokenreview-v1-authentication","subsections":[{"section":"-strong-write-operations-strong--612","subsections":[{"section":"create-613"}]}]},{"section":"subjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--610","subsections":[{"section":"create-611"}]}]},{"section":"serviceaccount-v1-core","subsections":[{"section":"-strong-read-operations-strong--603","subsections":[{"section":"watch-list-all-namespaces-609"},{"section":"watch-list-608"},{"section":"watch-607"},{"section":"list-all-namespaces-606"},{"section":"list-605"},{"section":"read-604"}]},{"section":"-strong-write-operations-strong--597","subsections":[{"section":"delete-collection-602"},{"section":"delete-601"},{"section":"replace-600"},{"section":"patch-599"},{"section":"create-598"}]}]},{"section":"selfsubjectrulesreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--595","subsections":[{"section":"create-596"}]}]},{"section":"selfsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--593","subsections":[{"section":"create-594"}]}]},{"section":"rolebinding-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--586","subsections":[{"section":"watch-list-all-namespaces-592"},{"section":"watch-list-591"},{"section":"watch-590"},{"section":"list-all-namespaces-589"},{"section":"list-588"},{"section":"read-587"}]},{"section":"-strong-write-operations-strong--580","subsections":[{"section":"delete-collection-585"},{"section":"delete-584"},{"section":"replace-583"},{"section":"patch-582"},{"section":"create-581"}]}]},{"section":"role-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--573","subsections":[{"section":"watch-list-all-namespaces-579"},{"section":"watch-list-578"},{"section":"watch-577"},{"section":"list-all-namespaces-576"},{"section":"list-575"},{"section":"read-574"}]},{"section":"-strong-write-operations-strong--567","subsections":[{"section":"delete-collection-572"},{"section":"delete-571"},{"section":"replace-570"},{"section":"patch-569"},{"section":"create-568"}]}]},{"section":"resourcequota-v1-core","subsections":[{"section":"-strong-status-operations-strong--563","subsections":[{"section":"replace-status-566"},{"section":"read-status-565"},{"section":"patch-status-564"}]},{"section":"-strong-read-operations-strong--556","subsections":[{"section":"watch-list-all-namespaces-562"},{"section":"watch-list-561"},{"section":"watch-560"},{"section":"list-all-namespaces-559"},{"section":"list-558"},{"section":"read-557"}]},{"section":"-strong-write-operations-strong--550","subsections":[{"section":"delete-collection-555"},{"section":"delete-554"},{"section":"replace-553"},{"section":"patch-552"},{"section":"create-551"}]}]},{"section":"persistentvolume-v1-core","subsections":[{"section":"-strong-status-operations-strong--546","subsections":[{"section":"replace-status-549"},{"section":"read-status-548"},{"section":"patch-status-547"}]},{"section":"-strong-read-operations-strong--541","subsections":[{"section":"watch-list-545"},{"section":"watch-544"},{"section":"list-543"},{"section":"read-542"}]},{"section":"-strong-write-operations-strong--535","subsections":[{"section":"delete-collection-540"},{"section":"delete-539"},{"section":"replace-538"},{"section":"patch-537"},{"section":"create-536"}]}]},{"section":"node-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--516","subsections":[{"section":"replace-proxy-path-534"},{"section":"replace-proxy-533"},{"section":"replace-connect-proxy-path-532"},{"section":"replace-connect-proxy-531"},{"section":"head-connect-proxy-path-530"},{"section":"head-connect-proxy-529"},{"section":"get-proxy-path-528"},{"section":"get-proxy-527"},{"section":"get-connect-proxy-path-526"},{"section":"get-connect-proxy-525"},{"section":"delete-proxy-path-524"},{"section":"delete-proxy-523"},{"section":"delete-connect-proxy-path-522"},{"section":"delete-connect-proxy-521"},{"section":"create-proxy-path-520"},{"section":"create-proxy-519"},{"section":"create-connect-proxy-path-518"},{"section":"create-connect-proxy-517"}]},{"section":"-strong-status-operations-strong--512","subsections":[{"section":"replace-status-515"},{"section":"read-status-514"},{"section":"patch-status-513"}]},{"section":"-strong-read-operations-strong--507","subsections":[{"section":"watch-list-511"},{"section":"watch-510"},{"section":"list-509"},{"section":"read-508"}]},{"section":"-strong-write-operations-strong--501","subsections":[{"section":"delete-collection-506"},{"section":"delete-505"},{"section":"replace-504"},{"section":"patch-503"},{"section":"create-502"}]}]},{"section":"namespace-v1-core","subsections":[{"section":"-strong-status-operations-strong--497","subsections":[{"section":"replace-status-500"},{"section":"read-status-499"},{"section":"patch-status-498"}]},{"section":"-strong-read-operations-strong--492","subsections":[{"section":"watch-list-496"},{"section":"watch-495"},{"section":"list-494"},{"section":"read-493"}]},{"section":"-strong-write-operations-strong--487","subsections":[{"section":"delete-491"},{"section":"replace-490"},{"section":"patch-489"},{"section":"create-488"}]}]},{"section":"localsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--485","subsections":[{"section":"create-486"}]}]},{"section":"componentstatus-v1-core","subsections":[{"section":"-strong-read-operations-strong--482","subsections":[{"section":"list-484"},{"section":"read-483"}]}]},{"section":"clusterrolebinding-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--477","subsections":[{"section":"watch-list-481"},{"section":"watch-480"},{"section":"list-479"},{"section":"read-478"}]},{"section":"-strong-write-operations-strong--471","subsections":[{"section":"delete-collection-476"},{"section":"delete-475"},{"section":"replace-474"},{"section":"patch-473"},{"section":"create-472"}]}]},{"section":"clusterrole-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--466","subsections":[{"section":"watch-list-470"},{"section":"watch-469"},{"section":"list-468"},{"section":"read-467"}]},{"section":"-strong-write-operations-strong--460","subsections":[{"section":"delete-collection-465"},{"section":"delete-464"},{"section":"replace-463"},{"section":"patch-462"},{"section":"create-461"}]}]},{"section":"certificatesigningrequest-v1beta1-certificates","subsections":[{"section":"-strong-status-operations-strong--458","subsections":[{"section":"replace-status-459"}]},{"section":"-strong-read-operations-strong--453","subsections":[{"section":"watch-list-457"},{"section":"watch-456"},{"section":"list-455"},{"section":"read-454"}]},{"section":"-strong-write-operations-strong--447","subsections":[{"section":"delete-collection-452"},{"section":"delete-451"},{"section":"replace-450"},{"section":"patch-449"},{"section":"create-448"}]}]},{"section":"binding-v1-core","subsections":[{"section":"-strong-write-operations-strong--445","subsections":[{"section":"create-446"}]}]},{"section":"apiservice-v1beta1-apiregistration","subsections":[{"section":"-strong-status-operations-strong--443","subsections":[{"section":"replace-status-444"}]},{"section":"-strong-read-operations-strong--438","subsections":[{"section":"watch-list-442"},{"section":"watch-441"},{"section":"list-440"},{"section":"read-439"}]},{"section":"-strong-write-operations-strong--432","subsections":[{"section":"delete-collection-437"},{"section":"delete-436"},{"section":"replace-435"},{"section":"patch-434"},{"section":"create-433"}]}]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"podsecuritypolicy-v1beta1-extensions","subsections":[{"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":"replace-424"},{"section":"patch-423"},{"section":"create-422"}]}]},{"section":"podpreset-v1alpha1-settings","subsections":[{"section":"-strong-read-operations-strong--414","subsections":[{"section":"watch-list-all-namespaces-420"},{"section":"watch-list-419"},{"section":"watch-418"},{"section":"list-all-namespaces-417"},{"section":"list-416"},{"section":"read-415"}]},{"section":"-strong-write-operations-strong--408","subsections":[{"section":"delete-collection-413"},{"section":"delete-412"},{"section":"replace-411"},{"section":"patch-410"},{"section":"create-409"}]}]},{"section":"priorityclass-v1alpha1-scheduling","subsections":[{"section":"-strong-read-operations-strong--403","subsections":[{"section":"watch-list-407"},{"section":"watch-406"},{"section":"list-405"},{"section":"read-404"}]},{"section":"-strong-write-operations-strong--397","subsections":[{"section":"delete-collection-402"},{"section":"delete-401"},{"section":"replace-400"},{"section":"patch-399"},{"section":"create-398"}]}]},{"section":"poddisruptionbudget-v1beta1-policy","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--386","subsections":[{"section":"watch-list-all-namespaces-392"},{"section":"watch-list-391"},{"section":"watch-390"},{"section":"list-all-namespaces-389"},{"section":"list-388"},{"section":"read-387"}]},{"section":"-strong-write-operations-strong--380","subsections":[{"section":"delete-collection-385"},{"section":"delete-384"},{"section":"replace-383"},{"section":"patch-382"},{"section":"create-381"}]}]},{"section":"podtemplate-v1-core","subsections":[{"section":"-strong-read-operations-strong--373","subsections":[{"section":"watch-list-all-namespaces-379"},{"section":"watch-list-378"},{"section":"watch-377"},{"section":"list-all-namespaces-376"},{"section":"list-375"},{"section":"read-374"}]},{"section":"-strong-write-operations-strong--367","subsections":[{"section":"delete-collection-372"},{"section":"delete-371"},{"section":"replace-370"},{"section":"patch-369"},{"section":"create-368"}]}]},{"section":"validatingwebhookconfiguration-v1beta1-admissionregistration","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":"replace-359"},{"section":"patch-358"},{"section":"create-357"}]}]},{"section":"mutatingwebhookconfiguration-v1beta1-admissionregistration","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":"replace-348"},{"section":"patch-347"},{"section":"create-346"}]}]},{"section":"initializerconfiguration-v1alpha1-admissionregistration","subsections":[{"section":"-strong-read-operations-strong--340","subsections":[{"section":"watch-list-344"},{"section":"watch-343"},{"section":"list-342"},{"section":"read-341"}]},{"section":"-strong-write-operations-strong--334","subsections":[{"section":"delete-collection-339"},{"section":"delete-338"},{"section":"replace-337"},{"section":"patch-336"},{"section":"create-335"}]}]},{"section":"horizontalpodautoscaler-v1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--330","subsections":[{"section":"replace-status-333"},{"section":"read-status-332"},{"section":"patch-status-331"}]},{"section":"-strong-read-operations-strong--323","subsections":[{"section":"watch-list-all-namespaces-329"},{"section":"watch-list-328"},{"section":"watch-327"},{"section":"list-all-namespaces-326"},{"section":"list-325"},{"section":"read-324"}]},{"section":"-strong-write-operations-strong--317","subsections":[{"section":"delete-collection-322"},{"section":"delete-321"},{"section":"replace-320"},{"section":"patch-319"},{"section":"create-318"}]}]},{"section":"limitrange-v1-core","subsections":[{"section":"-strong-read-operations-strong--310","subsections":[{"section":"watch-list-all-namespaces-316"},{"section":"watch-list-315"},{"section":"watch-314"},{"section":"list-all-namespaces-313"},{"section":"list-312"},{"section":"read-311"}]},{"section":"-strong-write-operations-strong--304","subsections":[{"section":"delete-collection-309"},{"section":"delete-308"},{"section":"replace-307"},{"section":"patch-306"},{"section":"create-305"}]}]},{"section":"event-v1-core","subsections":[{"section":"-strong-read-operations-strong--297","subsections":[{"section":"watch-list-all-namespaces-303"},{"section":"watch-list-302"},{"section":"watch-301"},{"section":"list-all-namespaces-300"},{"section":"list-299"},{"section":"read-298"}]},{"section":"-strong-write-operations-strong--291","subsections":[{"section":"delete-collection-296"},{"section":"delete-295"},{"section":"replace-294"},{"section":"patch-293"},{"section":"create-292"}]}]},{"section":"customresourcedefinition-v1beta1-apiextensions","subsections":[{"section":"-strong-status-operations-strong--289","subsections":[{"section":"replace-status-290"}]},{"section":"-strong-read-operations-strong--284","subsections":[{"section":"watch-list-288"},{"section":"watch-287"},{"section":"list-286"},{"section":"read-285"}]},{"section":"-strong-write-operations-strong--278","subsections":[{"section":"delete-collection-283"},{"section":"delete-282"},{"section":"replace-281"},{"section":"patch-280"},{"section":"create-279"}]}]},{"section":"controllerrevision-v1-apps","subsections":[{"section":"-strong-read-operations-strong--271","subsections":[{"section":"watch-list-all-namespaces-277"},{"section":"watch-list-276"},{"section":"watch-275"},{"section":"list-all-namespaces-274"},{"section":"list-273"},{"section":"read-272"}]},{"section":"-strong-write-operations-strong--265","subsections":[{"section":"delete-collection-270"},{"section":"delete-269"},{"section":"replace-268"},{"section":"patch-267"},{"section":"create-266"}]}]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volumeattachment-v1alpha1-storage","subsections":[{"section":"-strong-read-operations-strong--260","subsections":[{"section":"watch-list-264"},{"section":"watch-263"},{"section":"list-262"},{"section":"read-261"}]},{"section":"-strong-write-operations-strong--254","subsections":[{"section":"delete-collection-259"},{"section":"delete-258"},{"section":"replace-257"},{"section":"patch-256"},{"section":"create-255"}]}]},{"section":"volume-v1-core","subsections":[]},{"section":"storageclass-v1-storage","subsections":[{"section":"-strong-read-operations-strong--249","subsections":[{"section":"watch-list-253"},{"section":"watch-252"},{"section":"list-251"},{"section":"read-250"}]},{"section":"-strong-write-operations-strong--243","subsections":[{"section":"delete-collection-248"},{"section":"delete-247"},{"section":"replace-246"},{"section":"patch-245"},{"section":"create-244"}]}]},{"section":"persistentvolumeclaim-v1-core","subsections":[{"section":"-strong-status-operations-strong--239","subsections":[{"section":"replace-status-242"},{"section":"read-status-241"},{"section":"patch-status-240"}]},{"section":"-strong-read-operations-strong--232","subsections":[{"section":"watch-list-all-namespaces-238"},{"section":"watch-list-237"},{"section":"watch-236"},{"section":"list-all-namespaces-235"},{"section":"list-234"},{"section":"read-233"}]},{"section":"-strong-write-operations-strong--226","subsections":[{"section":"delete-collection-231"},{"section":"delete-230"},{"section":"replace-229"},{"section":"patch-228"},{"section":"create-227"}]}]},{"section":"secret-v1-core","subsections":[{"section":"-strong-read-operations-strong--219","subsections":[{"section":"watch-list-all-namespaces-225"},{"section":"watch-list-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":"replace-216"},{"section":"patch-215"},{"section":"create-214"}]}]},{"section":"configmap-v1-core","subsections":[{"section":"-strong-read-operations-strong--206","subsections":[{"section":"watch-list-all-namespaces-212"},{"section":"watch-list-211"},{"section":"watch-210"},{"section":"list-all-namespaces-209"},{"section":"list-208"},{"section":"read-207"}]},{"section":"-strong-write-operations-strong--200","subsections":[{"section":"delete-collection-205"},{"section":"delete-204"},{"section":"replace-203"},{"section":"patch-202"},{"section":"create-201"}]}]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--181","subsections":[{"section":"replace-proxy-path-199"},{"section":"replace-proxy-198"},{"section":"replace-connect-proxy-path-197"},{"section":"replace-connect-proxy-196"},{"section":"head-connect-proxy-path-195"},{"section":"head-connect-proxy-194"},{"section":"get-proxy-path-193"},{"section":"get-proxy-192"},{"section":"get-connect-proxy-path-191"},{"section":"get-connect-proxy-190"},{"section":"delete-proxy-path-189"},{"section":"delete-proxy-188"},{"section":"delete-connect-proxy-path-187"},{"section":"delete-connect-proxy-186"},{"section":"create-proxy-path-185"},{"section":"create-proxy-184"},{"section":"create-connect-proxy-path-183"},{"section":"create-connect-proxy-182"}]},{"section":"-strong-status-operations-strong--177","subsections":[{"section":"replace-status-180"},{"section":"read-status-179"},{"section":"patch-status-178"}]},{"section":"-strong-read-operations-strong--170","subsections":[{"section":"watch-list-all-namespaces-176"},{"section":"watch-list-175"},{"section":"watch-174"},{"section":"list-all-namespaces-173"},{"section":"list-172"},{"section":"read-171"}]},{"section":"-strong-write-operations-strong--165","subsections":[{"section":"delete-169"},{"section":"replace-168"},{"section":"patch-167"},{"section":"create-166"}]}]},{"section":"ingress-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--161","subsections":[{"section":"replace-status-164"},{"section":"read-status-163"},{"section":"patch-status-162"}]},{"section":"-strong-read-operations-strong--154","subsections":[{"section":"watch-list-all-namespaces-160"},{"section":"watch-list-159"},{"section":"watch-158"},{"section":"list-all-namespaces-157"},{"section":"list-156"},{"section":"read-155"}]},{"section":"-strong-write-operations-strong--148","subsections":[{"section":"delete-collection-153"},{"section":"delete-152"},{"section":"replace-151"},{"section":"patch-150"},{"section":"create-149"}]}]},{"section":"endpoints-v1-core","subsections":[{"section":"-strong-read-operations-strong--141","subsections":[{"section":"watch-list-all-namespaces-147"},{"section":"watch-list-146"},{"section":"watch-145"},{"section":"list-all-namespaces-144"},{"section":"list-143"},{"section":"read-142"}]},{"section":"-strong-write-operations-strong--135","subsections":[{"section":"delete-collection-140"},{"section":"delete-139"},{"section":"replace-138"},{"section":"patch-137"},{"section":"create-136"}]}]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1-apps","subsections":[{"section":"-strong-misc-operations-strong--131","subsections":[{"section":"patch-scale-134"},{"section":"replace-scale-133"},{"section":"read-scale-132"}]},{"section":"-strong-status-operations-strong--127","subsections":[{"section":"replace-status-130"},{"section":"read-status-129"},{"section":"patch-status-128"}]},{"section":"-strong-read-operations-strong--120","subsections":[{"section":"watch-list-all-namespaces-126"},{"section":"watch-list-125"},{"section":"watch-124"},{"section":"list-all-namespaces-123"},{"section":"list-122"},{"section":"read-121"}]},{"section":"-strong-write-operations-strong--114","subsections":[{"section":"delete-collection-119"},{"section":"delete-118"},{"section":"replace-117"},{"section":"patch-116"},{"section":"create-115"}]}]},{"section":"replicationcontroller-v1-core","subsections":[{"section":"-strong-misc-operations-strong--110","subsections":[{"section":"patch-scale-113"},{"section":"replace-scale-112"},{"section":"read-scale-111"}]},{"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":"replace-96"},{"section":"patch-95"},{"section":"create-94"}]}]},{"section":"replicaset-v1-apps","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":"replace-75"},{"section":"patch-74"},{"section":"create-73"}]}]},{"section":"pod-v1-core","subsections":[{"section":"-strong-misc-operations-strong--71","subsections":[{"section":"read-log"}]},{"section":"-strong-proxy-operations-strong-","subsections":[{"section":"replace-proxy-path"},{"section":"replace-proxy"},{"section":"replace-connect-proxy-path"},{"section":"replace-connect-proxy"},{"section":"head-connect-proxy-path"},{"section":"head-connect-proxy"},{"section":"get-proxy-path"},{"section":"get-proxy"},{"section":"get-connect-proxy-path"},{"section":"get-connect-proxy"},{"section":"get-connect-portforward"},{"section":"delete-proxy-path"},{"section":"delete-proxy"},{"section":"delete-connect-proxy-path"},{"section":"delete-connect-proxy"},{"section":"create-proxy-path"},{"section":"create-proxy"},{"section":"create-connect-proxy-path"},{"section":"create-connect-proxy"},{"section":"create-connect-portforward"}]},{"section":"-strong-status-operations-strong--67","subsections":[{"section":"replace-status-70"},{"section":"read-status-69"},{"section":"patch-status-68"}]},{"section":"-strong-read-operations-strong--60","subsections":[{"section":"watch-list-all-namespaces-66"},{"section":"watch-list-65"},{"section":"watch-64"},{"section":"list-all-namespaces-63"},{"section":"list-62"},{"section":"read-61"}]},{"section":"-strong-write-operations-strong--54","subsections":[{"section":"delete-collection-59"},{"section":"delete-58"},{"section":"replace-57"},{"section":"patch-56"},{"section":"create-eviction"},{"section":"create-55"}]}]},{"section":"job-v1-batch","subsections":[{"section":"-strong-status-operations-strong--50","subsections":[{"section":"replace-status-53"},{"section":"read-status-52"},{"section":"patch-status-51"}]},{"section":"-strong-read-operations-strong--43","subsections":[{"section":"watch-list-all-namespaces-49"},{"section":"watch-list-48"},{"section":"watch-47"},{"section":"list-all-namespaces-46"},{"section":"list-45"},{"section":"read-44"}]},{"section":"-strong-write-operations-strong--37","subsections":[{"section":"delete-collection-42"},{"section":"delete-41"},{"section":"replace-40"},{"section":"patch-39"},{"section":"create-38"}]}]},{"section":"deployment-v1-apps","subsections":[{"section":"-strong-misc-operations-strong-","subsections":[{"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":"replace-23"},{"section":"patch-22"},{"section":"create-21"}]}]},{"section":"daemonset-v1-apps","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":"replace-6"},{"section":"patch-5"},{"section":"create-4"}]}]},{"section":"cronjob-v1beta1-batch","subsections":[{"section":"-strong-status-operations-strong-","subsections":[{"section":"replace-status"},{"section":"read-status"},{"section":"patch-status"}]},{"section":"-strong-read-operations-strong-","subsections":[{"section":"watch-list-all-namespaces"},{"section":"watch-list"},{"section":"watch"},{"section":"list-all-namespaces"},{"section":"list"},{"section":"read-2"}]},{"section":"-strong-write-operations-strong-","subsections":[{"section":"delete-collection"},{"section":"delete-1"},{"section":"replace"},{"section":"patch"},{"section":"create"}]}]},{"section":"container-v1-core","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]},{"section":"-strong-api-overview-strong-","subsections":[{"section":"resource-operations"},{"section":"resource-objects"},{"section":"resource-categories"}]}],"flatToc":["userinfo-v1beta1-authentication","create-1011","-strong-write-operations-strong--1010","tokenreview-v1beta1-authentication","subjectrulesreviewstatus-v1beta1-authorization","create-1009","-strong-write-operations-strong--1008","subjectaccessreview-v1beta1-authorization","subject-v1alpha1-rbac","subject-v1beta1-rbac","watch-list-1007","watch-1006","list-1005","read-1004","-strong-read-operations-strong--1003","delete-collection-1002","delete-1001","replace-1000","patch-999","create-998","-strong-write-operations-strong--997","storageclass-v1beta1-storage","statefulsetupdatestrategy-v1beta1-apps","statefulsetupdatestrategy-v1beta2-apps","statefulsetcondition-v1beta1-apps","statefulsetcondition-v1beta2-apps","patch-scale-996","replace-scale-995","read-scale-994","-strong-misc-operations-strong--993","replace-status-992","read-status-991","patch-status-990","-strong-status-operations-strong--989","watch-list-all-namespaces-988","watch-list-987","watch-986","list-all-namespaces-985","list-984","read-983","-strong-read-operations-strong--982","delete-collection-981","delete-980","replace-979","patch-978","create-977","-strong-write-operations-strong--976","statefulset-v1beta1-apps","patch-scale-975","replace-scale-974","read-scale-973","-strong-misc-operations-strong--972","replace-status-971","read-status-970","patch-status-969","-strong-status-operations-strong--968","watch-list-all-namespaces-967","watch-list-966","watch-965","list-all-namespaces-964","list-963","read-962","-strong-read-operations-strong--961","delete-collection-960","delete-959","replace-958","patch-957","create-956","-strong-write-operations-strong--955","statefulset-v1beta2-apps","servicereference-v1beta1-apiregistration","create-954","-strong-write-operations-strong--953","selfsubjectrulesreview-v1beta1-authorization","create-952","-strong-write-operations-strong--951","selfsubjectaccessreview-v1beta1-authorization","scale-v1beta1-extensions","scale-v1beta1-apps","scale-v1beta2-apps","rollingupdatestatefulsetstrategy-v1beta1-apps","rollingupdatestatefulsetstrategy-v1beta2-apps","rollbackconfig-v1beta1-extensions","roleref-v1alpha1-rbac","roleref-v1beta1-rbac","watch-list-all-namespaces-950","watch-list-949","watch-948","list-all-namespaces-947","list-946","read-945","-strong-read-operations-strong--944","delete-collection-943","delete-942","replace-941","patch-940","create-939","-strong-write-operations-strong--938","rolebinding-v1alpha1-rbac","watch-list-all-namespaces-937","watch-list-936","watch-935","list-all-namespaces-934","list-933","read-932","-strong-read-operations-strong--931","delete-collection-930","delete-929","replace-928","patch-927","create-926","-strong-write-operations-strong--925","rolebinding-v1beta1-rbac","watch-list-all-namespaces-924","watch-list-923","watch-922","list-all-namespaces-921","list-920","read-919","-strong-read-operations-strong--918","delete-collection-917","delete-916","replace-915","patch-914","create-913","-strong-write-operations-strong--912","role-v1alpha1-rbac","watch-list-all-namespaces-911","watch-list-910","watch-909","list-all-namespaces-908","list-907","read-906","-strong-read-operations-strong--905","delete-collection-904","delete-903","replace-902","patch-901","create-900","-strong-write-operations-strong--899","role-v1beta1-rbac","resourcerule-v1beta1-authorization","resourceattributes-v1beta1-authorization","replicasetcondition-v1beta1-extensions","replicasetcondition-v1beta2-apps","patch-scale-898","replace-scale-897","read-scale-896","-strong-misc-operations-strong--895","replace-status-894","read-status-893","patch-status-892","-strong-status-operations-strong--891","watch-list-all-namespaces-890","watch-list-889","watch-888","list-all-namespaces-887","list-886","read-885","-strong-read-operations-strong--884","delete-collection-883","delete-882","replace-881","patch-880","create-879","-strong-write-operations-strong--878","replicaset-v1beta1-extensions","patch-scale-877","replace-scale-876","read-scale-875","-strong-misc-operations-strong--874","replace-status-873","read-status-872","patch-status-871","-strong-status-operations-strong--870","watch-list-all-namespaces-869","watch-list-868","watch-867","list-all-namespaces-866","list-865","read-864","-strong-read-operations-strong--863","delete-collection-862","delete-861","replace-860","patch-859","create-858","-strong-write-operations-strong--857","replicaset-v1beta2-apps","policyrule-v1alpha1-rbac","policyrule-v1beta1-rbac","nonresourcerule-v1beta1-authorization","nonresourceattributes-v1beta1-authorization","networkpolicyport-v1beta1-extensions","networkpolicypeer-v1beta1-extensions","networkpolicyingressrule-v1beta1-extensions","networkpolicyegressrule-v1beta1-extensions","watch-list-all-namespaces-856","watch-list-855","watch-854","list-all-namespaces-853","list-852","read-851","-strong-read-operations-strong--850","delete-collection-849","delete-848","replace-847","patch-846","create-845","-strong-write-operations-strong--844","networkpolicy-v1beta1-extensions","create-843","-strong-write-operations-strong--842","localsubjectaccessreview-v1beta1-authorization","jobtemplatespec-v2alpha1-batch","initializer-v1alpha1-admissionregistration","ipblock-v1beta1-extensions","replace-status-841","read-status-840","patch-status-839","-strong-status-operations-strong--838","watch-list-all-namespaces-837","watch-list-836","watch-835","list-all-namespaces-834","list-833","read-832","-strong-read-operations-strong--831","delete-collection-830","delete-829","replace-828","patch-827","create-826","-strong-write-operations-strong--825","horizontalpodautoscaler-v2beta1-autoscaling","eventseries-v1beta1-events","watch-list-all-namespaces-824","watch-list-823","watch-822","list-all-namespaces-821","list-820","read-819","-strong-read-operations-strong--818","delete-collection-817","delete-816","replace-815","patch-814","create-813","-strong-write-operations-strong--812","event-v1beta1-events","deploymentcondition-v1beta1-extensions","deploymentcondition-v1beta1-apps","deploymentcondition-v1beta2-apps","rollback-811","patch-scale-810","replace-scale-809","read-scale-808","-strong-misc-operations-strong--807","replace-status-806","read-status-805","patch-status-804","-strong-status-operations-strong--803","watch-list-all-namespaces-802","watch-list-801","watch-800","list-all-namespaces-799","list-798","read-797","-strong-read-operations-strong--796","delete-collection-795","delete-794","replace-793","patch-792","create-791","-strong-write-operations-strong--790","deployment-v1beta1-extensions","rollback","patch-scale-789","replace-scale-788","read-scale-787","-strong-misc-operations-strong--786","replace-status-785","read-status-784","patch-status-783","-strong-status-operations-strong--782","watch-list-all-namespaces-781","watch-list-780","watch-779","list-all-namespaces-778","list-777","read-776","-strong-read-operations-strong--775","delete-collection-774","delete-773","replace-772","patch-771","create-770","-strong-write-operations-strong--769","deployment-v1beta1-apps","patch-scale-768","replace-scale-767","read-scale-766","-strong-misc-operations-strong--765","replace-status-764","read-status-763","patch-status-762","-strong-status-operations-strong--761","watch-list-all-namespaces-760","watch-list-759","watch-758","list-all-namespaces-757","list-756","read-755","-strong-read-operations-strong--754","delete-collection-753","delete-752","replace-751","patch-750","create-749","-strong-write-operations-strong--748","deployment-v1beta2-apps","daemonsetupdatestrategy-v1beta1-extensions","daemonsetupdatestrategy-v1beta2-apps","daemonsetcondition-v1beta1-extensions","daemonsetcondition-v1beta2-apps","replace-status-747","read-status-746","patch-status-745","-strong-status-operations-strong--744","watch-list-all-namespaces-743","watch-list-742","watch-741","list-all-namespaces-740","list-739","read-738","-strong-read-operations-strong--737","delete-collection-736","delete-735","replace-734","patch-733","create-732","-strong-write-operations-strong--731","daemonset-v1beta1-extensions","replace-status-730","read-status-729","patch-status-728","-strong-status-operations-strong--727","watch-list-all-namespaces-726","watch-list-725","watch-724","list-all-namespaces-723","list-722","read-721","-strong-read-operations-strong--720","delete-collection-719","delete-718","replace-717","patch-716","create-715","-strong-write-operations-strong--714","daemonset-v1beta2-apps","crossversionobjectreference-v2beta1-autoscaling","replace-status-713","read-status-712","patch-status-711","-strong-status-operations-strong--710","watch-list-all-namespaces-709","watch-list-708","watch-707","list-all-namespaces-706","list-705","read-704","-strong-read-operations-strong--703","delete-collection-702","delete-701","replace-700","patch-699","create-698","-strong-write-operations-strong--697","cronjob-v2alpha1-batch","watch-list-all-namespaces-696","watch-list-695","watch-694","list-all-namespaces-693","list-692","read-691","-strong-read-operations-strong--690","delete-collection-689","delete-688","replace-687","patch-686","create-685","-strong-write-operations-strong--684","controllerrevision-v1beta1-apps","watch-list-all-namespaces-683","watch-list-682","watch-681","list-all-namespaces-680","list-679","read-678","-strong-read-operations-strong--677","delete-collection-676","delete-675","replace-674","patch-673","create-672","-strong-write-operations-strong--671","controllerrevision-v1beta2-apps","watch-list-670","watch-669","list-668","read-667","-strong-read-operations-strong--666","delete-collection-665","delete-664","replace-663","patch-662","create-661","-strong-write-operations-strong--660","clusterrolebinding-v1alpha1-rbac","watch-list-659","watch-658","list-657","read-656","-strong-read-operations-strong--655","delete-collection-654","delete-653","replace-652","patch-651","create-650","-strong-write-operations-strong--649","clusterrolebinding-v1beta1-rbac","watch-list-648","watch-647","list-646","read-645","-strong-read-operations-strong--644","delete-collection-643","delete-642","replace-641","patch-640","create-639","-strong-write-operations-strong--638","clusterrole-v1alpha1-rbac","watch-list-637","watch-636","list-635","read-634","-strong-read-operations-strong--633","delete-collection-632","delete-631","replace-630","patch-629","create-628","-strong-write-operations-strong--627","clusterrole-v1beta1-rbac","aggregationrule-v1alpha1-rbac","aggregationrule-v1beta1-rbac","-strong-old-api-versions-strong-","weightedpodaffinityterm-v1-core","webhookclientconfig-v1beta1-admissionregistration","webhook-v1beta1-admissionregistration","watchevent-v1-meta","vspherevirtualdiskvolumesource-v1-core","volumeprojection-v1-core","volumemount-v1-core","volumeerror-v1alpha1-storage","volumedevice-v1-core","volumeattachmentsource-v1alpha1-storage","userinfo-v1-authentication","toleration-v1-core","time-v1-meta","taint-v1-core","tcpsocketaction-v1-core","supplementalgroupsstrategyoptions-v1beta1-extensions","subjectrulesreviewstatus-v1-authorization","subject-v1-rbac","storageosvolumesource-v1-core","storageospersistentvolumesource-v1-core","statusdetails-v1-meta","statuscause-v1-meta","status-v1-meta","statefulsetupdatestrategy-v1-apps","statefulsetcondition-v1-apps","sessionaffinityconfig-v1-core","servicereference-v1beta1-admissionregistration","serviceport-v1-core","serveraddressbyclientcidr-v1-meta","securitycontext-v1-core","secretvolumesource-v1-core","secretreference-v1-core","secretprojection-v1-core","secretkeyselector-v1-core","secretenvsource-v1-core","scaleiovolumesource-v1-core","scaleiopersistentvolumesource-v1-core","scale-v1-autoscaling","selinuxstrategyoptions-v1beta1-extensions","selinuxoptions-v1-core","runasuserstrategyoptions-v1beta1-extensions","rulewithoperations-v1beta1-admissionregistration","rule-v1alpha1-admissionregistration","rollingupdatestatefulsetstrategy-v1-apps","rollbackconfig-v1beta1-apps","roleref-v1-rbac","resourcerule-v1-authorization","resourcerequirements-v1-core","resourcemetricstatus-v2beta1-autoscaling","resourcemetricsource-v2beta1-autoscaling","resourcefieldselector-v1-core","resourceattributes-v1-authorization","replicationcontrollercondition-v1-core","replicasetcondition-v1-apps","rbdvolumesource-v1-core","rbdpersistentvolumesource-v1-core","quobytevolumesource-v1-core","quantity-resource-core","projectedvolumesource-v1-core","probe-v1-core","preferredschedulingterm-v1-core","preconditions-v1-meta","portworxvolumesource-v1-core","policyrule-v1-rbac","podsmetricstatus-v2beta1-autoscaling","podsmetricsource-v2beta1-autoscaling","podsecuritycontext-v1-core","poddnsconfigoption-v1-core","poddnsconfig-v1-core","podcondition-v1-core","podantiaffinity-v1-core","podaffinityterm-v1-core","podaffinity-v1-core","photonpersistentdiskvolumesource-v1-core","persistentvolumeclaimvolumesource-v1-core","persistentvolumeclaimcondition-v1-core","patch-v1-meta","ownerreference-v1-meta","objectreference-v1-core","objectmetricstatus-v2beta1-autoscaling","objectmetricsource-v2beta1-autoscaling","objectmeta-v1-meta","objectfieldselector-v1-core","nonresourcerule-v1-authorization","nonresourceattributes-v1-authorization","nodesysteminfo-v1-core","nodeselectorterm-v1-core","nodeselectorrequirement-v1-core","nodeselector-v1-core","nodedaemonendpoints-v1-core","nodeconfigsource-v1-core","nodecondition-v1-core","nodeaffinity-v1-core","nodeaddress-v1-core","networkpolicyport-v1-networking","networkpolicypeer-v1-networking","networkpolicyingressrule-v1-networking","networkpolicyegressrule-v1-networking","nfsvolumesource-v1-core","microtime-v1-meta","metricstatus-v2beta1-autoscaling","metricspec-v2beta1-autoscaling","localvolumesource-v1-core","localobjectreference-v1-core","loadbalancerstatus-v1-core","loadbalanceringress-v1-core","listmeta-v1-meta","limitrangeitem-v1-core","lifecycle-v1-core","labelselectorrequirement-v1-meta","labelselector-v1-meta","keytopath-v1-core","jobtemplatespec-v1beta1-batch","jobcondition-v1-batch","jsonschemapropsorbool-v1beta1-apiextensions","jsonschemapropsorarray-v1beta1-apiextensions","jsonschemaprops-v1beta1-apiextensions","json-v1beta1-apiextensions","initializers-v1-meta","initializer-v1-meta","ingresstls-v1beta1-extensions","ingressrule-v1beta1-extensions","ingressbackend-v1beta1-extensions","iscsivolumesource-v1-core","iscsipersistentvolumesource-v1-core","ipblock-v1-networking","idrange-v1beta1-extensions","hostportrange-v1beta1-extensions","hostpathvolumesource-v1-core","hostalias-v1-core","horizontalpodautoscalercondition-v2beta1-autoscaling","handler-v1-core","httpingressrulevalue-v1beta1-extensions","httpingresspath-v1beta1-extensions","httpheader-v1-core","httpgetaction-v1-core","groupversionfordiscovery-v1-meta","glusterfsvolumesource-v1-core","gitrepovolumesource-v1-core","gcepersistentdiskvolumesource-v1-core","flockervolumesource-v1-core","flexvolumesource-v1-core","fsgroupstrategyoptions-v1beta1-extensions","fcvolumesource-v1-core","externaldocumentation-v1beta1-apiextensions","execaction-v1-core","eviction-v1beta1-policy","eventsource-v1-core","eventseries-v1-core","envvarsource-v1-core","envvar-v1-core","envfromsource-v1-core","endpointsubset-v1-core","endpointport-v1-core","endpointaddress-v1-core","emptydirvolumesource-v1-core","downwardapivolumesource-v1-core","downwardapivolumefile-v1-core","downwardapiprojection-v1-core","deploymentcondition-v1-apps","deleteoptions-v1-meta","daemonsetupdatestrategy-v1-apps","daemonsetcondition-v1-apps","daemonendpoint-v1-core","customresourcevalidation-v1beta1-apiextensions","customresourcedefinitionnames-v1beta1-apiextensions","customresourcedefinitioncondition-v1beta1-apiextensions","crossversionobjectreference-v1-autoscaling","containerstatewaiting-v1-core","containerstateterminated-v1-core","containerstaterunning-v1-core","containerstate-v1-core","containerport-v1-core","containerimage-v1-core","configmapvolumesource-v1-core","configmapprojection-v1-core","configmapkeyselector-v1-core","configmapenvsource-v1-core","componentcondition-v1-core","clientipconfig-v1-core","cindervolumesource-v1-core","certificatesigningrequestcondition-v1beta1-certificates","cephfsvolumesource-v1-core","cephfspersistentvolumesource-v1-core","capabilities-v1-core","csipersistentvolumesource-v1-core","azurefilevolumesource-v1-core","azurefilepersistentvolumesource-v1-core","azurediskvolumesource-v1-core","attachedvolume-v1-core","allowedhostpath-v1beta1-extensions","allowedflexvolume-v1beta1-extensions","aggregationrule-v1-rbac","affinity-v1-core","awselasticblockstorevolumesource-v1-core","apiversions-v1-meta","apiservicecondition-v1beta1-apiregistration","apiresource-v1-meta","apigroup-v1-meta","-strong-definitions-strong-","watch-list-all-namespaces-626","watch-list-625","watch-624","list-all-namespaces-623","list-622","read-621","-strong-read-operations-strong--620","delete-collection-619","delete-618","replace-617","patch-616","create-615","-strong-write-operations-strong--614","networkpolicy-v1-networking","create-613","-strong-write-operations-strong--612","tokenreview-v1-authentication","create-611","-strong-write-operations-strong--610","subjectaccessreview-v1-authorization","watch-list-all-namespaces-609","watch-list-608","watch-607","list-all-namespaces-606","list-605","read-604","-strong-read-operations-strong--603","delete-collection-602","delete-601","replace-600","patch-599","create-598","-strong-write-operations-strong--597","serviceaccount-v1-core","create-596","-strong-write-operations-strong--595","selfsubjectrulesreview-v1-authorization","create-594","-strong-write-operations-strong--593","selfsubjectaccessreview-v1-authorization","watch-list-all-namespaces-592","watch-list-591","watch-590","list-all-namespaces-589","list-588","read-587","-strong-read-operations-strong--586","delete-collection-585","delete-584","replace-583","patch-582","create-581","-strong-write-operations-strong--580","rolebinding-v1-rbac","watch-list-all-namespaces-579","watch-list-578","watch-577","list-all-namespaces-576","list-575","read-574","-strong-read-operations-strong--573","delete-collection-572","delete-571","replace-570","patch-569","create-568","-strong-write-operations-strong--567","role-v1-rbac","replace-status-566","read-status-565","patch-status-564","-strong-status-operations-strong--563","watch-list-all-namespaces-562","watch-list-561","watch-560","list-all-namespaces-559","list-558","read-557","-strong-read-operations-strong--556","delete-collection-555","delete-554","replace-553","patch-552","create-551","-strong-write-operations-strong--550","resourcequota-v1-core","replace-status-549","read-status-548","patch-status-547","-strong-status-operations-strong--546","watch-list-545","watch-544","list-543","read-542","-strong-read-operations-strong--541","delete-collection-540","delete-539","replace-538","patch-537","create-536","-strong-write-operations-strong--535","persistentvolume-v1-core","replace-proxy-path-534","replace-proxy-533","replace-connect-proxy-path-532","replace-connect-proxy-531","head-connect-proxy-path-530","head-connect-proxy-529","get-proxy-path-528","get-proxy-527","get-connect-proxy-path-526","get-connect-proxy-525","delete-proxy-path-524","delete-proxy-523","delete-connect-proxy-path-522","delete-connect-proxy-521","create-proxy-path-520","create-proxy-519","create-connect-proxy-path-518","create-connect-proxy-517","-strong-proxy-operations-strong--516","replace-status-515","read-status-514","patch-status-513","-strong-status-operations-strong--512","watch-list-511","watch-510","list-509","read-508","-strong-read-operations-strong--507","delete-collection-506","delete-505","replace-504","patch-503","create-502","-strong-write-operations-strong--501","node-v1-core","replace-status-500","read-status-499","patch-status-498","-strong-status-operations-strong--497","watch-list-496","watch-495","list-494","read-493","-strong-read-operations-strong--492","delete-491","replace-490","patch-489","create-488","-strong-write-operations-strong--487","namespace-v1-core","create-486","-strong-write-operations-strong--485","localsubjectaccessreview-v1-authorization","list-484","read-483","-strong-read-operations-strong--482","componentstatus-v1-core","watch-list-481","watch-480","list-479","read-478","-strong-read-operations-strong--477","delete-collection-476","delete-475","replace-474","patch-473","create-472","-strong-write-operations-strong--471","clusterrolebinding-v1-rbac","watch-list-470","watch-469","list-468","read-467","-strong-read-operations-strong--466","delete-collection-465","delete-464","replace-463","patch-462","create-461","-strong-write-operations-strong--460","clusterrole-v1-rbac","replace-status-459","-strong-status-operations-strong--458","watch-list-457","watch-456","list-455","read-454","-strong-read-operations-strong--453","delete-collection-452","delete-451","replace-450","patch-449","create-448","-strong-write-operations-strong--447","certificatesigningrequest-v1beta1-certificates","create-446","-strong-write-operations-strong--445","binding-v1-core","replace-status-444","-strong-status-operations-strong--443","watch-list-442","watch-441","list-440","read-439","-strong-read-operations-strong--438","delete-collection-437","delete-436","replace-435","patch-434","create-433","-strong-write-operations-strong--432","apiservice-v1beta1-apiregistration","-strong-cluster-strong-","watch-list-431","watch-430","list-429","read-428","-strong-read-operations-strong--427","delete-collection-426","delete-425","replace-424","patch-423","create-422","-strong-write-operations-strong--421","podsecuritypolicy-v1beta1-extensions","watch-list-all-namespaces-420","watch-list-419","watch-418","list-all-namespaces-417","list-416","read-415","-strong-read-operations-strong--414","delete-collection-413","delete-412","replace-411","patch-410","create-409","-strong-write-operations-strong--408","podpreset-v1alpha1-settings","watch-list-407","watch-406","list-405","read-404","-strong-read-operations-strong--403","delete-collection-402","delete-401","replace-400","patch-399","create-398","-strong-write-operations-strong--397","priorityclass-v1alpha1-scheduling","replace-status-396","read-status-395","patch-status-394","-strong-status-operations-strong--393","watch-list-all-namespaces-392","watch-list-391","watch-390","list-all-namespaces-389","list-388","read-387","-strong-read-operations-strong--386","delete-collection-385","delete-384","replace-383","patch-382","create-381","-strong-write-operations-strong--380","poddisruptionbudget-v1beta1-policy","watch-list-all-namespaces-379","watch-list-378","watch-377","list-all-namespaces-376","list-375","read-374","-strong-read-operations-strong--373","delete-collection-372","delete-371","replace-370","patch-369","create-368","-strong-write-operations-strong--367","podtemplate-v1-core","watch-list-366","watch-365","list-364","read-363","-strong-read-operations-strong--362","delete-collection-361","delete-360","replace-359","patch-358","create-357","-strong-write-operations-strong--356","validatingwebhookconfiguration-v1beta1-admissionregistration","watch-list-355","watch-354","list-353","read-352","-strong-read-operations-strong--351","delete-collection-350","delete-349","replace-348","patch-347","create-346","-strong-write-operations-strong--345","mutatingwebhookconfiguration-v1beta1-admissionregistration","watch-list-344","watch-343","list-342","read-341","-strong-read-operations-strong--340","delete-collection-339","delete-338","replace-337","patch-336","create-335","-strong-write-operations-strong--334","initializerconfiguration-v1alpha1-admissionregistration","replace-status-333","read-status-332","patch-status-331","-strong-status-operations-strong--330","watch-list-all-namespaces-329","watch-list-328","watch-327","list-all-namespaces-326","list-325","read-324","-strong-read-operations-strong--323","delete-collection-322","delete-321","replace-320","patch-319","create-318","-strong-write-operations-strong--317","horizontalpodautoscaler-v1-autoscaling","watch-list-all-namespaces-316","watch-list-315","watch-314","list-all-namespaces-313","list-312","read-311","-strong-read-operations-strong--310","delete-collection-309","delete-308","replace-307","patch-306","create-305","-strong-write-operations-strong--304","limitrange-v1-core","watch-list-all-namespaces-303","watch-list-302","watch-301","list-all-namespaces-300","list-299","read-298","-strong-read-operations-strong--297","delete-collection-296","delete-295","replace-294","patch-293","create-292","-strong-write-operations-strong--291","event-v1-core","replace-status-290","-strong-status-operations-strong--289","watch-list-288","watch-287","list-286","read-285","-strong-read-operations-strong--284","delete-collection-283","delete-282","replace-281","patch-280","create-279","-strong-write-operations-strong--278","customresourcedefinition-v1beta1-apiextensions","watch-list-all-namespaces-277","watch-list-276","watch-275","list-all-namespaces-274","list-273","read-272","-strong-read-operations-strong--271","delete-collection-270","delete-269","replace-268","patch-267","create-266","-strong-write-operations-strong--265","controllerrevision-v1-apps","-strong-metadata-strong-","watch-list-264","watch-263","list-262","read-261","-strong-read-operations-strong--260","delete-collection-259","delete-258","replace-257","patch-256","create-255","-strong-write-operations-strong--254","volumeattachment-v1alpha1-storage","volume-v1-core","watch-list-253","watch-252","list-251","read-250","-strong-read-operations-strong--249","delete-collection-248","delete-247","replace-246","patch-245","create-244","-strong-write-operations-strong--243","storageclass-v1-storage","replace-status-242","read-status-241","patch-status-240","-strong-status-operations-strong--239","watch-list-all-namespaces-238","watch-list-237","watch-236","list-all-namespaces-235","list-234","read-233","-strong-read-operations-strong--232","delete-collection-231","delete-230","replace-229","patch-228","create-227","-strong-write-operations-strong--226","persistentvolumeclaim-v1-core","watch-list-all-namespaces-225","watch-list-224","watch-223","list-all-namespaces-222","list-221","read-220","-strong-read-operations-strong--219","delete-collection-218","delete-217","replace-216","patch-215","create-214","-strong-write-operations-strong--213","secret-v1-core","watch-list-all-namespaces-212","watch-list-211","watch-210","list-all-namespaces-209","list-208","read-207","-strong-read-operations-strong--206","delete-collection-205","delete-204","replace-203","patch-202","create-201","-strong-write-operations-strong--200","configmap-v1-core","-strong-config-storage-strong-","replace-proxy-path-199","replace-proxy-198","replace-connect-proxy-path-197","replace-connect-proxy-196","head-connect-proxy-path-195","head-connect-proxy-194","get-proxy-path-193","get-proxy-192","get-connect-proxy-path-191","get-connect-proxy-190","delete-proxy-path-189","delete-proxy-188","delete-connect-proxy-path-187","delete-connect-proxy-186","create-proxy-path-185","create-proxy-184","create-connect-proxy-path-183","create-connect-proxy-182","-strong-proxy-operations-strong--181","replace-status-180","read-status-179","patch-status-178","-strong-status-operations-strong--177","watch-list-all-namespaces-176","watch-list-175","watch-174","list-all-namespaces-173","list-172","read-171","-strong-read-operations-strong--170","delete-169","replace-168","patch-167","create-166","-strong-write-operations-strong--165","service-v1-core","replace-status-164","read-status-163","patch-status-162","-strong-status-operations-strong--161","watch-list-all-namespaces-160","watch-list-159","watch-158","list-all-namespaces-157","list-156","read-155","-strong-read-operations-strong--154","delete-collection-153","delete-152","replace-151","patch-150","create-149","-strong-write-operations-strong--148","ingress-v1beta1-extensions","watch-list-all-namespaces-147","watch-list-146","watch-145","list-all-namespaces-144","list-143","read-142","-strong-read-operations-strong--141","delete-collection-140","delete-139","replace-138","patch-137","create-136","-strong-write-operations-strong--135","endpoints-v1-core","-strong-discovery-load-balancing-strong-","patch-scale-134","replace-scale-133","read-scale-132","-strong-misc-operations-strong--131","replace-status-130","read-status-129","patch-status-128","-strong-status-operations-strong--127","watch-list-all-namespaces-126","watch-list-125","watch-124","list-all-namespaces-123","list-122","read-121","-strong-read-operations-strong--120","delete-collection-119","delete-118","replace-117","patch-116","create-115","-strong-write-operations-strong--114","statefulset-v1-apps","patch-scale-113","replace-scale-112","read-scale-111","-strong-misc-operations-strong--110","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","replace-96","patch-95","create-94","-strong-write-operations-strong--93","replicationcontroller-v1-core","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","replace-75","patch-74","create-73","-strong-write-operations-strong--72","replicaset-v1-apps","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","replace-57","patch-56","create-eviction","create-55","-strong-write-operations-strong--54","pod-v1-core","replace-status-53","read-status-52","patch-status-51","-strong-status-operations-strong--50","watch-list-all-namespaces-49","watch-list-48","watch-47","list-all-namespaces-46","list-45","read-44","-strong-read-operations-strong--43","delete-collection-42","delete-41","replace-40","patch-39","create-38","-strong-write-operations-strong--37","job-v1-batch","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","replace-23","patch-22","create-21","-strong-write-operations-strong--20","deployment-v1-apps","replace-status-19","read-status-18","patch-status-17","-strong-status-operations-strong--16","watch-list-all-namespaces-15","watch-list-14","watch-13","list-all-namespaces-12","list-11","read-10","-strong-read-operations-strong--9","delete-collection-8","delete-7","replace-6","patch-5","create-4","-strong-write-operations-strong--3","daemonset-v1-apps","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","replace","patch","create","-strong-write-operations-strong-","cronjob-v1beta1-batch","container-v1-core","-strong-workloads-strong-","resource-operations","resource-objects","resource-categories","-strong-api-overview-strong-"]};})(); \ No newline at end of file From 3cfced7fde14dcd7d55451df333263167f208c90 Mon Sep 17 00:00:00 2001 From: Ibrahim AshShohail Date: Mon, 5 Feb 2018 01:06:04 +0300 Subject: [PATCH 061/329] Fix links to logging with sidecar (#7223) Signed-off-by: Ibrahim AshShohail --- docs/tasks/debug-application-cluster/logging-stackdriver.md | 2 +- docs/user-journeys/users/application-developer/advanced.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tasks/debug-application-cluster/logging-stackdriver.md b/docs/tasks/debug-application-cluster/logging-stackdriver.md index 104ee36bf5..67c9893e10 100644 --- a/docs/tasks/debug-application-cluster/logging-stackdriver.md +++ b/docs/tasks/debug-application-cluster/logging-stackdriver.md @@ -10,7 +10,7 @@ with the [overview of logging in Kubernetes](/docs/concepts/cluster-administrati **Note:** By default, Stackdriver logging collects only your container's standard output and standard error streams. To collect any logs your application writes to a file (for example), -see the [sidecar approach](/docs/concepts/cluster-administration/logging#using-a-sidecar-container-with-the-logging-agent) +see the [sidecar approach](/docs/concepts/cluster-administration/logging#sidecar-container-with-a-logging-agent) in the Kubernetes logging overview. ## Deploying diff --git a/docs/user-journeys/users/application-developer/advanced.md b/docs/user-journeys/users/application-developer/advanced.md index 4d76ef8ca8..b1366d62e9 100644 --- a/docs/user-journeys/users/application-developer/advanced.md +++ b/docs/user-journeys/users/application-developer/advanced.md @@ -29,7 +29,7 @@ Now you know the set of API objects that Kubernetes provides. Understanding the #### Container-level features As you may know, it's an antipattern to migrate an entire app (e.g. containerized Rails app, MySQL database, and all) into a single Pod. That being said, there are some very useful patterns that go beyond a 1:1 correspondence between a container and its Pod: -* **Sidecar container**: Although your Pod should still have a single main container, you can add a secondary container that acts as a helper (see a [logging example](/docs/concepts/cluster-administration/logging/#using-a-sidecar-container-with-the-logging-agent){:target="_blank"}). Two containers within a single Pod can communicate [via a shared volume](/docs/tasks/access-application-cluster/communicate-containers-same-pod-shared-volume/){:target="_blank"}. +* **Sidecar container**: Although your Pod should still have a single main container, you can add a secondary container that acts as a helper (see a [logging example](/docs/concepts/cluster-administration/logging/#sidecar-container-with-a-logging-agent){:target="_blank"}). Two containers within a single Pod can communicate [via a shared volume](/docs/tasks/access-application-cluster/communicate-containers-same-pod-shared-volume/){:target="_blank"}. * **Init containers**: *Init containers* run before any of a Pod's *app containers* (such as main and sidecar containers). [Read more](/docs/concepts/workloads/pods/init-containers/){:target="_blank"}, see an [nginx server example](/docs/tasks/configure-pod-container/configure-pod-initialization/){:target="_blank"}, and [learn how to debug these containers](/docs/tasks/debug-application-cluster/debug-init-containers/){:target="_blank"}. #### Pod configuration From 2101d401e7399e115bfc903f2ceb03190a5b09b3 Mon Sep 17 00:00:00 2001 From: Qiming Date: Mon, 5 Feb 2018 06:09:04 +0800 Subject: [PATCH 062/329] Fix deployment redirects (#7225) Closes: #7222 --- _redirects | 1 - docs/concepts/workloads/controllers/daemonset.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/_redirects b/_redirects index e9b4c86be6..83cb8fd16a 100644 --- a/_redirects +++ b/_redirects @@ -121,7 +121,6 @@ /docs/concepts/workloads/controllers/cron-jobs/deployment/ /docs/concepts/workloads/controllers/cron-jobs/ 301 /docs/concepts/workloads/controllers/daemonset/docs/concepts/workloads/pods/pod/ /docs/concepts/workloads/pods/pod/ 301 /docs/concepts/workloads/controllers/deployment/docs/concepts/workloads/pods/pod/ /docs/concepts/workloads/pods/pod/ 301 -/docs/concepts/workloads/controllers/deployment.md /docs/concepts/workloads/controllers/deployment/ 301 /docs/concepts/workloads/controllers/job/ /docs/concepts/workloads/controllers/jobs-run-to-completion/ 301 /docs/concepts/workloads/controllers/statefulsets/ /docs/concepts/workloads/controllers/statefulset/ 301 /docs/concepts/workloads/controllers/statefulset.md /docs/concepts/workloads/controllers/statefulset/ 301 diff --git a/docs/concepts/workloads/controllers/daemonset.md b/docs/concepts/workloads/controllers/daemonset.md index ff9f37f934..f6737ca743 100644 --- a/docs/concepts/workloads/controllers/daemonset.md +++ b/docs/concepts/workloads/controllers/daemonset.md @@ -193,7 +193,7 @@ in cluster bootstrapping cases. Also, static Pods may be deprecated in the futu ### Deployments -DaemonSets are similar to [Deployments](/docs/concepts/workloads/controllers/deployment.md) in that +DaemonSets are similar to [Deployments](/docs/concepts/workloads/controllers/deployment/) in that they both create Pods, and those Pods have processes which are not expected to terminate (e.g. web servers, storage servers). From d59aca7f654eebb7e62357a4c088473007c35659 Mon Sep 17 00:00:00 2001 From: Oilbeater Date: Mon, 5 Feb 2018 06:10:04 +0800 Subject: [PATCH 063/329] fix spell error in getting started guide. (#7227) --- docs/getting-started-guides/ubuntu/troubleshooting.md | 2 +- docs/getting-started-guides/ubuntu/upgrades.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started-guides/ubuntu/troubleshooting.md b/docs/getting-started-guides/ubuntu/troubleshooting.md index 7c149128b3..fdcc2ad8fd 100644 --- a/docs/getting-started-guides/ubuntu/troubleshooting.md +++ b/docs/getting-started-guides/ubuntu/troubleshooting.md @@ -190,7 +190,7 @@ This is caused by the API load balancer not forwarding ports in the context of t Note that the default port used by CDK for the Kubernetes Master API is 6443 while the port exposed by the load balancer is 443. -1. Start helming again! +1. Start helm again! ``` helm install --debug diff --git a/docs/getting-started-guides/ubuntu/upgrades.md b/docs/getting-started-guides/ubuntu/upgrades.md index c10e968dfb..f977ea5ae6 100644 --- a/docs/getting-started-guides/ubuntu/upgrades.md +++ b/docs/getting-started-guides/ubuntu/upgrades.md @@ -39,7 +39,7 @@ your support plan on the upgrade frequency. Important operational considerations and changes in behaviour will always be documented in the release notes. You can use `juju status` to see if an upgrade is available. -There may be an upgrade available for kubernetes, ectd, or both. +There may be an upgrade available for kubernetes, etcd, or both. ### Upgrade etcd From aae947f5f46d12febb34fec32d77eafc7a97569e Mon Sep 17 00:00:00 2001 From: Lihua Tang Date: Mon, 5 Feb 2018 06:17:05 +0800 Subject: [PATCH 064/329] Typo fix: intstructions -> instructions (#7230) --- docs/setup/independent/troubleshooting-kubeadm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/independent/troubleshooting-kubeadm.md b/docs/setup/independent/troubleshooting-kubeadm.md index 9aa8a4f0ef..8c88a1bc66 100644 --- a/docs/setup/independent/troubleshooting-kubeadm.md +++ b/docs/setup/independent/troubleshooting-kubeadm.md @@ -58,7 +58,7 @@ This may be caused by a number of problems. The most common are: There are two common ways to fix the cgroup driver problem: - 1. Install docker again following intstructions + 1. Install docker again following instructions [here](/docs/setup/independent/install-kubeadm/#installing-docker). 1. Change the kubelet config to match the Docker cgroup driver manually, you can refer to [Errors on CentOS when setting up masters](#errors-on-centos-when-setting-up-masters) From 3591e4e9ac4e79ca01138de1c79f67c2a1291f9d Mon Sep 17 00:00:00 2001 From: Sam Foo Date: Sun, 4 Feb 2018 22:41:04 -0500 Subject: [PATCH 065/329] Fix note callout on kubespray.md (#7234) Minor fix to malformed note --- docs/getting-started-guides/kubespray.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started-guides/kubespray.md b/docs/getting-started-guides/kubespray.md index b1860e939c..f5c137cc7e 100644 --- a/docs/getting-started-guides/kubespray.md +++ b/docs/getting-started-guides/kubespray.md @@ -40,7 +40,7 @@ Kubespray provides the following utilities to help provision your environment: * [kubespray-cli](https://github.com/kubernetes-incubator/kubespray/blob/master/docs/getting-started.md) **Note:** kubespray-cli is no longer actively maintained. -{. :note} +{: .note} ### (2/5) Compose an inventory file From 584ac748cc595ebc0655f887f2ca984e9899d07e Mon Sep 17 00:00:00 2001 From: Ilya Dmitrichenko Date: Mon, 5 Feb 2018 16:18:11 +0100 Subject: [PATCH 066/329] Remove stale ref left-over from #6668 (#7239) --- _data/setup.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/_data/setup.yml b/_data/setup.yml index 182b2892ac..a9edf57a4d 100644 --- a/_data/setup.yml +++ b/_data/setup.yml @@ -73,8 +73,6 @@ toc: - docs/getting-started-guides/rkt/index.md - docs/getting-started-guides/rkt/notes.md - - docs/getting-started-guides/mesos-docker.md - - title: Bare Metal section: - docs/getting-started-guides/coreos/bare_metal_offline.md From a912a5783c9df2cf0de07fa3c3c28914a5c641b0 Mon Sep 17 00:00:00 2001 From: Kay Yan Date: Mon, 5 Feb 2018 23:21:10 +0800 Subject: [PATCH 067/329] fix a typo in keps (#7238) --- docs/imported/community/keps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/imported/community/keps.md b/docs/imported/community/keps.md index ee2f8b66df..dbc9190276 100755 --- a/docs/imported/community/keps.md +++ b/docs/imported/community/keps.md @@ -191,7 +191,7 @@ Metadata items: * The SIG that is most closely associated with this KEP. If there is code or other artifacts that will result from this KEP, then it is expected that this SIG will take responsiblity for the bulk of those artifacts. - * Sigs are listed as `sig-abc-def` where the name matches up with the + * SIGs are listed as `sig-abc-def` where the name matches up with the directory in the `kubernetes/community` repo. * **participating-sigs** Optional * A list of SIGs that are involved or impacted by this KEP. From 89c6ffff95a00bab569074c13bd67ec7a8695e71 Mon Sep 17 00:00:00 2001 From: Wei Li Date: Mon, 5 Feb 2018 23:22:12 +0800 Subject: [PATCH 068/329] Typo fix: instucts -> instructs (#7189) * Typo fix: instucts -> instructs * Rephrase description --- docs/tasks/tools/install-kubectl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/tools/install-kubectl.md b/docs/tasks/tools/install-kubectl.md index 7bf9190a1a..0dcd3bb15b 100644 --- a/docs/tasks/tools/install-kubectl.md +++ b/docs/tasks/tools/install-kubectl.md @@ -120,7 +120,7 @@ kubectl is available as a [snap](https://snapcraft.io/) application. install-kubectl.ps1 [-DownloadLocation ] If no Downloadlocation is specified, kubectl will be installed in users temp Directory -2. The installer creates $HOME/.kube and instucts to create a config file +2. The installer creates $HOME/.kube and instructs it to create a config file 3. Updating re-run Install-Script to update the installer re-run install-kubectl.ps1 to install latest binaries From d5314d0325d9dd58f48089be208cdd19c7bae3a0 Mon Sep 17 00:00:00 2001 From: FanYang Date: Mon, 5 Feb 2018 23:36:08 +0800 Subject: [PATCH 069/329] fix:some typo (#7233) --- docs/home/contribute/style-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/home/contribute/style-guide.md b/docs/home/contribute/style-guide.md index db330d32ab..95f3fb3dd0 100644 --- a/docs/home/contribute/style-guide.md +++ b/docs/home/contribute/style-guide.md @@ -150,7 +150,7 @@ The output is similar to this: A list of Kubernetes-specific terms and words to be used consistently across the site. - +
    TermUseage
    TermUsage
    TBDTBD
    {% endcomment %} From d10f643e20f10010b010186d6b9e46978812429e Mon Sep 17 00:00:00 2001 From: Sam Foo Date: Mon, 5 Feb 2018 12:15:26 -0500 Subject: [PATCH 070/329] Remove duplicate words (#7243) * Remove duplicate words * Remove generated-reference change --- docs/admin/authorization/rbac.md | 2 +- docs/concepts/api-extension/custom-resources.md | 2 +- docs/concepts/overview/extending.md | 2 +- .../object-management-kubectl/declarative-config.md | 2 +- docs/concepts/storage/dynamic-provisioning.md | 2 +- docs/concepts/storage/persistent-volumes.md | 2 +- docs/concepts/storage/volumes.md | 2 +- docs/concepts/workloads/controllers/replicaset.md | 2 +- .../setup-tools/kubeadm/implementation-details.md | 12 ++++++------ docs/setup/independent/high-availability.md | 2 +- .../configure-persistent-volume-storage.md | 2 +- .../configure-projected-volume-storage.md | 2 +- docs/tutorials/stateful-application/cassandra.md | 2 +- .../users/application-developer/foundational.md | 4 ++-- 14 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/admin/authorization/rbac.md b/docs/admin/authorization/rbac.md index 83649663b6..d171694b07 100644 --- a/docs/admin/authorization/rbac.md +++ b/docs/admin/authorization/rbac.md @@ -789,7 +789,7 @@ In order from most secure to least secure, the approaches are: If you want all applications in a namespace to have a role, no matter what service account they use, you can grant a role to the service account group for that namespace. - For example, grant read-only permission within "my-namespace" to to all service accounts in that namespace: + For example, grant read-only permission within "my-namespace" to all service accounts in that namespace: ```shell kubectl create rolebinding serviceaccounts-view \ diff --git a/docs/concepts/api-extension/custom-resources.md b/docs/concepts/api-extension/custom-resources.md index 15fa657559..8fecaf0c4a 100644 --- a/docs/concepts/api-extension/custom-resources.md +++ b/docs/concepts/api-extension/custom-resources.md @@ -159,7 +159,7 @@ Aggregated APIs offer more advanced API features and customization of other feat | Multi-versioning | Allows serving the same object through two API versions. Can help ease API changes like renaming fields. Less important if you control your client versions. | No | Yes | | Custom Storage | If you need storage with a different performance mode (for example, time-series database instead of key-value store) or isolation for security (for example, encryption secrets or different | No | Yes | | Custom Business Logic | Perform arbitrary checks or actions when creating, reading, updating or deleting an object | No, but can get some of the same effects with Initializers or Finalizers (requires programming) | Yes | -| Subresources | {::nomarkdown}
    • Add extra operations other than CRUD, such as "scale" or "exec"
    • Allows systems like like HorizontalPodAutoscaler and PodDisruptionBudget interact with your new resource
    • Finer-grained access control: user writes spec section, controller writes status section.
    • Allows incrementing object Generation on custom resource data mutation (requires separate spec and status sections in the resource)
    {:/} | No but planned | Yes, any Subresource | +| Subresources | {::nomarkdown}
    • Add extra operations other than CRUD, such as "scale" or "exec"
    • Allows systems like HorizontalPodAutoscaler and PodDisruptionBudget interact with your new resource
    • Finer-grained access control: user writes spec section, controller writes status section.
    • Allows incrementing object Generation on custom resource data mutation (requires separate spec and status sections in the resource)
    {:/} | No but planned | Yes, any Subresource | | strategic-merge-patch | The new endpoints support PATCH with `Content-Type: application/strategic-merge-patch+json`. Useful for updating objects that may be modified both locally, and by the server. For more information, see ["Update API Objects in Place Using kubectl patch"](/docs/tasks/run-application/update-api-object-kubectl-patch/) | No | Yes | | Protocol Buffers | The new resource supports clients that want to use Protocol Buffers | No | Yes | | OpenAPI Schema | Is there an OpenAPI (swagger) schema for the types that can be dynamically fetched from the server? Is the user protected from misspelling field names by ensuring only allowed fields are set? Are types enforced (in other words, don't put an `int` in a `string` field?) | No but planned | Yes | diff --git a/docs/concepts/overview/extending.md b/docs/concepts/overview/extending.md index d13e732f0e..4d27dee318 100644 --- a/docs/concepts/overview/extending.md +++ b/docs/concepts/overview/extending.md @@ -181,7 +181,7 @@ Different networking fabrics can be supported via node-level [Network Plugins](/ ### Scheduler Extensions The scheduler is a special type of controller that watches pods, and assigns -pods to nodes. The default scheduler can be be replaced entirely, while +pods to nodes. The default scheduler can be replaced entirely, while continuing to use other Kubernetes components, or [multiple schedulers](/docs/tasks/administer-cluster/configure-multiple-schedulers/) can run at the same time. diff --git a/docs/concepts/overview/object-management-kubectl/declarative-config.md b/docs/concepts/overview/object-management-kubectl/declarative-config.md index 7bf37d22b5..facfb49094 100644 --- a/docs/concepts/overview/object-management-kubectl/declarative-config.md +++ b/docs/concepts/overview/object-management-kubectl/declarative-config.md @@ -517,7 +517,7 @@ Primitive fields are replaced or cleared. ### Merging changes to map fields -Fields that represent maps are merged by comparing each of the subfields or elements of of the map: +Fields that represent maps are merged by comparing each of the subfields or elements of the map: **Note:** '-' is used for "not applicable" because the value is not used. diff --git a/docs/concepts/storage/dynamic-provisioning.md b/docs/concepts/storage/dynamic-provisioning.md index e6bee64a26..3370dc9da8 100644 --- a/docs/concepts/storage/dynamic-provisioning.md +++ b/docs/concepts/storage/dynamic-provisioning.md @@ -30,7 +30,7 @@ that provisioner when provisioning. A cluster administrator can define and expose multiple flavors of storage (from the same or different storage systems) within a cluster, each with a custom set of parameters. This design also ensures that end users don’t have to worry -about the the complexity and nuances of how storage is provisioned, but still +about the complexity and nuances of how storage is provisioned, but still have the ability to select from multiple storage options. More information on storage classes can be found diff --git a/docs/concepts/storage/persistent-volumes.md b/docs/concepts/storage/persistent-volumes.md index 9091f39277..4256900d8d 100644 --- a/docs/concepts/storage/persistent-volumes.md +++ b/docs/concepts/storage/persistent-volumes.md @@ -74,7 +74,7 @@ Once a user has a claim and that claim is bound, the bound PV belongs to the use {% assign for_k8s_version="v1.9" %}{% include feature-state-alpha.md %} The purpose of the PVC protection is to ensure that PVCs in active use by a pod are not removed from the system as this may result in data loss. -**Note:** PVC is in active use by a pod when the the pod status is `Pending` and the pod is assigned to a node or the pod status is `Running`. +**Note:** PVC is in active use by a pod when the pod status is `Pending` and the pod is assigned to a node or the pod status is `Running`. {: .note} When the [PVC protection alpha feature](/docs/tasks/administer-cluster/pvc-protection/) is enabled, if a user deletes a PVC in active use by a pod, the PVC is not removed immediately. PVC removal is postponed until the PVC is no longer actively used by any pods. diff --git a/docs/concepts/storage/volumes.md b/docs/concepts/storage/volumes.md index b32b053f32..3c49b03672 100644 --- a/docs/concepts/storage/volumes.md +++ b/docs/concepts/storage/volumes.md @@ -239,7 +239,7 @@ A CSI persistent volume has the following fields for users to specify: name can have '`.`', '`-`', '`_`' or digits in it. - `volumeHandle`: A string value that uniquely identify the volume name returned from the CSI volume plugin's `CreateVolume` call. The volume handle is then - used in all subsequent calls to the the volume driver for referencing the volume. + used in all subsequent calls to the volume driver for referencing the volume. - `readOnly`: An optional boolean value indicating whether the volume is to be published as read only. Default is false. diff --git a/docs/concepts/workloads/controllers/replicaset.md b/docs/concepts/workloads/controllers/replicaset.md index 8bbc6e08d4..750346e7b0 100644 --- a/docs/concepts/workloads/controllers/replicaset.md +++ b/docs/concepts/workloads/controllers/replicaset.md @@ -181,7 +181,7 @@ from service for debugging, data recovery, etc. Pods that are removed in this wa ### Scaling a ReplicaSet A ReplicaSet can be easily scaled up or down by simply updating the `.spec.replicas` field. The ReplicaSet controller -ensures that that a desired number of pods with a matching label selector are available and operational. +ensures that a desired number of pods with a matching label selector are available and operational. ### ReplicaSet as an Horizontal Pod Autoscaler Target diff --git a/docs/reference/setup-tools/kubeadm/implementation-details.md b/docs/reference/setup-tools/kubeadm/implementation-details.md index 12cd673859..6a57e131b8 100644 --- a/docs/reference/setup-tools/kubeadm/implementation-details.md +++ b/docs/reference/setup-tools/kubeadm/implementation-details.md @@ -59,7 +59,7 @@ in a majority of cases, and the most intuitive location; other constants paths a - `apiserver.crt`, `apiserver.key` for the API server certificate - `apiserver-kubelet-client.crt`, `apiserver-kubelet-client.key` for the client certificate used by the API server to connect to the kubelets securely - `sa.pub`, `sa.key` for the key used by the controller manager when signing ServiceAccount - - `front-proxy-ca.crt`, `front-proxy-ca.key` for the the front proxy certificate authority + - `front-proxy-ca.crt`, `front-proxy-ca.key` for the front proxy certificate authority - `front-proxy-client.crt`, `front-proxy-client.key` for the front proxy client ## kubeadm init workflow internal design @@ -200,7 +200,7 @@ Static Pod manifest share a set of common properties: - Leader election is enabled for both the controller-manager and the scheduler - Controller-manager and the scheduler will reference kubeconfig files with their respective, unique identities - All static Pods gets any extra flags specified by the user as described in [passing custom arguments to control plane components](kubeadm-init.md/#custom-args) -- All static Pods gets any extra extra Volumes specified by the user (Host path) +- All static Pods gets any extra Volumes specified by the user (Host path) Please note that: @@ -401,7 +401,7 @@ RBAC role `system:node-bootstrapper`. #### Setup auto approval for new bootstrap tokens -Kubeadm ensures that the Boostrap Token will get its CSR request automatically approved by the the csrapprover controller. +Kubeadm ensures that the Boostrap Token will get its CSR request automatically approved by the csrapprover controller. This is implemented by creating ClusterRoleBinding named `kubeadm:node-autoapprove-bootstrap` between the `system:bootstrappers:kubeadm:default-node-token` group and the default role `system:certificates.k8s.io:certificatesigningrequests:nodeclient`. @@ -412,7 +412,7 @@ POST permission to `/apis/certificates.k8s.io/certificatesigningrequests/nodecli #### Setup nodes certificate rotation with auto approval Kubeadm ensures that certificate rotation is enabled for nodes, and that new certificate request for nodes will get its CSR request -automatically approved by the the csrapprover controller. +automatically approved by the csrapprover controller. This is implemented by creating ClusterRoleBinding named `kubeadm:node-autoapprove-certificate-rotation` between the `system:nodes` group and the default role `system:certificates.k8s.io:certificatesigningrequests:selfnodeclient`. @@ -570,7 +570,7 @@ If kubeadm is invoked with `--feature-gates=DynamicKubeletConfig`: 1. Read the kubelet base configuration from the `kubelet-base-config-v1.9` ConfigMap in the `kube-system` namespace using the Bootstrap Token credentials, and write it to disk as kubelet init configuration file `/var/lib/kubelet/config/init/kubelet` 2. As soon as kubelet starts with the Node's own credential (`/etc/kubernetes/kubelet.conf`), update current node configuration - specifying that the the source for the node/kubelet configuration is the above ConfigMap. + specifying that the source for the node/kubelet configuration is the above ConfigMap. Please note that: @@ -578,4 +578,4 @@ Please note that: {% endcapture %} -{% include templates/concept.md %} \ No newline at end of file +{% include templates/concept.md %} diff --git a/docs/setup/independent/high-availability.md b/docs/setup/independent/high-availability.md index 32e7878500..29fd93d2a7 100644 --- a/docs/setup/independent/high-availability.md +++ b/docs/setup/independent/high-availability.md @@ -152,7 +152,7 @@ This should result in `client.pem` and `client-key.pem` being created. In order to copy certs between machines, you must enable SSH access for `scp`. -1. First, open new new tabs in your shell for `etcd1` and `etcd2`. Ensure you are SSHed into all three machines and then run the following (it will be a lot quicker if you use tmux syncing - to do this in iTerm enter `cmd+shift+i`): +1. First, open new tabs in your shell for `etcd1` and `etcd2`. Ensure you are SSHed into all three machines and then run the following (it will be a lot quicker if you use tmux syncing - to do this in iTerm enter `cmd+shift+i`): ```shell export PEER_NAME=$(hostname) diff --git a/docs/tasks/configure-pod-container/configure-persistent-volume-storage.md b/docs/tasks/configure-pod-container/configure-persistent-volume-storage.md index 6542e93955..70119be3c0 100644 --- a/docs/tasks/configure-pod-container/configure-persistent-volume-storage.md +++ b/docs/tasks/configure-pod-container/configure-persistent-volume-storage.md @@ -63,7 +63,7 @@ Here is the configuration file for the hostPath PersistentVolume: {% include code.html language="yaml" file="task-pv-volume.yaml" ghlink="/docs/tasks/configure-pod-container/task-pv-volume.yaml" %} The configuration file specifies that the volume is at `/mnt/data` on the -the cluster's Node. The configuration also specifies a size of 10 gibibytes and +cluster's Node. The configuration also specifies a size of 10 gibibytes and an access mode of `ReadWriteOnce`, which means the volume can be mounted as read-write by a single Node. It defines the [StorageClass name](/docs/concepts/storage/persistent-volumes/#class) `manual` for the PersistentVolume, which will be used to bind diff --git a/docs/tasks/configure-pod-container/configure-projected-volume-storage.md b/docs/tasks/configure-pod-container/configure-projected-volume-storage.md index 9b86a48323..3920c2f239 100644 --- a/docs/tasks/configure-pod-container/configure-projected-volume-storage.md +++ b/docs/tasks/configure-pod-container/configure-projected-volume-storage.md @@ -57,7 +57,7 @@ the Pod: {% capture whatsnext %} * Learn more about [`projected`](/docs/concepts/storage/volumes/#projected) volumes. -* Read the the [all-in-one volume](https://github.com/kubernetes/community/blob/{{page.githubbranch}}/contributors/design-proposals/node/all-in-one-volume.md) design document. +* Read the [all-in-one volume](https://github.com/kubernetes/community/blob/{{page.githubbranch}}/contributors/design-proposals/node/all-in-one-volume.md) design document. {% endcapture %} {% include templates/task.md %} diff --git a/docs/tutorials/stateful-application/cassandra.md b/docs/tutorials/stateful-application/cassandra.md index 9e7c753b91..30eebc7a31 100644 --- a/docs/tutorials/stateful-application/cassandra.md +++ b/docs/tutorials/stateful-application/cassandra.md @@ -143,7 +143,7 @@ The StatefulSet manifest, included below, creates a Cassandra ring that consists UN 172.17.0.6 84.74 KiB 32 67.1% a6a1e8c2-3dc5-4417-b1a0-26507af2aaad Rack1-K8Demo ## Modifying the Cassandra StatefulSet -Use `kubectl edit` to modify the size of of a Cassandra StatefulSet. +Use `kubectl edit` to modify the size of a Cassandra StatefulSet. 1. Run the following command: diff --git a/docs/user-journeys/users/application-developer/foundational.md b/docs/user-journeys/users/application-developer/foundational.md index f0eff01342..0ae6e4565e 100644 --- a/docs/user-journeys/users/application-developer/foundational.md +++ b/docs/user-journeys/users/application-developer/foundational.md @@ -94,7 +94,7 @@ You can also specify custom information about your Kubernetes API objects by att You'll also want to think about storage. Kubernetes provides different types of storage API objects for different storage needs: -* **{% glossary_tooltip text="Volumes" term_id="volume" %}** - Let you define storage for your cluster that is tied to the lifecycle of a Pod. It is therefore more persistent than container storage. Learn [how to configure volume storage](/docs/tasks/configure-pod-container/configure-volume-storage/){:target="_blank"}, or [read more about about volume storage](/docs/concepts/storage/volumes/){:target="_blank"}. +* **{% glossary_tooltip text="Volumes" term_id="volume" %}** - Let you define storage for your cluster that is tied to the lifecycle of a Pod. It is therefore more persistent than container storage. Learn [how to configure volume storage](/docs/tasks/configure-pod-container/configure-volume-storage/){:target="_blank"}, or [read more about volume storage](/docs/concepts/storage/volumes/){:target="_blank"}. * **{% glossary_tooltip text="PersistentVolumes" term_id="persistent-volume" %}** and **{% glossary_tooltip text="PersistentVolumeClaims" term_id="persistent-volume-claim" %}** - Let you define storage at the cluster level. Typically a cluster operator defines the PersistentVolume objects for the cluster, and cluster users (application developers, you) define the PersistentVolumeClaim objects that your application requires. Learn [how to set up persistent storage for your cluster](/docs/tasks/configure-pod-container/configure-persistent-volume-storage/){:target="_blank"} or [read more about persistent volumes](/docs/concepts/storage/persistent-volumes/){:target="_blank"}. @@ -156,7 +156,7 @@ If you're not running Kubernetes or a similar automated system, you might find t This process can be tedious and also inconvenient, especially if (2) happens in the early hours of the morning! -**If you have Kubernetes set up, however, manual intervention is not as necessary.** The Kubernetes [control plane](/docs/concepts/overview/components/#master-components){:target="_blank"}, which runs on your cluster's master node, gracefully handles (3) and (4) on your behalf. As a a result, Kubernetes is often referred to as a *self-healing* system. +**If you have Kubernetes set up, however, manual intervention is not as necessary.** The Kubernetes [control plane](/docs/concepts/overview/components/#master-components){:target="_blank"}, which runs on your cluster's master node, gracefully handles (3) and (4) on your behalf. As a result, Kubernetes is often referred to as a *self-healing* system. There are two key parts of the control plane that facilitate this behavior: the *Kubernetes API server* and the *Controllers*. From 0f87a9bfa36665de87fa68ef1af83b10a380bd36 Mon Sep 17 00:00:00 2001 From: Zach Corleissen Date: Mon, 5 Feb 2018 17:54:08 -0800 Subject: [PATCH 071/329] Add localization guidelines (#7245) * Add navigation to a new localization file * Add localization instructions --- _data/docs-home.yml | 1 + docs/home/contribute/localization.md | 80 ++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 docs/home/contribute/localization.md diff --git a/_data/docs-home.yml b/_data/docs-home.yml index 93e1ffbd44..bdb1e7c935 100644 --- a/_data/docs-home.yml +++ b/_data/docs-home.yml @@ -17,6 +17,7 @@ toc: - docs/home/contribute/review-issues.md - docs/home/contribute/style-guide.md - docs/home/contribute/includes.md + - docs/home/contribute/localization.md - title: Updating Automatically Generated Reference Pages section: diff --git a/docs/home/contribute/localization.md b/docs/home/contribute/localization.md new file mode 100644 index 0000000000..1357e60a41 --- /dev/null +++ b/docs/home/contribute/localization.md @@ -0,0 +1,80 @@ +--- +title: Localizing Kubernetes Documentation +approvers: +- chenopis +- zacharysarah +--- + +We're happy to add localizations (l10n) of Kubernetes documentation to the website! + +Localizations must meet the following requirements for _workflow_ (how to localize) and _output_ (what to localize). + +## Workflow + +All l10n work must be stored and tracked within the [Kubernetes organization](https://github.com/kubernetes). + +### Basis for localizations + +Localizations must source from the English files for the [most recent major release](https://kubernetes.io/docs/home/supported-doc-versions/#current-version). + +**Note:** To find the most recent release's documentation source files: +1. Navigate to https://github.com/kubernetes/website. +2. Select the `release-1.X` branch for the most recent version. + + For example, the branch for Kubernetes v1.9 docs is `release-1.9`. + +Source files reside in the `/docs/` directory. +{: .note} + +### Repository + +A l10n team will have a repository specifically dedicated to its work, for example: [kubernetes/kubernetes-docs/cn](https://github.com/kubernetes/kubernetes-docs-cn). + +**Note:** To open a l10n repository, [contact the SIG docs lead](https://kubernetes.slack.com/messages/C1J0BPD2M) on Slack for assistance. +{: .note} + +### Project + +Teams must track their overall progress with a [GitHub project](https://help.github.com/articles/creating-a-project-board/). + +Projects must include columns for: +- To do +- In progress +- Done + +For example: the [Chinese localization project](For example: https://github.com/kubernetes/kubernetes-docs-cn/projects/1). + +### Team function + +L10n teams must provide a single point of contact: the name and contact information of a person who can respond to or redirect questions or concerns. + +L10n teams must provide their own repository maintainers. + +All l10n work must be self-sustaining with the team's own resources. + +Wherever possible, every localized page must be approved by a reviewer from a different company than the translator. + +### Upstream contributions + +Upstream contributions are welcome and encouraged! + +For the sake of efficiency, limit upstream contributions to a single pull request per week, containing a single squashed commit. + +## Output + +All localizations must include the following documentation at a minimum: + +Description | URLs +-----|----- +Home | [All heading and subheading URLs](https://kubernetes.io/docs/home/) +Setup | [All heading and subheading URLs](https://kubernetes.io/docs/setup/) +Tutorials | [Kubernetes Basics](https://kubernetes.io/docs/tutorials/), [Hello Minikube](https://kubernetes.io/docs/tutorials/stateless-application/hello-minikube/) + +## Next steps + +Once a l10n meets requirements for workflow and minimum output, SIG docs will: +- Work with the localization team to implement language selection on the website +- Publicize availability through [Cloud Native Computing Foundation](https://www.cncf.io/) (CNCF) channels. + +**Note:** Implementation of language selection is pending Kubernetes' first completed localization project. +{: .note} From 2b817f255200a3cebcb92d1f1f921819f6f6d87c Mon Sep 17 00:00:00 2001 From: Ilya Dmitrichenko Date: Tue, 6 Feb 2018 03:07:07 +0100 Subject: [PATCH 072/329] Remove stale OWNERS file (#7241) --- docs/getting-started-guides/docker-multinode/OWNERS | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 docs/getting-started-guides/docker-multinode/OWNERS diff --git a/docs/getting-started-guides/docker-multinode/OWNERS b/docs/getting-started-guides/docker-multinode/OWNERS deleted file mode 100644 index 8f807ecd96..0000000000 --- a/docs/getting-started-guides/docker-multinode/OWNERS +++ /dev/null @@ -1,4 +0,0 @@ -approvers: -- dchen1107 -- resouer - From d581dff9c8bbcf50c6fcf7f7609cb6cab883ef4d Mon Sep 17 00:00:00 2001 From: Gerardo Saca Date: Mon, 5 Feb 2018 18:44:05 -0800 Subject: [PATCH 073/329] Update Azure Container Service to managed clusters (#6955) --- docs/setup/pick-right-solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/pick-right-solution.md b/docs/setup/pick-right-solution.md index 06f207b9ab..48239548dc 100644 --- a/docs/setup/pick-right-solution.md +++ b/docs/setup/pick-right-solution.md @@ -41,7 +41,7 @@ a Kubernetes cluster from scratch. * [Amazon Elastic Container Service for Kubernetes](https://aws.amazon.com/eks/) offers managed Kubernetes service. -* [Azure Container Service](https://azure.microsoft.com/en-us/services/container-service/) can easily deploy Kubernetes clusters. +* [Azure Container Service](https://azure.microsoft.com/services/container-service/) offers managed Kubernetes clusters. * [Stackpoint.io](https://stackpoint.io) provides Kubernetes infrastructure automation and management for multiple public clouds. From 879e49943e78a012013b0f42554a99484eb6e392 Mon Sep 17 00:00:00 2001 From: Artem Date: Tue, 6 Feb 2018 17:40:12 +0700 Subject: [PATCH 074/329] Fix file extension and remove not necessary sudo. (#7143) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix file extension and remove not necessary sudo. * Rename kube-proxy.сm to kube-proxy-сm.yaml for clarity. --- docs/setup/independent/high-availability.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/setup/independent/high-availability.md b/docs/setup/independent/high-availability.md index 29fd93d2a7..c5cb8751ed 100644 --- a/docs/setup/independent/high-availability.md +++ b/docs/setup/independent/high-availability.md @@ -490,9 +490,9 @@ Next provision and set up the worker nodes. To do this, you will need to provisi 1. Reconfigure kube-proxy to access kube-apiserver via the load balancer: ```shell - kubectl get configmap -n kube-system kube-proxy -o yaml > kube-proxy.yaml - sudo sed -i 's#server:.*#server: https://:6443#g' kube-proxy.cm - kubectl apply -f kube-proxy.cm --force + kubectl get configmap -n kube-system kube-proxy -o yaml > kube-proxy-сm.yaml + sed -i 's#server:.*#server: https://:6443#g' kube-proxy-cm.yaml + kubectl apply -f kube-proxy-cm.yaml --force # restart all kube-proxy pods to ensure that they load the new configmap kubectl delete pod -n kube-system -l k8s-app=kube-proxy ``` From f662722d30bd7175c21061cc060ab63c81fff4e0 Mon Sep 17 00:00:00 2001 From: anniedy Date: Wed, 7 Feb 2018 08:53:42 +0800 Subject: [PATCH 075/329] Update notes.md (#7257) --- docs/imported/release/notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/imported/release/notes.md b/docs/imported/release/notes.md index 300fb978a3..e6ab144eb1 100755 --- a/docs/imported/release/notes.md +++ b/docs/imported/release/notes.md @@ -1761,7 +1761,7 @@ filename | sha256 hash * Add validation for CustomResources via JSON Schema. ([#47263](https://github.com/kubernetes/kubernetes/pull/47263), [@nikhita](https://github.com/nikhita)) * enqueue a sync task to wake up jobcontroller to check job ActiveDeadlineSeconds in time ([#48454](https://github.com/kubernetes/kubernetes/pull/48454), [@weiwei04](https://github.com/weiwei04)) * Remove previous local ephemeral storage resource names: "ResourceStorageOverlay" and "ResourceStorageScratch" ([#51425](https://github.com/kubernetes/kubernetes/pull/51425), [@NickrenREN](https://github.com/NickrenREN)) -* Add `retainKeys` to patchStrategy for v1 Volumes and extentions/v1beta1 DeploymentStrategy. ([#50296](https://github.com/kubernetes/kubernetes/pull/50296), [@mengqiy](https://github.com/mengqiy)) +* Add `retainKeys` to patchStrategy for v1 Volumes and extensions/v1beta1 DeploymentStrategy. ([#50296](https://github.com/kubernetes/kubernetes/pull/50296), [@mengqiy](https://github.com/mengqiy)) * Add mount options field to PersistentVolume spec ([#50919](https://github.com/kubernetes/kubernetes/pull/50919), [@wongma7](https://github.com/wongma7)) * Use of the alpha initializers feature now requires enabling the `Initializers` feature gate. This feature gate is auto-enabled if the `Initialzers` admission plugin is enabled. ([#51436](https://github.com/kubernetes/kubernetes/pull/51436), [@liggitt](https://github.com/liggitt)) * Fix inconsistent Prometheus cAdvisor metrics ([#51473](https://github.com/kubernetes/kubernetes/pull/51473), [@bboreham](https://github.com/bboreham)) From b7e15417a3a6ad72bafb3caf396d0500a36eed15 Mon Sep 17 00:00:00 2001 From: anniedy Date: Wed, 7 Feb 2018 08:55:50 +0800 Subject: [PATCH 076/329] Update notes.md (#7259) --- docs/imported/release/notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/imported/release/notes.md b/docs/imported/release/notes.md index e6ab144eb1..d6afe1f175 100755 --- a/docs/imported/release/notes.md +++ b/docs/imported/release/notes.md @@ -859,7 +859,7 @@ This release passes 129/145 Kubernetes e2e conformance tests. * Apply algorithm in scheduler by feature gates. ([#52723](https://github.com/kubernetes/kubernetes/pull/52723),[ @k82cn](https://github.com/k82cn)) * A new priority function ResourceLimitsPriorityMap (disabled by default and behind alpha feature gate and not part of the scheduler's default priority functions list) that assigns a lowest possible score of 1 to a node that satisfies one or both of input pod's cpu and memory limits, mainly to break ties between nodes with same scores. ([#55906](https://github.com/kubernetes/kubernetes/pull/55906),[ @aveshagarwal](https://github.com/aveshagarwal)) * Kubelet evictions now take pod priority into account ([#53542](https://github.com/kubernetes/kubernetes/pull/53542),[ @dashpole](https://github.com/dashpole)) -* PodTolerationRestriction admisson plugin: if namespace level tolerations are empty, now they override cluster level tolerations. ([#54812](https://github.com/kubernetes/kubernetes/pull/54812),[ @aveshagarwal](https://github.com/aveshagarwal)) +* PodTolerationRestriction admission plugin: if namespace level tolerations are empty, now they override cluster level tolerations. ([#54812](https://github.com/kubernetes/kubernetes/pull/54812),[ @aveshagarwal](https://github.com/aveshagarwal)) ### **Storage** From e326d192fd74817843f88c2916df03decc6312c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=89=91=E9=94=8B?= Date: Wed, 7 Feb 2018 09:01:44 +0800 Subject: [PATCH 077/329] fix some typos (#7251) --- docs/concepts/api-extension/custom-resources.md | 2 +- .../cluster-administration/cluster-administration-overview.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/api-extension/custom-resources.md b/docs/concepts/api-extension/custom-resources.md index 8fecaf0c4a..d602cd51cd 100644 --- a/docs/concepts/api-extension/custom-resources.md +++ b/docs/concepts/api-extension/custom-resources.md @@ -40,7 +40,7 @@ When creating a new API, consider whether to [aggregate your API with the Kubern | Your API is [Declarative](#declarative-apis). | Your API does not fit the [Declarative](#declarative-apis) model. | | You want your new types to be readable and writable using `kubectl`.| `kubectl` support is not required | | You want to view your new types in a Kubernetes UI, such as dashboard, alongside built-in types. | Kubernetes UI support is not required. | -| You are developing a new API. | You already have program that serves your API and works well. | +| You are developing a new API. | You already have a program that serves your API and works well. | | You are willing to accept the format restriction that Kubernetes puts on REST resource paths, such as API Groups and Namespaces. (See the [API Overview](/docs/concepts/overview/kubernetes-api/).) | You need to have specific REST paths to be compatible with an already defined REST API. | | Your resources are naturally scoped to a cluster or to namespaces of a cluster. | Cluster or namespace scoped resources are a poor fit; you need control over the specifics of resource paths. | | You want to reuse [Kubernetes API support features](#common-features). | You don't need those features. | diff --git a/docs/concepts/cluster-administration/cluster-administration-overview.md b/docs/concepts/cluster-administration/cluster-administration-overview.md index ea0d99c636..6af7fce2bf 100644 --- a/docs/concepts/cluster-administration/cluster-administration-overview.md +++ b/docs/concepts/cluster-administration/cluster-administration-overview.md @@ -24,7 +24,7 @@ Before choosing a guide, here are some considerations: - **If you are configuring Kubernetes on-premises**, consider which [networking model](/docs/concepts/cluster-administration/networking/) fits best. One option for custom networking is [*OpenVSwitch GRE/VxLAN networking*](/docs/admin/ovs-networking/), which uses OpenVSwitch to set up networking between pods across Kubernetes nodes. - Will you be running Kubernetes on **"bare metal" hardware** or on **virtual machines (VMs)**? - Do you **just want to run a cluster**, or do you expect to do **active development of Kubernetes project code**? If the - latter, choose a actively-developed distro. Some distros only use binary releases, but + latter, choose an actively-developed distro. Some distros only use binary releases, but offer a greater variety of choices. - Familiarize yourself with the [components](/docs/admin/cluster-components/) needed to run a cluster. From 072112f6e5425e9944e86da40f5069dc2e8f45b7 Mon Sep 17 00:00:00 2001 From: Kay Yan Date: Wed, 7 Feb 2018 09:26:43 +0800 Subject: [PATCH 078/329] fix a typo in kubernetes api (#7261) --- docs/home/contribute/generated-reference/kubernetes-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/home/contribute/generated-reference/kubernetes-api.md b/docs/home/contribute/generated-reference/kubernetes-api.md index a1908c9353..8ae201095a 100644 --- a/docs/home/contribute/generated-reference/kubernetes-api.md +++ b/docs/home/contribute/generated-reference/kubernetes-api.md @@ -100,7 +100,7 @@ or more comments in the Kubernetes source code. will be different in your situation. {: .note} -Here's an example of editing the a comment in the Kubernetes source code. +Here's an example of editing a comment in the Kubernetes source code. In your local kubernetes/kubernetes repository, check out the master branch, and make sure it is up to date: From 44b8e65b406f7670888470deb7b64414fb892677 Mon Sep 17 00:00:00 2001 From: Sam Xie Date: Wed, 7 Feb 2018 10:21:43 +0800 Subject: [PATCH 079/329] fix typo envrionment -> [environment] (#7262) --- .../configuration/organize-cluster-access-kubeconfig.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/concepts/configuration/organize-cluster-access-kubeconfig.md b/docs/concepts/configuration/organize-cluster-access-kubeconfig.md index 3709914bd5..39b75139e2 100644 --- a/docs/concepts/configuration/organize-cluster-access-kubeconfig.md +++ b/docs/concepts/configuration/organize-cluster-access-kubeconfig.md @@ -62,7 +62,7 @@ required. If the `KUBECONFIG` environment variable doesn't exist, If the `KUBECONFIG` environment variable does exist, `kubectl` uses an effective configuration that is the result of merging the files -listed in the `KUBECONFIG` evironment variable. +listed in the `KUBECONFIG` environment variable. ## Merging kubeconfig files @@ -82,7 +82,7 @@ Here are the rules that `kubectl` uses when it merges kubeconfig files: Otherwise, if the `KUBECONFIG` environment variable is set, use it as a list of files that should be merged. - Merge the files listed in the `KUBECONFIG` envrionment variable + Merge the files listed in the `KUBECONFIG` environment variable according to these rules: * Ignore empty filenames. @@ -151,4 +151,3 @@ are stored absolutely. {% endcapture %} {% include templates/concept.md %} - From 5b55fd07a6815826b95fea4deaa9b4a442bc2abd Mon Sep 17 00:00:00 2001 From: Ting Ye Date: Wed, 7 Feb 2018 10:33:42 +0800 Subject: [PATCH 080/329] fix typo (#7260) --- docs/setup/independent/create-cluster-kubeadm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/independent/create-cluster-kubeadm.md b/docs/setup/independent/create-cluster-kubeadm.md index 709e478287..7ee49016ab 100644 --- a/docs/setup/independent/create-cluster-kubeadm.md +++ b/docs/setup/independent/create-cluster-kubeadm.md @@ -282,7 +282,7 @@ kubectl apply -f https://raw.githubusercontent.com/projectcalico/canal/master/k8 - For `flannel` to work correctly, `--pod-network-cidr=10.244.0.0/16` has to be passed to `kubeadm init`. - `flannel` works on `amd64`, `arm`, `arm64` and `ppc64le`, but for it to work on a platform other than -`amd64` you have to manually download the manifest and replace `amd64` occurences with your chosen platform. +`amd64` you have to manually download the manifest and replace `amd64` occurrences with your chosen platform. - Set `/proc/sys/net/bridge/bridge-nf-call-iptables` to `1` by running `sysctl net.bridge.bridge-nf-call-iptables=1` to pass bridged IPv4 traffic to iptables' chains. This is a requirement for some CNI plugins to work, for more information please see [here](https://kubernetes.io/docs/concepts/cluster-administration/network-plugins/#network-plugin-requirements). From e81fe4816f6450033557eb444a3bf69a790cbf16 Mon Sep 17 00:00:00 2001 From: Ilya Dmitrichenko Date: Wed, 7 Feb 2018 03:34:51 +0100 Subject: [PATCH 081/329] Remove CentOS guide that was already deprecated a while ago (#7242) --- _data/setup.yml | 1 - _redirects | 1 + .../centos/centos_manual_config.md | 238 ------------------ docs/getting-started-guides/centos/OWNERS | 4 - .../centos/centos_manual_config.md | 238 ------------------ docs/setup/pick-right-solution.md | 2 - 6 files changed, 1 insertion(+), 483 deletions(-) delete mode 100644 cn/docs/getting-started-guides/centos/centos_manual_config.md delete mode 100644 docs/getting-started-guides/centos/OWNERS delete mode 100644 docs/getting-started-guides/centos/centos_manual_config.md diff --git a/_data/setup.yml b/_data/setup.yml index a9edf57a4d..6c8c5caef3 100644 --- a/_data/setup.yml +++ b/_data/setup.yml @@ -79,7 +79,6 @@ toc: - docs/getting-started-guides/fedora/fedora_ansible_config.md - docs/getting-started-guides/fedora/fedora_manual_config.md - docs/getting-started-guides/fedora/flannel_multi_node_cluster.md - - docs/getting-started-guides/centos/centos_manual_config.md - docs/getting-started-guides/coreos/index.md - docs/getting-started-guides/ubuntu/index.md diff --git a/_redirects b/_redirects index 83cb8fd16a..c5b254fe94 100644 --- a/_redirects +++ b/_redirects @@ -178,6 +178,7 @@ /docs/getting-started-guides/ubuntu/calico/ /docs/getting-started-guides/ubuntu/ 301 /docs/getting-started-guides/vagrant/ /docs/getting-started-guides/alternatives/ 301 /docs/getting-started-guides/windows/While/ /docs/getting-started-guides/windows/ 301 +/docs/getting-started-guides/centos/* /docs/setup/independent/create-cluster-kubeadm/ 301 /docs/hellonode/ /docs/tutorials/stateless-application/hello-minikube/ 301 /docs/home/coreos/ /docs/getting-started-guides/coreos/ 301 diff --git a/cn/docs/getting-started-guides/centos/centos_manual_config.md b/cn/docs/getting-started-guides/centos/centos_manual_config.md deleted file mode 100644 index ac79f48dfc..0000000000 --- a/cn/docs/getting-started-guides/centos/centos_manual_config.md +++ /dev/null @@ -1,238 +0,0 @@ ---- -approvers: -- thockin -title: CentOS ---- - -* TOC -{:toc} - -## 警告 - -本文档适用于Kubernetes 1.1.0,目前已经被[废弃](https://github.com/kubernetes/website/issues/1613)。相关内容请参阅最新版[指南](/docs/getting-started-guides/kubeadm/)。 - -## 前提条件 - -在CentOS上部署和配置Kubernetes,您需要在集群中拥有一台机器作为master节点,并拥有至少一台运行CentOS 7系统的主机作为集群节点(node)。 - -## 启动一个集群 - -本文档是一篇基于CentOS系统部署和配置Kubernetes的入门指南,内容涵盖一个手工的配置,以便于您了解所有的底层软件包、服务以及端口等信息。 - -Kubernetes由一系列服务构成,包括kube-apiserver、kube-scheduler、kube-controller-manager、kubelet以及kube-proxy等。这些服务由systemd管理,配置集中位于/etc/kubernetes。我们将在集群中的不同主机上部署不同的服务。其中,第一台主机,即centos-master,将被部署成为Kubernetes集群中的master节点。这台主机上将运行kube-apiserver、kube-controller-manager和kube-scheduler。 此外,master节点还将运行 _etcd_。集群中剩余的主机,即centos-minion-n节点,将运行kubelet、proxy、cadvisor和docker。 - -集群中的所有节点将运行flanneld来构建网络(networking overlay)。 - -**系统信息:** - -主机: - -请使用您真实环境中的信息替换以下配置中的各个主机IP - -```conf -centos-master = 192.168.121.9 -centos-minion-1 = 192.168.121.65 -centos-minion-2 = 192.168.121.66 -centos-minion-3 = 192.168.121.67 -``` - -**配置主机环境:** - -* 在集群所有节点上——centos-{master,minion-n},创建包含以下配置信息的/etc/yum.repos.d/virt7-docker-common-release.repo文件。 - -```conf -[virt7-docker-common-release] -name=virt7-docker-common-release -baseurl=http://cbs.centos.org/repos/virt7-docker-common-release/x86_64/os/ -gpgcheck=0 -``` - -* 在集群所有节点上——centos-{master,minion-n},安装Kubernetes、etcd和flanneld。这一过程也将同时在节点上安装docker和cadvisor。 - -```shell -yum -y install --enablerepo=virt7-docker-common-release kubernetes etcd flannel -``` - -* 将master节点和其他节点的主机名——IP映射添加到所有集群节点的/etc/hosts文件中(如果主机名已经在DNS中记录,则可略过此步) - -```shell -echo "192.168.121.9 centos-master -192.168.121.65 centos-minion-1 -192.168.121.66 centos-minion-2 -192.168.121.67 centos-minion-3" >> /etc/hosts -``` - -* 编辑/etc/kubernetes/config文件以保证在集群所有主机上都包含以下内容: - -```shell -# logging to stderr意为从systemd journal获取日志 -KUBE_LOGTOSTDERR="--logtostderr=true" - -# journal消息级别, 0代表debug -KUBE_LOG_LEVEL="--v=0" - -# 是否允许集群运行privileged docker containers -KUBE_ALLOW_PRIV="--allow-privileged=false" - -# 配置replication conrtoller和scheduler所需的kube-apiserver地址 -KUBE_MASTER="--master=http://centos-master:8080" -``` - -* 由于docker与一些防火墙规则不兼容,需要在master节点及其他集群节点上禁用防火墙。在CentOS系统上,需要首先禁用SELinux,进而才能禁用防火墙。 - -```shell -setenforce 0 -systemctl disable iptables-services firewalld -systemctl stop iptables-services firewalld -``` - -**配置master节点上的Kubernetes服务** - -* 编辑/etc/etcd/etcd.conf文件内容如下: - -```shell -# [member] -ETCD_NAME=default -ETCD_DATA_DIR="/var/lib/etcd/default.etcd" -ETCD_LISTEN_CLIENT_URLS="http://0.0.0.0:2379" - -#[cluster] -ETCD_ADVERTISE_CLIENT_URLS="http://0.0.0.0:2379" -``` - -* 编辑/etc/kubernetes/apiserver文件内容如下: - -```shell -# 本地服务器监听地址 -KUBE_API_ADDRESS="--address=0.0.0.0" - -# 本地服务器监听端口 -KUBE_API_PORT="--port=8080" - -# Kubelet监听端口 -KUBELET_PORT="--kubelet-port=10250" - -# 以逗号间隔的etcd集群中各个节点的地址 -KUBE_ETCD_SERVERS="--etcd-servers=http://centos-master:2379" - -# Kubernetes服务IP地址网段 -KUBE_SERVICE_ADDRESSES="--service-cluster-ip-range=10.254.0.0/16" - -# 请添加您需要的Kubernetes API Server启动参数 -KUBE_API_ARGS="" -``` - -* 启动ETCD并保存master节点的网络设置(network overlay configuration): -**警告** 请根据您的真实环境配置网络信息!在本文环境中,`172.30.0.0/16`网段是可用的。 - -```shell -systemctl start etcd -etcdctl mkdir /kube-centos/network -etcdctl mk /kube-centos/network/config "{ \"Network\": \"172.30.0.0/16\", \"SubnetLen\": 24, \"Backend\": { \"Type\": \"vxlan\" } }" -``` - -* 在master节点上配置/etc/sysconfig/flanneld文件使用flannel覆盖Docker网络 (需要在其他集群节点上完成相同配置,详见下文): - -```shell -# Flanneld配置选项 - -# etcd url地址,指向运行etcd的服务器 -FLANNEL_ETCD_ENDPOINTS="http://centos-master:2379" - -# etcd配置秘钥,即flannel查询的配置秘钥 -# 用于网段分配 -FLANNEL_ETCD_PREFIX="/kube-centos/network" - -# 其它需要的Flannel启动参数 -#FLANNEL_OPTIONS="" -``` - -* 在master节点上启动相关服务: - -```shell -for SERVICES in etcd kube-apiserver kube-controller-manager kube-scheduler flanneld; do - systemctl restart $SERVICES - systemctl enable $SERVICES - systemctl status $SERVICES -done -``` - -**在集群其他节点上配置Kubernetes服务** - -***我们需要在集群其他节点上配置kubelet,启动kubelet和proxy服务*** - -* 编辑/etc/kubernetes/kubelet文件内容如下: - -```shell -# info server的服务地址 -KUBELET_ADDRESS="--address=0.0.0.0" - -# info server的监听端口 -KUBELET_PORT="--port=10250" - -# 本字段可以设置空值以使用真实的主机名 -# 注意节点序号(n) -KUBELET_HOSTNAME="--hostname-override=centos-minion-n" - -# api-server地址 -KUBELET_API_SERVER="--api-servers=http://centos-master:8080" - -# 添加您所需要的Kubelet参数 -KUBELET_ARGS="" -``` - -* 在所有节点上配置/etc/sysconfig/flanneld文件设置使用flannel覆盖Docker网络: - -```shell -# Flanneld配置选项 - -# etcd url地址,指向运行etcd的服务器 -FLANNEL_ETCD_ENDPOINTS="http://centos-master:2379" - -# etcd配置秘钥,即flannel查询的配置秘钥 -# 用于网段分配 -FLANNEL_ETCD_PREFIX="/kube-centos/network" - -# 其他需要配置的选项 -#FLANNEL_OPTIONS="" -``` - -* 在节点上启动相关服务(centos-minion-n) - -```shell -for SERVICES in kube-proxy kubelet flanneld docker; do - systemctl restart $SERVICES - systemctl enable $SERVICES - systemctl status $SERVICES -done -``` -* 配置kubectl - -```shell -kubectl config set-cluster default-cluster --server=http://centos-master:8080 -kubectl config set-context default-context --cluster=default-cluster --user=default-admin -kubectl config use-context default-context -``` - -*至此,Kubernetes在CentOS集群中的部署已经完成 !* - -* 在centos-master节点上通过kubectl命令检查所有的Kubernetes节点已经到位 - -```shell -$ kubectl get nodes -NAME STATUS AGE VERSION -centos-minion-1 Ready 3d v1.6.0+fff5156 -centos-minion-2 Ready 3d v1.6.0+fff5156 -centos-minion-3 Ready 3d v1.6.0+fff5156 -``` - -**现在,Kubernetes集群已经正常运行!可以创建测试pod验证集群了!** - -## 支持级别 - - -IaaS Provider | Config. Mgmt | OS | Networking | Docs | Conforms | Support Level --------------------- | ------------ | ------ | ---------- | --------------------------------------------- | ---------| ---------------------------- -Bare-metal | custom | CentOS | flannel | [docs](/docs/getting-started-guides/centos/centos_manual_config) | | Community ([@coolsvap](https://github.com/coolsvap)) - -有关所有解决方案的支持级别信息,请参阅[解决方案列表](/docs/getting-started-guides/#table-of-solutions)。 diff --git a/docs/getting-started-guides/centos/OWNERS b/docs/getting-started-guides/centos/OWNERS deleted file mode 100644 index c27dbfb29b..0000000000 --- a/docs/getting-started-guides/centos/OWNERS +++ /dev/null @@ -1,4 +0,0 @@ -approvers: -- lavalamp -- thockin - diff --git a/docs/getting-started-guides/centos/centos_manual_config.md b/docs/getting-started-guides/centos/centos_manual_config.md deleted file mode 100644 index 76c68f0918..0000000000 --- a/docs/getting-started-guides/centos/centos_manual_config.md +++ /dev/null @@ -1,238 +0,0 @@ ---- -approvers: -- thockin -title: CentOS ---- - -* TOC -{:toc} - -**Caution:** This guide was originally written for Kubernetes 1.1.0 and [is deprecated](https://github.com/kubernetes/website/issues/1613) and is replaced by [kubeadm](/docs/admin/kubeadm/). -{: .caution} - -## Prerequisites - -To configure Kubernetes with CentOS, you'll need a machine to act as a master, and one or more CentOS 7 hosts to act as cluster nodes. - -## Starting a cluster - -This is a getting started guide for CentOS. It is a manual configuration so you understand all the underlying packages / services / ports, etc... - -The Kubernetes package provides a few services: kube-apiserver, kube-scheduler, kube-controller-manager, kubelet, kube-proxy. These services are managed by systemd and the configuration resides in a central location: /etc/kubernetes. We will break the services up between the hosts. The first host, centos-master, will be the Kubernetes master. This host will run the kube-apiserver, kube-controller-manager and kube-scheduler. In addition, the master will also run _etcd_. The remaining hosts, centos-minion-n will be the nodes and run kubelet, proxy, cadvisor and docker. - -All of them run flanneld as networking overlay. - -**System Information:** - -Hosts: - -Please replace host IP with your environment. - -```conf -centos-master = 192.168.121.9 -centos-minion-1 = 192.168.121.65 -centos-minion-2 = 192.168.121.66 -centos-minion-3 = 192.168.121.67 -``` - -**Prepare the hosts:** - -* Create a /etc/yum.repos.d/virt7-docker-common-release.repo on all hosts - centos-{master,minion-n} with following information. - -```conf -[virt7-docker-common-release] -name=virt7-docker-common-release -baseurl=http://cbs.centos.org/repos/virt7-docker-common-release/x86_64/os/ -gpgcheck=0 -``` - -* Install Kubernetes, etcd and flannel on all hosts - centos-{master,minion-n}. This will also pull in docker and cadvisor. - -```shell -yum -y install --enablerepo=virt7-docker-common-release kubernetes etcd flannel -``` - -* Add master and node to /etc/hosts on all machines (not needed if hostnames already in DNS) - -```shell -echo "192.168.121.9 centos-master -192.168.121.65 centos-minion-1 -192.168.121.66 centos-minion-2 -192.168.121.67 centos-minion-3" >> /etc/hosts -``` - -* Edit /etc/kubernetes/config which will be the same on all hosts to contain: - -```shell -# logging to stderr means we get it in the systemd journal -KUBE_LOGTOSTDERR="--logtostderr=true" - -# journal message level, 0 is debug -KUBE_LOG_LEVEL="--v=0" - -# Should this cluster be allowed to run privileged docker containers -KUBE_ALLOW_PRIV="--allow-privileged=false" - -# How the replication controller and scheduler find the kube-apiserver -KUBE_MASTER="--master=http://centos-master:8080" -``` - -* Disable the firewall on the master and all the nodes, as docker does not play well with other firewall rule managers. CentOS won't let you disable the firewall as long as SELinux is enforcing, so that needs to be disabled first. -* If you disable SELinux, make sure you reboot your machine before continuing to more steps. - -```shell -setenforce 0 -systemctl disable iptables-services firewalld -systemctl stop iptables-services firewalld -``` - -**Configure the Kubernetes services on the master.** - -* Edit /etc/etcd/etcd.conf to appear as such: - -```shell -# [member] -ETCD_NAME=default -ETCD_DATA_DIR="/var/lib/etcd/default.etcd" -ETCD_LISTEN_CLIENT_URLS="http://0.0.0.0:2379" - -#[cluster] -ETCD_ADVERTISE_CLIENT_URLS="http://0.0.0.0:2379" -``` - -* Edit /etc/kubernetes/apiserver to appear as such: - -```shell -# The address on the local server to listen to. -KUBE_API_ADDRESS="--address=0.0.0.0" - -# The port on the local server to listen on. -KUBE_API_PORT="--port=8080" - -# Port kubelets listen on -KUBELET_PORT="--kubelet-port=10250" - -# Comma separated list of nodes in the etcd cluster -KUBE_ETCD_SERVERS="--etcd-servers=http://centos-master:2379" - -# Address range to use for services -KUBE_SERVICE_ADDRESSES="--service-cluster-ip-range=10.254.0.0/16" - -# Add your own! -KUBE_API_ARGS="" -``` - -* Start ETCD and configure it to hold the network overlay configuration on master: -**Warning** This network must be unused in your network infrastructure! `172.30.0.0/16` is free in our network. - -```shell -systemctl start etcd -etcdctl mkdir /kube-centos/network -etcdctl mk /kube-centos/network/config "{ \"Network\": \"172.30.0.0/16\", \"SubnetLen\": 24, \"Backend\": { \"Type\": \"vxlan\" } }" -``` - -* Configure flannel to overlay Docker network in /etc/sysconfig/flanneld on the master (also in the nodes as we'll see): - -```shell -# Flanneld configuration options - -# etcd url location. Point this to the server where etcd runs -FLANNEL_ETCD_ENDPOINTS="http://centos-master:2379" - -# etcd config key. This is the configuration key that flannel queries -# For address range assignment -FLANNEL_ETCD_PREFIX="/kube-centos/network" - -# Any additional options that you want to pass -#FLANNEL_OPTIONS="" -``` - -* Start the appropriate services on master: - -```shell -for SERVICES in etcd kube-apiserver kube-controller-manager kube-scheduler flanneld; do - systemctl restart $SERVICES - systemctl enable $SERVICES - systemctl status $SERVICES -done -``` - -**Configure the Kubernetes services on the nodes.** - -***We need to configure the kubelet and start the kubelet and proxy*** - -* Edit /etc/kubernetes/kubelet to appear as such: - -```shell -# The address for the info server to serve on -KUBELET_ADDRESS="--address=0.0.0.0" - -# The port for the info server to serve on -KUBELET_PORT="--port=10250" - -# You may leave this blank to use the actual hostname -# Check the node number! -KUBELET_HOSTNAME="--hostname-override=centos-minion-n" - -# Location of the api-server -KUBELET_API_SERVER="--api-servers=http://centos-master:8080" - -# Add your own! -KUBELET_ARGS="" -``` - -* Configure flannel to overlay Docker network in /etc/sysconfig/flanneld (in all the nodes) - -```shell -# Flanneld configuration options - -# etcd url location. Point this to the server where etcd runs -FLANNEL_ETCD_ENDPOINTS="http://centos-master:2379" - -# etcd config key. This is the configuration key that flannel queries -# For address range assignment -FLANNEL_ETCD_PREFIX="/kube-centos/network" - -# Any additional options that you want to pass -#FLANNEL_OPTIONS="" -``` - -* Start the appropriate services on node (centos-minion-n). - -```shell -for SERVICES in kube-proxy kubelet flanneld docker; do - systemctl restart $SERVICES - systemctl enable $SERVICES - systemctl status $SERVICES -done -``` -* Configure kubectl - -```shell -kubectl config set-cluster default-cluster --server=http://centos-master:8080 -kubectl config set-context default-context --cluster=default-cluster --user=default-admin -kubectl config use-context default-context -``` - -*You should be finished!* - -* Check to make sure the cluster can see the node (on centos-master) - -```shell -$ kubectl get nodes -NAME STATUS AGE VERSION -centos-minion-1 Ready 3d v1.6.0+fff5156 -centos-minion-2 Ready 3d v1.6.0+fff5156 -centos-minion-3 Ready 3d v1.6.0+fff5156 -``` - -**The cluster should be running! Launch a test pod.** - -## Support Level - - -IaaS Provider | Config. Mgmt | OS | Networking | Docs | Conforms | Support Level --------------------- | ------------ | ------ | ---------- | --------------------------------------------- | ---------| ---------------------------- -Bare-metal | custom | CentOS | flannel | [docs](/docs/getting-started-guides/centos/centos_manual_config) | | Community ([@coolsvap](https://github.com/coolsvap)) - -For support level information on all solutions, see the [Table of solutions](/docs/getting-started-guides/#table-of-solutions) chart. diff --git a/docs/setup/pick-right-solution.md b/docs/setup/pick-right-solution.md index 48239548dc..4e916837f6 100644 --- a/docs/setup/pick-right-solution.md +++ b/docs/setup/pick-right-solution.md @@ -130,7 +130,6 @@ These solutions are combinations of cloud providers and operating systems not co * [Fedora via Ansible](/docs/getting-started-guides/fedora/fedora_ansible_config/) * [Fedora (Single Node)](/docs/getting-started-guides/fedora/fedora_manual_config/) * [Fedora (Multi Node)](/docs/getting-started-guides/fedora/flannel_multi_node_cluster/) -* [CentOS](/docs/getting-started-guides/centos/centos_manual_config/) * [Kubernetes on Ubuntu](/docs/getting-started-guides/ubuntu/) * [CoreOS on AWS or GCE](/docs/getting-started-guides/coreos/) @@ -174,7 +173,6 @@ Vagrant | CoreOS | CoreOS | flannel | [docs](/docs/gettin Bare-metal (Offline) | CoreOS | CoreOS | flannel | [docs](/docs/getting-started-guides/coreos/bare_metal_offline/) | Community ([@jeffbean](https://github.com/jeffbean)) CloudStack | Ansible | CoreOS | flannel | [docs](/docs/getting-started-guides/cloudstack/) | Community ([@sebgoa](https://github.com/sebgoa)) Vmware vSphere | Saltstack | Debian | OVS | [docs](/docs/getting-started-guides/vsphere/) | Community ([@imkin](https://github.com/imkin)) -Bare-metal | custom | CentOS | flannel | [docs](/docs/getting-started-guides/centos/centos_manual_config/) | Community ([@coolsvap](https://github.com/coolsvap)) lxd | Juju | Ubuntu | flannel/canal | [docs](/docs/getting-started-guides/ubuntu/local/) | [Commercial](https://www.ubuntu.com/kubernetes) and [Community](https://jujucharms.com/kubernetes) AWS | Juju | Ubuntu | flannel/calico/canal | [docs](/docs/getting-started-guides/ubuntu/) | [Commercial](https://www.ubuntu.com/kubernetes) and [Community](https://jujucharms.com/kubernetes) Azure | Juju | Ubuntu | flannel/calico/canal | [docs](/docs/getting-started-guides/ubuntu/) | [Commercial](https://www.ubuntu.com/kubernetes) and [Community](https://jujucharms.com/kubernetes) From 169f527e4d025273759c1a821ac9e1ceffb5c12f Mon Sep 17 00:00:00 2001 From: aburdenthehand Date: Wed, 7 Feb 2018 12:43:43 +1000 Subject: [PATCH 082/329] kubectl 1.9+ updated registry secret type and datakey: .dockercfg is now .dockerconfigjson, and datakey now wrapped in 'auths' element (#7248) --- .../pull-image-private-registry.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 36f8ac617a..8c2c608783 100644 --- a/docs/tasks/configure-pod-container/pull-image-private-registry.md +++ b/docs/tasks/configure-pod-container/pull-image-private-registry.md @@ -70,28 +70,28 @@ The output is similar to this: apiVersion: v1 data: - .dockercfg: eyJodHRwczovL2luZGV4L ... J0QUl6RTIifX0= + .dockerconfigjson: eyJodHRwczovL2luZGV4L ... J0QUl6RTIifX0= kind: Secret metadata: ... name: regsecret ... - type: kubernetes.io/dockercfg + type: kubernetes.io/dockerconfigjson -The value of the `.dockercfg` field is a base64 representation of your secret data. +The value of the `.dockerconfigjson` field is a base64 representation of your secret data. Copy the base64 representation of the secret data into a file named `secret64`. **Important**: Make sure there are no line breaks in your `secret64` file. -To understand what is in the `.dockercfg` field, convert the secret data to a +To understand what is in the `.dockerconfigjson` field, convert the secret data to a readable format: base64 -d secret64 The output is similar to this: - {"yourprivateregistry.com":{"username":"janedoe","password":"xxxxxxxxxxx","email":"jdoe@example.com","auth":"c3R...zE2"}} + {"auths":{"yourprivateregistry.com":{"username":"janedoe","password":"xxxxxxxxxxx","email":"jdoe@example.com","auth":"c3R...zE2"}}} Notice that the secret data contains the authorization token from your `config.json` file. From f924be78732cf77179d2e0cbaf8440e7153868e5 Mon Sep 17 00:00:00 2001 From: Janet Kuo Date: Tue, 6 Feb 2018 18:49:44 -0800 Subject: [PATCH 083/329] Fix tags of workloads-related glossary (#7102) --- _data/glossary/daemonset.yaml | 1 + _data/glossary/job.yaml | 2 ++ _data/glossary/replica-set.yml | 3 ++- _data/glossary/replication-controller.yaml | 3 ++- _data/glossary/statefulset.yml | 1 + 5 files changed, 8 insertions(+), 2 deletions(-) diff --git a/_data/glossary/daemonset.yaml b/_data/glossary/daemonset.yaml index 0c84d01b19..cb3374037d 100644 --- a/_data/glossary/daemonset.yaml +++ b/_data/glossary/daemonset.yaml @@ -3,6 +3,7 @@ name: DaemonSet full-link: /docs/concepts/workloads/controllers/daemonset tags: - fundamental +- core-object - workload short-description: > Ensures a copy of a {% glossary_tooltip text="Pod" term_id="pod" %} is running across a set of nodes in a {% glossary_tooltip text="cluster" term_id="cluster" %}. diff --git a/_data/glossary/job.yaml b/_data/glossary/job.yaml index c868a68941..ec32a36943 100644 --- a/_data/glossary/job.yaml +++ b/_data/glossary/job.yaml @@ -2,7 +2,9 @@ id: job name: Job full-link: /docs/concepts/workloads/controllers/jobs-run-to-completion tags: +- fundamental - core-object +- workload short-description: > A finite or batch task that runs to completion. long-description: > diff --git a/_data/glossary/replica-set.yml b/_data/glossary/replica-set.yml index 74d987b588..e239a438b7 100644 --- a/_data/glossary/replica-set.yml +++ b/_data/glossary/replica-set.yml @@ -4,8 +4,9 @@ full-link: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ related: - replication-controller tags: +- fundamental - core-object -- architecture +- workload short-description: > ReplicaSet is the next-generation Replication Controller. long-description: > diff --git a/_data/glossary/replication-controller.yaml b/_data/glossary/replication-controller.yaml index 6009b49c8b..04b071a8e4 100644 --- a/_data/glossary/replication-controller.yaml +++ b/_data/glossary/replication-controller.yaml @@ -1,7 +1,8 @@ id: replication-controller name: Replication Controller tags: -- fundamental +- workload +- core-object short-description: > Kubernetes service that ensures a specific number of instances of a pod are always running. long-description: > diff --git a/_data/glossary/statefulset.yml b/_data/glossary/statefulset.yml index 4fdbd5ce12..542523f5df 100644 --- a/_data/glossary/statefulset.yml +++ b/_data/glossary/statefulset.yml @@ -5,6 +5,7 @@ related: - deployment - pod tags: +- fundamental - core-object - workload - storage From c2fd2d3acaf4e036d72fd7cef51d09620a2cf626 Mon Sep 17 00:00:00 2001 From: Pingan Date: Thu, 8 Feb 2018 01:39:48 +0800 Subject: [PATCH 084/329] modify the default update strategy of statefulset (#7270) --- docs/concepts/workloads/controllers/statefulset.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/concepts/workloads/controllers/statefulset.md b/docs/concepts/workloads/controllers/statefulset.md index dde71c613f..146be2b043 100644 --- a/docs/concepts/workloads/controllers/statefulset.md +++ b/docs/concepts/workloads/controllers/statefulset.md @@ -207,8 +207,7 @@ annotations for the Pods in a StatefulSet. ### On Delete -The `OnDelete` update strategy implements the legacy (1.6 and prior) behavior. It is the default -strategy when `spec.updateStrategy` is left unspecified. When a StatefulSet's +The `OnDelete` update strategy implements the legacy (1.6 and prior) behavior. When a StatefulSet's `.spec.updateStrategy.type` is set to `OnDelete`, the StatefulSet controller will not automatically update the Pods in a StatefulSet. Users must manually delete Pods to cause the controller to create new Pods that reflect modifications made to a StatefulSet's `.spec.template`. @@ -216,7 +215,7 @@ create new Pods that reflect modifications made to a StatefulSet's `.spec.templa ### Rolling Updates The `RollingUpdate` update strategy implements automated, rolling update for the Pods in a -StatefulSet. When a StatefulSet's `.spec.updateStrategy.type` is set to `RollingUpdate`, the +StatefulSet. It is the default strategy when `spec.updateStrategy` is left unspecified. When a StatefulSet's `.spec.updateStrategy.type` is set to `RollingUpdate`, the StatefulSet controller will delete and recreate each Pod in the StatefulSet. It will proceed in the same order as Pod termination (from the largest ordinal to the smallest), updating each Pod one at a time. It will wait until an updated Pod is Running and Ready prior to From 9f862662a9224e97ebb64eb8f5e6011f4b50e893 Mon Sep 17 00:00:00 2001 From: Brad Topol Date: Wed, 7 Feb 2018 16:51:43 -0500 Subject: [PATCH 085/329] Add Brad Topol to owner aliases. (#7246) * Add Brad Yopol to owner aliases. Signed-off-by: Brad Topol * Added entry to OWNERS as well --- OWNERS | 1 + OWNERS_ALIASES | 1 + 2 files changed, 2 insertions(+) diff --git a/OWNERS b/OWNERS index 6e3f7880d9..cf57dd3921 100644 --- a/OWNERS +++ b/OWNERS @@ -2,6 +2,7 @@ reviewers: - tengqm - zhangxiaoyu-zidif - xiangpengzhao +- bradtopol approvers: - heckj - a-mccarthy diff --git a/OWNERS_ALIASES b/OWNERS_ALIASES index 2ac8989ed2..8142dc97ce 100644 --- a/OWNERS_ALIASES +++ b/OWNERS_ALIASES @@ -92,6 +92,7 @@ aliases: - bradamant3 - steveperry-53 - zacharysarah + - bradtopol sig-federation: #Team: Federation; e.g. Federated Clusters - csbell sig-gcp: #Google Cloud Platform; GH: sig-gcp-pr-reviews From e666265a5e404902c767b52eb09f9abf51ecb1e6 Mon Sep 17 00:00:00 2001 From: Matt Braymer-Hayes Date: Wed, 7 Feb 2018 13:52:43 -0800 Subject: [PATCH 086/329] Update ISSUE_TEMPLATE.md (#7284) Change default "Page to Update" URL protocol from HTTP to HTTPS. --- .github/ISSUE_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index a0656931f0..c7d4ece081 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -14,7 +14,7 @@ **Page to Update:** -http://kubernetes.io/... +https://kubernetes.io/... From 90eae6f335899291bf3dc6c9836c86cbf4adb302 Mon Sep 17 00:00:00 2001 From: Chris Hoge Date: Wed, 7 Feb 2018 17:47:42 -0800 Subject: [PATCH 087/329] Update OWNERS_ALIASES for sig-openstack (#7280) This patch updates the OWNERS_ALIASES file to reflect the leadership changes in sig-openstack.[1] [1] https://github.com/kubernetes/community/blob/master/OWNERS_ALIASES#L68 --- OWNERS_ALIASES | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OWNERS_ALIASES b/OWNERS_ALIASES index 8142dc97ce..10683f47aa 100644 --- a/OWNERS_ALIASES +++ b/OWNERS_ALIASES @@ -150,9 +150,9 @@ aliases: - feiskyer - nebril sig-openstack: #GH: sig-openstack-pr-reviews - - idvoretskyi - - xsgordon - - NickrenREN + - hogepodge + - dklyle + - rjmorse sig-pm: #aka Product Management - apsinha - idvoretskyi From 5a37ded1c4d7958298903ac00c800ebcb0d444aa Mon Sep 17 00:00:00 2001 From: sergiipopov Date: Thu, 8 Feb 2018 03:58:43 +0200 Subject: [PATCH 088/329] fix edx link (#7276) --- docs/tutorials/online-training/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/online-training/overview.md b/docs/tutorials/online-training/overview.md index eb2c9b849f..3d22729940 100644 --- a/docs/tutorials/online-training/overview.md +++ b/docs/tutorials/online-training/overview.md @@ -12,7 +12,7 @@ Here are some of the sites that offer online training for Kubernetes: * [Scalable Microservices with Kubernetes (Udacity)](https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615) -* [Introduction to Kubernetes (edX)](https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615) +* [Introduction to Kubernetes (edX)](https://www.edx.org/course/introduction-kubernetes-linuxfoundationx-lfs158x) {% endcapture %} From 7256d598490f218886d767f915d552ec6136ee83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=20Garc=C3=ADa?= Date: Thu, 8 Feb 2018 02:59:43 +0100 Subject: [PATCH 089/329] Fix patch image command in rolling update section (#7124) Fixes one part of the issue #7056 about patch command failing to update. In this case it changes the image URL to another different than the used previously to create the StatefulSet. --- docs/tutorials/stateful-application/basic-stateful-set.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/stateful-application/basic-stateful-set.md b/docs/tutorials/stateful-application/basic-stateful-set.md index d631fbef1f..c48b8ada4c 100644 --- a/docs/tutorials/stateful-application/basic-stateful-set.md +++ b/docs/tutorials/stateful-application/basic-stateful-set.md @@ -465,7 +465,7 @@ In one terminal window, patch the `web` StatefulSet to change the container image again. ```shell -kubectl patch statefulset web --type='json' -p='[{"op": "replace", "path": "/spec/template/spec/containers/0/image", "value":"k8s.gcr.io/nginx-slim:0.8"}]' +kubectl patch statefulset web --type='json' -p='[{"op": "replace", "path": "/spec/template/spec/containers/0/image", "value":"gcr.io/google_containers/nginx-slim:0.8"}]' statefulset "web" patched ``` From 1548e80f100e27473ce844245f1b8bb9e6beac52 Mon Sep 17 00:00:00 2001 From: Matt Braymer-Hayes Date: Wed, 7 Feb 2018 18:00:43 -0800 Subject: [PATCH 090/329] Update nodes.md (#7288) Change "introduces" to "introduced" to reflect v1.8 no longer being the latest version. --- docs/concepts/architecture/nodes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/architecture/nodes.md b/docs/concepts/architecture/nodes.md index e4938ae3f2..3d3ce4f5f0 100644 --- a/docs/concepts/architecture/nodes.md +++ b/docs/concepts/architecture/nodes.md @@ -74,7 +74,7 @@ the "Terminating" or "Unknown" states. In cases where Kubernetes cannot deduce f permanently left a cluster, the cluster administrator may need to delete the node object by hand. Deleting the node object from Kubernetes causes all the Pod objects running on it to be deleted from the apiserver, freeing up their names. -Version 1.8 introduces an alpha feature that automatically creates +Version 1.8 introduced an alpha feature that automatically creates [taints](/docs/concepts/configuration/taint-and-toleration/) that represent conditions. To enable this behavior, pass an additional feature gate flag `--feature-gates=...,TaintNodesByCondition=true` to the API server, controller manager, and scheduler. From 4f8cb2dba5b13961d73e998d6c7a1ef950e3eb55 Mon Sep 17 00:00:00 2001 From: Wei Li Date: Thu, 8 Feb 2018 10:22:43 +0800 Subject: [PATCH 091/329] Typo fix: recommend -> recommended (#7271) --- docs/admin/federation/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/admin/federation/index.md b/docs/admin/federation/index.md index f52fb5a035..76b5ebf55a 100644 --- a/docs/admin/federation/index.md +++ b/docs/admin/federation/index.md @@ -115,7 +115,7 @@ $ KUBE_REGISTRY="gcr.io/myrepository" federation/develop/develop.sh push Note: This is going to overwrite the values you might have set for `apiserverRegistry`, `apiserverVersion`, `controllerManagerRegistry` and `controllerManagerVersion` in your `${FEDERATION_OUTPUT_ROOT}/values.yaml` -file. Hence, it is not recommend to customize these values in +file. Hence, it is not recommended to customize these values in `${FEDERATION_OUTPUT_ROOT}/values.yaml` if you are building the images from source. From 381eb97d894f08a8b7b0c60bb216368ef0d81faa Mon Sep 17 00:00:00 2001 From: Jianfeng Li Date: Thu, 8 Feb 2018 10:23:45 +0800 Subject: [PATCH 092/329] fix some typos in keps.md (#7266) --- docs/imported/community/keps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/imported/community/keps.md b/docs/imported/community/keps.md index dbc9190276..2bdd3a0c3c 100755 --- a/docs/imported/community/keps.md +++ b/docs/imported/community/keps.md @@ -183,14 +183,14 @@ Metadata items: * Must be one of `Draft`, `Deferred`, `Approved`, `Rejected`, `Withdrawn`, `Final`, `Replaced`. * **authors** Required - * A list of authors for the KEP. We require a name (which can be a psuedonym) + * A list of authors for the KEP. We require a name (which can be a pseudonym) along with a github ID. Other ways to contact the author is strongly encouraged. This is a list of maps. Subkeys of each item: `name`, `github`, `email` (optional), `slack` (optional). * **owning-sig** Required * The SIG that is most closely associated with this KEP. If there is code or other artifacts that will result from this KEP, then it is expected that - this SIG will take responsiblity for the bulk of those artifacts. + this SIG will take responsibility for the bulk of those artifacts. * SIGs are listed as `sig-abc-def` where the name matches up with the directory in the `kubernetes/community` repo. * **participating-sigs** Optional From a640f13cd596b65c9068109c2d6ae655aafb8b8c Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Thu, 8 Feb 2018 22:59:43 +0800 Subject: [PATCH 093/329] Fix markdown render issues (#7296) --- docs/admin/authorization/rbac.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/admin/authorization/rbac.md b/docs/admin/authorization/rbac.md index d171694b07..bf9019a010 100644 --- a/docs/admin/authorization/rbac.md +++ b/docs/admin/authorization/rbac.md @@ -138,7 +138,7 @@ subjects: apiGroup: rbac.authorization.k8s.io roleRef: kind: ClusterRole -  name: secret-reader + name: secret-reader apiGroup: rbac.authorization.k8s.io ``` @@ -188,7 +188,7 @@ rules: Notably, if `resourceNames` are set, then the verb must not be list, watch, create, or deletecollection. Because resource names are not present in the URL for create, list, watch, and deletecollection API requests, -those verbs would not be allowed by a rule with resourceNames set, since the resourceNames portion of the +those verbs would not be allowed by a rule with `resourceNames` set, since the `resourceNames` portion of the rule would not match the request. ### Aggregated ClusterRoles @@ -762,7 +762,7 @@ In order from most secure to least secure, the approaches are: If an application does not specify a `serviceAccountName`, it uses the "default" service account. - NOTE: Permissions given to the "default" service account are available to any pod in the namespace that does not specify a `serviceAccountName`. + **NOTE:** Permissions given to the "default" service account are available to any pod in the namespace that does not specify a `serviceAccountName`. For example, grant read-only permission within "my-namespace" to the "default" service account: @@ -776,7 +776,7 @@ In order from most secure to least secure, the approaches are: Many [add-ons](/docs/concepts/cluster-administration/addons/) currently run as the "default" service account in the "kube-system" namespace. To allow those add-ons to run with super-user access, grant cluster-admin permissions to the "default" service account in the "kube-system" namespace. - NOTE: Enabling this means the "kube-system" namespace contains secrets that grant super-user access to the API. + **NOTE:** Enabling this means the "kube-system" namespace contains secrets that grant super-user access to the API. ```shell kubectl create clusterrolebinding add-on-cluster-admin \ @@ -814,7 +814,7 @@ In order from most secure to least secure, the approaches are: If you don't care about partitioning permissions at all, you can grant super-user access to all service accounts. - WARNING: This allows any user with read access to secrets or the ability to create a pod to access super-user credentials. + **WARNING:** This allows any user with read access to secrets or the ability to create a pod to access super-user credentials. ```shell kubectl create clusterrolebinding serviceaccounts-cluster-admin \ @@ -855,10 +855,11 @@ in the server logs, you can remove the ABAC authorizer. You can replicate a permissive policy using RBAC role bindings. -**WARNING: The following policy allows ALL service accounts to act as cluster administrators. +**WARNING:** The following policy allows **ALL** service accounts to act as cluster administrators. Any application running in a container receives service account credentials automatically, and could perform any action against the API, including viewing secrets and modifying permissions. -This is not a recommended policy.** +This is not a recommended policy. +{: .warning} ``` kubectl create clusterrolebinding permissive-binding \ From 24caa1a9af80becf51a2132a1d25667d9c531f7c Mon Sep 17 00:00:00 2001 From: Matt Kelly Date: Thu, 8 Feb 2018 15:07:47 -0500 Subject: [PATCH 094/329] kubeadm HA guide: fix indentation and use EOF instead of EOL (#7249) * Use EOF instead of EOL in HA guide This is for consistency with the rest of the docs. * Change indentation from 4 to 3 spaces The number of spaces in indentation is expected to be divisible by 3. By having 4 spaces, an extra space was added to the beginning of all shell code sections, causing issues for heredoc interpretation on copy/paste. --- docs/setup/independent/high-availability.md | 572 ++++++++++---------- 1 file changed, 286 insertions(+), 286 deletions(-) diff --git a/docs/setup/independent/high-availability.md b/docs/setup/independent/high-availability.md index c5cb8751ed..c4c6b72d8c 100644 --- a/docs/setup/independent/high-availability.md +++ b/docs/setup/independent/high-availability.md @@ -54,76 +54,76 @@ For **Option 2**: you can skip to the next step. Any reference to `etcd0`, `etcd 1. Install `cfssl` and `cfssljson`: - ```shell - curl -o /usr/local/bin/cfssl https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 - curl -o /usr/local/bin/cfssljson https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 - chmod +x /usr/local/bin/cfssl* - ``` + ```shell + curl -o /usr/local/bin/cfssl https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 + curl -o /usr/local/bin/cfssljson https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 + chmod +x /usr/local/bin/cfssl* + ``` 1. SSH into `etcd0` and run the following: - ```shell - mkdir -p /etc/kubernetes/pki/etcd - cd /etc/kubernetes/pki/etcd - ``` - ```shell - cat >ca-config.json <ca-csr.json <ca-config.json <ca-csr.json <client.json <client.json <" - ``` + ```shell + ssh-keygen -t rsa -b 4096 -C "" + ``` - Make sure to replace `` with your email, a placeholder, or an empty string. Keep hitting enter until files exist in `~/.ssh`. + Make sure to replace `` with your email, a placeholder, or an empty string. Keep hitting enter until files exist in `~/.ssh`. 1. Output the contents of the public key file for `etcd1` and `etcd2`, like so: - ```shell - cat ~/.ssh/id_rsa.pub - ``` + ```shell + cat ~/.ssh/id_rsa.pub + ``` 1. Finally, copy the output for each and paste them into `etcd0`'s `~/.ssh/authorized_keys` file. This will permit `etcd1` and `etcd2` to SSH in to the machine. @@ -181,32 +181,32 @@ In order to copy certs between machines, you must enable SSH access for `scp`. 1. In order to generate certs, each etcd machine needs the root CA generated by `etcd0`. On `etcd1` and `etcd2`, run the following: - ```shell - mkdir -p /etc/kubernetes/pki/etcd - cd /etc/kubernetes/pki/etcd - scp root@:/etc/kubernetes/pki/etcd/ca.pem . - scp root@:/etc/kubernetes/pki/etcd/ca-key.pem . - scp root@:/etc/kubernetes/pki/etcd/client.pem . - scp root@:/etc/kubernetes/pki/etcd/client-key.pem . - scp root@:/etc/kubernetes/pki/etcd/ca-config.json . - ``` + ```shell + mkdir -p /etc/kubernetes/pki/etcd + cd /etc/kubernetes/pki/etcd + scp root@:/etc/kubernetes/pki/etcd/ca.pem . + scp root@:/etc/kubernetes/pki/etcd/ca-key.pem . + scp root@:/etc/kubernetes/pki/etcd/client.pem . + scp root@:/etc/kubernetes/pki/etcd/client-key.pem . + scp root@:/etc/kubernetes/pki/etcd/ca-config.json . + ``` - Where `` corresponds to the public or private IPv4 of `etcd0`. + Where `` corresponds to the public or private IPv4 of `etcd0`. 1. Once this is done, run the following on all etcd machines: - ```shell - cfssl print-defaults csr > config.json - sed -i '0,/CN/{s/example\.net/'"$PEER_NAME"'/}' config.json - sed -i 's/www\.example\.net/'"$PRIVATE_IP"'/' config.json - sed -i 's/example\.net/'"$PUBLIC_IP"'/' config.json + ```shell + cfssl print-defaults csr > config.json + sed -i '0,/CN/{s/example\.net/'"$PEER_NAME"'/}' config.json + sed -i 's/www\.example\.net/'"$PRIVATE_IP"'/' config.json + sed -i 's/example\.net/'"$PUBLIC_IP"'/' config.json - cfssl gencert -ca=ca.pem -ca-key=ca-key.pem -config=ca-config.json -profile=server config.json | cfssljson -bare server - cfssl gencert -ca=ca.pem -ca-key=ca-key.pem -config=ca-config.json -profile=peer config.json | cfssljson -bare peer - ``` + cfssl gencert -ca=ca.pem -ca-key=ca-key.pem -config=ca-config.json -profile=server config.json | cfssljson -bare server + cfssl gencert -ca=ca.pem -ca-key=ca-key.pem -config=ca-config.json -profile=peer config.json | cfssljson -bare peer + ``` - The above will replace the default configuration with your machine's hostname as the peer name, and its IP addresses. Make sure - these are correct before generating the certs. If you found an error, reconfigure `config.json` and re-run the `cfssl` commands. + The above will replace the default configuration with your machine's hostname as the peer name, and its IP addresses. Make sure + these are correct before generating the certs. If you found an error, reconfigure `config.json` and re-run the `cfssl` commands. This will result in the following files: `peer.pem`, `peer-key.pem`, `server.pem`, `server-key.pem`. @@ -222,79 +222,79 @@ Please select one of the tabs to see installation instructions for the respectiv 1. First you will install etcd binaries like so: - ```shell - export ETCD_VERSION=v3.1.10 - curl -sSL https://github.com/coreos/etcd/releases/download/${ETCD_VERSION}/etcd-${ETCD_VERSION}-linux-amd64.tar.gz | tar -xzv --strip-components=1 -C /usr/local/bin/ - rm -rf etcd-$ETCD_VERSION-linux-amd64* - ``` + ```shell + export ETCD_VERSION=v3.1.10 + curl -sSL https://github.com/coreos/etcd/releases/download/${ETCD_VERSION}/etcd-${ETCD_VERSION}-linux-amd64.tar.gz | tar -xzv --strip-components=1 -C /usr/local/bin/ + rm -rf etcd-$ETCD_VERSION-linux-amd64* + ``` - It is worth noting that etcd v3.1.10 is the preferred version for Kubernetes v1.9. For other versions of Kubernetes please consult [the changelog](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG.md). + It is worth noting that etcd v3.1.10 is the preferred version for Kubernetes v1.9. For other versions of Kubernetes please consult [the changelog](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG.md). - Also, please realise that most distributions of Linux already have a version of etcd installed, so you will be replacing the system default. + Also, please realise that most distributions of Linux already have a version of etcd installed, so you will be replacing the system default. 1. Next, generate the environment file that systemd will use: - ``` - touch /etc/etcd.env - echo "PEER_NAME=$PEER_NAME" >> /etc/etcd.env - echo "PRIVATE_IP=$PRIVATE_IP" >> /etc/etcd.env - ``` + ``` + touch /etc/etcd.env + echo "PEER_NAME=$PEER_NAME" >> /etc/etcd.env + echo "PRIVATE_IP=$PRIVATE_IP" >> /etc/etcd.env + ``` 1. Now copy the systemd unit file like so: - ```shell - cat >/etc/systemd/system/etcd.service </etc/systemd/system/etcd.service <:2380,etcd1=https://:2380,etcd2=https://:2380 \ - --initial-cluster-token my-etcd-token \ - --initial-cluster-state new + ExecStart=/usr/local/bin/etcd --name ${PEER_NAME} \ + --data-dir /var/lib/etcd \ + --listen-client-urls https://${PRIVATE_IP}:2379 \ + --advertise-client-urls https://${PRIVATE_IP}:2379 \ + --listen-peer-urls https://${PRIVATE_IP}:2380 \ + --initial-advertise-peer-urls https://${PRIVATE_IP}:2380 \ + --cert-file=/etc/kubernetes/pki/etcd/server.pem \ + --key-file=/etc/kubernetes/pki/etcd/server-key.pem \ + --client-cert-auth \ + --trusted-ca-file=/etc/kubernetes/pki/etcd/ca.pem \ + --peer-cert-file=/etc/kubernetes/pki/etcd/peer.pem \ + --peer-key-file=/etc/kubernetes/pki/etcd/peer-key.pem \ + --peer-client-cert-auth \ + --peer-trusted-ca-file=/etc/kubernetes/pki/etcd/ca.pem \ + --initial-cluster etcd0=https://:2380,etcd1=https://:2380,etcd2=https://:2380 \ + --initial-cluster-token my-etcd-token \ + --initial-cluster-state new - [Install] - WantedBy=multi-user.target - EOL - ``` + [Install] + WantedBy=multi-user.target + EOF + ``` - Make sure you replace ``, `` and `` with the appropriate IPv4 addresses. + Make sure you replace ``, `` and `` with the appropriate IPv4 addresses. 1. Finally, launch etcd like so: - ```shell - systemctl daemon-reload - systemctl start etcd - ``` + ```shell + systemctl daemon-reload + systemctl start etcd + ``` 1. Check that it launched successfully: - ```shell - systemctl status etcd - ``` + ```shell + systemctl status etcd + ``` {% endcapture %} {% capture static_pods %} @@ -303,78 +303,78 @@ Please select one of the tabs to see installation instructions for the respectiv 1. The first step is to run the following to generate the manifest file: - ```shell - cat >/etc/kubernetes/manifests/etcd.yaml < - namespace: kube-system - spec: - containers: - - command: - - etcd --name ${PEER_NAME} \ - - --data-dir /var/lib/etcd \ - - --listen-client-urls https://${PRIVATE_IP}:2379 \ - - --advertise-client-urls https://${PRIVATE_IP}:2379 \ - - --listen-peer-urls https://${PRIVATE_IP}:2380 \ - - --initial-advertise-peer-urls https://${PRIVATE_IP}:2380 \ - - --cert-file=/certs/server.pem \ - - --key-file=/certs/server-key.pem \ - - --client-cert-auth \ - - --trusted-ca-file=/certs/ca.pem \ - - --peer-cert-file=/certs/peer.pem \ - - --peer-key-file=/certs/peer-key.pem \ - - --peer-client-cert-auth \ - - --peer-trusted-ca-file=/certs/ca.pem \ - - --initial-cluster etcd0=https://:2380,etcd1=https://:2380,etcd1=https://:2380 \ - - --initial-cluster-token my-etcd-token \ - - --initial-cluster-state new - image: gcr.io/google_containers/etcd-amd64:3.1.0 - livenessProbe: - httpGet: - path: /health - port: 2379 - scheme: HTTP - initialDelaySeconds: 15 - timeoutSeconds: 15 - name: etcd - env: - - name: PUBLIC_IP - valueFrom: - fieldRef: - fieldPath: status.hostIP - - name: PRIVATE_IP - valueFrom: - fieldRef: - fieldPath: status.podIP - - name: PEER_NAME - valueFrom: - fieldRef: - fieldPath: metadata.name - volumeMounts: - - mountPath: /var/lib/etcd - name: etcd - - mountPath: /certs - name: certs - hostNetwork: true - volumes: - - hostPath: - path: /var/lib/etcd - type: DirectoryOrCreate - name: etcd - - hostPath: - path: /etc/kubernetes/pki/etcd - name: certs - EOL - ``` + ```shell + cat >/etc/kubernetes/manifests/etcd.yaml < + namespace: kube-system + spec: + containers: + - command: + - etcd --name ${PEER_NAME} \ + - --data-dir /var/lib/etcd \ + - --listen-client-urls https://${PRIVATE_IP}:2379 \ + - --advertise-client-urls https://${PRIVATE_IP}:2379 \ + - --listen-peer-urls https://${PRIVATE_IP}:2380 \ + - --initial-advertise-peer-urls https://${PRIVATE_IP}:2380 \ + - --cert-file=/certs/server.pem \ + - --key-file=/certs/server-key.pem \ + - --client-cert-auth \ + - --trusted-ca-file=/certs/ca.pem \ + - --peer-cert-file=/certs/peer.pem \ + - --peer-key-file=/certs/peer-key.pem \ + - --peer-client-cert-auth \ + - --peer-trusted-ca-file=/certs/ca.pem \ + - --initial-cluster etcd0=https://:2380,etcd1=https://:2380,etcd1=https://:2380 \ + - --initial-cluster-token my-etcd-token \ + - --initial-cluster-state new + image: gcr.io/google_containers/etcd-amd64:3.1.0 + livenessProbe: + httpGet: + path: /health + port: 2379 + scheme: HTTP + initialDelaySeconds: 15 + timeoutSeconds: 15 + name: etcd + env: + - name: PUBLIC_IP + valueFrom: + fieldRef: + fieldPath: status.hostIP + - name: PRIVATE_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: PEER_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + volumeMounts: + - mountPath: /var/lib/etcd + name: etcd + - mountPath: /certs + name: certs + hostNetwork: true + volumes: + - hostPath: + path: /var/lib/etcd + type: DirectoryOrCreate + name: etcd + - hostPath: + path: /etc/kubernetes/pki/etcd + name: certs + EOF + ``` - Make sure you replace: - * `` with the name of the node you're running on (e.g. `etcd0`, `etcd1` or `etcd2`) - * ``, `` and `` with the public IPv4s of the other machines that host etcd. + Make sure you replace: + * `` with the name of the node you're running on (e.g. `etcd0`, `etcd1` or `etcd2`) + * ``, `` and `` with the public IPv4s of the other machines that host etcd. {% endcapture %} @@ -403,53 +403,53 @@ Only follow this step if your etcd is hosted on dedicated nodes (**Option 1**). 1. Run the following: - ```shell - mkdir -p /etc/kubernetes/pki/etcd - scp root@:/etc/kubernetes/pki/etcd/ca.pem /etc/kubernetes/pki/etcd - scp root@:/etc/kubernetes/pki/etcd/client.pem /etc/kubernetes/pki/etcd - scp root@:/etc/kubernetes/pki/etcd/client-key.pem /etc/kubernetes/pki/etcd - ``` + ```shell + mkdir -p /etc/kubernetes/pki/etcd + scp root@:/etc/kubernetes/pki/etcd/ca.pem /etc/kubernetes/pki/etcd + scp root@:/etc/kubernetes/pki/etcd/client.pem /etc/kubernetes/pki/etcd + scp root@:/etc/kubernetes/pki/etcd/client-key.pem /etc/kubernetes/pki/etcd + ``` ## Run `kubeadm init` on `master0` {#kubeadm-init-master0} 1. In order for kubeadm to run, you first need to write a configuration file: - ```shell - cat >config.yaml < - etcd: - endpoints: - - https://:2379 - - https://:2379 - - https://:2379 - caFile: /etc/kubernetes/pki/etcd/ca.pem - certFile: /etc/kubernetes/pki/etcd/client.pem - keyFile: /etc/kubernetes/pki/etcd/client-key.pem - networking: - podSubnet: - apiServerCertSANs: - - - apiServerExtraArgs: - apiserver-count: 3 - EOL - ``` + ```shell + cat >config.yaml < + etcd: + endpoints: + - https://:2379 + - https://:2379 + - https://:2379 + caFile: /etc/kubernetes/pki/etcd/ca.pem + certFile: /etc/kubernetes/pki/etcd/client.pem + keyFile: /etc/kubernetes/pki/etcd/client-key.pem + networking: + podSubnet: + apiServerCertSANs: + - + apiServerExtraArgs: + apiserver-count: 3 + EOF + ``` - Ensure that the following placeholders are replaced: + Ensure that the following placeholders are replaced: - - `` with the private IPv4 of the master server. - - ``, `` and `` with the IP addresses of your three etcd nodes - - `` with your Pod CIDR. Please read the [CNI network section](https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/#pod-network) of the docs for more information. Some CNI providers do not require a value to be set. + - `` with the private IPv4 of the master server. + - ``, `` and `` with the IP addresses of your three etcd nodes + - `` with your Pod CIDR. Please read the [CNI network section](https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/#pod-network) of the docs for more information. Some CNI providers do not require a value to be set. - **Note:** If you are using Kubernetes 1.9+, you can replace the `apiserver-count: 3` extra argument with `endpoint-reconciler-type=lease`. For more information, see [the documentation](https://kubernetes.io/docs/admin/high-availability/#endpoint-reconciler). + **Note:** If you are using Kubernetes 1.9+, you can replace the `apiserver-count: 3` extra argument with `endpoint-reconciler-type=lease`. For more information, see [the documentation](https://kubernetes.io/docs/admin/high-availability/#endpoint-reconciler). 1. When this is done, run kubeadm like so: - ```shell - kubeadm init --config=config.yaml - ``` + ```shell + kubeadm init --config=config.yaml + ``` ## Run `kubeadm init` on `master1` and `master2` @@ -460,10 +460,10 @@ Before running kubeadm on the other masters, you need to first copy the K8s CA c 1. Follow the steps in the [create ssh access](#create-ssh-access) section, but instead of adding to `etcd0`'s `authorized_keys` file, add them to `master0`. 1. Once you've done this, run: - ```shell - scp root@:/etc/kubernetes/pki/* /etc/kubernetes/pki - rm apiserver.crt - ``` + ```shell + scp root@:/etc/kubernetes/pki/* /etc/kubernetes/pki + rm apiserver.crt + ``` #### Option 2: Copy paste @@ -489,20 +489,20 @@ Next provision and set up the worker nodes. To do this, you will need to provisi 1. Reconfigure kube-proxy to access kube-apiserver via the load balancer: - ```shell - kubectl get configmap -n kube-system kube-proxy -o yaml > kube-proxy-сm.yaml - sed -i 's#server:.*#server: https://:6443#g' kube-proxy-cm.yaml - kubectl apply -f kube-proxy-cm.yaml --force - # restart all kube-proxy pods to ensure that they load the new configmap - kubectl delete pod -n kube-system -l k8s-app=kube-proxy - ``` + ```shell + kubectl get configmap -n kube-system kube-proxy -o yaml > kube-proxy-сm.yaml + sed -i 's#server:.*#server: https://:6443#g' kube-proxy-cm.yaml + kubectl apply -f kube-proxy-cm.yaml --force + # restart all kube-proxy pods to ensure that they load the new configmap + kubectl delete pod -n kube-system -l k8s-app=kube-proxy + ``` 1. Reconfigure the kubelet to access kube-apiserver via the load balancer: - ```shell - sudo sed -i 's#server:.*#server: https://:6443#g' /etc/kubernetes/kubelet.conf - sudo systemctl restart kubelet - ``` + ```shell + sudo sed -i 's#server:.*#server: https://:6443#g' /etc/kubernetes/kubelet.conf + sudo systemctl restart kubelet + ``` {% endcapture %} From 9a1e5a2c9718f02c344e0dfd97bf2b85656c57e5 Mon Sep 17 00:00:00 2001 From: Qiming Date: Fri, 9 Feb 2018 07:11:51 +0800 Subject: [PATCH 095/329] Remove outdated contents (#7268) This PR removes v1.3, v1.4, v1.5 remnants from repo. They are not supposed to be maintained in the master branch any more. --- .../v1.3/extensions-v1beta1-definitions.html | 6018 --- .../v1.3/extensions-v1beta1-operations.html | 15661 -------- _includes/v1.3/v1-definitions.html | 7806 ---- _includes/v1.3/v1-operations.html | 32321 --------------- .../v1.4/extensions-v1beta1-definitions.html | 6209 --- .../v1.4/extensions-v1beta1-operations.html | 15661 -------- _includes/v1.4/v1-definitions.html | 8087 ---- _includes/v1.4/v1-operations.html | 32451 --------------- .../v1.5/extensions-v1beta1-definitions.html | 6471 --- .../v1.5/extensions-v1beta1-operations.html | 15948 -------- _includes/v1.5/v1-definitions.html | 8266 ---- _includes/v1.5/v1-operations.html | 32969 ---------------- _redirects | 8 - 13 files changed, 187876 deletions(-) delete mode 100755 _includes/v1.3/extensions-v1beta1-definitions.html delete mode 100755 _includes/v1.3/extensions-v1beta1-operations.html delete mode 100755 _includes/v1.3/v1-definitions.html delete mode 100755 _includes/v1.3/v1-operations.html delete mode 100755 _includes/v1.4/extensions-v1beta1-definitions.html delete mode 100755 _includes/v1.4/extensions-v1beta1-operations.html delete mode 100755 _includes/v1.4/v1-definitions.html delete mode 100755 _includes/v1.4/v1-operations.html delete mode 100755 _includes/v1.5/extensions-v1beta1-definitions.html delete mode 100755 _includes/v1.5/extensions-v1beta1-operations.html delete mode 100755 _includes/v1.5/v1-definitions.html delete mode 100755 _includes/v1.5/v1-operations.html diff --git a/_includes/v1.3/extensions-v1beta1-definitions.html b/_includes/v1.3/extensions-v1beta1-definitions.html deleted file mode 100755 index 0b9a667757..0000000000 --- a/_includes/v1.3/extensions-v1beta1-definitions.html +++ /dev/null @@ -1,6018 +0,0 @@ - - - - - - -Top Level API Objects - - - -
    - -
    -

    Definitions

    -
    -
    -

    v1beta1.DeploymentStatus

    -
    -

    DeploymentStatus is the most recently observed status of the Deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    observedGeneration

    The generation observed by the deployment controller.

    false

    integer (int64)

    replicas

    Total number of non-terminated pods targeted by this deployment (their labels match the selector).

    false

    integer (int32)

    updatedReplicas

    Total number of non-terminated pods targeted by this deployment that have the desired template spec.

    false

    integer (int32)

    availableReplicas

    Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

    false

    integer (int32)

    unavailableReplicas

    Total number of unavailable pods targeted by this deployment.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.DaemonSetStatus

    -
    -

    DaemonSetStatus represents the current status of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    currentNumberScheduled

    CurrentNumberScheduled is the number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: http://releases.k8s.io/release-1.3/docs/admin/daemons.md

    true

    integer (int32)

    numberMisscheduled

    NumberMisscheduled is the number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: http://releases.k8s.io/release-1.3/docs/admin/daemons.md

    true

    integer (int32)

    desiredNumberScheduled

    DesiredNumberScheduled is the total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: http://releases.k8s.io/release-1.3/docs/admin/daemons.md

    true

    integer (int32)

    - -
    -
    -

    v1beta1.Job

    -
    -

    Job represents the configuration of a single job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.JobSpec

    status

    Status is a structure describing current status of a job. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.JobStatus

    - -
    -
    -

    v1.Preconditions

    -
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    uid

    Specifies the target UID.

    false

    types.UID

    - -
    -
    -

    v1.ObjectFieldSelector

    -
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    false

    string

    fieldPath

    Path of the field to select in the specified API version.

    true

    string

    - -
    -
    -

    v1.SELinuxOptions

    -
    -

    SELinuxOptions are the labels to be applied to the container

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    user

    User is a SELinux user label that applies to the container.

    false

    string

    role

    Role is a SELinux role label that applies to the container.

    false

    string

    type

    Type is a SELinux type label that applies to the container.

    false

    string

    level

    Level is SELinux level label that applies to the container.

    false

    string

    - -
    -
    -

    v1.VolumeMount

    -
    -

    VolumeMount describes a mounting of a Volume within a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must match the Name of a Volume.

    true

    string

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    false

    boolean

    false

    mountPath

    Path within the container at which the volume should be mounted. Must not contain :.

    true

    string

    subPath

    Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root).

    false

    string

    - -
    -
    -

    v1beta1.IngressSpec

    -
    -

    IngressSpec describes the Ingress the user wishes to exist.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    backend

    A default backend capable of servicing requests that don’t match any rule. At least one of backend or rules must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.

    false

    v1beta1.IngressBackend

    tls

    TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.

    false

    v1beta1.IngressTLS array

    rules

    A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.

    false

    v1beta1.IngressRule array

    - -
    -
    -

    v1beta1.IngressBackend

    -
    -

    IngressBackend describes all endpoints for a given service and port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    serviceName

    Specifies the name of the referenced service.

    true

    string

    servicePort

    Specifies the port of the referenced service.

    true

    string

    - -
    -
    -

    v1beta1.ReplicaSetList

    -
    -

    ReplicaSetList is a collection of ReplicaSets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ReplicaSets. More info: http://releases.k8s.io/release-1.3/docs/user-guide/replication-controller.md

    true

    v1beta1.ReplicaSet array

    - -
    -
    -

    v1.CephFSVolumeSource

    -
    -

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    true

    string array

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    false

    string

    user

    Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    false

    string

    secretFile

    Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    false

    string

    secretRef

    Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    false

    boolean

    false

    - -
    -
    -

    v1beta1.IngressStatus

    -
    -

    IngressStatus describe the current state of the Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    loadBalancer

    LoadBalancer contains the current status of the load-balancer.

    false

    v1.LoadBalancerStatus

    - -
    -
    -

    v1.DownwardAPIVolumeSource

    -
    -

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    items

    Items is a list of downward API volume file

    false

    v1.DownwardAPIVolumeFile array

    - -
    -
    -

    unversioned.StatusCause

    -
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    A machine-readable description of the cause of the error. If this value is empty there is no information available.

    false

    string

    message

    A human-readable description of the cause of the error. This field may be presented as-is to a reader.

    false

    string

    field

    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
    -
    -Examples:
    - "name" - the field "name" on the current resource
    - "items[0].name" - the field "name" on the first array entry in "items"

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicyList

    -
    -

    Network Policy List is a list of NetworkPolicy objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is a list of schema objects.

    true

    v1beta1.NetworkPolicy array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdName

    Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    true

    string

    fsType

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    false

    string

    partition

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    false

    integer (int32)

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    false

    boolean

    false

    - -
    -
    -

    v1beta1.RollingUpdateDeployment

    -
    -

    Spec to control the desired behavior of rolling update.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    maxUnavailable

    The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding up. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.

    false

    string

    maxSurge

    The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.

    false

    string

    - -
    -
    -

    v1beta1.HTTPIngressRuleValue

    -
    -

    HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> → 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 #.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    paths

    A collection of paths that map requests to backends.

    true

    v1beta1.HTTPIngressPath array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    repository

    Repository URL

    true

    string

    revision

    Commit hash for the specified revision.

    false

    string

    directory

    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.

    false

    string

    - -
    -
    -

    *versioned.Event

    - -
    -
    -

    v1beta1.JobStatus

    -
    -

    JobStatus represents the current state of a Job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    conditions

    Conditions represent the latest available observations of an object’s current state. More info: http://releases.k8s.io/release-1.3/docs/user-guide/jobs.md

    false

    v1beta1.JobCondition array

    startTime

    StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string

    completionTime

    CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string

    active

    Active is the number of actively running pods.

    false

    integer (int32)

    succeeded

    Succeeded is the number of pods which reached Phase Succeeded.

    false

    integer (int32)

    failed

    Failed is the number of pods which reached Phase Failed.

    false

    integer (int32)

    - -
    -
    -

    v1.Capabilities

    -
    -

    Adds and removes POSIX capabilities from running containers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    add

    Added capabilities

    false

    v1.Capability array

    drop

    Removed capabilities

    false

    v1.Capability array

    - -
    -
    -

    v1.LocalObjectReference

    -
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    - -
    -
    -

    v1.ExecAction

    -
    -

    ExecAction describes a "run in container" action.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    command

    Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

    ', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

    false

    string array

    - -
    -
    -

    v1.ObjectMeta

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

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

    false

    string

    generateName

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

    false

    string

    namespace

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

    false

    string

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    uid

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

    false

    string

    resourceVersion

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

    false

    string

    generation

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

    false

    integer (int64)

    creationTimestamp

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
    -
    -Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    string

    deletionTimestamp

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource will be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. Once the resource is deleted in the API, the Kubelet will send a hard termination signal to the container. If not set, graceful deletion of the object has not been requested.
    -
    -Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    string

    deletionGracePeriodSeconds

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

    false

    integer (int64)

    labels

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

    false

    object

    annotations

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

    false

    object

    ownerReferences

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

    false

    v1.OwnerReference array

    finalizers

    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

    false

    string array

    - -
    -
    -

    v1beta1.ReplicaSetSpec

    -
    -

    ReplicaSetSpec is the specification of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://releases.k8s.io/release-1.3/docs/user-guide/replication-controller.md#what-is-a-replication-controller

    false

    integer (int32)

    selector

    Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: http://releases.k8s.io/release-1.3/docs/user-guide/labels.md#label-selectors

    false

    v1beta1.LabelSelector

    template

    Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: http://releases.k8s.io/release-1.3/docs/user-guide/replication-controller.md#pod-template

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1beta1.DaemonSetSpec

    -
    -

    DaemonSetSpec is the specification of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selector

    Selector is a label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: http://releases.k8s.io/release-1.3/docs/user-guide/labels.md#label-selectors

    false

    v1beta1.LabelSelector

    template

    Template is the object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template’s node selector (or on every node if no node selector is specified). More info: http://releases.k8s.io/release-1.3/docs/user-guide/replication-controller.md#pod-template

    true

    v1.PodTemplateSpec

    - -
    -
    -

    v1beta1.Deployment

    -
    -

    Deployment enables declarative updates for Pods and ReplicaSets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata.

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the Deployment.

    false

    v1beta1.DeploymentSpec

    status

    Most recently observed status of the Deployment.

    false

    v1beta1.DeploymentStatus

    - -
    -
    -

    v1.AzureFileVolumeSource

    -
    -

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    true

    string

    shareName

    Share Name

    true

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    types.UID

    - -
    -
    -

    v1.ISCSIVolumeSource

    -
    -

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPortal

    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).

    true

    string

    iqn

    Target iSCSI Qualified Name.

    true

    string

    lun

    iSCSI target lun number.

    true

    integer (int32)

    iscsiInterface

    Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

    false

    string

    fsType

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#iscsi

    false

    string

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    false

    boolean

    false

    - -
    -
    -

    v1.EmptyDirVolumeSource

    -
    -

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    medium

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#emptydir

    false

    string

    - -
    -
    -

    v1beta1.IngressList

    -
    -

    IngressList is a collection of Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of Ingress.

    true

    v1beta1.Ingress array

    - -
    -
    -

    v1beta1.ScaleSpec

    -
    -

    describes the attributes of a scale subresource

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    desired number of instances for the scaled object.

    false

    integer (int32)

    - -
    -
    -

    unversioned.Patch

    -
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    -
    -
    -
    -

    v1.FlockerVolumeSource

    -
    -

    Represents a Flocker volume mounted by the Flocker agent. Flocker volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    datasetName

    Required: the volume name. This is going to be store on metadata → name on the payload for Flocker

    true

    string

    - -
    -
    -

    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).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    claimName

    ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    true

    string

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

    false

    boolean

    false

    - -
    -
    -

    unversioned.ListMeta

    -
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    resourceVersion

    String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    - -
    -
    -

    v1beta1.HorizontalPodAutoscaler

    -
    -

    configuration of a horizontal pod autoscaler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    behaviour of autoscaler. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status.

    false

    v1beta1.HorizontalPodAutoscalerSpec

    status

    current information about the autoscaler.

    false

    v1beta1.HorizontalPodAutoscalerStatus

    - -
    -
    -

    v1beta1.RollbackConfig

    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    revision

    The revision to rollback to. If set to 0, rollbck to the last revision.

    false

    integer (int64)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    Name of the secret in the pod’s namespace to use. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#secrets

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    - -
    -
    -

    v1.EnvVarSource

    -
    -

    EnvVarSource represents a source for the value of an EnvVar.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    fieldRef

    Selects a field of the pod; only name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    configMapKeyRef

    Selects a key of a ConfigMap.

    false

    v1.ConfigMapKeySelector

    secretKeyRef

    Selects a key of a secret in the pod’s namespace

    false

    v1.SecretKeySelector

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    driver

    Driver is the name of the driver to use for this volume.

    true

    string

    fsType

    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.

    false

    string

    secretRef

    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.

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    options

    Optional: Extra command options if any.

    false

    object

    - -
    -
    -

    v1beta1.JobCondition

    -
    -

    JobCondition describes current state of a job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of job condition, Complete or Failed.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastProbeTime

    Last time the condition was checked.

    false

    string

    lastTransitionTime

    Last time the condition transit from one status to another.

    false

    string

    reason

    (brief) reason for the condition’s last transition.

    false

    string

    message

    Human readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.LoadBalancerIngress

    -
    -

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

    false

    string

    hostname

    Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

    false

    string

    - -
    -
    -

    v1beta1.APIVersion

    -
    -

    An APIVersion represents a single concrete version of an object model.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of this version (e.g. v1).

    false

    string

    - -
    -
    -

    v1.KeyToPath

    -
    -

    Maps a string key to a path within a volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    The key to project.

    true

    string

    path

    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 ...

    true

    string

    - -
    -
    -

    v1.VsphereVirtualDiskVolumeSource

    -
    -

    Represents a vSphere volume resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumePath

    Path that identifies vSphere volume vmdk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1.DeleteOptions

    -
    -

    DeleteOptions may be provided when deleting an API object

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    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.

    false

    integer (int64)

    preconditions

    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

    false

    v1.Preconditions

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    false

    - -
    -
    -

    v1.Volume

    -
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    true

    string

    hostPath

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#hostpath

    false

    v1.HostPathVolumeSource

    emptyDir

    EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#emptydir

    false

    v1.EmptyDirVolumeSource

    gcePersistentDisk

    GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#awselasticblockstore

    false

    v1.AWSElasticBlockStoreVolumeSource

    gitRepo

    GitRepo represents a git repository at a particular revision.

    false

    v1.GitRepoVolumeSource

    secret

    Secret represents a secret that should populate this volume. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#secrets

    false

    v1.SecretVolumeSource

    nfs

    NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#nfs

    false

    v1.NFSVolumeSource

    iscsi

    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/release-1.3/examples/iscsi/README.md

    false

    v1.ISCSIVolumeSource

    glusterfs

    Glusterfs represents a Glusterfs mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.3/examples/glusterfs/README.md

    false

    v1.GlusterfsVolumeSource

    persistentVolumeClaim

    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimVolumeSource

    rbd

    RBD represents a Rados Block Device mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md

    false

    v1.RBDVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    cinder

    Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/release-1.3/examples/mysql-cinder-pd/README.md

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    flocker

    Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

    false

    v1.FlockerVolumeSource

    downwardAPI

    DownwardAPI represents downward API about the pod that should populate this volume

    false

    v1.DownwardAPIVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    configMap

    ConfigMap represents a configMap that should populate this volume

    false

    v1.ConfigMapVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    - -
    -
    -

    v1beta1.DaemonSetList

    -
    -

    DaemonSetList is a collection of daemon sets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is a list of daemon sets.

    true

    v1beta1.DaemonSet array

    - -
    -
    -

    v1.ResourceFieldSelector

    -
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    containerName

    Container name: required for volumes, optional for env vars

    false

    string

    resource

    Required: resource to select

    true

    string

    divisor

    Specifies the output format of the exposed resources, defaults to "1"

    false

    string

    - -
    -
    -

    v1.Probe

    -
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    initialDelaySeconds

    Number of seconds after the container has started before liveness probes are initiated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#container-probes

    false

    integer (int32)

    timeoutSeconds

    Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#container-probes

    false

    integer (int32)

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    false

    integer (int32)

    successThreshold

    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.

    false

    integer (int32)

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.DeploymentSpec

    -
    -

    DeploymentSpec is the specification of the desired behavior of the Deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

    false

    integer (int32)

    selector

    Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.

    false

    v1beta1.LabelSelector

    template

    Template describes the pods that will be created.

    true

    v1.PodTemplateSpec

    strategy

    The deployment strategy to use to replace existing pods with new ones.

    false

    v1beta1.DeploymentStrategy

    minReadySeconds

    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

    false

    integer (int32)

    revisionHistoryLimit

    The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.

    false

    integer (int32)

    paused

    Indicates that the deployment is paused and will not be processed by the deployment controller.

    false

    boolean

    false

    rollbackTo

    The config this deployment is rolling back to. Will be cleared after rollback is done.

    false

    v1beta1.RollbackConfig

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    groupVersion

    groupVersion is the group and version this APIResourceList is for.

    true

    string

    resources

    resources contains the name of the resources and if they are namespaced.

    true

    unversioned.APIResource array

    - -
    -
    -

    v1.SecretKeySelector

    -
    -

    SecretKeySelector selects a key of a Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    key

    The key of the secret to select from. Must be a valid secret key.

    true

    string

    - -
    -
    -

    v1.Capability

    - -
    -
    -

    unversioned.APIResource

    -
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    name is the name of the resource.

    true

    string

    namespaced

    namespaced indicates if a resource is namespaced or not.

    true

    boolean

    false

    kind

    kind is the kind for the resource (e.g. Foo is the kind for a resource foo)

    true

    string

    - -
    -
    -

    v1.DownwardAPIVolumeFile

    -
    -

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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 ..

    true

    string

    fieldRef

    Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    - -
    -
    -

    v1.ContainerPort

    -
    -

    ContainerPort represents a network port in a single container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    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.

    false

    string

    hostPort

    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.

    false

    integer (int32)

    containerPort

    Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

    true

    integer (int32)

    protocol

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".

    false

    string

    hostIP

    What host IP to bind the external port to.

    false

    string

    - -
    -
    -

    v1.PodSpec

    -
    -

    PodSpec is a description of a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md

    false

    v1.Volume array

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/containers.md

    true

    v1.Container array

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#restartpolicy

    false

    string

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    false

    integer (int64)

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    false

    integer (int64)

    dnsPolicy

    Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

    false

    string

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://releases.k8s.io/release-1.3/docs/user-guide/node-selection/README.md

    false

    object

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/release-1.3/docs/design/service_accounts.md

    false

    string

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    false

    string

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    false

    string

    hostNetwork

    Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    false

    boolean

    false

    hostPID

    Use the host’s pid namespace. Optional: Default to false.

    false

    boolean

    false

    hostIPC

    Use the host’s ipc namespace. Optional: Default to false.

    false

    boolean

    false

    securityContext

    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

    false

    v1.PodSecurityContext

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://releases.k8s.io/release-1.3/docs/user-guide/images.md#specifying-imagepullsecrets-on-a-pod

    false

    v1.LocalObjectReference array

    hostname

    Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value.

    false

    string

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    false

    string

    - -
    -
    -

    v1.Lifecycle

    -
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    postStart

    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://releases.k8s.io/release-1.3/docs/user-guide/container-environment.md#hook-details

    false

    v1.Handler

    preStop

    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://releases.k8s.io/release-1.3/docs/user-guide/container-environment.md#hook-details

    false

    v1.Handler

    - -
    -
    -

    v1.GlusterfsVolumeSource

    -
    -

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/release-1.3/examples/glusterfs/README.md#create-a-pod

    true

    string

    path

    Path is the Glusterfs volume path. More info: http://releases.k8s.io/release-1.3/examples/glusterfs/README.md#create-a-pod

    true

    string

    readOnly

    ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/release-1.3/examples/glusterfs/README.md#create-a-pod

    false

    boolean

    false

    - -
    -
    -

    v1.Handler

    -
    -

    Handler defines a specific action that should be taken

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    - -
    -
    -

    v1beta1.IngressTLS

    -
    -

    IngressTLS describes the transport layer security associated with an Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hosts

    Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.

    false

    string array

    secretName

    SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.

    false

    string

    - -
    -
    -

    v1beta1.SubresourceReference

    -
    -

    SubresourceReference contains enough information to let you inspect or modify the referred subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind of the referent; More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    name

    Name of the referent; More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    apiVersion

    API version of the referent

    false

    string

    subresource

    Subresource name of the referent

    false

    string

    - -
    -
    -

    v1beta1.Scale

    -
    -

    represents a scaling request for a resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata; More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata.

    false

    v1.ObjectMeta

    spec

    defines the behavior of the scale. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status.

    false

    v1beta1.ScaleSpec

    status

    current status of the scale. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status. Read-only.

    false

    v1beta1.ScaleStatus

    - -
    -
    -

    v1.RBDVolumeSource

    -
    -

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    A collection of Ceph monitors. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    true

    string array

    image

    The rados image name. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    true

    string

    fsType

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#rbd

    false

    string

    pool

    The rados pool name. Default is rbd. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it.

    false

    string

    user

    The rados user name. Default is admin. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    false

    string

    keyring

    Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    false

    string

    secretRef

    SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    false

    v1.LocalObjectReference

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    false

    boolean

    false

    - -
    -
    -

    v1beta1.NetworkPolicy

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior for this NetworkPolicy.

    false

    v1beta1.NetworkPolicySpec

    - -
    -
    -

    v1beta1.ScaleStatus

    -
    -

    represents the current status of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    actual number of observed instances of the scaled object.

    true

    integer (int32)

    selector

    label query over pods that should match the replicas count. More info: http://releases.k8s.io/release-1.3/docs/user-guide/labels.md#label-selectors

    false

    object

    targetSelector

    label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/labels.md#label-selectors

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicySpec

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podSelector

    Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.

    true

    v1beta1.LabelSelector

    ingress

    List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if namespace.networkPolicy.ingress.isolation is undefined and cluster policy allows it, OR if the traffic source is the pod’s local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not affect ingress isolation. If this field is present and contains at least one rule, this policy allows any traffic which matches at least one of the ingress rules in this list.

    false

    v1beta1.NetworkPolicyIngressRule array

    - -
    -
    -

    v1.NFSVolumeSource

    -
    -

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    server

    Server is the hostname or IP address of the NFS server. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#nfs

    true

    string

    path

    Path that is exported by the NFS server. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#nfs

    true

    string

    readOnly

    ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#nfs

    false

    boolean

    false

    - -
    -
    -

    v1beta1.DeploymentList

    -
    -

    DeploymentList is a list of Deployments.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    Items is the list of Deployments.

    true

    v1beta1.Deployment array

    - -
    -
    -

    v1beta1.DeploymentRollback

    -
    -

    DeploymentRollback stores the information required to rollback a deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    name

    Required: This must match the Name of a deployment.

    true

    string

    updatedAnnotations

    The annotations to be updated to a deployment

    false

    object

    rollbackTo

    The config of this deployment rollback.

    true

    v1beta1.RollbackConfig

    - -
    -
    -

    v1.HTTPHeader

    -
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The header field name

    true

    string

    value

    The header field value

    true

    string

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerStatus

    -
    -

    current status of a horizontal pod autoscaler

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    observedGeneration

    most recent generation observed by this autoscaler.

    false

    integer (int64)

    lastScaleTime

    last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.

    false

    string

    currentReplicas

    current number of replicas of pods managed by this autoscaler.

    true

    integer (int32)

    desiredReplicas

    desired number of replicas of pods managed by this autoscaler.

    true

    integer (int32)

    currentCPUUtilizationPercentage

    current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetWWNs

    Required: FC target world wide names (WWNs)

    true

    string array

    lun

    Required: FC target lun number

    true

    integer (int32)

    fsType

    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.

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1beta1.ThirdPartyResource

    -
    -

    A ThirdPartyResource is a generic representation of a resource, it is used by add-ons and plugins to add new resource types to the API. It consists of one or more Versions of the api.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata

    false

    v1.ObjectMeta

    description

    Description is the description of this object.

    false

    string

    versions

    Versions are versions for this third party object

    false

    v1beta1.APIVersion array

    - -
    -
    -

    v1.TCPSocketAction

    -
    -

    TCPSocketAction describes an action based on opening a socket

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    port

    Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    - -
    -
    -

    v1beta1.DeploymentStrategy

    -
    -

    DeploymentStrategy describes how to replace existing pods with new ones.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.

    false

    string

    rollingUpdate

    Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.

    false

    v1beta1.RollingUpdateDeployment

    - -
    -
    -

    v1beta1.IngressRule

    -
    -

    IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    host

    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.

    false

    string

    http

    false

    v1beta1.HTTPIngressRuleValue

    - -
    -
    -

    v1beta1.JobList

    -
    -

    JobList is a collection of jobs.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of Job.

    true

    v1beta1.Job array

    - -
    -
    -

    v1beta1.NetworkPolicyPeer

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podSelector

    This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If not provided, this selector selects no pods. If present but empty, this selector selects all pods in this namespace.

    false

    v1beta1.LabelSelector

    namespaceSelector

    Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If omitted, this selector selects no namespaces. If present but empty, this selector selects all namespaces.

    false

    v1beta1.LabelSelector

    - -
    -
    -

    unversioned.StatusDetails

    -
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

    false

    string

    group

    The group attribute of the resource associated with the status StatusReason.

    false

    string

    kind

    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    causes

    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

    false

    unversioned.StatusCause array

    retryAfterSeconds

    If specified, the time in seconds before the operation should be retried.

    false

    integer (int32)

    - -
    -
    -

    v1.HTTPGetAction

    -
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path to access on the HTTP server.

    false

    string

    port

    Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    false

    string

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

    false

    string

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    false

    v1.HTTPHeader array

    - -
    -
    -

    v1beta1.CPUTargetUtilization

    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPercentage

    fraction of the requested CPU that should be utilized/used, e.g. 70 means that 70% of the requested CPU should be in use.

    true

    integer (int32)

    - -
    -
    -

    v1.LoadBalancerStatus

    -
    -

    LoadBalancerStatus represents the status of a load-balancer.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ingress

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

    false

    v1.LoadBalancerIngress array

    - -
    -
    -

    v1.Container

    -
    -

    A single application container that you want to run within a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    true

    string

    image

    Docker image name. More info: http://releases.k8s.io/release-1.3/docs/user-guide/images.md

    false

    string

    command

    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://releases.k8s.io/release-1.3/docs/user-guide/containers.md#containers-and-commands

    false

    string array

    args

    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://releases.k8s.io/release-1.3/docs/user-guide/containers.md#containers-and-commands

    false

    string array

    workingDir

    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.

    false

    string

    ports

    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.

    false

    v1.ContainerPort array

    env

    List of environment variables to set in the container. Cannot be updated.

    false

    v1.EnvVar array

    resources

    Compute Resources required by this container. Cannot be updated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#resources

    false

    v1.ResourceRequirements

    volumeMounts

    Pod volumes to mount into the container’s filesystem. Cannot be updated.

    false

    v1.VolumeMount array

    livenessProbe

    Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#container-probes

    false

    v1.Probe

    readinessProbe

    Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#container-probes

    false

    v1.Probe

    lifecycle

    Actions that the management system should take in response to container lifecycle events. Cannot be updated.

    false

    v1.Lifecycle

    terminationMessagePath

    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.

    false

    string

    imagePullPolicy

    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://releases.k8s.io/release-1.3/docs/user-guide/images.md#updating-images

    false

    string

    securityContext

    Security options the pod should run with. More info: http://releases.k8s.io/release-1.3/docs/design/security_context.md

    false

    v1.SecurityContext

    stdin

    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.

    false

    boolean

    false

    stdinOnce

    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

    false

    boolean

    false

    tty

    Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.PodSecurityContext

    -
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    seLinuxOptions

    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.

    false

    integer (int32) array

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:
    -
    -1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR’d with rw-rw

    false

    integer (int64)

    - -
    -
    -

    v1beta1.NetworkPolicyIngressRule

    -
    -

    This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ports

    List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is not provided, this rule matches all ports (traffic not restricted by port). If this field is empty, this rule matches no ports (no traffic matches). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.

    false

    v1beta1.NetworkPolicyPort array

    from

    List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is not provided, this rule matches all sources (traffic not restricted by source). If this field is empty, this rule matches no sources (no traffic matches). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.

    false

    v1beta1.NetworkPolicyPeer array

    - -
    -
    -

    v1.OwnerReference

    -
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    API version of the referent.

    true

    string

    kind

    Kind of the referent. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    true

    string

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    true

    string

    uid

    UID of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#uids

    true

    string

    controller

    If true, this reference points to the managing controller.

    false

    boolean

    false

    - -
    -
    -

    v1beta1.ReplicaSetStatus

    -
    -

    ReplicaSetStatus represents the current status of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the most recently oberved number of replicas. More info: http://releases.k8s.io/release-1.3/docs/user-guide/replication-controller.md#what-is-a-replication-controller

    true

    integer (int32)

    fullyLabeledReplicas

    The number of pods that have labels matching the labels of the pod template of the replicaset.

    false

    integer (int32)

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

    false

    integer (int64)

    - -
    -
    -

    v1beta1.LabelSelector

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    matchLabels

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

    false

    object

    matchExpressions

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

    false

    v1beta1.LabelSelectorRequirement array

    - -
    -
    -

    v1beta1.ReplicaSet

    -
    -

    ReplicaSet represents the configuration of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    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/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the specification of the desired behavior of the ReplicaSet. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.ReplicaSetSpec

    status

    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/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.ReplicaSetStatus

    - -
    -
    -

    v1.HostPathVolumeSource

    -
    -

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path of the directory on the host. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#hostpath

    true

    string

    - -
    -
    -

    v1beta1.DaemonSet

    -
    -

    DaemonSet represents the configuration of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.DaemonSetSpec

    status

    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/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.DaemonSetStatus

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    volume id used to identify the volume in cinder More info: http://releases.k8s.io/release-1.3/examples/mysql-cinder-pd/README.md

    true

    string

    fsType

    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/release-1.3/examples/mysql-cinder-pd/README.md

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.3/examples/mysql-cinder-pd/README.md

    false

    boolean

    false

    - -
    -
    -

    v1.SecurityContext

    -
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capabilities

    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

    false

    v1.Capabilities

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

    false

    boolean

    false

    seLinuxOptions

    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.Protocol

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#awselasticblockstore

    true

    string

    fsType

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#awselasticblockstore

    false

    string

    partition

    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).

    false

    integer (int32)

    readOnly

    Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#awselasticblockstore

    false

    boolean

    false

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerSpec

    -
    -

    specification of a horizontal pod autoscaler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    scaleRef

    reference to Scale subresource; horizontal pod autoscaler will learn the current resource consumption from its status, and will set the desired number of pods by modifying its spec.

    true

    v1beta1.SubresourceReference

    minReplicas

    lower limit for the number of pods that can be set by the autoscaler, default 1.

    false

    integer (int32)

    maxReplicas

    upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.

    true

    integer (int32)

    cpuUtilization

    target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified it defaults to the target CPU utilization at 80% of the requested resources.

    false

    v1beta1.CPUTargetUtilization

    - -
    -
    -

    v1beta1.LabelSelectorRequirement

    -
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    key is the label key that the selector applies to.

    true

    string

    operator

    operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

    true

    string

    values

    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    false

    string array

    - -
    -
    -

    v1.EnvVar

    -
    -

    EnvVar represents an environment variable present in a Container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    true

    string

    value

    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".

    false

    string

    valueFrom

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

    false

    v1.EnvVarSource

    - -
    -
    -

    v1.ResourceRequirements

    -
    -

    ResourceRequirements describes the compute resource requirements.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits describes the maximum amount of compute resources allowed. More info: http://releases.k8s.io/release-1.3/docs/design/resources.md#resource-specifications

    false

    object

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://releases.k8s.io/release-1.3/docs/design/resources.md#resource-specifications

    false

    object

    - -
    -
    -

    v1.PodTemplateSpec

    -
    -

    PodTemplateSpec describes the data a pod should have when created from a template

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    - -
    -
    -

    v1beta1.NetworkPolicyPort

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    protocol

    Optional. The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.

    false

    v1.Protocol

    port

    If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.

    false

    string

    - -
    -
    -

    v1beta1.JobSpec

    -
    -

    JobSpec describes how the job execution will look like.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    parallelism

    Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://releases.k8s.io/release-1.3/docs/user-guide/jobs.md

    false

    integer (int32)

    completions

    Completions specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: http://releases.k8s.io/release-1.3/docs/user-guide/jobs.md

    false

    integer (int32)

    activeDeadlineSeconds

    Optional duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer

    false

    integer (int64)

    selector

    Selector is a label query over pods that should match the pod count. Normally, the system sets this field for you. More info: http://releases.k8s.io/release-1.3/docs/user-guide/labels.md#label-selectors

    false

    v1beta1.LabelSelector

    autoSelector

    AutoSelector controls generation of pod labels and pod selectors. It was not present in the original extensions/v1beta1 Job definition, but exists to allow conversion from batch/v1 Jobs, where it corresponds to, but has the opposite meaning as, ManualSelector. More info: http://releases.k8s.io/release-1.3/docs/design/selector-generation.md

    false

    boolean

    false

    template

    Template is the object that describes the pod that will be created when executing a job. More info: http://releases.k8s.io/release-1.3/docs/user-guide/jobs.md

    true

    v1.PodTemplateSpec

    - -
    -
    -

    unversioned.Status

    -
    -

    Status is a return value for calls that don’t return other objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    status

    Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    reason

    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.

    false

    string

    details

    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.

    false

    unversioned.StatusDetails

    code

    Suggested HTTP return code for this status, 0 if not set.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerList

    -
    -

    list of horizontal pod autoscaler objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    list of horizontal pod autoscaler objects.

    true

    v1beta1.HorizontalPodAutoscaler array

    - -
    -
    -

    v1.ConfigMapKeySelector

    -
    -

    Selects a key from a ConfigMap.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    key

    The key to select.

    true

    string

    - -
    -
    -

    v1beta1.HTTPIngressPath

    -
    -

    HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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.

    false

    string

    backend

    Backend defines the referenced service endpoint to which the traffic will be forwarded to.

    true

    v1beta1.IngressBackend

    - -
    -
    -

    v1beta1.Ingress

    -
    -

    Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec is the desired state of the Ingress. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.IngressSpec

    status

    Status is the current state of the Ingress. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.IngressStatus

    - -
    -
    -

    v1beta1.ThirdPartyResourceList

    -
    -

    ThirdPartyResourceList is a list of ThirdPartyResources.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    Items is the list of ThirdPartyResources.

    true

    v1beta1.ThirdPartyResource array

    - -
    -
    -

    any

    -
    -

    Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.3/extensions-v1beta1-operations.html b/_includes/v1.3/extensions-v1beta1-operations.html deleted file mode 100755 index bcdf55fa3b..0000000000 --- a/_includes/v1.3/extensions-v1beta1-operations.html +++ /dev/null @@ -1,15661 +0,0 @@ - - - - - - -Operations - - - -
    -
    -

    Operations

    -
    -
    -

    get available resources

    -
    -
    -
    GET /apis/extensions/v1beta1
    -
    -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    unversioned.APIResourceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DeploymentList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscalerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Ingress

    -
    -
    -
    GET /apis/extensions/v1beta1/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.IngressList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Job

    -
    -
    -
    GET /apis/extensions/v1beta1/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.JobList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind DaemonSet

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of DaemonSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a DaemonSet

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DaemonSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified DaemonSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DaemonSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a DaemonSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified DaemonSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified DaemonSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DaemonSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified DaemonSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DeploymentList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Deployment

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a Deployment

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Deployment

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Deployment

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a Deployment

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create rollback of a DeploymentRollback

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DeploymentRollback

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DeploymentRollback

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DeploymentRollback

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Deployment

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscalerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of HorizontalPodAutoscaler

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a HorizontalPodAutoscaler

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.HorizontalPodAutoscaler

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified HorizontalPodAutoscaler

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.HorizontalPodAutoscaler

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a HorizontalPodAutoscaler

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified HorizontalPodAutoscaler

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified HorizontalPodAutoscaler

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.HorizontalPodAutoscaler

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified HorizontalPodAutoscaler

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.IngressList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Ingress

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create an Ingress

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Ingress

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Ingress

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete an Ingress

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Ingress

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Job

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.JobList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Job

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a Job

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Job

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Job

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Job

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Job

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a Job

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Job

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Job

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Job

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Job

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Job

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicyList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of NetworkPolicy

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a NetworkPolicy

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.NetworkPolicy

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified NetworkPolicy

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.NetworkPolicy

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a NetworkPolicy

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified NetworkPolicy

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ReplicaSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a ReplicaSet

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ReplicaSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ReplicaSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ReplicaSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a ReplicaSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ReplicaSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified ReplicaSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ReplicaSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified ReplicaSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicyList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResourceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ThirdPartyResource

    -
    -
    -
    DELETE /apis/extensions/v1beta1/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a ThirdPartyResource

    -
    -
    -
    POST /apis/extensions/v1beta1/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ThirdPartyResource

    -
    -
    -
    PUT /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ThirdPartyResource

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a ThirdPartyResource

    -
    -
    -
    DELETE /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ThirdPartyResource

    -
    -
    -
    PATCH /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Ingress

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Job

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of DaemonSet

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind DaemonSet

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Job

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Job

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.3/v1-definitions.html b/_includes/v1.3/v1-definitions.html deleted file mode 100755 index 42ed010f3c..0000000000 --- a/_includes/v1.3/v1-definitions.html +++ /dev/null @@ -1,7806 +0,0 @@ - - - - - - -Top Level API Objects - - - -
    - -
    -

    Definitions

    -
    -
    -

    v1.Node

    -
    -

    Node is a worker node in Kubernetes, formerly known as minion. Each node will have a unique identifier in the cache (i.e. in etcd).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the behavior of a node. http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NodeSpec

    status

    Most recently observed status of the node. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NodeStatus

    - -
    -
    -

    v1.PersistentVolumeClaimList

    -
    -

    PersistentVolumeClaimList is a list of PersistentVolumeClaim items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    A list of persistent volume claims. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    true

    v1.PersistentVolumeClaim array

    - -
    -
    -

    v1.Preconditions

    -
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    uid

    Specifies the target UID.

    false

    types.UID

    - -
    -
    -

    v1.SELinuxOptions

    -
    -

    SELinuxOptions are the labels to be applied to the container

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    user

    User is a SELinux user label that applies to the container.

    false

    string

    role

    Role is a SELinux role label that applies to the container.

    false

    string

    type

    Type is a SELinux type label that applies to the container.

    false

    string

    level

    Level is SELinux level label that applies to the container.

    false

    string

    - -
    -
    -

    v1.ObjectFieldSelector

    -
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    false

    string

    fieldPath

    Path of the field to select in the specified API version.

    true

    string

    - -
    -
    -

    v1.ContainerStateRunning

    -
    -

    ContainerStateRunning is a running state of a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    startedAt

    Time at which the container was last (re-)started

    false

    string

    - -
    -
    -

    v1.VolumeMount

    -
    -

    VolumeMount describes a mounting of a Volume within a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must match the Name of a Volume.

    true

    string

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    false

    boolean

    false

    mountPath

    Path within the container at which the volume should be mounted. Must not contain :.

    true

    string

    subPath

    Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root).

    false

    string

    - -
    -
    -

    v1.PersistentVolumeClaimSpec

    -
    -

    PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    accessModes

    AccessModes contains the desired access modes the volume should have. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#access-modes-1

    false

    v1.PersistentVolumeAccessMode array

    selector

    A label query over volumes to consider for binding.

    false

    unversioned.LabelSelector

    resources

    Resources represents the minimum resources the volume should have. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#resources

    false

    v1.ResourceRequirements

    volumeName

    VolumeName is the binding reference to the PersistentVolume backing this claim.

    false

    string

    - -
    -
    -

    v1.CephFSVolumeSource

    -
    -

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    true

    string array

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    false

    string

    user

    Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    false

    string

    secretFile

    Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    false

    string

    secretRef

    Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.3/examples/cephfs/README.md#how-to-use-it

    false

    boolean

    false

    - -
    -
    -

    v1.DownwardAPIVolumeSource

    -
    -

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    items

    Items is a list of downward API volume file

    false

    v1.DownwardAPIVolumeFile array

    - -
    -
    -

    unversioned.StatusCause

    -
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    A machine-readable description of the cause of the error. If this value is empty there is no information available.

    false

    string

    message

    A human-readable description of the cause of the error. This field may be presented as-is to a reader.

    false

    string

    field

    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
    -
    -Examples:
    - "name" - the field "name" on the current resource
    - "items[0].name" - the field "name" on the first array entry in "items"

    false

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdName

    Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    true

    string

    fsType

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    false

    string

    partition

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    false

    integer (int32)

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    false

    boolean

    false

    - -
    -
    -

    v1.ResourceQuotaSpec

    -
    -

    ResourceQuotaSpec defines the desired hard limits to enforce for Quota.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hard

    Hard is the set of desired hard limits for each named resource. More info: http://releases.k8s.io/release-1.3/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota

    false

    object

    scopes

    A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.

    false

    v1.ResourceQuotaScope array

    - -
    -
    -

    v1.NamespaceStatus

    -
    -

    NamespaceStatus is information about the current status of a Namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase is the current lifecycle phase of the namespace. More info: http://releases.k8s.io/release-1.3/docs/design/namespaces.md#phases

    false

    string

    - -
    -
    -

    v1.NamespaceSpec

    -
    -

    NamespaceSpec describes the attributes on a Namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    finalizers

    Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: http://releases.k8s.io/release-1.3/docs/design/namespaces.md#finalizers

    false

    v1.FinalizerName array

    - -
    -
    -

    v1.PersistentVolume

    -
    -

    PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#persistent-volumes

    false

    v1.PersistentVolumeSpec

    status

    Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#persistent-volumes

    false

    v1.PersistentVolumeStatus

    - -
    -
    -

    v1.ConfigMapList

    -
    -

    ConfigMapList is a resource containing a list of ConfigMap objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of ConfigMaps.

    true

    v1.ConfigMap array

    - -
    -
    -

    v1.PersistentVolumeStatus

    -
    -

    PersistentVolumeStatus is the current status of a persistent volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#phase

    false

    string

    message

    A human-readable message indicating details about why the volume is in this state.

    false

    string

    reason

    Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.

    false

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    - -
    -
    -

    *versioned.Event

    - -
    -
    -

    v1.EndpointsList

    -
    -

    EndpointsList is a list of endpoints.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of endpoints.

    true

    v1.Endpoints array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    repository

    Repository URL

    true

    string

    revision

    Commit hash for the specified revision.

    false

    string

    directory

    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.

    false

    string

    - -
    -
    -

    v1.ScaleStatus

    -
    -

    ScaleStatus represents the current status of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    actual number of observed instances of the scaled object.

    true

    integer (int32)

    selector

    label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://releases.k8s.io/release-1.3/docs/user-guide/labels.md#label-selectors

    false

    string

    - -
    -
    -

    v1.Capabilities

    -
    -

    Adds and removes POSIX capabilities from running containers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    add

    Added capabilities

    false

    v1.Capability array

    drop

    Removed capabilities

    false

    v1.Capability array

    - -
    -
    -

    v1.ConfigMap

    -
    -

    ConfigMap holds configuration data for pods to consume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    data

    Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.

    false

    object

    - -
    -
    -

    v1.PodTemplateList

    -
    -

    PodTemplateList is a list of PodTemplates.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of pod templates

    true

    v1.PodTemplate array

    - -
    -
    -

    v1.NodeCondition

    -
    -

    NodeCondition contains condition infromation for a node.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of node condition.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastHeartbeatTime

    Last time we got an update on a given condition.

    false

    string

    lastTransitionTime

    Last time the condition transit from one status to another.

    false

    string

    reason

    (brief) reason for the condition’s last transition.

    false

    string

    message

    Human readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.LocalObjectReference

    -
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    - -
    -
    -

    v1.ResourceQuotaStatus

    -
    -

    ResourceQuotaStatus defines the enforced hard limits and observed use.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hard

    Hard is the set of enforced hard limits for each named resource. More info: http://releases.k8s.io/release-1.3/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota

    false

    object

    used

    Used is the current observed total usage of the resource in the namespace.

    false

    object

    - -
    -
    -

    v1.ExecAction

    -
    -

    ExecAction describes a "run in container" action.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    command

    Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

    ', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

    false

    string array

    - -
    -
    -

    v1.ObjectMeta

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

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

    false

    string

    generateName

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

    false

    string

    namespace

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

    false

    string

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    uid

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

    false

    string

    resourceVersion

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

    false

    string

    generation

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

    false

    integer (int64)

    creationTimestamp

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
    -
    -Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    string

    deletionTimestamp

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource will be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. Once the resource is deleted in the API, the Kubelet will send a hard termination signal to the container. If not set, graceful deletion of the object has not been requested.
    -
    -Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    string

    deletionGracePeriodSeconds

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

    false

    integer (int64)

    labels

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

    false

    object

    annotations

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

    false

    object

    ownerReferences

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

    false

    v1.OwnerReference array

    finalizers

    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

    false

    string array

    - -
    -
    -

    v1.LimitRangeSpec

    -
    -

    LimitRangeSpec defines a min/max usage limit for resources that match on kind.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits is the list of LimitRangeItem objects that are enforced.

    true

    v1.LimitRangeItem array

    - -
    -
    -

    types.UID

    - -
    -
    -

    v1.AzureFileVolumeSource

    -
    -

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    true

    string

    shareName

    Share Name

    true

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.ISCSIVolumeSource

    -
    -

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPortal

    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).

    true

    string

    iqn

    Target iSCSI Qualified Name.

    true

    string

    lun

    iSCSI target lun number.

    true

    integer (int32)

    iscsiInterface

    Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

    false

    string

    fsType

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#iscsi

    false

    string

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    false

    boolean

    false

    - -
    -
    -

    v1.EmptyDirVolumeSource

    -
    -

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    medium

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#emptydir

    false

    string

    - -
    -
    -

    v1.NodeList

    -
    -

    NodeList is the whole list of all Nodes which have been registered with master.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of nodes

    true

    v1.Node array

    - -
    -
    -

    unversioned.Patch

    -
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    -
    -
    -
    -

    v1.NamespaceList

    -
    -

    NamespaceList is a list of Namespaces.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is the list of Namespace objects in the list. More info: http://releases.k8s.io/release-1.3/docs/user-guide/namespaces.md

    true

    v1.Namespace array

    - -
    -
    -

    v1.PersistentVolumeClaim

    -
    -

    PersistentVolumeClaim is a user’s request for and claim to a persistent volume

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired characteristics of a volume requested by a pod author. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimSpec

    status

    Status represents the current information/status of a persistent volume claim. Read-only. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimStatus

    - -
    -
    -

    v1.ServiceAccount

    -
    -

    ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    secrets

    Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: http://releases.k8s.io/release-1.3/docs/user-guide/secrets.md

    false

    v1.ObjectReference array

    imagePullSecrets

    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://releases.k8s.io/release-1.3/docs/user-guide/secrets.md#manually-specifying-an-imagepullsecret

    false

    v1.LocalObjectReference array

    - -
    -
    -

    v1.NodeAddress

    -
    -

    NodeAddress contains information for the node’s address.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Node address type, one of Hostname, ExternalIP or InternalIP.

    true

    string

    address

    The node address.

    true

    string

    - -
    -
    -

    v1.Namespace

    -
    -

    Namespace provides a scope for Names. Use of multiple namespaces is optional.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the behavior of the Namespace. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NamespaceSpec

    status

    Status describes the current status of a Namespace. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NamespaceStatus

    - -
    -
    -

    v1.FlockerVolumeSource

    -
    -

    Represents a Flocker volume mounted by the Flocker agent. Flocker volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    datasetName

    Required: the volume name. This is going to be store on metadata → name on the payload for Flocker

    true

    string

    - -
    -
    -

    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).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    claimName

    ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    true

    string

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

    false

    boolean

    false

    - -
    -
    -

    unversioned.ListMeta

    -
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    resourceVersion

    String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    - -
    -
    -

    v1.ResourceQuotaList

    -
    -

    ResourceQuotaList is a list of ResourceQuota items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/release-1.3/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota

    true

    v1.ResourceQuota array

    - -
    -
    -

    v1.PersistentVolumeClaimStatus

    -
    -

    PersistentVolumeClaimStatus is the current status of a persistent volume claim.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase represents the current phase of PersistentVolumeClaim.

    false

    string

    accessModes

    AccessModes contains the actual access modes the volume backing the PVC has. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#access-modes-1

    false

    v1.PersistentVolumeAccessMode array

    capacity

    Represents the actual resources of the underlying volume.

    false

    object

    - -
    -
    -

    v1.UniqueVolumeName

    - -
    -
    -

    unversioned.LabelSelector

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    matchLabels

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

    false

    object

    matchExpressions

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

    false

    unversioned.LabelSelectorRequirement array

    - -
    -
    -

    v1.EndpointSubset

    -
    -

    EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:
    - {
    - Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    - Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    - }
    -The resulting set of endpoints can be viewed as:
    - a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],
    - b: [ 10.10.1.1:309, 10.10.2.2:309 ]

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    addresses

    IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.

    false

    v1.EndpointAddress array

    notReadyAddresses

    IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.

    false

    v1.EndpointAddress array

    ports

    Port numbers available on the related IP addresses.

    false

    v1.EndpointPort array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    Name of the secret in the pod’s namespace to use. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#secrets

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    driver

    Driver is the name of the driver to use for this volume.

    true

    string

    fsType

    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.

    false

    string

    secretRef

    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.

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    options

    Optional: Extra command options if any.

    false

    object

    - -
    -
    -

    v1.EnvVarSource

    -
    -

    EnvVarSource represents a source for the value of an EnvVar.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    fieldRef

    Selects a field of the pod; only name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    configMapKeyRef

    Selects a key of a ConfigMap.

    false

    v1.ConfigMapKeySelector

    secretKeyRef

    Selects a key of a secret in the pod’s namespace

    false

    v1.SecretKeySelector

    - -
    -
    -

    v1.Scale

    -
    -

    Scale represents a scaling request for a resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata; More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata.

    false

    v1.ObjectMeta

    spec

    defines the behavior of the scale. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status.

    false

    v1.ScaleSpec

    status

    current status of the scale. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status. Read-only.

    false

    v1.ScaleStatus

    - -
    -
    -

    v1.LoadBalancerIngress

    -
    -

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

    false

    string

    hostname

    Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

    false

    string

    - -
    -
    -

    v1.KeyToPath

    -
    -

    Maps a string key to a path within a volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    The key to project.

    true

    string

    path

    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 ...

    true

    string

    - -
    -
    -

    v1.Service

    -
    -

    Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the behavior of a service. http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ServiceSpec

    status

    Most recently observed status of the service. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ServiceStatus

    - -
    -
    -

    v1.VsphereVirtualDiskVolumeSource

    -
    -

    Represents a vSphere volume resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumePath

    Path that identifies vSphere volume vmdk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1.ServiceAccountList

    -
    -

    ServiceAccountList is a list of ServiceAccount objects

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ServiceAccounts. More info: http://releases.k8s.io/release-1.3/docs/design/service_accounts.md#service-accounts

    true

    v1.ServiceAccount array

    - -
    -
    -

    v1.LimitRangeList

    -
    -

    LimitRangeList is a list of LimitRange items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is a list of LimitRange objects. More info: http://releases.k8s.io/release-1.3/docs/design/admission_control_limit_range.md

    true

    v1.LimitRange array

    - -
    -
    -

    v1.Endpoints

    -
    -

    Endpoints is a collection of endpoints that implement the actual service. Example:
    - Name: "mysvc",
    - Subsets: [
    - {
    - Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    - Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    - },
    - {
    - Addresses: [{"ip": "10.10.3.3"}],
    - Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}]
    - },
    - ]

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    subsets

    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.

    true

    v1.EndpointSubset array

    - -
    -
    -

    v1.DeleteOptions

    -
    -

    DeleteOptions may be provided when deleting an API object

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    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.

    false

    integer (int64)

    preconditions

    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

    false

    v1.Preconditions

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    false

    - -
    -
    -

    v1.Volume

    -
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    true

    string

    hostPath

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#hostpath

    false

    v1.HostPathVolumeSource

    emptyDir

    EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#emptydir

    false

    v1.EmptyDirVolumeSource

    gcePersistentDisk

    GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#awselasticblockstore

    false

    v1.AWSElasticBlockStoreVolumeSource

    gitRepo

    GitRepo represents a git repository at a particular revision.

    false

    v1.GitRepoVolumeSource

    secret

    Secret represents a secret that should populate this volume. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#secrets

    false

    v1.SecretVolumeSource

    nfs

    NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#nfs

    false

    v1.NFSVolumeSource

    iscsi

    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/release-1.3/examples/iscsi/README.md

    false

    v1.ISCSIVolumeSource

    glusterfs

    Glusterfs represents a Glusterfs mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.3/examples/glusterfs/README.md

    false

    v1.GlusterfsVolumeSource

    persistentVolumeClaim

    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimVolumeSource

    rbd

    RBD represents a Rados Block Device mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md

    false

    v1.RBDVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    cinder

    Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/release-1.3/examples/mysql-cinder-pd/README.md

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    flocker

    Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

    false

    v1.FlockerVolumeSource

    downwardAPI

    DownwardAPI represents downward API about the pod that should populate this volume

    false

    v1.DownwardAPIVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    configMap

    ConfigMap represents a configMap that should populate this volume

    false

    v1.ConfigMapVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    - -
    -
    -

    v1.ResourceFieldSelector

    -
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    containerName

    Container name: required for volumes, optional for env vars

    false

    string

    resource

    Required: resource to select

    true

    string

    divisor

    Specifies the output format of the exposed resources, defaults to "1"

    false

    string

    - -
    -
    -

    v1.Probe

    -
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    initialDelaySeconds

    Number of seconds after the container has started before liveness probes are initiated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#container-probes

    false

    integer (int32)

    timeoutSeconds

    Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#container-probes

    false

    integer (int32)

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    false

    integer (int32)

    successThreshold

    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.

    false

    integer (int32)

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    groupVersion

    groupVersion is the group and version this APIResourceList is for.

    true

    string

    resources

    resources contains the name of the resources and if they are namespaced.

    true

    unversioned.APIResource array

    - -
    -
    -

    v1.SecretKeySelector

    -
    -

    SecretKeySelector selects a key of a Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    key

    The key of the secret to select from. Must be a valid secret key.

    true

    string

    - -
    -
    -

    v1.ReplicationController

    -
    -

    ReplicationController represents the configuration of a replication controller.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    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/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the specification of the desired behavior of the replication controller. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ReplicationControllerSpec

    status

    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/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ReplicationControllerStatus

    - -
    -
    -

    v1.Capability

    - -
    -
    -

    unversioned.APIResource

    -
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    name is the name of the resource.

    true

    string

    namespaced

    namespaced indicates if a resource is namespaced or not.

    true

    boolean

    false

    kind

    kind is the kind for the resource (e.g. Foo is the kind for a resource foo)

    true

    string

    - -
    -
    -

    v1.PodStatus

    -
    -

    PodStatus represents information about the status of a pod. Status may trail the actual state of a system.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Current condition of the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#pod-phase

    false

    string

    conditions

    Current service state of pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#pod-conditions

    false

    v1.PodCondition array

    message

    A human readable message indicating details about why the pod is in this condition.

    false

    string

    reason

    A brief CamelCase message indicating details about why the pod is in this state. e.g. OutOfDisk

    false

    string

    hostIP

    IP address of the host to which the pod is assigned. Empty if not yet scheduled.

    false

    string

    podIP

    IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.

    false

    string

    startTime

    RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.

    false

    string

    containerStatuses

    The list has one entry per container in the manifest. Each entry is currently the output of docker inspect. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#container-statuses

    false

    v1.ContainerStatus array

    - -
    -
    -

    v1.LimitRange

    -
    -

    LimitRange sets resource usage limits for each kind of resource in a Namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the limits enforced. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.LimitRangeSpec

    - -
    -
    -

    v1.DownwardAPIVolumeFile

    -
    -

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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 ..

    true

    string

    fieldRef

    Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    - -
    -
    -

    v1.PodSpec

    -
    -

    PodSpec is a description of a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md

    false

    v1.Volume array

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/containers.md

    true

    v1.Container array

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#restartpolicy

    false

    string

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    false

    integer (int64)

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    false

    integer (int64)

    dnsPolicy

    Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

    false

    string

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://releases.k8s.io/release-1.3/docs/user-guide/node-selection/README.md

    false

    object

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/release-1.3/docs/design/service_accounts.md

    false

    string

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    false

    string

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    false

    string

    hostNetwork

    Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    false

    boolean

    false

    hostPID

    Use the host’s pid namespace. Optional: Default to false.

    false

    boolean

    false

    hostIPC

    Use the host’s ipc namespace. Optional: Default to false.

    false

    boolean

    false

    securityContext

    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

    false

    v1.PodSecurityContext

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://releases.k8s.io/release-1.3/docs/user-guide/images.md#specifying-imagepullsecrets-on-a-pod

    false

    v1.LocalObjectReference array

    hostname

    Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value.

    false

    string

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    false

    string

    - -
    -
    -

    v1.ContainerPort

    -
    -

    ContainerPort represents a network port in a single container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    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.

    false

    string

    hostPort

    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.

    false

    integer (int32)

    containerPort

    Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

    true

    integer (int32)

    protocol

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".

    false

    string

    hostIP

    What host IP to bind the external port to.

    false

    string

    - -
    -
    -

    v1.ResourceQuota

    -
    -

    ResourceQuota sets aggregate quota restrictions enforced per namespace

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired quota. http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ResourceQuotaSpec

    status

    Status defines the actual enforced quota and its current usage. http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ResourceQuotaStatus

    - -
    -
    -

    v1.EventList

    -
    -

    EventList is a list of events.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of events

    true

    v1.Event array

    - -
    -
    -

    v1.Lifecycle

    -
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    postStart

    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://releases.k8s.io/release-1.3/docs/user-guide/container-environment.md#hook-details

    false

    v1.Handler

    preStop

    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://releases.k8s.io/release-1.3/docs/user-guide/container-environment.md#hook-details

    false

    v1.Handler

    - -
    -
    -

    v1.ReplicationControllerSpec

    -
    -

    ReplicationControllerSpec is the specification of a replication controller.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://releases.k8s.io/release-1.3/docs/user-guide/replication-controller.md#what-is-a-replication-controller

    false

    integer (int32)

    selector

    Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: http://releases.k8s.io/release-1.3/docs/user-guide/labels.md#label-selectors

    false

    object

    template

    Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: http://releases.k8s.io/release-1.3/docs/user-guide/replication-controller.md#pod-template

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1.Handler

    -
    -

    Handler defines a specific action that should be taken

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    - -
    -
    -

    v1.NodeStatus

    -
    -

    NodeStatus is information about the current status of a node.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capacity

    Capacity represents the total resources of a node. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#capacity for more details.

    false

    object

    allocatable

    Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.

    false

    object

    phase

    NodePhase is the recently observed lifecycle phase of the node. More info: http://releases.k8s.io/release-1.3/docs/admin/node.md#node-phase

    false

    string

    conditions

    Conditions is an array of current observed node conditions. More info: http://releases.k8s.io/release-1.3/docs/admin/node.md#node-condition

    false

    v1.NodeCondition array

    addresses

    List of addresses reachable to the node. Queried from cloud provider, if available. More info: http://releases.k8s.io/release-1.3/docs/admin/node.md#node-addresses

    false

    v1.NodeAddress array

    daemonEndpoints

    Endpoints of daemons running on the Node.

    false

    v1.NodeDaemonEndpoints

    nodeInfo

    Set of ids/uuids to uniquely identify the node. More info: http://releases.k8s.io/release-1.3/docs/admin/node.md#node-info

    false

    v1.NodeSystemInfo

    images

    List of container images on this node

    false

    v1.ContainerImage array

    volumesInUse

    List of attachable volumes in use (mounted) by the node.

    false

    v1.UniqueVolumeName array

    volumesAttached

    List of volumes that are attached to the node.

    false

    v1.AttachedVolume array

    - -
    -
    -

    v1.GlusterfsVolumeSource

    -
    -

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/release-1.3/examples/glusterfs/README.md#create-a-pod

    true

    string

    path

    Path is the Glusterfs volume path. More info: http://releases.k8s.io/release-1.3/examples/glusterfs/README.md#create-a-pod

    true

    string

    readOnly

    ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/release-1.3/examples/glusterfs/README.md#create-a-pod

    false

    boolean

    false

    - -
    -
    -

    v1.AttachedVolume

    -
    -

    AttachedVolume describes a volume attached to a node

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the attached volume

    true

    string

    devicePath

    DevicePath represents the device path where the volume should be avilable

    true

    string

    - -
    -
    -

    v1.EventSource

    -
    -

    EventSource contains information for an event.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    component

    Component from which the event is generated.

    false

    string

    host

    Host name on which the event is generated.

    false

    string

    - -
    -
    -

    v1.PodCondition

    -
    -

    PodCondition contains details for the current condition of this pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type is the type of the condition. Currently only Ready. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#pod-conditions

    true

    string

    status

    Status is the status of the condition. Can be True, False, Unknown. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#pod-conditions

    true

    string

    lastProbeTime

    Last time we probed the condition.

    false

    string

    lastTransitionTime

    Last time the condition transitioned from one status to another.

    false

    string

    reason

    Unique, one-word, CamelCase reason for the condition’s last transition.

    false

    string

    message

    Human-readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.RBDVolumeSource

    -
    -

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    A collection of Ceph monitors. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    true

    string array

    image

    The rados image name. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    true

    string

    fsType

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#rbd

    false

    string

    pool

    The rados pool name. Default is rbd. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it.

    false

    string

    user

    The rados user name. Default is admin. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    false

    string

    keyring

    Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    false

    string

    secretRef

    SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    false

    v1.LocalObjectReference

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md#how-to-use-it

    false

    boolean

    false

    - -
    -
    -

    v1.PodTemplate

    -
    -

    PodTemplate describes a template for creating copies of a predefined pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    template

    Template defines the pods that will be created from this pod template. http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1.ServiceStatus

    -
    -

    ServiceStatus represents the current status of a service.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    loadBalancer

    LoadBalancer contains the current status of the load-balancer, if one is present.

    false

    v1.LoadBalancerStatus

    - -
    -
    -

    v1.NFSVolumeSource

    -
    -

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    server

    Server is the hostname or IP address of the NFS server. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#nfs

    true

    string

    path

    Path that is exported by the NFS server. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#nfs

    true

    string

    readOnly

    ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#nfs

    false

    boolean

    false

    - -
    -
    -

    v1.HTTPHeader

    -
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The header field name

    true

    string

    value

    The header field value

    true

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetWWNs

    Required: FC target world wide names (WWNs)

    true

    string array

    lun

    Required: FC target lun number

    true

    integer (int32)

    fsType

    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.

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.EndpointPort

    -
    -

    EndpointPort is a tuple that describes a single port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.

    false

    string

    port

    The port number of the endpoint.

    true

    integer (int32)

    protocol

    The IP protocol for this port. Must be UDP or TCP. Default is TCP.

    false

    string

    - -
    -
    -

    v1.TCPSocketAction

    -
    -

    TCPSocketAction describes an action based on opening a socket

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    port

    Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    - -
    -
    -

    unversioned.StatusDetails

    -
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

    false

    string

    group

    The group attribute of the resource associated with the status StatusReason.

    false

    string

    kind

    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    causes

    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

    false

    unversioned.StatusCause array

    retryAfterSeconds

    If specified, the time in seconds before the operation should be retried.

    false

    integer (int32)

    - -
    -
    -

    v1.HTTPGetAction

    -
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path to access on the HTTP server.

    false

    string

    port

    Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    false

    string

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

    false

    string

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    false

    v1.HTTPHeader array

    - -
    -
    -

    v1.LoadBalancerStatus

    -
    -

    LoadBalancerStatus represents the status of a load-balancer.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ingress

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

    false

    v1.LoadBalancerIngress array

    - -
    -
    -

    v1.SecretList

    -
    -

    SecretList is a list of Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is a list of secret objects. More info: http://releases.k8s.io/release-1.3/docs/user-guide/secrets.md

    true

    v1.Secret array

    - -
    -
    -

    v1.Container

    -
    -

    A single application container that you want to run within a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    true

    string

    image

    Docker image name. More info: http://releases.k8s.io/release-1.3/docs/user-guide/images.md

    false

    string

    command

    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://releases.k8s.io/release-1.3/docs/user-guide/containers.md#containers-and-commands

    false

    string array

    args

    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://releases.k8s.io/release-1.3/docs/user-guide/containers.md#containers-and-commands

    false

    string array

    workingDir

    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.

    false

    string

    ports

    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.

    false

    v1.ContainerPort array

    env

    List of environment variables to set in the container. Cannot be updated.

    false

    v1.EnvVar array

    resources

    Compute Resources required by this container. Cannot be updated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#resources

    false

    v1.ResourceRequirements

    volumeMounts

    Pod volumes to mount into the container’s filesystem. Cannot be updated.

    false

    v1.VolumeMount array

    livenessProbe

    Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#container-probes

    false

    v1.Probe

    readinessProbe

    Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pod-states.md#container-probes

    false

    v1.Probe

    lifecycle

    Actions that the management system should take in response to container lifecycle events. Cannot be updated.

    false

    v1.Lifecycle

    terminationMessagePath

    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.

    false

    string

    imagePullPolicy

    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://releases.k8s.io/release-1.3/docs/user-guide/images.md#updating-images

    false

    string

    securityContext

    Security options the pod should run with. More info: http://releases.k8s.io/release-1.3/docs/design/security_context.md

    false

    v1.SecurityContext

    stdin

    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.

    false

    boolean

    false

    stdinOnce

    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

    false

    boolean

    false

    tty

    Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.PodSecurityContext

    -
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    seLinuxOptions

    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.

    false

    integer (int32) array

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:
    -
    -1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR’d with rw-rw

    false

    integer (int64)

    - -
    -
    -

    v1.PersistentVolumeSpec

    -
    -

    PersistentVolumeSpec is the specification of a persistent volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capacity

    A description of the persistent volume’s resources and capacity. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#capacity

    false

    object

    gcePersistentDisk

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#gcepersistentdisk

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#awselasticblockstore

    false

    v1.AWSElasticBlockStoreVolumeSource

    hostPath

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#hostpath

    false

    v1.HostPathVolumeSource

    glusterfs

    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/release-1.3/examples/glusterfs/README.md

    false

    v1.GlusterfsVolumeSource

    nfs

    NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#nfs

    false

    v1.NFSVolumeSource

    rbd

    RBD represents a Rados Block Device mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.3/examples/rbd/README.md

    false

    v1.RBDVolumeSource

    iscsi

    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.

    false

    v1.ISCSIVolumeSource

    cinder

    Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/release-1.3/examples/mysql-cinder-pd/README.md

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    flocker

    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

    false

    v1.FlockerVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    accessModes

    AccessModes contains all ways the volume can be mounted. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#access-modes

    false

    v1.PersistentVolumeAccessMode array

    claimRef

    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://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#binding

    false

    v1.ObjectReference

    persistentVolumeReclaimPolicy

    What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recyling must be supported by the volume plugin underlying this persistent volume. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md#recycling-policy

    false

    string

    - -
    -
    -

    v1.ReplicationControllerStatus

    -
    -

    ReplicationControllerStatus represents the current status of a replication controller.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the most recently oberved number of replicas. More info: http://releases.k8s.io/release-1.3/docs/user-guide/replication-controller.md#what-is-a-replication-controller

    true

    integer (int32)

    fullyLabeledReplicas

    The number of pods that have labels matching the labels of the pod template of the replication controller.

    false

    integer (int32)

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed replication controller.

    false

    integer (int64)

    - -
    -
    -

    v1.FinalizerName

    - -
    -
    -

    v1.ServicePort

    -
    -

    ServicePort contains information on service’s port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the Name field in EndpointPort objects. Optional if only one ServicePort is defined on this service.

    false

    string

    protocol

    The IP protocol for this port. Supports "TCP" and "UDP". Default is TCP.

    false

    string

    port

    The port that will be exposed by this service.

    true

    integer (int32)

    targetPort

    Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod’s container ports. If this is not specified, the value of the port field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the port field. More info: http://releases.k8s.io/release-1.3/docs/user-guide/services.md#defining-a-service

    false

    string

    nodePort

    The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: http://releases.k8s.io/release-1.3/docs/user-guide/services.md#type—nodeport

    false

    integer (int32)

    - -
    -
    -

    v1.ComponentCondition

    -
    -

    Information about the condition of a component.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of condition for a component. Valid value: "Healthy"

    true

    string

    status

    Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".

    true

    string

    message

    Message about the condition for a component. For example, information about a health check.

    false

    string

    error

    Condition error code for a component. For example, a health check error code.

    false

    string

    - -
    -
    -

    v1.OwnerReference

    -
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    API version of the referent.

    true

    string

    kind

    Kind of the referent. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    true

    string

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    true

    string

    uid

    UID of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#uids

    true

    string

    controller

    If true, this reference points to the managing controller.

    false

    boolean

    false

    - -
    -
    -

    v1.ScaleSpec

    -
    -

    ScaleSpec describes the attributes of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    desired number of instances for the scaled object.

    false

    integer (int32)

    - -
    -
    -

    v1.ComponentStatusList

    -
    -

    Status of all the conditions for the component as a list of ComponentStatus objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ComponentStatus objects.

    true

    v1.ComponentStatus array

    - -
    -
    -

    v1.HostPathVolumeSource

    -
    -

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path of the directory on the host. More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#hostpath

    true

    string

    - -
    -
    -

    v1.ContainerStateTerminated

    -
    -

    ContainerStateTerminated is a terminated state of a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exitCode

    Exit status from the last termination of the container

    true

    integer (int32)

    signal

    Signal from the last termination of the container

    false

    integer (int32)

    reason

    (brief) reason from the last termination of the container

    false

    string

    message

    Message regarding the last termination of the container

    false

    string

    startedAt

    Time at which previous execution of the container started

    false

    string

    finishedAt

    Time at which the container last terminated

    false

    string

    containerID

    Container’s ID in the format docker://<container_id>

    false

    string

    - -
    -
    -

    v1.Binding

    -
    -

    Binding ties one object to another. For example, a pod is bound to a node by a scheduler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    target

    The target object that you want to bind to the standard object.

    true

    v1.ObjectReference

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    volume id used to identify the volume in cinder More info: http://releases.k8s.io/release-1.3/examples/mysql-cinder-pd/README.md

    true

    string

    fsType

    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/release-1.3/examples/mysql-cinder-pd/README.md

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.3/examples/mysql-cinder-pd/README.md

    false

    boolean

    false

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    waiting

    Details about a waiting container

    false

    v1.ContainerStateWaiting

    running

    Details about a running container

    false

    v1.ContainerStateRunning

    terminated

    Details about a terminated container

    false

    v1.ContainerStateTerminated

    - -
    -
    -

    v1.SecurityContext

    -
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capabilities

    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

    false

    v1.Capabilities

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

    false

    boolean

    false

    seLinuxOptions

    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false.

    false

    boolean

    false

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#awselasticblockstore

    true

    string

    fsType

    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://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#awselasticblockstore

    false

    string

    partition

    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).

    false

    integer (int32)

    readOnly

    Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://releases.k8s.io/release-1.3/docs/user-guide/volumes.md#awselasticblockstore

    false

    boolean

    false

    - -
    -
    -

    v1.ContainerStatus

    -
    -

    ContainerStatus contains details for the current status of this container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.

    true

    string

    state

    Details about the container’s current condition.

    false

    v1.ContainerState

    lastState

    Details about the container’s last termination condition.

    false

    v1.ContainerState

    ready

    Specifies whether the container has passed its readiness probe.

    true

    boolean

    false

    restartCount

    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.

    true

    integer (int32)

    image

    The image the container is running. More info: http://releases.k8s.io/release-1.3/docs/user-guide/images.md

    true

    string

    imageID

    ImageID of the container’s image.

    true

    string

    containerID

    Container’s ID in the format docker://<container_id>. More info: http://releases.k8s.io/release-1.3/docs/user-guide/container-environment.md#container-information

    false

    string

    - -
    -
    -

    v1.ContainerImage

    -
    -

    Describe a container image

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    names

    Names by which this image is known. e.g. ["k8s.gcr.io/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"]

    true

    string array

    sizeBytes

    The size of the image in bytes.

    false

    integer (int64)

    - -
    -
    -

    v1.ResourceQuotaScope

    - -
    -
    -

    v1.ReplicationControllerList

    -
    -

    ReplicationControllerList is a collection of replication controllers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of replication controllers. More info: http://releases.k8s.io/release-1.3/docs/user-guide/replication-controller.md

    true

    v1.ReplicationController array

    - -
    -
    -

    v1.NodeDaemonEndpoints

    -
    -

    NodeDaemonEndpoints lists ports opened by daemons running on the Node.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kubeletEndpoint

    Endpoint on which Kubelet is listening.

    false

    v1.DaemonEndpoint

    - -
    -
    -

    v1.Secret

    -
    -

    Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    data

    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

    false

    object

    type

    Used to facilitate programmatic handling of secret data.

    false

    string

    - -
    -
    -

    v1.Event

    -
    -

    Event is a report of an event somewhere in the cluster.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    true

    v1.ObjectMeta

    involvedObject

    The object that this event is about.

    true

    v1.ObjectReference

    reason

    This should be a short, machine understandable string that gives the reason for the transition into the object’s current status.

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    source

    The component reporting this event. Should be a short machine understandable string.

    false

    v1.EventSource

    firstTimestamp

    The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)

    false

    string

    lastTimestamp

    The time at which the most recent occurrence of this event was recorded.

    false

    string

    count

    The number of times this event has occurred.

    false

    integer (int32)

    type

    Type of this event (Normal, Warning), new types could be added in the future

    false

    string

    - -
    -
    -

    v1.EnvVar

    -
    -

    EnvVar represents an environment variable present in a Container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    true

    string

    value

    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".

    false

    string

    valueFrom

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

    false

    v1.EnvVarSource

    - -
    -
    -

    v1.PersistentVolumeAccessMode

    - -
    -
    -

    v1.ResourceRequirements

    -
    -

    ResourceRequirements describes the compute resource requirements.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits describes the maximum amount of compute resources allowed. More info: http://releases.k8s.io/release-1.3/docs/design/resources.md#resource-specifications

    false

    object

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://releases.k8s.io/release-1.3/docs/design/resources.md#resource-specifications

    false

    object

    - -
    -
    -

    v1.ComponentStatus

    -
    -

    ComponentStatus (and ComponentStatusList) holds the cluster validation info.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    conditions

    List of component conditions observed

    false

    v1.ComponentCondition array

    - -
    -
    -

    v1.LimitRangeItem

    -
    -

    LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of resource that this limit applies to.

    false

    string

    max

    Max usage constraints on this kind by resource name.

    false

    object

    min

    Min usage constraints on this kind by resource name.

    false

    object

    default

    Default resource requirement limit value by resource name if resource limit is omitted.

    false

    object

    defaultRequest

    DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.

    false

    object

    maxLimitRequestRatio

    MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.

    false

    object

    - -
    -
    -

    v1.PodTemplateSpec

    -
    -

    PodTemplateSpec describes the data a pod should have when created from a template

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    - -
    -
    -

    v1.PodList

    -
    -

    PodList is a list of Pods.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of pods. More info: http://releases.k8s.io/release-1.3/docs/user-guide/pods.md

    true

    v1.Pod array

    - -
    -
    -

    v1.ServiceList

    -
    -

    ServiceList holds a list of services.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of services

    true

    v1.Service array

    - -
    -
    -

    v1.PersistentVolumeList

    -
    -

    PersistentVolumeList is a list of PersistentVolume items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of persistent volumes. More info: http://releases.k8s.io/release-1.3/docs/user-guide/persistent-volumes.md

    true

    v1.PersistentVolume array

    - -
    -
    -

    v1.ObjectReference

    -
    -

    ObjectReference contains enough information to let you inspect or modify the referred object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind of the referent. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    namespace

    Namespace of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/namespaces.md

    false

    string

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    uid

    UID of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#uids

    false

    string

    apiVersion

    API version of the referent.

    false

    string

    resourceVersion

    Specific resourceVersion to which this reference is made, if any. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    fieldPath

    If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.

    false

    string

    - -
    -
    -

    unversioned.LabelSelectorRequirement

    -
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    key is the label key that the selector applies to.

    true

    string

    operator

    operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

    true

    string

    values

    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    false

    string array

    - -
    -
    -

    v1.ContainerStateWaiting

    -
    -

    ContainerStateWaiting is a waiting state of a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    (brief) reason the container is not yet running.

    false

    string

    message

    Message regarding why the container is not yet running.

    false

    string

    - -
    -
    -

    unversioned.Status

    -
    -

    Status is a return value for calls that don’t return other objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    status

    Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    reason

    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.

    false

    string

    details

    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.

    false

    unversioned.StatusDetails

    code

    Suggested HTTP return code for this status, 0 if not set.

    false

    integer (int32)

    - -
    -
    -

    v1.ConfigMapKeySelector

    -
    -

    Selects a key from a ConfigMap.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.3/docs/user-guide/identifiers.md#names

    false

    string

    key

    The key to select.

    true

    string

    - -
    -
    -

    v1.NodeSystemInfo

    -
    -

    NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    machineID

    Machine ID reported by the node.

    true

    string

    systemUUID

    System UUID reported by the node.

    true

    string

    bootID

    Boot ID reported by the node.

    true

    string

    kernelVersion

    Kernel Version reported by the node from uname -r (e.g. 3.16.0-0.bpo.4-amd64).

    true

    string

    osImage

    OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).

    true

    string

    containerRuntimeVersion

    ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).

    true

    string

    kubeletVersion

    Kubelet Version reported by the node.

    true

    string

    kubeProxyVersion

    KubeProxy Version reported by the node.

    true

    string

    operatingSystem

    The Operating System reported by the node

    true

    string

    architecture

    The Architecture reported by the node

    true

    string

    - -
    -
    -

    v1.ServiceSpec

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ports

    The list of ports that are exposed by this service. More info: http://releases.k8s.io/release-1.3/docs/user-guide/services.md#virtual-ips-and-service-proxies

    true

    v1.ServicePort array

    selector

    This service will route traffic to pods having labels matching this selector. Label keys and values that must match in order to receive traffic for this service. If empty, all pods are selected, if not specified, endpoints must be manually specified. More info: http://releases.k8s.io/release-1.3/docs/user-guide/services.md#overview

    false

    object

    clusterIP

    ClusterIP is usually assigned by the master and is the IP address of the service. If specified, it will be allocated to the service if it is unused or else creation of the service will fail. Valid values are None, empty string (""), or a valid IP address. None can be specified for a headless service when proxying is not required. Cannot be updated. More info: http://releases.k8s.io/release-1.3/docs/user-guide/services.md#virtual-ips-and-service-proxies

    false

    string

    type

    Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. Defaults to ClusterIP. More info: http://releases.k8s.io/release-1.3/docs/user-guide/services.md#external-services

    false

    string

    externalIPs

    externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. A previous form of this functionality exists as the deprecatedPublicIPs field. When using this field, callers should also clear the deprecatedPublicIPs field.

    false

    string array

    deprecatedPublicIPs

    deprecatedPublicIPs is deprecated and replaced by the externalIPs field with almost the exact same semantics. This field is retained in the v1 API for compatibility until at least 8/20/2016. It will be removed from any new API revisions. If both deprecatedPublicIPs and externalIPs are set, deprecatedPublicIPs is used.

    false

    string array

    sessionAffinity

    Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: http://releases.k8s.io/release-1.3/docs/user-guide/services.md#virtual-ips-and-service-proxies

    false

    string

    loadBalancerIP

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

    false

    string

    loadBalancerSourceRanges

    If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: http://releases.k8s.io/release-1.3/docs/user-guide/services-firewalls.md

    false

    string array

    - -
    -
    -

    v1.Pod

    -
    -

    Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    status

    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/release-1.3/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodStatus

    - -
    -
    -

    v1.NodeSpec

    -
    -

    NodeSpec describes the attributes that a node is created with.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podCIDR

    PodCIDR represents the pod IP range assigned to the node.

    false

    string

    externalID

    External ID of the node assigned by some machine database (e.g. a cloud provider). Deprecated.

    false

    string

    providerID

    ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>

    false

    string

    unschedulable

    Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: http://releases.k8s.io/release-1.3/docs/admin/node.md#manual-node-administration"`

    false

    boolean

    false

    - -
    -
    -

    v1.EndpointAddress

    -
    -

    EndpointAddress is a tuple that describes single IP address.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.

    true

    string

    hostname

    The Hostname of this endpoint

    false

    string

    targetRef

    Reference to object providing the endpoint.

    false

    v1.ObjectReference

    - -
    -
    -

    v1.DaemonEndpoint

    -
    -

    DaemonEndpoint contains information about a single Daemon endpoint.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    Port

    Port number of the given endpoint.

    true

    integer (int32)

    - -
    -
    -

    any

    -
    -

    Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.3/v1-operations.html b/_includes/v1.3/v1-operations.html deleted file mode 100755 index 515d4e7fa1..0000000000 --- a/_includes/v1.3/v1-operations.html +++ /dev/null @@ -1,32321 +0,0 @@ - - - - - - -Operations - - - -
    -
    -

    Operations

    -
    -
    -

    get available resources

    -
    -
    -
    GET /api/v1
    -
    -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    unversioned.APIResourceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list objects of kind ComponentStatus

    -
    -
    -
    GET /api/v1/componentstatuses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ComponentStatusList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ComponentStatus

    -
    -
    -
    GET /api/v1/componentstatuses/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the ComponentStatus

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ComponentStatus

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ConfigMap

    -
    -
    -
    GET /api/v1/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMapList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Endpoints

    -
    -
    -
    GET /api/v1/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EndpointsList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Event

    -
    -
    -
    GET /api/v1/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EventList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind LimitRange

    -
    -
    -
    GET /api/v1/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRangeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Namespace

    -
    -
    -
    GET /api/v1/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.NamespaceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Namespace

    -
    -
    -
    DELETE /api/v1/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Namespace

    -
    -
    -
    POST /api/v1/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Binding

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/bindings
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Binding

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Binding

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ConfigMap

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMapList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ConfigMap

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ConfigMap

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ConfigMap

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ConfigMap

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ConfigMap

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ConfigMap

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ConfigMap

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ConfigMap

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Endpoints

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EndpointsList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Endpoints

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create an Endpoints

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Endpoints

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Endpoints

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Endpoints

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Endpoints

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete an Endpoints

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Endpoints

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Event

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EventList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Event

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create an Event

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Event

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Event

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Event

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Event

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete an Event

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Event

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind LimitRange

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRangeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of LimitRange

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a LimitRange

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.LimitRange

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified LimitRange

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified LimitRange

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.LimitRange

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a LimitRange

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified LimitRange

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaimList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of PersistentVolumeClaim

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a PersistentVolumeClaim

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolumeClaim

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified PersistentVolumeClaim

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolumeClaim

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a PersistentVolumeClaim

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified PersistentVolumeClaim

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified PersistentVolumeClaim

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolumeClaim

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified PersistentVolumeClaim

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Pod

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Pod

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Pod

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Pod

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to attach of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/attach
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.

    false

    boolean

    QueryParameter

    container

    The container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to attach of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/attach
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.

    false

    boolean

    QueryParameter

    container

    The container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create binding of a Binding

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/binding
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Binding

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Binding

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Binding

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to exec of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/exec
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Redirect the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Redirect the standard output stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Redirect the standard error stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.

    false

    boolean

    QueryParameter

    container

    Container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    QueryParameter

    command

    Command is the remote command to execute. argv array. Not executed within a shell.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to exec of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/exec
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Redirect the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Redirect the standard output stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Redirect the standard error stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.

    false

    boolean

    QueryParameter

    container

    Container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    QueryParameter

    command

    Command is the remote command to execute. argv array. Not executed within a shell.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read log of the specified Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/log
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    container

    The container for which to stream logs. Defaults to only container if there is one container in the pod.

    false

    string

    QueryParameter

    follow

    Follow the log stream of the pod. Defaults to false.

    false

    boolean

    QueryParameter

    previous

    Return previous terminated container logs. Defaults to false.

    false

    boolean

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    sinceTime

    An RFC3339 timestamp 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.

    false

    string

    QueryParameter

    timestamps

    If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.

    false

    boolean

    QueryParameter

    tailLines

    If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime

    false

    integer (int32)

    QueryParameter

    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.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to portforward of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/portforward
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to portforward of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/portforward
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Pod

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Pod

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/pods/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PodTemplate

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplateList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of PodTemplate

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a PodTemplate

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PodTemplate

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified PodTemplate

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified PodTemplate

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PodTemplate

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a PodTemplate

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified PodTemplate

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicationController

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationControllerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ReplicationController

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ReplicationController

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ReplicationController

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ReplicationController

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ReplicationController

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ReplicationController

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ReplicationController

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ReplicationController

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified ReplicationController

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified ReplicationController

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ReplicationController

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified ReplicationController

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ResourceQuota

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuotaList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ResourceQuota

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ResourceQuota

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ResourceQuota

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ResourceQuota

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ResourceQuota

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ResourceQuota

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ResourceQuota

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ResourceQuota

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified ResourceQuota

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified ResourceQuota

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ResourceQuota

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified ResourceQuota

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Secret

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.SecretList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Secret

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Secret

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Secret

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Secret

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Secret

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Secret

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Secret

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Secret

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ServiceAccount

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccountList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ServiceAccount

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ServiceAccount

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ServiceAccount

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ServiceAccount

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ServiceAccount

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ServiceAccount

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ServiceAccount

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ServiceAccount

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Service

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Service

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Service

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Service

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Service

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Service

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Namespace

    -
    -
    -
    GET /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Namespace

    -
    -
    -
    PUT /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Namespace

    -
    -
    -
    DELETE /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Namespace

    -
    -
    -
    PATCH /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace finalize of the specified Namespace

    -
    -
    -
    PUT /api/v1/namespaces/{name}/finalize
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Namespace

    -
    -
    -
    GET /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Namespace

    -
    -
    -
    PUT /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Namespace

    -
    -
    -
    PATCH /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Node

    -
    -
    -
    GET /api/v1/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.NodeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Node

    -
    -
    -
    DELETE /api/v1/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Node

    -
    -
    -
    POST /api/v1/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Node

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Node

    -
    -
    -
    GET /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Node

    -
    -
    -
    PUT /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Node

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Node

    -
    -
    -
    DELETE /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Node

    -
    -
    -
    PATCH /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Node

    -
    -
    -
    GET /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Node

    -
    -
    -
    PUT /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Node

    -
    -
    -
    DELETE /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Node

    -
    -
    -
    POST /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Node

    -
    -
    -
    GET /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Node

    -
    -
    -
    PUT /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Node

    -
    -
    -
    DELETE /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Node

    -
    -
    -
    POST /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Node

    -
    -
    -
    GET /api/v1/nodes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Node

    -
    -
    -
    PUT /api/v1/nodes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Node

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Node

    -
    -
    -
    PATCH /api/v1/nodes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaimList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PersistentVolume

    -
    -
    -
    GET /api/v1/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of PersistentVolume

    -
    -
    -
    DELETE /api/v1/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a PersistentVolume

    -
    -
    -
    POST /api/v1/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolume

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified PersistentVolume

    -
    -
    -
    GET /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified PersistentVolume

    -
    -
    -
    PUT /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolume

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a PersistentVolume

    -
    -
    -
    DELETE /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified PersistentVolume

    -
    -
    -
    PATCH /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified PersistentVolume

    -
    -
    -
    GET /api/v1/persistentvolumes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified PersistentVolume

    -
    -
    -
    PUT /api/v1/persistentvolumes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolume

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified PersistentVolume

    -
    -
    -
    PATCH /api/v1/persistentvolumes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Pod

    -
    -
    -
    GET /api/v1/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PodTemplate

    -
    -
    -
    GET /api/v1/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplateList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Pod

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Pod

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Pod

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Pod

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Pod

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Pod

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Pod

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Pod

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Service

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Service

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Service

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Service

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Service

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Service

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Service

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Service

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Node

    -
    -
    -
    GET /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Node

    -
    -
    -
    PUT /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Node

    -
    -
    -
    DELETE /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Node

    -
    -
    -
    POST /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Node

    -
    -
    -
    GET /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Node

    -
    -
    -
    PUT /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Node

    -
    -
    -
    DELETE /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Node

    -
    -
    -
    POST /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicationController

    -
    -
    -
    GET /api/v1/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationControllerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ResourceQuota

    -
    -
    -
    GET /api/v1/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuotaList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Secret

    -
    -
    -
    GET /api/v1/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.SecretList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ServiceAccount

    -
    -
    -
    GET /api/v1/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccountList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Service

    -
    -
    -
    GET /api/v1/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ConfigMap

    -
    -
    -
    GET /api/v1/watch/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Endpoints

    -
    -
    -
    GET /api/v1/watch/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Event

    -
    -
    -
    GET /api/v1/watch/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of LimitRange

    -
    -
    -
    GET /api/v1/watch/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Namespace

    -
    -
    -
    GET /api/v1/watch/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ConfigMap

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ConfigMap

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Endpoints

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Endpoints

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Event

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Event

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of LimitRange

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind LimitRange

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Pod

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Pod

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PodTemplate

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind PodTemplate

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicationController

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ReplicationController

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ResourceQuota

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ResourceQuota

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Secret

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Secret

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ServiceAccount

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ServiceAccount

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Service

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Service

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Namespace

    -
    -
    -
    GET /api/v1/watch/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Node

    -
    -
    -
    GET /api/v1/watch/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Node

    -
    -
    -
    GET /api/v1/watch/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/watch/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PersistentVolume

    -
    -
    -
    GET /api/v1/watch/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind PersistentVolume

    -
    -
    -
    GET /api/v1/watch/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Pod

    -
    -
    -
    GET /api/v1/watch/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PodTemplate

    -
    -
    -
    GET /api/v1/watch/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicationController

    -
    -
    -
    GET /api/v1/watch/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ResourceQuota

    -
    -
    -
    GET /api/v1/watch/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Secret

    -
    -
    -
    GET /api/v1/watch/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ServiceAccount

    -
    -
    -
    GET /api/v1/watch/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Service

    -
    -
    -
    GET /api/v1/watch/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.4/extensions-v1beta1-definitions.html b/_includes/v1.4/extensions-v1beta1-definitions.html deleted file mode 100755 index 17ce326c93..0000000000 --- a/_includes/v1.4/extensions-v1beta1-definitions.html +++ /dev/null @@ -1,6209 +0,0 @@ - - - - - - -Top Level API Objects - - - -
    - -
    -

    Definitions

    -
    -
    -

    v1beta1.DeploymentStatus

    -
    -

    DeploymentStatus is the most recently observed status of the Deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    observedGeneration

    The generation observed by the deployment controller.

    false

    integer (int64)

    replicas

    Total number of non-terminated pods targeted by this deployment (their labels match the selector).

    false

    integer (int32)

    updatedReplicas

    Total number of non-terminated pods targeted by this deployment that have the desired template spec.

    false

    integer (int32)

    availableReplicas

    Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

    false

    integer (int32)

    unavailableReplicas

    Total number of unavailable pods targeted by this deployment.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.DaemonSetStatus

    -
    -

    DaemonSetStatus represents the current status of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    currentNumberScheduled

    CurrentNumberScheduled is the number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: http://releases.k8s.io/release-1.4/docs/admin/daemons.md

    true

    integer (int32)

    numberMisscheduled

    NumberMisscheduled is the number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: http://releases.k8s.io/release-1.4/docs/admin/daemons.md

    true

    integer (int32)

    desiredNumberScheduled

    DesiredNumberScheduled is the total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: http://releases.k8s.io/release-1.4/docs/admin/daemons.md

    true

    integer (int32)

    - -
    -
    -

    v1beta1.Job

    -
    -

    Job represents the configuration of a single job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.JobSpec

    status

    Status is a structure describing current status of a job. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.JobStatus

    - -
    -
    -

    v1.Preconditions

    -
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    uid

    Specifies the target UID.

    false

    types.UID

    - -
    -
    -

    v1.ObjectFieldSelector

    -
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    false

    string

    fieldPath

    Path of the field to select in the specified API version.

    true

    string

    - -
    -
    -

    v1.SELinuxOptions

    -
    -

    SELinuxOptions are the labels to be applied to the container

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    user

    User is a SELinux user label that applies to the container.

    false

    string

    role

    Role is a SELinux role label that applies to the container.

    false

    string

    type

    Type is a SELinux type label that applies to the container.

    false

    string

    level

    Level is SELinux level label that applies to the container.

    false

    string

    - -
    -
    -

    v1.VolumeMount

    -
    -

    VolumeMount describes a mounting of a Volume within a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must match the Name of a Volume.

    true

    string

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    false

    boolean

    false

    mountPath

    Path within the container at which the volume should be mounted. Must not contain :.

    true

    string

    subPath

    Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root).

    false

    string

    - -
    -
    -

    v1beta1.IngressSpec

    -
    -

    IngressSpec describes the Ingress the user wishes to exist.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    backend

    A default backend capable of servicing requests that don’t match any rule. At least one of backend or rules must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.

    false

    v1beta1.IngressBackend

    tls

    TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.

    false

    v1beta1.IngressTLS array

    rules

    A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.

    false

    v1beta1.IngressRule array

    - -
    -
    -

    v1beta1.IngressBackend

    -
    -

    IngressBackend describes all endpoints for a given service and port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    serviceName

    Specifies the name of the referenced service.

    true

    string

    servicePort

    Specifies the port of the referenced service.

    true

    string

    - -
    -
    -

    v1beta1.ReplicaSetList

    -
    -

    ReplicaSetList is a collection of ReplicaSets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ReplicaSets. More info: http://releases.k8s.io/release-1.4/docs/user-guide/replication-controller.md

    true

    v1beta1.ReplicaSet array

    - -
    -
    -

    v1.CephFSVolumeSource

    -
    -

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    true

    string array

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    false

    string

    user

    Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    false

    string

    secretFile

    Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    false

    string

    secretRef

    Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    false

    boolean

    false

    - -
    -
    -

    v1beta1.IngressStatus

    -
    -

    IngressStatus describe the current state of the Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    loadBalancer

    LoadBalancer contains the current status of the load-balancer.

    false

    v1.LoadBalancerStatus

    - -
    -
    -

    v1.DownwardAPIVolumeSource

    -
    -

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    items

    Items is a list of downward API volume file

    false

    v1.DownwardAPIVolumeFile array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    unversioned.StatusCause

    -
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    A machine-readable description of the cause of the error. If this value is empty there is no information available.

    false

    string

    message

    A human-readable description of the cause of the error. This field may be presented as-is to a reader.

    false

    string

    field

    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
    -
    -Examples:
    - "name" - the field "name" on the current resource
    - "items[0].name" - the field "name" on the first array entry in "items"

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicyList

    -
    -

    Network Policy List is a list of NetworkPolicy objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is a list of schema objects.

    true

    v1beta1.NetworkPolicy array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdName

    Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    true

    string

    fsType

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    false

    string

    partition

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    false

    integer (int32)

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    false

    boolean

    false

    - -
    -
    -

    v1beta1.RollingUpdateDeployment

    -
    -

    Spec to control the desired behavior of rolling update.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    maxUnavailable

    The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding up. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.

    false

    string

    maxSurge

    The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.

    false

    string

    - -
    -
    -

    v1beta1.HTTPIngressRuleValue

    -
    -

    HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> → 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 #.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    paths

    A collection of paths that map requests to backends.

    true

    v1beta1.HTTPIngressPath array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    repository

    Repository URL

    true

    string

    revision

    Commit hash for the specified revision.

    false

    string

    directory

    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.

    false

    string

    - -
    -
    -

    *versioned.Event

    - -
    -
    -

    v1beta1.JobStatus

    -
    -

    JobStatus represents the current state of a Job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    conditions

    Conditions represent the latest available observations of an object’s current state. More info: http://releases.k8s.io/release-1.4/docs/user-guide/jobs.md

    false

    v1beta1.JobCondition array

    startTime

    StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string (date-time)

    completionTime

    CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string (date-time)

    active

    Active is the number of actively running pods.

    false

    integer (int32)

    succeeded

    Succeeded is the number of pods which reached Phase Succeeded.

    false

    integer (int32)

    failed

    Failed is the number of pods which reached Phase Failed.

    false

    integer (int32)

    - -
    -
    -

    v1.Capabilities

    -
    -

    Adds and removes POSIX capabilities from running containers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    add

    Added capabilities

    false

    v1.Capability array

    drop

    Removed capabilities

    false

    v1.Capability array

    - -
    -
    -

    v1.LocalObjectReference

    -
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    - -
    -
    -

    v1.ExecAction

    -
    -

    ExecAction describes a "run in container" action.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    command

    Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

    ', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

    false

    string array

    - -
    -
    -

    v1.ObjectMeta

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

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

    false

    string

    generateName

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

    false

    string

    namespace

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

    false

    string

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    uid

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

    false

    string

    resourceVersion

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

    false

    string

    generation

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

    false

    integer (int64)

    creationTimestamp

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
    -
    -Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionTimestamp

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource will be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. Once the resource is deleted in the API, the Kubelet will send a hard termination signal to the container. If not set, graceful deletion of the object has not been requested.
    -
    -Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionGracePeriodSeconds

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

    false

    integer (int64)

    labels

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

    false

    object

    annotations

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

    false

    object

    ownerReferences

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

    false

    v1.OwnerReference array

    finalizers

    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

    false

    string array

    clusterName

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

    false

    string

    - -
    -
    -

    v1beta1.ReplicaSetSpec

    -
    -

    ReplicaSetSpec is the specification of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://releases.k8s.io/release-1.4/docs/user-guide/replication-controller.md#what-is-a-replication-controller

    false

    integer (int32)

    selector

    Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: http://releases.k8s.io/release-1.4/docs/user-guide/labels.md#label-selectors

    false

    v1beta1.LabelSelector

    template

    Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: http://releases.k8s.io/release-1.4/docs/user-guide/replication-controller.md#pod-template

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1beta1.DaemonSetSpec

    -
    -

    DaemonSetSpec is the specification of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selector

    Selector is a label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: http://releases.k8s.io/release-1.4/docs/user-guide/labels.md#label-selectors

    false

    v1beta1.LabelSelector

    template

    Template is the object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template’s node selector (or on every node if no node selector is specified). More info: http://releases.k8s.io/release-1.4/docs/user-guide/replication-controller.md#pod-template

    true

    v1.PodTemplateSpec

    - -
    -
    -

    v1beta1.Deployment

    -
    -

    Deployment enables declarative updates for Pods and ReplicaSets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata.

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the Deployment.

    false

    v1beta1.DeploymentSpec

    status

    Most recently observed status of the Deployment.

    false

    v1beta1.DeploymentStatus

    - -
    -
    -

    v1.AzureFileVolumeSource

    -
    -

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    true

    string

    shareName

    Share Name

    true

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    types.UID

    - -
    -
    -

    v1.ISCSIVolumeSource

    -
    -

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPortal

    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).

    true

    string

    iqn

    Target iSCSI Qualified Name.

    true

    string

    lun

    iSCSI target lun number.

    true

    integer (int32)

    iscsiInterface

    Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

    false

    string

    fsType

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#iscsi

    false

    string

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    false

    boolean

    false

    - -
    -
    -

    v1.EmptyDirVolumeSource

    -
    -

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    medium

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#emptydir

    false

    string

    - -
    -
    -

    v1beta1.IngressList

    -
    -

    IngressList is a collection of Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of Ingress.

    true

    v1beta1.Ingress array

    - -
    -
    -

    v1beta1.ScaleSpec

    -
    -

    describes the attributes of a scale subresource

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    desired number of instances for the scaled object.

    false

    integer (int32)

    - -
    -
    -

    unversioned.Patch

    -
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    -
    -
    -
    -

    v1.FlockerVolumeSource

    -
    -

    Represents a Flocker volume mounted by the Flocker agent. Flocker volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    datasetName

    Required: the volume name. This is going to be store on metadata → name on the payload for Flocker

    true

    string

    - -
    -
    -

    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).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    claimName

    ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    true

    string

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

    false

    boolean

    false

    - -
    -
    -

    unversioned.ListMeta

    -
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    resourceVersion

    String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    - -
    -
    -

    v1beta1.HorizontalPodAutoscaler

    -
    -

    configuration of a horizontal pod autoscaler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    behaviour of autoscaler. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status.

    false

    v1beta1.HorizontalPodAutoscalerSpec

    status

    current information about the autoscaler.

    false

    v1beta1.HorizontalPodAutoscalerStatus

    - -
    -
    -

    v1beta1.RollbackConfig

    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    revision

    The revision to rollback to. If set to 0, rollbck to the last revision.

    false

    integer (int64)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    Name of the secret in the pod’s namespace to use. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#secrets

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.EnvVarSource

    -
    -

    EnvVarSource represents a source for the value of an EnvVar.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    fieldRef

    Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    configMapKeyRef

    Selects a key of a ConfigMap.

    false

    v1.ConfigMapKeySelector

    secretKeyRef

    Selects a key of a secret in the pod’s namespace

    false

    v1.SecretKeySelector

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    driver

    Driver is the name of the driver to use for this volume.

    true

    string

    fsType

    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.

    false

    string

    secretRef

    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.

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    options

    Optional: Extra command options if any.

    false

    object

    - -
    -
    -

    v1beta1.JobCondition

    -
    -

    JobCondition describes current state of a job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of job condition, Complete or Failed.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastProbeTime

    Last time the condition was checked.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transit from one status to another.

    false

    string (date-time)

    reason

    (brief) reason for the condition’s last transition.

    false

    string

    message

    Human readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.LoadBalancerIngress

    -
    -

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

    false

    string

    hostname

    Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

    false

    string

    - -
    -
    -

    v1beta1.APIVersion

    -
    -

    An APIVersion represents a single concrete version of an object model.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of this version (e.g. v1).

    false

    string

    - -
    -
    -

    v1.AzureDiskVolumeSource

    -
    -

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    diskName

    The Name of the data disk in the blob storage

    true

    string

    diskURI

    The URI the data disk in the blob storage

    true

    string

    cachingMode

    Host Caching mode: None, Read Only, Read Write.

    false

    v1.AzureDataDiskCachingMode

    fsType

    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.

    false

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.KeyToPath

    -
    -

    Maps a string key to a path within a volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    The key to project.

    true

    string

    path

    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 ...

    true

    string

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.VsphereVirtualDiskVolumeSource

    -
    -

    Represents a vSphere volume resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumePath

    Path that identifies vSphere volume vmdk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1.DeleteOptions

    -
    -

    DeleteOptions may be provided when deleting an API object

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    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.

    false

    integer (int64)

    preconditions

    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

    false

    v1.Preconditions

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    false

    - -
    -
    -

    v1.Volume

    -
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    true

    string

    hostPath

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#hostpath

    false

    v1.HostPathVolumeSource

    emptyDir

    EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#emptydir

    false

    v1.EmptyDirVolumeSource

    gcePersistentDisk

    GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore

    false

    v1.AWSElasticBlockStoreVolumeSource

    gitRepo

    GitRepo represents a git repository at a particular revision.

    false

    v1.GitRepoVolumeSource

    secret

    Secret represents a secret that should populate this volume. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#secrets

    false

    v1.SecretVolumeSource

    nfs

    NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#nfs

    false

    v1.NFSVolumeSource

    iscsi

    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/release-1.4/examples/volumes/iscsi/README.md

    false

    v1.ISCSIVolumeSource

    glusterfs

    Glusterfs represents a Glusterfs mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.4/examples/volumes/glusterfs/README.md

    false

    v1.GlusterfsVolumeSource

    persistentVolumeClaim

    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimVolumeSource

    rbd

    RBD represents a Rados Block Device mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md

    false

    v1.RBDVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    cinder

    Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    flocker

    Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

    false

    v1.FlockerVolumeSource

    downwardAPI

    DownwardAPI represents downward API about the pod that should populate this volume

    false

    v1.DownwardAPIVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    configMap

    ConfigMap represents a configMap that should populate this volume

    false

    v1.ConfigMapVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    quobyte

    Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

    false

    v1.QuobyteVolumeSource

    azureDisk

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    false

    v1.AzureDiskVolumeSource

    - -
    -
    -

    v1beta1.DaemonSetList

    -
    -

    DaemonSetList is a collection of daemon sets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is a list of daemon sets.

    true

    v1beta1.DaemonSet array

    - -
    -
    -

    v1.ResourceFieldSelector

    -
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    containerName

    Container name: required for volumes, optional for env vars

    false

    string

    resource

    Required: resource to select

    true

    string

    divisor

    Specifies the output format of the exposed resources, defaults to "1"

    false

    string

    - -
    -
    -

    v1.Probe

    -
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    initialDelaySeconds

    Number of seconds after the container has started before liveness probes are initiated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes

    false

    integer (int32)

    timeoutSeconds

    Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes

    false

    integer (int32)

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    false

    integer (int32)

    successThreshold

    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.

    false

    integer (int32)

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.DeploymentSpec

    -
    -

    DeploymentSpec is the specification of the desired behavior of the Deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

    false

    integer (int32)

    selector

    Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.

    false

    v1beta1.LabelSelector

    template

    Template describes the pods that will be created.

    true

    v1.PodTemplateSpec

    strategy

    The deployment strategy to use to replace existing pods with new ones.

    false

    v1beta1.DeploymentStrategy

    minReadySeconds

    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

    false

    integer (int32)

    revisionHistoryLimit

    The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.

    false

    integer (int32)

    paused

    Indicates that the deployment is paused and will not be processed by the deployment controller.

    false

    boolean

    false

    rollbackTo

    The config this deployment is rolling back to. Will be cleared after rollback is done.

    false

    v1beta1.RollbackConfig

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    groupVersion

    groupVersion is the group and version this APIResourceList is for.

    true

    string

    resources

    resources contains the name of the resources and if they are namespaced.

    true

    unversioned.APIResource array

    - -
    -
    -

    v1.SecretKeySelector

    -
    -

    SecretKeySelector selects a key of a Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    key

    The key of the secret to select from. Must be a valid secret key.

    true

    string

    - -
    -
    -

    v1.Capability

    - -
    -
    -

    unversioned.APIResource

    -
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    name is the name of the resource.

    true

    string

    namespaced

    namespaced indicates if a resource is namespaced or not.

    true

    boolean

    false

    kind

    kind is the kind for the resource (e.g. Foo is the kind for a resource foo)

    true

    string

    - -
    -
    -

    v1.DownwardAPIVolumeFile

    -
    -

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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 ..

    true

    string

    fieldRef

    Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.ContainerPort

    -
    -

    ContainerPort represents a network port in a single container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    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.

    false

    string

    hostPort

    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.

    false

    integer (int32)

    containerPort

    Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

    true

    integer (int32)

    protocol

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".

    false

    string

    hostIP

    What host IP to bind the external port to.

    false

    string

    - -
    -
    -

    v1.PodSpec

    -
    -

    PodSpec is a description of a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md

    false

    v1.Volume array

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/containers.md

    true

    v1.Container array

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#restartpolicy

    false

    string

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    false

    integer (int64)

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    false

    integer (int64)

    dnsPolicy

    Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

    false

    string

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://releases.k8s.io/release-1.4/docs/user-guide/node-selection/README.md

    false

    object

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/release-1.4/docs/design/service_accounts.md

    false

    string

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    false

    string

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    false

    string

    hostNetwork

    Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    false

    boolean

    false

    hostPID

    Use the host’s pid namespace. Optional: Default to false.

    false

    boolean

    false

    hostIPC

    Use the host’s ipc namespace. Optional: Default to false.

    false

    boolean

    false

    securityContext

    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

    false

    v1.PodSecurityContext

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://releases.k8s.io/release-1.4/docs/user-guide/images.md#specifying-imagepullsecrets-on-a-pod

    false

    v1.LocalObjectReference array

    hostname

    Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value.

    false

    string

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    false

    string

    - -
    -
    -

    v1.Lifecycle

    -
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    postStart

    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://releases.k8s.io/release-1.4/docs/user-guide/container-environment.md#hook-details

    false

    v1.Handler

    preStop

    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://releases.k8s.io/release-1.4/docs/user-guide/container-environment.md#hook-details

    false

    v1.Handler

    - -
    -
    -

    v1.GlusterfsVolumeSource

    -
    -

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/release-1.4/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    path

    Path is the Glusterfs volume path. More info: http://releases.k8s.io/release-1.4/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    readOnly

    ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/release-1.4/examples/volumes/glusterfs/README.md#create-a-pod

    false

    boolean

    false

    - -
    -
    -

    v1.Handler

    -
    -

    Handler defines a specific action that should be taken

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    - -
    -
    -

    v1beta1.IngressTLS

    -
    -

    IngressTLS describes the transport layer security associated with an Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hosts

    Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.

    false

    string array

    secretName

    SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.

    false

    string

    - -
    -
    -

    v1beta1.SubresourceReference

    -
    -

    SubresourceReference contains enough information to let you inspect or modify the referred subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind of the referent; More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    name

    Name of the referent; More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    apiVersion

    API version of the referent

    false

    string

    subresource

    Subresource name of the referent

    false

    string

    - -
    -
    -

    v1beta1.Scale

    -
    -

    represents a scaling request for a resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata; More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata.

    false

    v1.ObjectMeta

    spec

    defines the behavior of the scale. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status.

    false

    v1beta1.ScaleSpec

    status

    current status of the scale. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status. Read-only.

    false

    v1beta1.ScaleStatus

    - -
    -
    -

    v1.RBDVolumeSource

    -
    -

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    A collection of Ceph monitors. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    true

    string array

    image

    The rados image name. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    true

    string

    fsType

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#rbd

    false

    string

    pool

    The rados pool name. Default is rbd. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it.

    false

    string

    user

    The rados user name. Default is admin. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    false

    string

    keyring

    Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    false

    string

    secretRef

    SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    false

    v1.LocalObjectReference

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    false

    boolean

    false

    - -
    -
    -

    v1beta1.NetworkPolicy

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior for this NetworkPolicy.

    false

    v1beta1.NetworkPolicySpec

    - -
    -
    -

    v1beta1.ScaleStatus

    -
    -

    represents the current status of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    actual number of observed instances of the scaled object.

    true

    integer (int32)

    selector

    label query over pods that should match the replicas count. More info: http://releases.k8s.io/release-1.4/docs/user-guide/labels.md#label-selectors

    false

    object

    targetSelector

    label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/labels.md#label-selectors

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicySpec

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podSelector

    Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.

    true

    v1beta1.LabelSelector

    ingress

    List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if namespace.networkPolicy.ingress.isolation is undefined and cluster policy allows it, OR if the traffic source is the pod’s local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not affect ingress isolation. If this field is present and contains at least one rule, this policy allows any traffic which matches at least one of the ingress rules in this list.

    false

    v1beta1.NetworkPolicyIngressRule array

    - -
    -
    -

    v1.NFSVolumeSource

    -
    -

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    server

    Server is the hostname or IP address of the NFS server. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#nfs

    true

    string

    path

    Path that is exported by the NFS server. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#nfs

    true

    string

    readOnly

    ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#nfs

    false

    boolean

    false

    - -
    -
    -

    v1beta1.DeploymentList

    -
    -

    DeploymentList is a list of Deployments.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    Items is the list of Deployments.

    true

    v1beta1.Deployment array

    - -
    -
    -

    v1beta1.DeploymentRollback

    -
    -

    DeploymentRollback stores the information required to rollback a deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    name

    Required: This must match the Name of a deployment.

    true

    string

    updatedAnnotations

    The annotations to be updated to a deployment

    false

    object

    rollbackTo

    The config of this deployment rollback.

    true

    v1beta1.RollbackConfig

    - -
    -
    -

    v1.HTTPHeader

    -
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The header field name

    true

    string

    value

    The header field value

    true

    string

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerStatus

    -
    -

    current status of a horizontal pod autoscaler

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    observedGeneration

    most recent generation observed by this autoscaler.

    false

    integer (int64)

    lastScaleTime

    last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.

    false

    string (date-time)

    currentReplicas

    current number of replicas of pods managed by this autoscaler.

    true

    integer (int32)

    desiredReplicas

    desired number of replicas of pods managed by this autoscaler.

    true

    integer (int32)

    currentCPUUtilizationPercentage

    current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetWWNs

    Required: FC target worldwide names (WWNs)

    true

    string array

    lun

    Required: FC target lun number

    true

    integer (int32)

    fsType

    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.

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1beta1.ThirdPartyResource

    -
    -

    A ThirdPartyResource is a generic representation of a resource, it is used by add-ons and plugins to add new resource types to the API. It consists of one or more Versions of the api.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata

    false

    v1.ObjectMeta

    description

    Description is the description of this object.

    false

    string

    versions

    Versions are versions for this third party object

    false

    v1beta1.APIVersion array

    - -
    -
    -

    v1.TCPSocketAction

    -
    -

    TCPSocketAction describes an action based on opening a socket

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    port

    Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    - -
    -
    -

    v1beta1.DeploymentStrategy

    -
    -

    DeploymentStrategy describes how to replace existing pods with new ones.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.

    false

    string

    rollingUpdate

    Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.

    false

    v1beta1.RollingUpdateDeployment

    - -
    -
    -

    v1beta1.IngressRule

    -
    -

    IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    host

    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.

    false

    string

    http

    false

    v1beta1.HTTPIngressRuleValue

    - -
    -
    -

    v1beta1.JobList

    -
    -

    JobList is a collection of jobs.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of Job.

    true

    v1beta1.Job array

    - -
    -
    -

    v1beta1.NetworkPolicyPeer

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podSelector

    This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If not provided, this selector selects no pods. If present but empty, this selector selects all pods in this namespace.

    false

    v1beta1.LabelSelector

    namespaceSelector

    Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If omitted, this selector selects no namespaces. If present but empty, this selector selects all namespaces.

    false

    v1beta1.LabelSelector

    - -
    -
    -

    unversioned.StatusDetails

    -
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

    false

    string

    group

    The group attribute of the resource associated with the status StatusReason.

    false

    string

    kind

    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    causes

    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

    false

    unversioned.StatusCause array

    retryAfterSeconds

    If specified, the time in seconds before the operation should be retried.

    false

    integer (int32)

    - -
    -
    -

    v1.HTTPGetAction

    -
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path to access on the HTTP server.

    false

    string

    port

    Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    false

    string

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

    false

    string

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    false

    v1.HTTPHeader array

    - -
    -
    -

    v1beta1.CPUTargetUtilization

    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPercentage

    fraction of the requested CPU that should be utilized/used, e.g. 70 means that 70% of the requested CPU should be in use.

    true

    integer (int32)

    - -
    -
    -

    v1.LoadBalancerStatus

    -
    -

    LoadBalancerStatus represents the status of a load-balancer.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ingress

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

    false

    v1.LoadBalancerIngress array

    - -
    -
    -

    v1.Container

    -
    -

    A single application container that you want to run within a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    true

    string

    image

    Docker image name. More info: http://releases.k8s.io/release-1.4/docs/user-guide/images.md

    false

    string

    command

    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://releases.k8s.io/release-1.4/docs/user-guide/containers.md#containers-and-commands

    false

    string array

    args

    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://releases.k8s.io/release-1.4/docs/user-guide/containers.md#containers-and-commands

    false

    string array

    workingDir

    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.

    false

    string

    ports

    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.

    false

    v1.ContainerPort array

    env

    List of environment variables to set in the container. Cannot be updated.

    false

    v1.EnvVar array

    resources

    Compute Resources required by this container. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#resources

    false

    v1.ResourceRequirements

    volumeMounts

    Pod volumes to mount into the container’s filesystem. Cannot be updated.

    false

    v1.VolumeMount array

    livenessProbe

    Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes

    false

    v1.Probe

    readinessProbe

    Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes

    false

    v1.Probe

    lifecycle

    Actions that the management system should take in response to container lifecycle events. Cannot be updated.

    false

    v1.Lifecycle

    terminationMessagePath

    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.

    false

    string

    imagePullPolicy

    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://releases.k8s.io/release-1.4/docs/user-guide/images.md#updating-images

    false

    string

    securityContext

    Security options the pod should run with. More info: http://releases.k8s.io/release-1.4/docs/design/security_context.md

    false

    v1.SecurityContext

    stdin

    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.

    false

    boolean

    false

    stdinOnce

    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

    false

    boolean

    false

    tty

    Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.PodSecurityContext

    -
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    seLinuxOptions

    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.

    false

    integer (int32) array

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:
    -
    -1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR’d with rw-rw

    false

    integer (int64)

    - -
    -
    -

    v1beta1.NetworkPolicyIngressRule

    -
    -

    This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ports

    List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is not provided, this rule matches all ports (traffic not restricted by port). If this field is empty, this rule matches no ports (no traffic matches). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.

    false

    v1beta1.NetworkPolicyPort array

    from

    List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is not provided, this rule matches all sources (traffic not restricted by source). If this field is empty, this rule matches no sources (no traffic matches). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.

    false

    v1beta1.NetworkPolicyPeer array

    - -
    -
    -

    v1.OwnerReference

    -
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    API version of the referent.

    true

    string

    kind

    Kind of the referent. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    true

    string

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    true

    string

    uid

    UID of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#uids

    true

    string

    controller

    If true, this reference points to the managing controller.

    false

    boolean

    false

    - -
    -
    -

    v1beta1.ReplicaSetStatus

    -
    -

    ReplicaSetStatus represents the current status of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the most recently oberved number of replicas. More info: http://releases.k8s.io/release-1.4/docs/user-guide/replication-controller.md#what-is-a-replication-controller

    true

    integer (int32)

    fullyLabeledReplicas

    The number of pods that have labels matching the labels of the pod template of the replicaset.

    false

    integer (int32)

    readyReplicas

    The number of ready replicas for this replica set.

    false

    integer (int32)

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

    false

    integer (int64)

    - -
    -
    -

    v1beta1.LabelSelector

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    matchLabels

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

    false

    object

    matchExpressions

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

    false

    v1beta1.LabelSelectorRequirement array

    - -
    -
    -

    v1beta1.ReplicaSet

    -
    -

    ReplicaSet represents the configuration of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    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/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the specification of the desired behavior of the ReplicaSet. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.ReplicaSetSpec

    status

    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/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.ReplicaSetStatus

    - -
    -
    -

    v1.HostPathVolumeSource

    -
    -

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path of the directory on the host. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#hostpath

    true

    string

    - -
    -
    -

    v1beta1.DaemonSet

    -
    -

    DaemonSet represents the configuration of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.DaemonSetSpec

    status

    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/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.DaemonSetStatus

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    volume id used to identify the volume in cinder More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md

    true

    string

    fsType

    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/release-1.4/examples/mysql-cinder-pd/README.md

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md

    false

    boolean

    false

    - -
    -
    -

    v1.SecurityContext

    -
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capabilities

    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

    false

    v1.Capabilities

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

    false

    boolean

    false

    seLinuxOptions

    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.Protocol

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore

    true

    string

    fsType

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore

    false

    string

    partition

    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).

    false

    integer (int32)

    readOnly

    Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore

    false

    boolean

    false

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerSpec

    -
    -

    specification of a horizontal pod autoscaler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    scaleRef

    reference to Scale subresource; horizontal pod autoscaler will learn the current resource consumption from its status, and will set the desired number of pods by modifying its spec.

    true

    v1beta1.SubresourceReference

    minReplicas

    lower limit for the number of pods that can be set by the autoscaler, default 1.

    false

    integer (int32)

    maxReplicas

    upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.

    true

    integer (int32)

    cpuUtilization

    target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified it defaults to the target CPU utilization at 80% of the requested resources.

    false

    v1beta1.CPUTargetUtilization

    - -
    -
    -

    v1.QuobyteVolumeSource

    -
    -

    Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    registry

    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

    true

    string

    volume

    Volume is a string that references an already created Quobyte volume by name.

    true

    string

    readOnly

    ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

    false

    boolean

    false

    user

    User to map volume access to Defaults to serivceaccount user

    false

    string

    group

    Group to map volume access to Default is no group

    false

    string

    - -
    -
    -

    v1beta1.LabelSelectorRequirement

    -
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    key is the label key that the selector applies to.

    true

    string

    operator

    operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

    true

    string

    values

    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    false

    string array

    - -
    -
    -

    v1.EnvVar

    -
    -

    EnvVar represents an environment variable present in a Container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    true

    string

    value

    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".

    false

    string

    valueFrom

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

    false

    v1.EnvVarSource

    - -
    -
    -

    v1.ResourceRequirements

    -
    -

    ResourceRequirements describes the compute resource requirements.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/user-guide/compute-resources/

    false

    object

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/user-guide/compute-resources/

    false

    object

    - -
    -
    -

    v1.PodTemplateSpec

    -
    -

    PodTemplateSpec describes the data a pod should have when created from a template

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    - -
    -
    -

    v1beta1.NetworkPolicyPort

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    protocol

    Optional. The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.

    false

    v1.Protocol

    port

    If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.

    false

    string

    - -
    -
    -

    v1beta1.JobSpec

    -
    -

    JobSpec describes how the job execution will look like.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    parallelism

    Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://releases.k8s.io/release-1.4/docs/user-guide/jobs.md

    false

    integer (int32)

    completions

    Completions specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: http://releases.k8s.io/release-1.4/docs/user-guide/jobs.md

    false

    integer (int32)

    activeDeadlineSeconds

    Optional duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer

    false

    integer (int64)

    selector

    Selector is a label query over pods that should match the pod count. Normally, the system sets this field for you. More info: http://releases.k8s.io/release-1.4/docs/user-guide/labels.md#label-selectors

    false

    v1beta1.LabelSelector

    autoSelector

    AutoSelector controls generation of pod labels and pod selectors. It was not present in the original extensions/v1beta1 Job definition, but exists to allow conversion from batch/v1 Jobs, where it corresponds to, but has the opposite meaning as, ManualSelector. More info: http://releases.k8s.io/release-1.4/docs/design/selector-generation.md

    false

    boolean

    false

    template

    Template is the object that describes the pod that will be created when executing a job. More info: http://releases.k8s.io/release-1.4/docs/user-guide/jobs.md

    true

    v1.PodTemplateSpec

    - -
    -
    -

    unversioned.Status

    -
    -

    Status is a return value for calls that don’t return other objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    status

    Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    reason

    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.

    false

    string

    details

    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.

    false

    unversioned.StatusDetails

    code

    Suggested HTTP return code for this status, 0 if not set.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerList

    -
    -

    list of horizontal pod autoscaler objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    list of horizontal pod autoscaler objects.

    true

    v1beta1.HorizontalPodAutoscaler array

    - -
    -
    -

    v1.ConfigMapKeySelector

    -
    -

    Selects a key from a ConfigMap.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    key

    The key to select.

    true

    string

    - -
    -
    -

    v1beta1.HTTPIngressPath

    -
    -

    HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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.

    false

    string

    backend

    Backend defines the referenced service endpoint to which the traffic will be forwarded to.

    true

    v1beta1.IngressBackend

    - -
    -
    -

    v1beta1.Ingress

    -
    -

    Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec is the desired state of the Ingress. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.IngressSpec

    status

    Status is the current state of the Ingress. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.IngressStatus

    - -
    -
    -

    v1beta1.ThirdPartyResourceList

    -
    -

    ThirdPartyResourceList is a list of ThirdPartyResources.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    Items is the list of ThirdPartyResources.

    true

    v1beta1.ThirdPartyResource array

    - -
    -
    -

    v1.AzureDataDiskCachingMode

    - -
    -
    -

    any

    -
    -

    Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.4/extensions-v1beta1-operations.html b/_includes/v1.4/extensions-v1beta1-operations.html deleted file mode 100755 index b64aa1cfe9..0000000000 --- a/_includes/v1.4/extensions-v1beta1-operations.html +++ /dev/null @@ -1,15661 +0,0 @@ - - - - - - -Operations - - - -
    -
    -

    Operations

    -
    -
    -

    get available resources

    -
    -
    -
    GET /apis/extensions/v1beta1
    -
    -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    unversioned.APIResourceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DeploymentList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscalerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Ingress

    -
    -
    -
    GET /apis/extensions/v1beta1/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.IngressList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Job

    -
    -
    -
    GET /apis/extensions/v1beta1/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.JobList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind DaemonSet

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of DaemonSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a DaemonSet

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DaemonSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified DaemonSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DaemonSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a DaemonSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified DaemonSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified DaemonSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DaemonSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified DaemonSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DeploymentList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Deployment

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a Deployment

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Deployment

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Deployment

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a Deployment

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create rollback of a DeploymentRollback

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DeploymentRollback

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DeploymentRollback

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DeploymentRollback

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Deployment

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscalerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of HorizontalPodAutoscaler

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a HorizontalPodAutoscaler

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.HorizontalPodAutoscaler

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified HorizontalPodAutoscaler

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.HorizontalPodAutoscaler

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a HorizontalPodAutoscaler

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified HorizontalPodAutoscaler

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified HorizontalPodAutoscaler

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.HorizontalPodAutoscaler

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified HorizontalPodAutoscaler

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.IngressList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Ingress

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create an Ingress

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Ingress

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Ingress

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete an Ingress

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Ingress

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Job

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.JobList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Job

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a Job

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Job

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Job

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Job

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Job

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a Job

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Job

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Job

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Job

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Job

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Job

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicyList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of NetworkPolicy

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a NetworkPolicy

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.NetworkPolicy

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified NetworkPolicy

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.NetworkPolicy

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a NetworkPolicy

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified NetworkPolicy

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ReplicaSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a ReplicaSet

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ReplicaSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ReplicaSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ReplicaSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a ReplicaSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ReplicaSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified ReplicaSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ReplicaSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified ReplicaSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicyList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResourceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ThirdPartyResource

    -
    -
    -
    DELETE /apis/extensions/v1beta1/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a ThirdPartyResource

    -
    -
    -
    POST /apis/extensions/v1beta1/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ThirdPartyResource

    -
    -
    -
    PUT /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ThirdPartyResource

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a ThirdPartyResource

    -
    -
    -
    DELETE /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ThirdPartyResource

    -
    -
    -
    PATCH /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Ingress

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Job

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of DaemonSet

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind DaemonSet

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Job

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Job

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.4/v1-definitions.html b/_includes/v1.4/v1-definitions.html deleted file mode 100755 index 8e61a5b040..0000000000 --- a/_includes/v1.4/v1-definitions.html +++ /dev/null @@ -1,8087 +0,0 @@ - - - - - - -Top Level API Objects - - - -
    - -
    -

    Definitions

    -
    -
    -

    v1.Node

    -
    -

    Node is a worker node in Kubernetes, formerly known as minion. Each node will have a unique identifier in the cache (i.e. in etcd).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the behavior of a node. http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NodeSpec

    status

    Most recently observed status of the node. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NodeStatus

    - -
    -
    -

    v1.PersistentVolumeClaimList

    -
    -

    PersistentVolumeClaimList is a list of PersistentVolumeClaim items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    A list of persistent volume claims. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    true

    v1.PersistentVolumeClaim array

    - -
    -
    -

    v1.Preconditions

    -
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    uid

    Specifies the target UID.

    false

    types.UID

    - -
    -
    -

    v1.SELinuxOptions

    -
    -

    SELinuxOptions are the labels to be applied to the container

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    user

    User is a SELinux user label that applies to the container.

    false

    string

    role

    Role is a SELinux role label that applies to the container.

    false

    string

    type

    Type is a SELinux type label that applies to the container.

    false

    string

    level

    Level is SELinux level label that applies to the container.

    false

    string

    - -
    -
    -

    v1.ObjectFieldSelector

    -
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    false

    string

    fieldPath

    Path of the field to select in the specified API version.

    true

    string

    - -
    -
    -

    v1.ContainerStateRunning

    -
    -

    ContainerStateRunning is a running state of a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    startedAt

    Time at which the container was last (re-)started

    false

    string (date-time)

    - -
    -
    -

    v1.VolumeMount

    -
    -

    VolumeMount describes a mounting of a Volume within a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must match the Name of a Volume.

    true

    string

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    false

    boolean

    false

    mountPath

    Path within the container at which the volume should be mounted. Must not contain :.

    true

    string

    subPath

    Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root).

    false

    string

    - -
    -
    -

    v1.PersistentVolumeClaimSpec

    -
    -

    PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    accessModes

    AccessModes contains the desired access modes the volume should have. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#access-modes-1

    false

    v1.PersistentVolumeAccessMode array

    selector

    A label query over volumes to consider for binding.

    false

    unversioned.LabelSelector

    resources

    Resources represents the minimum resources the volume should have. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#resources

    false

    v1.ResourceRequirements

    volumeName

    VolumeName is the binding reference to the PersistentVolume backing this claim.

    false

    string

    - -
    -
    -

    v1.CephFSVolumeSource

    -
    -

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    true

    string array

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    false

    string

    user

    Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    false

    string

    secretFile

    Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    false

    string

    secretRef

    Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it

    false

    boolean

    false

    - -
    -
    -

    v1.DownwardAPIVolumeSource

    -
    -

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    items

    Items is a list of downward API volume file

    false

    v1.DownwardAPIVolumeFile array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    unversioned.StatusCause

    -
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    A machine-readable description of the cause of the error. If this value is empty there is no information available.

    false

    string

    message

    A human-readable description of the cause of the error. This field may be presented as-is to a reader.

    false

    string

    field

    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
    -
    -Examples:
    - "name" - the field "name" on the current resource
    - "items[0].name" - the field "name" on the first array entry in "items"

    false

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdName

    Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    true

    string

    fsType

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    false

    string

    partition

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    false

    integer (int32)

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    false

    boolean

    false

    - -
    -
    -

    v1.ResourceQuotaSpec

    -
    -

    ResourceQuotaSpec defines the desired hard limits to enforce for Quota.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hard

    Hard is the set of desired hard limits for each named resource. More info: http://releases.k8s.io/release-1.4/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota

    false

    object

    scopes

    A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.

    false

    v1.ResourceQuotaScope array

    - -
    -
    -

    v1.NamespaceStatus

    -
    -

    NamespaceStatus is information about the current status of a Namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase is the current lifecycle phase of the namespace. More info: http://releases.k8s.io/release-1.4/docs/design/namespaces.md#phases

    false

    string

    - -
    -
    -

    v1.NamespaceSpec

    -
    -

    NamespaceSpec describes the attributes on a Namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    finalizers

    Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: http://releases.k8s.io/release-1.4/docs/design/namespaces.md#finalizers

    false

    v1.FinalizerName array

    - -
    -
    -

    v1.PersistentVolume

    -
    -

    PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#persistent-volumes

    false

    v1.PersistentVolumeSpec

    status

    Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#persistent-volumes

    false

    v1.PersistentVolumeStatus

    - -
    -
    -

    v1.ConfigMapList

    -
    -

    ConfigMapList is a resource containing a list of ConfigMap objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of ConfigMaps.

    true

    v1.ConfigMap array

    - -
    -
    -

    v1.PersistentVolumeStatus

    -
    -

    PersistentVolumeStatus is the current status of a persistent volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#phase

    false

    string

    message

    A human-readable message indicating details about why the volume is in this state.

    false

    string

    reason

    Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.

    false

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    *versioned.Event

    - -
    -
    -

    v1.EndpointsList

    -
    -

    EndpointsList is a list of endpoints.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of endpoints.

    true

    v1.Endpoints array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    repository

    Repository URL

    true

    string

    revision

    Commit hash for the specified revision.

    false

    string

    directory

    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.

    false

    string

    - -
    -
    -

    v1.ScaleStatus

    -
    -

    ScaleStatus represents the current status of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    actual number of observed instances of the scaled object.

    true

    integer (int32)

    selector

    label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://releases.k8s.io/release-1.4/docs/user-guide/labels.md#label-selectors

    false

    string

    - -
    -
    -

    v1.Capabilities

    -
    -

    Adds and removes POSIX capabilities from running containers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    add

    Added capabilities

    false

    v1.Capability array

    drop

    Removed capabilities

    false

    v1.Capability array

    - -
    -
    -

    v1.ConfigMap

    -
    -

    ConfigMap holds configuration data for pods to consume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    data

    Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.

    false

    object

    - -
    -
    -

    v1.PodTemplateList

    -
    -

    PodTemplateList is a list of PodTemplates.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of pod templates

    true

    v1.PodTemplate array

    - -
    -
    -

    v1.NodeCondition

    -
    -

    NodeCondition contains condition information for a node.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of node condition.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastHeartbeatTime

    Last time we got an update on a given condition.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transit from one status to another.

    false

    string (date-time)

    reason

    (brief) reason for the condition’s last transition.

    false

    string

    message

    Human readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.LocalObjectReference

    -
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    - -
    -
    -

    v1.ResourceQuotaStatus

    -
    -

    ResourceQuotaStatus defines the enforced hard limits and observed use.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hard

    Hard is the set of enforced hard limits for each named resource. More info: http://releases.k8s.io/release-1.4/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota

    false

    object

    used

    Used is the current observed total usage of the resource in the namespace.

    false

    object

    - -
    -
    -

    v1.ExecAction

    -
    -

    ExecAction describes a "run in container" action.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    command

    Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

    ', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

    false

    string array

    - -
    -
    -

    v1.ObjectMeta

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

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

    false

    string

    generateName

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

    false

    string

    namespace

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

    false

    string

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    uid

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

    false

    string

    resourceVersion

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

    false

    string

    generation

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

    false

    integer (int64)

    creationTimestamp

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
    -
    -Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionTimestamp

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource will be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. Once the resource is deleted in the API, the Kubelet will send a hard termination signal to the container. If not set, graceful deletion of the object has not been requested.
    -
    -Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionGracePeriodSeconds

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

    false

    integer (int64)

    labels

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

    false

    object

    annotations

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

    false

    object

    ownerReferences

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

    false

    v1.OwnerReference array

    finalizers

    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

    false

    string array

    clusterName

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

    false

    string

    - -
    -
    -

    v1.LimitRangeSpec

    -
    -

    LimitRangeSpec defines a min/max usage limit for resources that match on kind.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits is the list of LimitRangeItem objects that are enforced.

    true

    v1.LimitRangeItem array

    - -
    -
    -

    types.UID

    - -
    -
    -

    v1.AzureFileVolumeSource

    -
    -

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    true

    string

    shareName

    Share Name

    true

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.ISCSIVolumeSource

    -
    -

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPortal

    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).

    true

    string

    iqn

    Target iSCSI Qualified Name.

    true

    string

    lun

    iSCSI target lun number.

    true

    integer (int32)

    iscsiInterface

    Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

    false

    string

    fsType

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#iscsi

    false

    string

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    false

    boolean

    false

    - -
    -
    -

    v1.EmptyDirVolumeSource

    -
    -

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    medium

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#emptydir

    false

    string

    - -
    -
    -

    v1.NodeList

    -
    -

    NodeList is the whole list of all Nodes which have been registered with master.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of nodes

    true

    v1.Node array

    - -
    -
    -

    unversioned.Patch

    -
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    -
    -
    -
    -

    v1.NamespaceList

    -
    -

    NamespaceList is a list of Namespaces.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is the list of Namespace objects in the list. More info: http://releases.k8s.io/release-1.4/docs/user-guide/namespaces.md

    true

    v1.Namespace array

    - -
    -
    -

    v1.PersistentVolumeClaim

    -
    -

    PersistentVolumeClaim is a user’s request for and claim to a persistent volume

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired characteristics of a volume requested by a pod author. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimSpec

    status

    Status represents the current information/status of a persistent volume claim. Read-only. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimStatus

    - -
    -
    -

    v1.ServiceAccount

    -
    -

    ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    secrets

    Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: http://releases.k8s.io/release-1.4/docs/user-guide/secrets.md

    false

    v1.ObjectReference array

    imagePullSecrets

    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://releases.k8s.io/release-1.4/docs/user-guide/secrets.md#manually-specifying-an-imagepullsecret

    false

    v1.LocalObjectReference array

    - -
    -
    -

    v1.NodeAddress

    -
    -

    NodeAddress contains information for the node’s address.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Node address type, one of Hostname, ExternalIP or InternalIP.

    true

    string

    address

    The node address.

    true

    string

    - -
    -
    -

    v1.Namespace

    -
    -

    Namespace provides a scope for Names. Use of multiple namespaces is optional.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the behavior of the Namespace. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NamespaceSpec

    status

    Status describes the current status of a Namespace. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NamespaceStatus

    - -
    -
    -

    v1.FlockerVolumeSource

    -
    -

    Represents a Flocker volume mounted by the Flocker agent. Flocker volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    datasetName

    Required: the volume name. This is going to be store on metadata → name on the payload for Flocker

    true

    string

    - -
    -
    -

    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).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    claimName

    ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    true

    string

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

    false

    boolean

    false

    - -
    -
    -

    unversioned.ListMeta

    -
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    resourceVersion

    String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    - -
    -
    -

    v1.ResourceQuotaList

    -
    -

    ResourceQuotaList is a list of ResourceQuota items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/release-1.4/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota

    true

    v1.ResourceQuota array

    - -
    -
    -

    v1.PersistentVolumeClaimStatus

    -
    -

    PersistentVolumeClaimStatus is the current status of a persistent volume claim.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase represents the current phase of PersistentVolumeClaim.

    false

    string

    accessModes

    AccessModes contains the actual access modes the volume backing the PVC has. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#access-modes-1

    false

    v1.PersistentVolumeAccessMode array

    capacity

    Represents the actual resources of the underlying volume.

    false

    object

    - -
    -
    -

    v1.UniqueVolumeName

    - -
    -
    -

    unversioned.LabelSelector

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    matchLabels

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

    false

    object

    matchExpressions

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

    false

    unversioned.LabelSelectorRequirement array

    - -
    -
    -

    v1.EndpointSubset

    -
    -

    EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:
    - {
    - Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    - Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    - }
    -The resulting set of endpoints can be viewed as:
    - a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],
    - b: [ 10.10.1.1:309, 10.10.2.2:309 ]

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    addresses

    IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.

    false

    v1.EndpointAddress array

    notReadyAddresses

    IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.

    false

    v1.EndpointAddress array

    ports

    Port numbers available on the related IP addresses.

    false

    v1.EndpointPort array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    Name of the secret in the pod’s namespace to use. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#secrets

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    driver

    Driver is the name of the driver to use for this volume.

    true

    string

    fsType

    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.

    false

    string

    secretRef

    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.

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    options

    Optional: Extra command options if any.

    false

    object

    - -
    -
    -

    v1.EnvVarSource

    -
    -

    EnvVarSource represents a source for the value of an EnvVar.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    fieldRef

    Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    configMapKeyRef

    Selects a key of a ConfigMap.

    false

    v1.ConfigMapKeySelector

    secretKeyRef

    Selects a key of a secret in the pod’s namespace

    false

    v1.SecretKeySelector

    - -
    -
    -

    v1.Scale

    -
    -

    Scale represents a scaling request for a resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata; More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata.

    false

    v1.ObjectMeta

    spec

    defines the behavior of the scale. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status.

    false

    v1.ScaleSpec

    status

    current status of the scale. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status. Read-only.

    false

    v1.ScaleStatus

    - -
    -
    -

    v1.LoadBalancerIngress

    -
    -

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

    false

    string

    hostname

    Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

    false

    string

    - -
    -
    -

    v1.AzureDiskVolumeSource

    -
    -

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    diskName

    The Name of the data disk in the blob storage

    true

    string

    diskURI

    The URI the data disk in the blob storage

    true

    string

    cachingMode

    Host Caching mode: None, Read Only, Read Write.

    false

    v1.AzureDataDiskCachingMode

    fsType

    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.

    false

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.KeyToPath

    -
    -

    Maps a string key to a path within a volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    The key to project.

    true

    string

    path

    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 ...

    true

    string

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.Service

    -
    -

    Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the behavior of a service. http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ServiceSpec

    status

    Most recently observed status of the service. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ServiceStatus

    - -
    -
    -

    v1.VsphereVirtualDiskVolumeSource

    -
    -

    Represents a vSphere volume resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumePath

    Path that identifies vSphere volume vmdk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1.ServiceAccountList

    -
    -

    ServiceAccountList is a list of ServiceAccount objects

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ServiceAccounts. More info: http://releases.k8s.io/release-1.4/docs/design/service_accounts.md#service-accounts

    true

    v1.ServiceAccount array

    - -
    -
    -

    v1.LimitRangeList

    -
    -

    LimitRangeList is a list of LimitRange items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is a list of LimitRange objects. More info: http://releases.k8s.io/release-1.4/docs/design/admission_control_limit_range.md

    true

    v1.LimitRange array

    - -
    -
    -

    v1.Endpoints

    -
    -

    Endpoints is a collection of endpoints that implement the actual service. Example:
    - Name: "mysvc",
    - Subsets: [
    - {
    - Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    - Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    - },
    - {
    - Addresses: [{"ip": "10.10.3.3"}],
    - Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}]
    - },
    - ]

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    subsets

    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.

    true

    v1.EndpointSubset array

    - -
    -
    -

    v1.DeleteOptions

    -
    -

    DeleteOptions may be provided when deleting an API object

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    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.

    false

    integer (int64)

    preconditions

    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

    false

    v1.Preconditions

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    false

    - -
    -
    -

    v1.Volume

    -
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    true

    string

    hostPath

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#hostpath

    false

    v1.HostPathVolumeSource

    emptyDir

    EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#emptydir

    false

    v1.EmptyDirVolumeSource

    gcePersistentDisk

    GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore

    false

    v1.AWSElasticBlockStoreVolumeSource

    gitRepo

    GitRepo represents a git repository at a particular revision.

    false

    v1.GitRepoVolumeSource

    secret

    Secret represents a secret that should populate this volume. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#secrets

    false

    v1.SecretVolumeSource

    nfs

    NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#nfs

    false

    v1.NFSVolumeSource

    iscsi

    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/release-1.4/examples/volumes/iscsi/README.md

    false

    v1.ISCSIVolumeSource

    glusterfs

    Glusterfs represents a Glusterfs mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.4/examples/volumes/glusterfs/README.md

    false

    v1.GlusterfsVolumeSource

    persistentVolumeClaim

    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimVolumeSource

    rbd

    RBD represents a Rados Block Device mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md

    false

    v1.RBDVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    cinder

    Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    flocker

    Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

    false

    v1.FlockerVolumeSource

    downwardAPI

    DownwardAPI represents downward API about the pod that should populate this volume

    false

    v1.DownwardAPIVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    configMap

    ConfigMap represents a configMap that should populate this volume

    false

    v1.ConfigMapVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    quobyte

    Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

    false

    v1.QuobyteVolumeSource

    azureDisk

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    false

    v1.AzureDiskVolumeSource

    - -
    -
    -

    v1.ResourceFieldSelector

    -
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    containerName

    Container name: required for volumes, optional for env vars

    false

    string

    resource

    Required: resource to select

    true

    string

    divisor

    Specifies the output format of the exposed resources, defaults to "1"

    false

    string

    - -
    -
    -

    v1.Probe

    -
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    initialDelaySeconds

    Number of seconds after the container has started before liveness probes are initiated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes

    false

    integer (int32)

    timeoutSeconds

    Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes

    false

    integer (int32)

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    false

    integer (int32)

    successThreshold

    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.

    false

    integer (int32)

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    groupVersion

    groupVersion is the group and version this APIResourceList is for.

    true

    string

    resources

    resources contains the name of the resources and if they are namespaced.

    true

    unversioned.APIResource array

    - -
    -
    -

    v1.SecretKeySelector

    -
    -

    SecretKeySelector selects a key of a Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    key

    The key of the secret to select from. Must be a valid secret key.

    true

    string

    - -
    -
    -

    v1.ReplicationController

    -
    -

    ReplicationController represents the configuration of a replication controller.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    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/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the specification of the desired behavior of the replication controller. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ReplicationControllerSpec

    status

    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/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ReplicationControllerStatus

    - -
    -
    -

    v1.Capability

    - -
    -
    -

    unversioned.APIResource

    -
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    name is the name of the resource.

    true

    string

    namespaced

    namespaced indicates if a resource is namespaced or not.

    true

    boolean

    false

    kind

    kind is the kind for the resource (e.g. Foo is the kind for a resource foo)

    true

    string

    - -
    -
    -

    v1.PodStatus

    -
    -

    PodStatus represents information about the status of a pod. Status may trail the actual state of a system.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Current condition of the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#pod-phase

    false

    string

    conditions

    Current service state of pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#pod-conditions

    false

    v1.PodCondition array

    message

    A human readable message indicating details about why the pod is in this condition.

    false

    string

    reason

    A brief CamelCase message indicating details about why the pod is in this state. e.g. OutOfDisk

    false

    string

    hostIP

    IP address of the host to which the pod is assigned. Empty if not yet scheduled.

    false

    string

    podIP

    IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.

    false

    string

    startTime

    RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.

    false

    string (date-time)

    containerStatuses

    The list has one entry per container in the manifest. Each entry is currently the output of docker inspect. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-statuses

    false

    v1.ContainerStatus array

    - -
    -
    -

    v1.LimitRange

    -
    -

    LimitRange sets resource usage limits for each kind of resource in a Namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the limits enforced. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.LimitRangeSpec

    - -
    -
    -

    v1.DownwardAPIVolumeFile

    -
    -

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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 ..

    true

    string

    fieldRef

    Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.PodSpec

    -
    -

    PodSpec is a description of a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md

    false

    v1.Volume array

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/containers.md

    true

    v1.Container array

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#restartpolicy

    false

    string

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    false

    integer (int64)

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    false

    integer (int64)

    dnsPolicy

    Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

    false

    string

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://releases.k8s.io/release-1.4/docs/user-guide/node-selection/README.md

    false

    object

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/release-1.4/docs/design/service_accounts.md

    false

    string

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    false

    string

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    false

    string

    hostNetwork

    Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    false

    boolean

    false

    hostPID

    Use the host’s pid namespace. Optional: Default to false.

    false

    boolean

    false

    hostIPC

    Use the host’s ipc namespace. Optional: Default to false.

    false

    boolean

    false

    securityContext

    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

    false

    v1.PodSecurityContext

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://releases.k8s.io/release-1.4/docs/user-guide/images.md#specifying-imagepullsecrets-on-a-pod

    false

    v1.LocalObjectReference array

    hostname

    Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value.

    false

    string

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    false

    string

    - -
    -
    -

    v1.ContainerPort

    -
    -

    ContainerPort represents a network port in a single container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    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.

    false

    string

    hostPort

    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.

    false

    integer (int32)

    containerPort

    Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

    true

    integer (int32)

    protocol

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".

    false

    string

    hostIP

    What host IP to bind the external port to.

    false

    string

    - -
    -
    -

    v1.ResourceQuota

    -
    -

    ResourceQuota sets aggregate quota restrictions enforced per namespace

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired quota. http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ResourceQuotaSpec

    status

    Status defines the actual enforced quota and its current usage. http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ResourceQuotaStatus

    - -
    -
    -

    v1.EventList

    -
    -

    EventList is a list of events.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of events

    true

    v1.Event array

    - -
    -
    -

    v1.Lifecycle

    -
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    postStart

    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://releases.k8s.io/release-1.4/docs/user-guide/container-environment.md#hook-details

    false

    v1.Handler

    preStop

    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://releases.k8s.io/release-1.4/docs/user-guide/container-environment.md#hook-details

    false

    v1.Handler

    - -
    -
    -

    v1.ReplicationControllerSpec

    -
    -

    ReplicationControllerSpec is the specification of a replication controller.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://releases.k8s.io/release-1.4/docs/user-guide/replication-controller.md#what-is-a-replication-controller

    false

    integer (int32)

    selector

    Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: http://releases.k8s.io/release-1.4/docs/user-guide/labels.md#label-selectors

    false

    object

    template

    Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: http://releases.k8s.io/release-1.4/docs/user-guide/replication-controller.md#pod-template

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1.Handler

    -
    -

    Handler defines a specific action that should be taken

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    - -
    -
    -

    v1.NodeStatus

    -
    -

    NodeStatus is information about the current status of a node.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capacity

    Capacity represents the total resources of a node. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#capacity for more details.

    false

    object

    allocatable

    Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.

    false

    object

    phase

    NodePhase is the recently observed lifecycle phase of the node. More info: http://releases.k8s.io/release-1.4/docs/admin/node.md#node-phase The field is never populated, and now is deprecated.

    false

    string

    conditions

    Conditions is an array of current observed node conditions. More info: http://releases.k8s.io/release-1.4/docs/admin/node.md#node-condition

    false

    v1.NodeCondition array

    addresses

    List of addresses reachable to the node. Queried from cloud provider, if available. More info: http://releases.k8s.io/release-1.4/docs/admin/node.md#node-addresses

    false

    v1.NodeAddress array

    daemonEndpoints

    Endpoints of daemons running on the Node.

    false

    v1.NodeDaemonEndpoints

    nodeInfo

    Set of ids/uuids to uniquely identify the node. More info: http://releases.k8s.io/release-1.4/docs/admin/node.md#node-info

    false

    v1.NodeSystemInfo

    images

    List of container images on this node

    false

    v1.ContainerImage array

    volumesInUse

    List of attachable volumes in use (mounted) by the node.

    false

    v1.UniqueVolumeName array

    volumesAttached

    List of volumes that are attached to the node.

    false

    v1.AttachedVolume array

    - -
    -
    -

    v1.GlusterfsVolumeSource

    -
    -

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/release-1.4/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    path

    Path is the Glusterfs volume path. More info: http://releases.k8s.io/release-1.4/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    readOnly

    ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/release-1.4/examples/volumes/glusterfs/README.md#create-a-pod

    false

    boolean

    false

    - -
    -
    -

    v1.AttachedVolume

    -
    -

    AttachedVolume describes a volume attached to a node

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the attached volume

    true

    string

    devicePath

    DevicePath represents the device path where the volume should be avilable

    true

    string

    - -
    -
    -

    v1.EventSource

    -
    -

    EventSource contains information for an event.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    component

    Component from which the event is generated.

    false

    string

    host

    Host name on which the event is generated.

    false

    string

    - -
    -
    -

    v1.PodCondition

    -
    -

    PodCondition contains details for the current condition of this pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type is the type of the condition. Currently only Ready. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#pod-conditions

    true

    string

    status

    Status is the status of the condition. Can be True, False, Unknown. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#pod-conditions

    true

    string

    lastProbeTime

    Last time we probed the condition.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transitioned from one status to another.

    false

    string (date-time)

    reason

    Unique, one-word, CamelCase reason for the condition’s last transition.

    false

    string

    message

    Human-readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.RBDVolumeSource

    -
    -

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    A collection of Ceph monitors. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    true

    string array

    image

    The rados image name. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    true

    string

    fsType

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#rbd

    false

    string

    pool

    The rados pool name. Default is rbd. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it.

    false

    string

    user

    The rados user name. Default is admin. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    false

    string

    keyring

    Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    false

    string

    secretRef

    SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    false

    v1.LocalObjectReference

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it

    false

    boolean

    false

    - -
    -
    -

    v1.PodTemplate

    -
    -

    PodTemplate describes a template for creating copies of a predefined pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    template

    Template defines the pods that will be created from this pod template. http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1.ServiceStatus

    -
    -

    ServiceStatus represents the current status of a service.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    loadBalancer

    LoadBalancer contains the current status of the load-balancer, if one is present.

    false

    v1.LoadBalancerStatus

    - -
    -
    -

    v1.NFSVolumeSource

    -
    -

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    server

    Server is the hostname or IP address of the NFS server. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#nfs

    true

    string

    path

    Path that is exported by the NFS server. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#nfs

    true

    string

    readOnly

    ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#nfs

    false

    boolean

    false

    - -
    -
    -

    v1.HTTPHeader

    -
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The header field name

    true

    string

    value

    The header field value

    true

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetWWNs

    Required: FC target worldwide names (WWNs)

    true

    string array

    lun

    Required: FC target lun number

    true

    integer (int32)

    fsType

    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.

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.EndpointPort

    -
    -

    EndpointPort is a tuple that describes a single port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.

    false

    string

    port

    The port number of the endpoint.

    true

    integer (int32)

    protocol

    The IP protocol for this port. Must be UDP or TCP. Default is TCP.

    false

    string

    - -
    -
    -

    v1.TCPSocketAction

    -
    -

    TCPSocketAction describes an action based on opening a socket

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    port

    Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    - -
    -
    -

    unversioned.StatusDetails

    -
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

    false

    string

    group

    The group attribute of the resource associated with the status StatusReason.

    false

    string

    kind

    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    causes

    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

    false

    unversioned.StatusCause array

    retryAfterSeconds

    If specified, the time in seconds before the operation should be retried.

    false

    integer (int32)

    - -
    -
    -

    v1.HTTPGetAction

    -
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path to access on the HTTP server.

    false

    string

    port

    Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    false

    string

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

    false

    string

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    false

    v1.HTTPHeader array

    - -
    -
    -

    v1.LoadBalancerStatus

    -
    -

    LoadBalancerStatus represents the status of a load-balancer.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ingress

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

    false

    v1.LoadBalancerIngress array

    - -
    -
    -

    v1.SecretList

    -
    -

    SecretList is a list of Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is a list of secret objects. More info: http://releases.k8s.io/release-1.4/docs/user-guide/secrets.md

    true

    v1.Secret array

    - -
    -
    -

    v1.Container

    -
    -

    A single application container that you want to run within a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    true

    string

    image

    Docker image name. More info: http://releases.k8s.io/release-1.4/docs/user-guide/images.md

    false

    string

    command

    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://releases.k8s.io/release-1.4/docs/user-guide/containers.md#containers-and-commands

    false

    string array

    args

    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://releases.k8s.io/release-1.4/docs/user-guide/containers.md#containers-and-commands

    false

    string array

    workingDir

    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.

    false

    string

    ports

    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.

    false

    v1.ContainerPort array

    env

    List of environment variables to set in the container. Cannot be updated.

    false

    v1.EnvVar array

    resources

    Compute Resources required by this container. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#resources

    false

    v1.ResourceRequirements

    volumeMounts

    Pod volumes to mount into the container’s filesystem. Cannot be updated.

    false

    v1.VolumeMount array

    livenessProbe

    Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes

    false

    v1.Probe

    readinessProbe

    Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes

    false

    v1.Probe

    lifecycle

    Actions that the management system should take in response to container lifecycle events. Cannot be updated.

    false

    v1.Lifecycle

    terminationMessagePath

    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.

    false

    string

    imagePullPolicy

    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://releases.k8s.io/release-1.4/docs/user-guide/images.md#updating-images

    false

    string

    securityContext

    Security options the pod should run with. More info: http://releases.k8s.io/release-1.4/docs/design/security_context.md

    false

    v1.SecurityContext

    stdin

    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.

    false

    boolean

    false

    stdinOnce

    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

    false

    boolean

    false

    tty

    Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.PodSecurityContext

    -
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    seLinuxOptions

    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.

    false

    integer (int32) array

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:
    -
    -1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR’d with rw-rw

    false

    integer (int64)

    - -
    -
    -

    v1.PersistentVolumeSpec

    -
    -

    PersistentVolumeSpec is the specification of a persistent volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capacity

    A description of the persistent volume’s resources and capacity. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#capacity

    false

    object

    gcePersistentDisk

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#gcepersistentdisk

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore

    false

    v1.AWSElasticBlockStoreVolumeSource

    hostPath

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#hostpath

    false

    v1.HostPathVolumeSource

    glusterfs

    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/release-1.4/examples/volumes/glusterfs/README.md

    false

    v1.GlusterfsVolumeSource

    nfs

    NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#nfs

    false

    v1.NFSVolumeSource

    rbd

    RBD represents a Rados Block Device mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md

    false

    v1.RBDVolumeSource

    iscsi

    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.

    false

    v1.ISCSIVolumeSource

    cinder

    Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    flocker

    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

    false

    v1.FlockerVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    quobyte

    Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

    false

    v1.QuobyteVolumeSource

    azureDisk

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    false

    v1.AzureDiskVolumeSource

    accessModes

    AccessModes contains all ways the volume can be mounted. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#access-modes

    false

    v1.PersistentVolumeAccessMode array

    claimRef

    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://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#binding

    false

    v1.ObjectReference

    persistentVolumeReclaimPolicy

    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://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#recycling-policy

    false

    string

    - -
    -
    -

    v1.ReplicationControllerStatus

    -
    -

    ReplicationControllerStatus represents the current status of a replication controller.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the most recently oberved number of replicas. More info: http://releases.k8s.io/release-1.4/docs/user-guide/replication-controller.md#what-is-a-replication-controller

    true

    integer (int32)

    fullyLabeledReplicas

    The number of pods that have labels matching the labels of the pod template of the replication controller.

    false

    integer (int32)

    readyReplicas

    The number of ready replicas for this replication controller.

    false

    integer (int32)

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed replication controller.

    false

    integer (int64)

    - -
    -
    -

    v1.FinalizerName

    - -
    -
    -

    v1.ServicePort

    -
    -

    ServicePort contains information on service’s port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the Name field in EndpointPort objects. Optional if only one ServicePort is defined on this service.

    false

    string

    protocol

    The IP protocol for this port. Supports "TCP" and "UDP". Default is TCP.

    false

    string

    port

    The port that will be exposed by this service.

    true

    integer (int32)

    targetPort

    Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod’s container ports. If this is not specified, the value of the port field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the port field. More info: http://releases.k8s.io/release-1.4/docs/user-guide/services.md#defining-a-service

    false

    string

    nodePort

    The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: http://releases.k8s.io/release-1.4/docs/user-guide/services.md#type—nodeport

    false

    integer (int32)

    - -
    -
    -

    v1.ComponentCondition

    -
    -

    Information about the condition of a component.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of condition for a component. Valid value: "Healthy"

    true

    string

    status

    Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".

    true

    string

    message

    Message about the condition for a component. For example, information about a health check.

    false

    string

    error

    Condition error code for a component. For example, a health check error code.

    false

    string

    - -
    -
    -

    v1.OwnerReference

    -
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    API version of the referent.

    true

    string

    kind

    Kind of the referent. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    true

    string

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    true

    string

    uid

    UID of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#uids

    true

    string

    controller

    If true, this reference points to the managing controller.

    false

    boolean

    false

    - -
    -
    -

    v1.ScaleSpec

    -
    -

    ScaleSpec describes the attributes of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    desired number of instances for the scaled object.

    false

    integer (int32)

    - -
    -
    -

    v1.ComponentStatusList

    -
    -

    Status of all the conditions for the component as a list of ComponentStatus objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ComponentStatus objects.

    true

    v1.ComponentStatus array

    - -
    -
    -

    v1.HostPathVolumeSource

    -
    -

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path of the directory on the host. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#hostpath

    true

    string

    - -
    -
    -

    v1.ContainerStateTerminated

    -
    -

    ContainerStateTerminated is a terminated state of a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exitCode

    Exit status from the last termination of the container

    true

    integer (int32)

    signal

    Signal from the last termination of the container

    false

    integer (int32)

    reason

    (brief) reason from the last termination of the container

    false

    string

    message

    Message regarding the last termination of the container

    false

    string

    startedAt

    Time at which previous execution of the container started

    false

    string (date-time)

    finishedAt

    Time at which the container last terminated

    false

    string (date-time)

    containerID

    Container’s ID in the format docker://<container_id>

    false

    string

    - -
    -
    -

    v1.Binding

    -
    -

    Binding ties one object to another. For example, a pod is bound to a node by a scheduler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    target

    The target object that you want to bind to the standard object.

    true

    v1.ObjectReference

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    volume id used to identify the volume in cinder More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md

    true

    string

    fsType

    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/release-1.4/examples/mysql-cinder-pd/README.md

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md

    false

    boolean

    false

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    waiting

    Details about a waiting container

    false

    v1.ContainerStateWaiting

    running

    Details about a running container

    false

    v1.ContainerStateRunning

    terminated

    Details about a terminated container

    false

    v1.ContainerStateTerminated

    - -
    -
    -

    v1.SecurityContext

    -
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capabilities

    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

    false

    v1.Capabilities

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

    false

    boolean

    false

    seLinuxOptions

    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1alpha1.Eviction

    -
    -

    Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to …/pods/<pod name>/evictions.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    ObjectMeta describes the pod that is being evicted.

    false

    v1.ObjectMeta

    deleteOptions

    DeleteOptions may be provided

    false

    v1.DeleteOptions

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore

    true

    string

    fsType

    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://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore

    false

    string

    partition

    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).

    false

    integer (int32)

    readOnly

    Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore

    false

    boolean

    false

    - -
    -
    -

    v1.ContainerStatus

    -
    -

    ContainerStatus contains details for the current status of this container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.

    true

    string

    state

    Details about the container’s current condition.

    false

    v1.ContainerState

    lastState

    Details about the container’s last termination condition.

    false

    v1.ContainerState

    ready

    Specifies whether the container has passed its readiness probe.

    true

    boolean

    false

    restartCount

    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.

    true

    integer (int32)

    image

    The image the container is running. More info: http://releases.k8s.io/release-1.4/docs/user-guide/images.md

    true

    string

    imageID

    ImageID of the container’s image.

    true

    string

    containerID

    Container’s ID in the format docker://<container_id>. More info: http://releases.k8s.io/release-1.4/docs/user-guide/container-environment.md#container-information

    false

    string

    - -
    -
    -

    v1.QuobyteVolumeSource

    -
    -

    Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    registry

    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

    true

    string

    volume

    Volume is a string that references an already created Quobyte volume by name.

    true

    string

    readOnly

    ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

    false

    boolean

    false

    user

    User to map volume access to Defaults to serivceaccount user

    false

    string

    group

    Group to map volume access to Default is no group

    false

    string

    - -
    -
    -

    v1.ContainerImage

    -
    -

    Describe a container image

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    names

    Names by which this image is known. e.g. ["k8s.gcr.io/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"]

    true

    string array

    sizeBytes

    The size of the image in bytes.

    false

    integer (int64)

    - -
    -
    -

    v1.ResourceQuotaScope

    - -
    -
    -

    v1.ReplicationControllerList

    -
    -

    ReplicationControllerList is a collection of replication controllers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of replication controllers. More info: http://releases.k8s.io/release-1.4/docs/user-guide/replication-controller.md

    true

    v1.ReplicationController array

    - -
    -
    -

    v1.NodeDaemonEndpoints

    -
    -

    NodeDaemonEndpoints lists ports opened by daemons running on the Node.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kubeletEndpoint

    Endpoint on which Kubelet is listening.

    false

    v1.DaemonEndpoint

    - -
    -
    -

    v1.Secret

    -
    -

    Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    data

    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

    false

    object

    stringData

    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.

    false

    object

    type

    Used to facilitate programmatic handling of secret data.

    false

    string

    - -
    -
    -

    v1.Event

    -
    -

    Event is a report of an event somewhere in the cluster.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    true

    v1.ObjectMeta

    involvedObject

    The object that this event is about.

    true

    v1.ObjectReference

    reason

    This should be a short, machine understandable string that gives the reason for the transition into the object’s current status.

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    source

    The component reporting this event. Should be a short machine understandable string.

    false

    v1.EventSource

    firstTimestamp

    The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)

    false

    string (date-time)

    lastTimestamp

    The time at which the most recent occurrence of this event was recorded.

    false

    string (date-time)

    count

    The number of times this event has occurred.

    false

    integer (int32)

    type

    Type of this event (Normal, Warning), new types could be added in the future

    false

    string

    - -
    -
    -

    v1.EnvVar

    -
    -

    EnvVar represents an environment variable present in a Container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    true

    string

    value

    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".

    false

    string

    valueFrom

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

    false

    v1.EnvVarSource

    - -
    -
    -

    v1.PersistentVolumeAccessMode

    - -
    -
    -

    v1.ResourceRequirements

    -
    -

    ResourceRequirements describes the compute resource requirements.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/user-guide/compute-resources/

    false

    object

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/user-guide/compute-resources/

    false

    object

    - -
    -
    -

    v1.ComponentStatus

    -
    -

    ComponentStatus (and ComponentStatusList) holds the cluster validation info.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    conditions

    List of component conditions observed

    false

    v1.ComponentCondition array

    - -
    -
    -

    v1.LimitRangeItem

    -
    -

    LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of resource that this limit applies to.

    false

    string

    max

    Max usage constraints on this kind by resource name.

    false

    object

    min

    Min usage constraints on this kind by resource name.

    false

    object

    default

    Default resource requirement limit value by resource name if resource limit is omitted.

    false

    object

    defaultRequest

    DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.

    false

    object

    maxLimitRequestRatio

    MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.

    false

    object

    - -
    -
    -

    v1.PodTemplateSpec

    -
    -

    PodTemplateSpec describes the data a pod should have when created from a template

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    - -
    -
    -

    v1.PodList

    -
    -

    PodList is a list of Pods.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of pods. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pods.md

    true

    v1.Pod array

    - -
    -
    -

    v1.ServiceList

    -
    -

    ServiceList holds a list of services.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of services

    true

    v1.Service array

    - -
    -
    -

    v1.PersistentVolumeList

    -
    -

    PersistentVolumeList is a list of PersistentVolume items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of persistent volumes. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md

    true

    v1.PersistentVolume array

    - -
    -
    -

    v1.ObjectReference

    -
    -

    ObjectReference contains enough information to let you inspect or modify the referred object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind of the referent. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    namespace

    Namespace of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/namespaces.md

    false

    string

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    uid

    UID of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#uids

    false

    string

    apiVersion

    API version of the referent.

    false

    string

    resourceVersion

    Specific resourceVersion to which this reference is made, if any. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    fieldPath

    If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.

    false

    string

    - -
    -
    -

    unversioned.LabelSelectorRequirement

    -
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    key is the label key that the selector applies to.

    true

    string

    operator

    operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

    true

    string

    values

    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    false

    string array

    - -
    -
    -

    v1.ContainerStateWaiting

    -
    -

    ContainerStateWaiting is a waiting state of a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    (brief) reason the container is not yet running.

    false

    string

    message

    Message regarding why the container is not yet running.

    false

    string

    - -
    -
    -

    unversioned.Status

    -
    -

    Status is a return value for calls that don’t return other objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    status

    Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    reason

    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.

    false

    string

    details

    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.

    false

    unversioned.StatusDetails

    code

    Suggested HTTP return code for this status, 0 if not set.

    false

    integer (int32)

    - -
    -
    -

    v1.ConfigMapKeySelector

    -
    -

    Selects a key from a ConfigMap.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names

    false

    string

    key

    The key to select.

    true

    string

    - -
    -
    -

    v1.NodeSystemInfo

    -
    -

    NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    machineID

    Machine ID reported by the node.

    true

    string

    systemUUID

    System UUID reported by the node.

    true

    string

    bootID

    Boot ID reported by the node.

    true

    string

    kernelVersion

    Kernel Version reported by the node from uname -r (e.g. 3.16.0-0.bpo.4-amd64).

    true

    string

    osImage

    OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).

    true

    string

    containerRuntimeVersion

    ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).

    true

    string

    kubeletVersion

    Kubelet Version reported by the node.

    true

    string

    kubeProxyVersion

    KubeProxy Version reported by the node.

    true

    string

    operatingSystem

    The Operating System reported by the node

    true

    string

    architecture

    The Architecture reported by the node

    true

    string

    - -
    -
    -

    v1.ServiceSpec

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ports

    The list of ports that are exposed by this service. More info: http://releases.k8s.io/release-1.4/docs/user-guide/services.md#virtual-ips-and-service-proxies

    true

    v1.ServicePort array

    selector

    Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/release-1.4/docs/user-guide/services.md#overview

    false

    object

    clusterIP

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

    false

    string

    type

    type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: http://releases.k8s.io/release-1.4/docs/user-guide/services.md#overview

    false

    string

    externalIPs

    externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. A previous form of this functionality exists as the deprecatedPublicIPs field. When using this field, callers should also clear the deprecatedPublicIPs field.

    false

    string array

    deprecatedPublicIPs

    deprecatedPublicIPs is deprecated and replaced by the externalIPs field with almost the exact same semantics. This field is retained in the v1 API for compatibility until at least 8/20/2016. It will be removed from any new API revisions. If both deprecatedPublicIPs and externalIPs are set, deprecatedPublicIPs is used.

    false

    string array

    sessionAffinity

    Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: http://releases.k8s.io/release-1.4/docs/user-guide/services.md#virtual-ips-and-service-proxies

    false

    string

    loadBalancerIP

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

    false

    string

    loadBalancerSourceRanges

    If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: http://releases.k8s.io/release-1.4/docs/user-guide/services-firewalls.md

    false

    string array

    externalName

    externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName.

    false

    string

    - -
    -
    -

    v1.Pod

    -
    -

    Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    status

    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/release-1.4/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodStatus

    - -
    -
    -

    v1.NodeSpec

    -
    -

    NodeSpec describes the attributes that a node is created with.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podCIDR

    PodCIDR represents the pod IP range assigned to the node.

    false

    string

    externalID

    External ID of the node assigned by some machine database (e.g. a cloud provider). Deprecated.

    false

    string

    providerID

    ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>

    false

    string

    unschedulable

    Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: http://releases.k8s.io/release-1.4/docs/admin/node.md#manual-node-administration"`

    false

    boolean

    false

    - -
    -
    -

    v1.EndpointAddress

    -
    -

    EndpointAddress is a tuple that describes single IP address.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.

    true

    string

    hostname

    The Hostname of this endpoint

    false

    string

    nodeName

    Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.

    false

    string

    targetRef

    Reference to object providing the endpoint.

    false

    v1.ObjectReference

    - -
    -
    -

    v1.DaemonEndpoint

    -
    -

    DaemonEndpoint contains information about a single Daemon endpoint.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    Port

    Port number of the given endpoint.

    true

    integer (int32)

    - -
    -
    -

    v1.AzureDataDiskCachingMode

    - -
    -
    -

    any

    -
    -

    Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.4/v1-operations.html b/_includes/v1.4/v1-operations.html deleted file mode 100755 index b5e4222cf1..0000000000 --- a/_includes/v1.4/v1-operations.html +++ /dev/null @@ -1,32451 +0,0 @@ - - - - - - -Operations - - - -
    -
    -

    Operations

    -
    -
    -

    get available resources

    -
    -
    -
    GET /api/v1
    -
    -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    unversioned.APIResourceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list objects of kind ComponentStatus

    -
    -
    -
    GET /api/v1/componentstatuses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ComponentStatusList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ComponentStatus

    -
    -
    -
    GET /api/v1/componentstatuses/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the ComponentStatus

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ComponentStatus

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ConfigMap

    -
    -
    -
    GET /api/v1/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMapList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Endpoints

    -
    -
    -
    GET /api/v1/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EndpointsList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Event

    -
    -
    -
    GET /api/v1/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EventList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind LimitRange

    -
    -
    -
    GET /api/v1/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRangeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Namespace

    -
    -
    -
    GET /api/v1/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.NamespaceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Namespace

    -
    -
    -
    DELETE /api/v1/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Namespace

    -
    -
    -
    POST /api/v1/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Binding

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/bindings
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Binding

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Binding

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ConfigMap

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMapList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ConfigMap

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ConfigMap

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ConfigMap

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ConfigMap

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ConfigMap

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ConfigMap

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ConfigMap

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ConfigMap

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Endpoints

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EndpointsList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Endpoints

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create an Endpoints

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Endpoints

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Endpoints

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Endpoints

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Endpoints

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete an Endpoints

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Endpoints

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Event

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EventList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Event

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create an Event

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Event

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Event

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Event

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Event

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete an Event

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Event

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind LimitRange

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRangeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of LimitRange

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a LimitRange

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.LimitRange

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified LimitRange

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified LimitRange

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.LimitRange

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a LimitRange

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified LimitRange

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaimList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of PersistentVolumeClaim

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a PersistentVolumeClaim

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolumeClaim

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified PersistentVolumeClaim

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolumeClaim

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a PersistentVolumeClaim

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified PersistentVolumeClaim

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified PersistentVolumeClaim

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolumeClaim

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified PersistentVolumeClaim

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Pod

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Pod

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Pod

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Pod

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to attach of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/attach
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.

    false

    boolean

    QueryParameter

    container

    The container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to attach of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/attach
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.

    false

    boolean

    QueryParameter

    container

    The container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create binding of a Binding

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/binding
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Binding

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Binding

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Binding

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create eviction of an Eviction

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/eviction
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1alpha1.Eviction

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Eviction

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1alpha1.Eviction

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to exec of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/exec
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Redirect the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Redirect the standard output stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Redirect the standard error stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.

    false

    boolean

    QueryParameter

    container

    Container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    QueryParameter

    command

    Command is the remote command to execute. argv array. Not executed within a shell.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to exec of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/exec
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Redirect the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Redirect the standard output stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Redirect the standard error stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.

    false

    boolean

    QueryParameter

    container

    Container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    QueryParameter

    command

    Command is the remote command to execute. argv array. Not executed within a shell.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read log of the specified Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/log
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    container

    The container for which to stream logs. Defaults to only container if there is one container in the pod.

    false

    string

    QueryParameter

    follow

    Follow the log stream of the pod. Defaults to false.

    false

    boolean

    QueryParameter

    previous

    Return previous terminated container logs. Defaults to false.

    false

    boolean

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    sinceTime

    An RFC3339 timestamp 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.

    false

    string

    QueryParameter

    timestamps

    If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.

    false

    boolean

    QueryParameter

    tailLines

    If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime

    false

    integer (int32)

    QueryParameter

    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.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      text/plain

      -
    • -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to portforward of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/portforward
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to portforward of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/portforward
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Pod

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Pod

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/pods/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PodTemplate

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplateList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of PodTemplate

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a PodTemplate

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PodTemplate

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified PodTemplate

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified PodTemplate

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PodTemplate

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a PodTemplate

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified PodTemplate

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicationController

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationControllerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ReplicationController

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ReplicationController

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ReplicationController

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ReplicationController

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ReplicationController

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ReplicationController

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ReplicationController

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ReplicationController

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified ReplicationController

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified ReplicationController

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ReplicationController

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified ReplicationController

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ResourceQuota

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuotaList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ResourceQuota

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ResourceQuota

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ResourceQuota

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ResourceQuota

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ResourceQuota

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ResourceQuota

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ResourceQuota

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ResourceQuota

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified ResourceQuota

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified ResourceQuota

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ResourceQuota

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified ResourceQuota

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Secret

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.SecretList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Secret

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Secret

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Secret

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Secret

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Secret

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Secret

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Secret

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Secret

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ServiceAccount

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccountList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ServiceAccount

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ServiceAccount

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ServiceAccount

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ServiceAccount

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ServiceAccount

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ServiceAccount

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ServiceAccount

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ServiceAccount

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Service

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Service

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Service

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Service

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Service

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Service

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Namespace

    -
    -
    -
    GET /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Namespace

    -
    -
    -
    PUT /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Namespace

    -
    -
    -
    DELETE /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Namespace

    -
    -
    -
    PATCH /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace finalize of the specified Namespace

    -
    -
    -
    PUT /api/v1/namespaces/{name}/finalize
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Namespace

    -
    -
    -
    GET /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Namespace

    -
    -
    -
    PUT /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Namespace

    -
    -
    -
    PATCH /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Node

    -
    -
    -
    GET /api/v1/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.NodeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Node

    -
    -
    -
    DELETE /api/v1/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Node

    -
    -
    -
    POST /api/v1/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Node

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Node

    -
    -
    -
    GET /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Node

    -
    -
    -
    PUT /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Node

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Node

    -
    -
    -
    DELETE /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Node

    -
    -
    -
    PATCH /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Node

    -
    -
    -
    GET /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Node

    -
    -
    -
    PUT /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Node

    -
    -
    -
    DELETE /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Node

    -
    -
    -
    POST /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Node

    -
    -
    -
    GET /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Node

    -
    -
    -
    PUT /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Node

    -
    -
    -
    DELETE /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Node

    -
    -
    -
    POST /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Node

    -
    -
    -
    GET /api/v1/nodes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Node

    -
    -
    -
    PUT /api/v1/nodes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Node

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Node

    -
    -
    -
    PATCH /api/v1/nodes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaimList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PersistentVolume

    -
    -
    -
    GET /api/v1/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of PersistentVolume

    -
    -
    -
    DELETE /api/v1/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a PersistentVolume

    -
    -
    -
    POST /api/v1/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolume

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified PersistentVolume

    -
    -
    -
    GET /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified PersistentVolume

    -
    -
    -
    PUT /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolume

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a PersistentVolume

    -
    -
    -
    DELETE /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified PersistentVolume

    -
    -
    -
    PATCH /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified PersistentVolume

    -
    -
    -
    GET /api/v1/persistentvolumes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified PersistentVolume

    -
    -
    -
    PUT /api/v1/persistentvolumes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolume

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified PersistentVolume

    -
    -
    -
    PATCH /api/v1/persistentvolumes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Pod

    -
    -
    -
    GET /api/v1/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PodTemplate

    -
    -
    -
    GET /api/v1/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplateList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Pod

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Pod

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Pod

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Pod

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Pod

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Pod

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Pod

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Pod

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Service

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Service

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Service

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Service

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Service

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Service

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Service

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Service

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Node

    -
    -
    -
    GET /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Node

    -
    -
    -
    PUT /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Node

    -
    -
    -
    DELETE /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Node

    -
    -
    -
    POST /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Node

    -
    -
    -
    GET /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Node

    -
    -
    -
    PUT /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Node

    -
    -
    -
    DELETE /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Node

    -
    -
    -
    POST /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicationController

    -
    -
    -
    GET /api/v1/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationControllerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ResourceQuota

    -
    -
    -
    GET /api/v1/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuotaList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Secret

    -
    -
    -
    GET /api/v1/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.SecretList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ServiceAccount

    -
    -
    -
    GET /api/v1/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccountList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Service

    -
    -
    -
    GET /api/v1/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ConfigMap

    -
    -
    -
    GET /api/v1/watch/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Endpoints

    -
    -
    -
    GET /api/v1/watch/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Event

    -
    -
    -
    GET /api/v1/watch/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of LimitRange

    -
    -
    -
    GET /api/v1/watch/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Namespace

    -
    -
    -
    GET /api/v1/watch/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ConfigMap

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ConfigMap

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Endpoints

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Endpoints

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Event

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Event

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of LimitRange

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind LimitRange

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Pod

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Pod

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PodTemplate

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind PodTemplate

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicationController

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ReplicationController

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ResourceQuota

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ResourceQuota

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Secret

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Secret

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ServiceAccount

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ServiceAccount

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Service

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Service

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Namespace

    -
    -
    -
    GET /api/v1/watch/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Node

    -
    -
    -
    GET /api/v1/watch/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Node

    -
    -
    -
    GET /api/v1/watch/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/watch/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PersistentVolume

    -
    -
    -
    GET /api/v1/watch/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind PersistentVolume

    -
    -
    -
    GET /api/v1/watch/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Pod

    -
    -
    -
    GET /api/v1/watch/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PodTemplate

    -
    -
    -
    GET /api/v1/watch/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicationController

    -
    -
    -
    GET /api/v1/watch/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ResourceQuota

    -
    -
    -
    GET /api/v1/watch/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Secret

    -
    -
    -
    GET /api/v1/watch/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ServiceAccount

    -
    -
    -
    GET /api/v1/watch/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Service

    -
    -
    -
    GET /api/v1/watch/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    *versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.5/extensions-v1beta1-definitions.html b/_includes/v1.5/extensions-v1beta1-definitions.html deleted file mode 100755 index caa52743dd..0000000000 --- a/_includes/v1.5/extensions-v1beta1-definitions.html +++ /dev/null @@ -1,6471 +0,0 @@ - - - - - - -Top Level API Objects - - - -
    - -
    -

    Definitions

    -
    -
    -

    v1beta1.DeploymentStatus

    -
    -

    DeploymentStatus is the most recently observed status of the Deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    observedGeneration

    The generation observed by the deployment controller.

    false

    integer (int64)

    replicas

    Total number of non-terminated pods targeted by this deployment (their labels match the selector).

    false

    integer (int32)

    updatedReplicas

    Total number of non-terminated pods targeted by this deployment that have the desired template spec.

    false

    integer (int32)

    availableReplicas

    Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

    false

    integer (int32)

    unavailableReplicas

    Total number of unavailable pods targeted by this deployment.

    false

    integer (int32)

    conditions

    Represents the latest available observations of a deployment’s current state.

    false

    v1beta1.DeploymentCondition array

    - -
    -
    -

    v1beta1.DaemonSetStatus

    -
    -

    DaemonSetStatus represents the current status of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    currentNumberScheduled

    CurrentNumberScheduled is the number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md

    true

    integer (int32)

    numberMisscheduled

    NumberMisscheduled is the number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md

    true

    integer (int32)

    desiredNumberScheduled

    DesiredNumberScheduled is the total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md

    true

    integer (int32)

    numberReady

    NumberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.

    true

    integer (int32)

    - -
    -
    -

    v1beta1.Job

    -
    -

    Job represents the configuration of a single job. DEPRECATED: extensions/v1beta1.Job is deprecated, use batch/v1.Job instead.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    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

    false

    v1beta1.JobSpec

    status

    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

    false

    v1beta1.JobStatus

    - -
    -
    -

    v1.Preconditions

    -
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    uid

    Specifies the target UID.

    false

    types.UID

    - -
    -
    -

    v1.ObjectFieldSelector

    -
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    false

    string

    fieldPath

    Path of the field to select in the specified API version.

    true

    string

    - -
    -
    -

    v1.SELinuxOptions

    -
    -

    SELinuxOptions are the labels to be applied to the container

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    user

    User is a SELinux user label that applies to the container.

    false

    string

    role

    Role is a SELinux role label that applies to the container.

    false

    string

    type

    Type is a SELinux type label that applies to the container.

    false

    string

    level

    Level is SELinux level label that applies to the container.

    false

    string

    - -
    -
    -

    v1.VolumeMount

    -
    -

    VolumeMount describes a mounting of a Volume within a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must match the Name of a Volume.

    true

    string

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    false

    boolean

    false

    mountPath

    Path within the container at which the volume should be mounted. Must not contain :.

    true

    string

    subPath

    Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root).

    false

    string

    - -
    -
    -

    v1beta1.IngressSpec

    -
    -

    IngressSpec describes the Ingress the user wishes to exist.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    backend

    A default backend capable of servicing requests that don’t match any rule. At least one of backend or rules must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.

    false

    v1beta1.IngressBackend

    tls

    TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.

    false

    v1beta1.IngressTLS array

    rules

    A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.

    false

    v1beta1.IngressRule array

    - -
    -
    -

    v1beta1.IngressBackend

    -
    -

    IngressBackend describes all endpoints for a given service and port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    serviceName

    Specifies the name of the referenced service.

    true

    string

    servicePort

    Specifies the port of the referenced service.

    true

    string

    - -
    -
    -

    v1beta1.ReplicaSetList

    -
    -

    ReplicaSetList is a collection of ReplicaSets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller

    true

    v1beta1.ReplicaSet array

    - -
    -
    -

    v1.CephFSVolumeSource

    -
    -

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

    true

    string array

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    false

    string

    user

    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

    false

    string

    secretFile

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1beta1.IngressStatus

    -
    -

    IngressStatus describe the current state of the Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    loadBalancer

    LoadBalancer contains the current status of the load-balancer.

    false

    v1.LoadBalancerStatus

    - -
    -
    -

    v1.DownwardAPIVolumeSource

    -
    -

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    items

    Items is a list of downward API volume file

    false

    v1.DownwardAPIVolumeFile array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    unversioned.StatusCause

    -
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    A machine-readable description of the cause of the error. If this value is empty there is no information available.

    false

    string

    message

    A human-readable description of the cause of the error. This field may be presented as-is to a reader.

    false

    string

    field

    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
    -
    -Examples:
    - "name" - the field "name" on the current resource
    - "items[0].name" - the field "name" on the first array entry in "items"

    false

    string

    - -
    -
    -

    v1beta1.ReplicaSetCondition

    -
    -

    ReplicaSetCondition describes the state of a replica set at a certain point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of replica set condition.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastTransitionTime

    The last time the condition transitioned from one status to another.

    false

    string (date-time)

    reason

    The reason for the condition’s last transition.

    false

    string

    message

    A human readable message indicating details about the transition.

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicyList

    -
    -

    Network Policy List is a list of NetworkPolicy objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is a list of schema objects.

    true

    v1beta1.NetworkPolicy array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdName

    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

    true

    string

    fsType

    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

    false

    string

    partition

    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

    false

    integer (int32)

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

    false

    boolean

    false

    - -
    -
    -

    v1beta1.RollingUpdateDeployment

    -
    -

    Spec to control the desired behavior of rolling update.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    maxUnavailable

    The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding up. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.

    false

    string

    maxSurge

    The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.

    false

    string

    - -
    -
    -

    v1beta1.HTTPIngressRuleValue

    -
    -

    HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> → 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 #.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    paths

    A collection of paths that map requests to backends.

    true

    v1beta1.HTTPIngressPath array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    repository

    Repository URL

    true

    string

    revision

    Commit hash for the specified revision.

    false

    string

    directory

    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.

    false

    string

    - -
    -
    -

    v1beta1.JobStatus

    -
    -

    JobStatus represents the current state of a Job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    conditions

    Conditions represent the latest available observations of an object’s current state. More info: http://kubernetes.io/docs/user-guide/jobs

    false

    v1beta1.JobCondition array

    startTime

    StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string (date-time)

    completionTime

    CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string (date-time)

    active

    Active is the number of actively running pods.

    false

    integer (int32)

    succeeded

    Succeeded is the number of pods which reached Phase Succeeded.

    false

    integer (int32)

    failed

    Failed is the number of pods which reached Phase Failed.

    false

    integer (int32)

    - -
    -
    -

    v1.Capabilities

    -
    -

    Adds and removes POSIX capabilities from running containers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    add

    Added capabilities

    false

    v1.Capability array

    drop

    Removed capabilities

    false

    v1.Capability array

    - -
    -
    -

    v1.LocalObjectReference

    -
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    - -
    -
    -

    v1.ExecAction

    -
    -

    ExecAction describes a "run in container" action.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    command

    Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

    ', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

    false

    string array

    - -
    -
    -

    v1.ObjectMeta

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

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

    false

    string

    generateName

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

    false

    string

    namespace

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

    false

    string

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    uid

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

    false

    string

    resourceVersion

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

    false

    string

    generation

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

    false

    integer (int64)

    creationTimestamp

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
    -
    -Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionTimestamp

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
    -
    -Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionGracePeriodSeconds

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

    false

    integer (int64)

    labels

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

    false

    object

    annotations

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

    false

    object

    ownerReferences

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

    false

    v1.OwnerReference array

    finalizers

    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

    false

    string array

    clusterName

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

    false

    string

    - -
    -
    -

    v1beta1.ReplicaSetSpec

    -
    -

    ReplicaSetSpec is the specification of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller

    false

    integer (int32)

    minReadySeconds

    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

    false

    integer (int32)

    selector

    Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    unversioned.LabelSelector

    template

    Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1beta1.DaemonSetSpec

    -
    -

    DaemonSetSpec is the specification of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selector

    Selector is a label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    unversioned.LabelSelector

    template

    Template is the object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template’s node selector (or on every node if no node selector is specified). More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template

    true

    v1.PodTemplateSpec

    - -
    -
    -

    v1beta1.Deployment

    -
    -

    Deployment enables declarative updates for Pods and ReplicaSets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata.

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the Deployment.

    false

    v1beta1.DeploymentSpec

    status

    Most recently observed status of the Deployment.

    false

    v1beta1.DeploymentStatus

    - -
    -
    -

    v1.AzureFileVolumeSource

    -
    -

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    true

    string

    shareName

    Share Name

    true

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    types.UID

    - -
    -
    -

    v1.ISCSIVolumeSource

    -
    -

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPortal

    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).

    true

    string

    iqn

    Target iSCSI Qualified Name.

    true

    string

    lun

    iSCSI target lun number.

    true

    integer (int32)

    iscsiInterface

    Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

    false

    string

    fsType

    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

    false

    string

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    false

    boolean

    false

    - -
    -
    -

    v1.EmptyDirVolumeSource

    -
    -

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    medium

    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

    false

    string

    - -
    -
    -

    v1beta1.IngressList

    -
    -

    IngressList is a collection of Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of Ingress.

    true

    v1beta1.Ingress array

    - -
    -
    -

    v1beta1.ScaleSpec

    -
    -

    describes the attributes of a scale subresource

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    desired number of instances for the scaled object.

    false

    integer (int32)

    - -
    -
    -

    unversioned.Patch

    -
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    -
    -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    datasetName

    Name of the dataset stored as metadata → name on the dataset for Flocker should be considered as deprecated

    false

    string

    datasetUUID

    UUID of the dataset. This is unique identifier of a Flocker dataset

    false

    string

    - -
    -
    -

    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).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    claimName

    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

    true

    string

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

    false

    boolean

    false

    - -
    -
    -

    unversioned.ListMeta

    -
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    resourceVersion

    String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    - -
    -
    -

    v1beta1.HorizontalPodAutoscaler

    -
    -

    configuration of a horizontal pod autoscaler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.

    false

    v1beta1.HorizontalPodAutoscalerSpec

    status

    current information about the autoscaler.

    false

    v1beta1.HorizontalPodAutoscalerStatus

    - -
    -
    -

    unversioned.LabelSelector

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    matchLabels

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

    false

    object

    matchExpressions

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

    false

    unversioned.LabelSelectorRequirement array

    - -
    -
    -

    v1beta1.RollbackConfig

    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    revision

    The revision to rollback to. If set to 0, rollbck to the last revision.

    false

    integer (int64)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    Name of the secret in the pod’s namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.EnvVarSource

    -
    -

    EnvVarSource represents a source for the value of an EnvVar.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    fieldRef

    Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    configMapKeyRef

    Selects a key of a ConfigMap.

    false

    v1.ConfigMapKeySelector

    secretKeyRef

    Selects a key of a secret in the pod’s namespace

    false

    v1.SecretKeySelector

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    driver

    Driver is the name of the driver to use for this volume.

    true

    string

    fsType

    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.

    false

    string

    secretRef

    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.

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    options

    Optional: Extra command options if any.

    false

    object

    - -
    -
    -

    v1beta1.JobCondition

    -
    -

    JobCondition describes current state of a job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of job condition, Complete or Failed.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastProbeTime

    Last time the condition was checked.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transit from one status to another.

    false

    string (date-time)

    reason

    (brief) reason for the condition’s last transition.

    false

    string

    message

    Human readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.LoadBalancerIngress

    -
    -

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

    false

    string

    hostname

    Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

    false

    string

    - -
    -
    -

    v1beta1.APIVersion

    -
    -

    An APIVersion represents a single concrete version of an object model.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of this version (e.g. v1).

    false

    string

    - -
    -
    -

    v1.AzureDiskVolumeSource

    -
    -

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    diskName

    The Name of the data disk in the blob storage

    true

    string

    diskURI

    The URI the data disk in the blob storage

    true

    string

    cachingMode

    Host Caching mode: None, Read Only, Read Write.

    false

    v1.AzureDataDiskCachingMode

    fsType

    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.

    false

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.KeyToPath

    -
    -

    Maps a string key to a path within a volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    The key to project.

    true

    string

    path

    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 ...

    true

    string

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.VsphereVirtualDiskVolumeSource

    -
    -

    Represents a vSphere volume resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumePath

    Path that identifies vSphere volume vmdk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1.DeleteOptions

    -
    -

    DeleteOptions may be provided when deleting an API object

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    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.

    false

    integer (int64)

    preconditions

    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

    false

    v1.Preconditions

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    false

    - -
    -
    -

    v1.Volume

    -
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    hostPath

    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

    false

    v1.HostPathVolumeSource

    emptyDir

    EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

    false

    v1.EmptyDirVolumeSource

    gcePersistentDisk

    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

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    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

    false

    v1.AWSElasticBlockStoreVolumeSource

    gitRepo

    GitRepo represents a git repository at a particular revision.

    false

    v1.GitRepoVolumeSource

    secret

    Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    v1.SecretVolumeSource

    nfs

    NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    false

    v1.NFSVolumeSource

    iscsi

    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

    false

    v1.ISCSIVolumeSource

    glusterfs

    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

    false

    v1.GlusterfsVolumeSource

    persistentVolumeClaim

    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimVolumeSource

    rbd

    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

    false

    v1.RBDVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    cinder

    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

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    flocker

    Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

    false

    v1.FlockerVolumeSource

    downwardAPI

    DownwardAPI represents downward API about the pod that should populate this volume

    false

    v1.DownwardAPIVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    configMap

    ConfigMap represents a configMap that should populate this volume

    false

    v1.ConfigMapVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    quobyte

    Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

    false

    v1.QuobyteVolumeSource

    azureDisk

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    false

    v1.AzureDiskVolumeSource

    photonPersistentDisk

    PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine

    false

    v1.PhotonPersistentDiskVolumeSource

    - -
    -
    -

    v1beta1.DaemonSetList

    -
    -

    DaemonSetList is a collection of daemon sets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is a list of daemon sets.

    true

    v1beta1.DaemonSet array

    - -
    -
    -

    v1.ResourceFieldSelector

    -
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    containerName

    Container name: required for volumes, optional for env vars

    false

    string

    resource

    Required: resource to select

    true

    string

    divisor

    Specifies the output format of the exposed resources, defaults to "1"

    false

    string

    - -
    -
    -

    v1.Probe

    -
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    initialDelaySeconds

    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

    false

    integer (int32)

    timeoutSeconds

    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

    false

    integer (int32)

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    false

    integer (int32)

    successThreshold

    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.

    false

    integer (int32)

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.DeploymentSpec

    -
    -

    DeploymentSpec is the specification of the desired behavior of the Deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

    false

    integer (int32)

    selector

    Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.

    false

    unversioned.LabelSelector

    template

    Template describes the pods that will be created.

    true

    v1.PodTemplateSpec

    strategy

    The deployment strategy to use to replace existing pods with new ones.

    false

    v1beta1.DeploymentStrategy

    minReadySeconds

    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

    false

    integer (int32)

    revisionHistoryLimit

    The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.

    false

    integer (int32)

    paused

    Indicates that the deployment is paused and will not be processed by the deployment controller.

    false

    boolean

    false

    rollbackTo

    The config this deployment is rolling back to. Will be cleared after rollback is done.

    false

    v1beta1.RollbackConfig

    progressDeadlineSeconds

    The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Once autoRollback is implemented, the deployment controller will automatically rollback failed deployments. Note that progress will not be estimated during the time a deployment is paused. This is not set by default.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    groupVersion

    groupVersion is the group and version this APIResourceList is for.

    true

    string

    resources

    resources contains the name of the resources and if they are namespaced.

    true

    unversioned.APIResource array

    - -
    -
    -

    v1.SecretKeySelector

    -
    -

    SecretKeySelector selects a key of a Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key of the secret to select from. Must be a valid secret key.

    true

    string

    - -
    -
    -

    v1.Capability

    - -
    -
    -

    unversioned.APIResource

    -
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    name is the name of the resource.

    true

    string

    namespaced

    namespaced indicates if a resource is namespaced or not.

    true

    boolean

    false

    kind

    kind is the kind for the resource (e.g. Foo is the kind for a resource foo)

    true

    string

    - -
    -
    -

    v1.DownwardAPIVolumeFile

    -
    -

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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 ..

    true

    string

    fieldRef

    Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.ContainerPort

    -
    -

    ContainerPort represents a network port in a single container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    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.

    false

    string

    hostPort

    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.

    false

    integer (int32)

    containerPort

    Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

    true

    integer (int32)

    protocol

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".

    false

    string

    hostIP

    What host IP to bind the external port to.

    false

    string

    - -
    -
    -

    v1.PodSpec

    -
    -

    PodSpec is a description of a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: http://kubernetes.io/docs/user-guide/volumes

    false

    v1.Volume array

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers

    true

    v1.Container array

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy

    false

    string

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    false

    integer (int64)

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    false

    integer (int64)

    dnsPolicy

    Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

    false

    string

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://kubernetes.io/docs/user-guide/node-selection

    false

    object

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md

    false

    string

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    false

    string

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    false

    string

    hostNetwork

    Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    false

    boolean

    false

    hostPID

    Use the host’s pid namespace. Optional: Default to false.

    false

    boolean

    false

    hostIPC

    Use the host’s ipc namespace. Optional: Default to false.

    false

    boolean

    false

    securityContext

    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

    false

    v1.PodSecurityContext

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod

    false

    v1.LocalObjectReference array

    hostname

    Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value.

    false

    string

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    false

    string

    - -
    -
    -

    v1.Lifecycle

    -
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    postStart

    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks#hook-details

    false

    v1.Handler

    preStop

    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks#hook-details

    false

    v1.Handler

    - -
    -
    -

    v1.GlusterfsVolumeSource

    -
    -

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    path

    Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.Handler

    -
    -

    Handler defines a specific action that should be taken

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    - -
    -
    -

    v1beta1.IngressTLS

    -
    -

    IngressTLS describes the transport layer security associated with an Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hosts

    Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.

    false

    string array

    secretName

    SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.

    false

    string

    - -
    -
    -

    v1beta1.SubresourceReference

    -
    -

    SubresourceReference contains enough information to let you inspect or modify the referred subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind of the referent; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    name

    Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    apiVersion

    API version of the referent

    false

    string

    subresource

    Subresource name of the referent

    false

    string

    - -
    -
    -

    v1beta1.Scale

    -
    -

    represents a scaling request for a resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata.

    false

    v1.ObjectMeta

    spec

    defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.

    false

    v1beta1.ScaleSpec

    status

    current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only.

    false

    v1beta1.ScaleStatus

    - -
    -
    -

    v1.RBDVolumeSource

    -
    -

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string array

    image

    The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string

    fsType

    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

    false

    string

    pool

    The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.

    false

    string

    user

    The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    false

    string

    keyring

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.PhotonPersistentDiskVolumeSource

    -
    -

    Represents a Photon Controller persistent disk resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdID

    ID that identifies Photon Controller persistent disk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicy

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior for this NetworkPolicy.

    false

    v1beta1.NetworkPolicySpec

    - -
    -
    -

    versioned.Event

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    true

    string

    object

    true

    string

    - -
    -
    -

    v1beta1.ScaleStatus

    -
    -

    represents the current status of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    actual number of observed instances of the scaled object.

    true

    integer (int32)

    selector

    label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    object

    targetSelector

    label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicySpec

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podSelector

    Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.

    true

    unversioned.LabelSelector

    ingress

    List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if namespace.networkPolicy.ingress.isolation is undefined and cluster policy allows it, OR if the traffic source is the pod’s local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not affect ingress isolation. If this field is present and contains at least one rule, this policy allows any traffic which matches at least one of the ingress rules in this list.

    false

    v1beta1.NetworkPolicyIngressRule array

    - -
    -
    -

    v1.NFSVolumeSource

    -
    -

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    server

    Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    path

    Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1beta1.DeploymentList

    -
    -

    DeploymentList is a list of Deployments.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    Items is the list of Deployments.

    true

    v1beta1.Deployment array

    - -
    -
    -

    v1beta1.DeploymentRollback

    -
    -

    DeploymentRollback stores the information required to rollback a deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    name

    Required: This must match the Name of a deployment.

    true

    string

    updatedAnnotations

    The annotations to be updated to a deployment

    false

    object

    rollbackTo

    The config of this deployment rollback.

    true

    v1beta1.RollbackConfig

    - -
    -
    -

    v1.HTTPHeader

    -
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The header field name

    true

    string

    value

    The header field value

    true

    string

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerStatus

    -
    -

    current status of a horizontal pod autoscaler

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    observedGeneration

    most recent generation observed by this autoscaler.

    false

    integer (int64)

    lastScaleTime

    last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.

    false

    string (date-time)

    currentReplicas

    current number of replicas of pods managed by this autoscaler.

    true

    integer (int32)

    desiredReplicas

    desired number of replicas of pods managed by this autoscaler.

    true

    integer (int32)

    currentCPUUtilizationPercentage

    current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetWWNs

    Required: FC target worldwide names (WWNs)

    true

    string array

    lun

    Required: FC target lun number

    true

    integer (int32)

    fsType

    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.

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1beta1.ThirdPartyResource

    -
    -

    A ThirdPartyResource is a generic representation of a resource, it is used by add-ons and plugins to add new resource types to the API. It consists of one or more Versions of the api.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata

    false

    v1.ObjectMeta

    description

    Description is the description of this object.

    false

    string

    versions

    Versions are versions for this third party object

    false

    v1beta1.APIVersion array

    - -
    -
    -

    v1.TCPSocketAction

    -
    -

    TCPSocketAction describes an action based on opening a socket

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    port

    Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    - -
    -
    -

    v1beta1.DeploymentStrategy

    -
    -

    DeploymentStrategy describes how to replace existing pods with new ones.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.

    false

    string

    rollingUpdate

    Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.

    false

    v1beta1.RollingUpdateDeployment

    - -
    -
    -

    v1beta1.IngressRule

    -
    -

    IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    host

    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.

    false

    string

    http

    false

    v1beta1.HTTPIngressRuleValue

    - -
    -
    -

    v1beta1.JobList

    -
    -

    JobList is a collection of jobs. DEPRECATED: extensions/v1beta1.JobList is deprecated, use batch/v1.JobList instead.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of Job.

    true

    v1beta1.Job array

    - -
    -
    -

    v1beta1.NetworkPolicyPeer

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podSelector

    This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If not provided, this selector selects no pods. If present but empty, this selector selects all pods in this namespace.

    false

    unversioned.LabelSelector

    namespaceSelector

    Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If omitted, this selector selects no namespaces. If present but empty, this selector selects all namespaces.

    false

    unversioned.LabelSelector

    - -
    -
    -

    unversioned.StatusDetails

    -
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

    false

    string

    group

    The group attribute of the resource associated with the status StatusReason.

    false

    string

    kind

    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    causes

    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

    false

    unversioned.StatusCause array

    retryAfterSeconds

    If specified, the time in seconds before the operation should be retried.

    false

    integer (int32)

    - -
    -
    -

    v1.HTTPGetAction

    -
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path to access on the HTTP server.

    false

    string

    port

    Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    false

    string

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

    false

    string

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    false

    v1.HTTPHeader array

    - -
    -
    -

    v1.LoadBalancerStatus

    -
    -

    LoadBalancerStatus represents the status of a load-balancer.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ingress

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

    false

    v1.LoadBalancerIngress array

    - -
    -
    -

    v1beta1.CPUTargetUtilization

    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPercentage

    fraction of the requested CPU that should be utilized/used, e.g. 70 means that 70% of the requested CPU should be in use.

    true

    integer (int32)

    - -
    -
    -

    v1.Container

    -
    -

    A single application container that you want to run within a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    true

    string

    image

    Docker image name. More info: http://kubernetes.io/docs/user-guide/images

    false

    string

    command

    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

    false

    string array

    args

    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

    false

    string array

    workingDir

    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.

    false

    string

    ports

    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.

    false

    v1.ContainerPort array

    env

    List of environment variables to set in the container. Cannot be updated.

    false

    v1.EnvVar array

    resources

    Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources

    false

    v1.ResourceRequirements

    volumeMounts

    Pod volumes to mount into the container’s filesystem. Cannot be updated.

    false

    v1.VolumeMount array

    livenessProbe

    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

    false

    v1.Probe

    readinessProbe

    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

    false

    v1.Probe

    lifecycle

    Actions that the management system should take in response to container lifecycle events. Cannot be updated.

    false

    v1.Lifecycle

    terminationMessagePath

    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.

    false

    string

    imagePullPolicy

    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

    false

    string

    securityContext

    Security options the pod should run with. More info: http://releases.k8s.io/HEAD/docs/design/security_context.md

    false

    v1.SecurityContext

    stdin

    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.

    false

    boolean

    false

    stdinOnce

    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

    false

    boolean

    false

    tty

    Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.PodSecurityContext

    -
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    seLinuxOptions

    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.

    false

    integer (int32) array

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:
    -
    -1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR’d with rw-rw

    false

    integer (int64)

    - -
    -
    -

    v1beta1.NetworkPolicyIngressRule

    -
    -

    This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ports

    List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is not provided, this rule matches all ports (traffic not restricted by port). If this field is empty, this rule matches no ports (no traffic matches). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.

    false

    v1beta1.NetworkPolicyPort array

    from

    List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is not provided, this rule matches all sources (traffic not restricted by source). If this field is empty, this rule matches no sources (no traffic matches). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.

    false

    v1beta1.NetworkPolicyPeer array

    - -
    -
    -

    v1.OwnerReference

    -
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    API version of the referent.

    true

    string

    kind

    Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    true

    string

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    uid

    UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

    true

    string

    controller

    If true, this reference points to the managing controller.

    false

    boolean

    false

    - -
    -
    -

    v1beta1.ReplicaSetStatus

    -
    -

    ReplicaSetStatus represents the current status of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the most recently oberved number of replicas. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller

    true

    integer (int32)

    fullyLabeledReplicas

    The number of pods that have labels matching the labels of the pod template of the replicaset.

    false

    integer (int32)

    readyReplicas

    The number of ready replicas for this replica set.

    false

    integer (int32)

    availableReplicas

    The number of available replicas (ready for at least minReadySeconds) for this replica set.

    false

    integer (int32)

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

    false

    integer (int64)

    conditions

    Represents the latest available observations of a replica set’s current state.

    false

    v1beta1.ReplicaSetCondition array

    - -
    -
    -

    v1beta1.ReplicaSet

    -
    -

    ReplicaSet represents the configuration of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    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

    false

    v1.ObjectMeta

    spec

    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

    false

    v1beta1.ReplicaSetSpec

    status

    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

    false

    v1beta1.ReplicaSetStatus

    - -
    -
    -

    v1.HostPathVolumeSource

    -
    -

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath

    true

    string

    - -
    -
    -

    v1beta1.DaemonSet

    -
    -

    DaemonSet represents the configuration of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.DaemonSetSpec

    status

    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

    false

    v1beta1.DaemonSetStatus

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

    true

    string

    fsType

    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

    false

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.SecurityContext

    -
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capabilities

    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

    false

    v1.Capabilities

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

    false

    boolean

    false

    seLinuxOptions

    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.Protocol

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

    true

    string

    fsType

    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

    false

    string

    partition

    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).

    false

    integer (int32)

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerSpec

    -
    -

    specification of a horizontal pod autoscaler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    scaleRef

    reference to Scale subresource; horizontal pod autoscaler will learn the current resource consumption from its status, and will set the desired number of pods by modifying its spec.

    true

    v1beta1.SubresourceReference

    minReplicas

    lower limit for the number of pods that can be set by the autoscaler, default 1.

    false

    integer (int32)

    maxReplicas

    upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.

    true

    integer (int32)

    cpuUtilization

    target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified it defaults to the target CPU utilization at 80% of the requested resources.

    false

    v1beta1.CPUTargetUtilization

    - -
    -
    -

    v1.QuobyteVolumeSource

    -
    -

    Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    registry

    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

    true

    string

    volume

    Volume is a string that references an already created Quobyte volume by name.

    true

    string

    readOnly

    ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

    false

    boolean

    false

    user

    User to map volume access to Defaults to serivceaccount user

    false

    string

    group

    Group to map volume access to Default is no group

    false

    string

    - -
    -
    -

    v1.EnvVar

    -
    -

    EnvVar represents an environment variable present in a Container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    true

    string

    value

    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".

    false

    string

    valueFrom

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

    false

    v1.EnvVarSource

    - -
    -
    -

    v1.ResourceRequirements

    -
    -

    ResourceRequirements describes the compute resource requirements.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/user-guide/compute-resources/

    false

    object

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/user-guide/compute-resources/

    false

    object

    - -
    -
    -

    v1.PodTemplateSpec

    -
    -

    PodTemplateSpec describes the data a pod should have when created from a template

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    - -
    -
    -

    v1beta1.NetworkPolicyPort

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    protocol

    Optional. The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.

    false

    v1.Protocol

    port

    If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.

    false

    string

    - -
    -
    -

    v1beta1.DeploymentCondition

    -
    -

    DeploymentCondition describes the state of a deployment at a certain point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of deployment condition.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastUpdateTime

    The last time this condition was updated.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transitioned from one status to another.

    false

    string (date-time)

    reason

    The reason for the condition’s last transition.

    false

    string

    message

    A human readable message indicating details about the transition.

    false

    string

    - -
    -
    -

    v1beta1.JobSpec

    -
    -

    JobSpec describes how the job execution will look like.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    parallelism

    Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://kubernetes.io/docs/user-guide/jobs

    false

    integer (int32)

    completions

    Completions specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: http://kubernetes.io/docs/user-guide/jobs

    false

    integer (int32)

    activeDeadlineSeconds

    Optional duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer

    false

    integer (int64)

    selector

    Selector is a label query over pods that should match the pod count. Normally, the system sets this field for you. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    unversioned.LabelSelector

    autoSelector

    AutoSelector controls generation of pod labels and pod selectors. It was not present in the original extensions/v1beta1 Job definition, but exists to allow conversion from batch/v1 Jobs, where it corresponds to, but has the opposite meaning as, ManualSelector. More info: http://releases.k8s.io/HEAD/docs/design/selector-generation.md

    false

    boolean

    false

    template

    Template is the object that describes the pod that will be created when executing a job. More info: http://kubernetes.io/docs/user-guide/jobs

    true

    v1.PodTemplateSpec

    - -
    -
    -

    unversioned.LabelSelectorRequirement

    -
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    key is the label key that the selector applies to.

    true

    string

    operator

    operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

    true

    string

    values

    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    false

    string array

    - -
    -
    -

    unversioned.Status

    -
    -

    Status is a return value for calls that don’t return other objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    status

    Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    reason

    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.

    false

    string

    details

    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.

    false

    unversioned.StatusDetails

    code

    Suggested HTTP return code for this status, 0 if not set.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerList

    -
    -

    list of horizontal pod autoscaler objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    list of horizontal pod autoscaler objects.

    true

    v1beta1.HorizontalPodAutoscaler array

    - -
    -
    -

    v1.ConfigMapKeySelector

    -
    -

    Selects a key from a ConfigMap.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key to select.

    true

    string

    - -
    -
    -

    v1beta1.HTTPIngressPath

    -
    -

    HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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.

    false

    string

    backend

    Backend defines the referenced service endpoint to which the traffic will be forwarded to.

    true

    v1beta1.IngressBackend

    - -
    -
    -

    v1beta1.Ingress

    -
    -

    Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec is the desired state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.IngressSpec

    status

    Status is the current state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.IngressStatus

    - -
    -
    -

    v1beta1.ThirdPartyResourceList

    -
    -

    ThirdPartyResourceList is a list of ThirdPartyResources.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    Items is the list of ThirdPartyResources.

    true

    v1beta1.ThirdPartyResource array

    - -
    -
    -

    v1.AzureDataDiskCachingMode

    - -
    -
    -

    any

    -
    -

    Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.5/extensions-v1beta1-operations.html b/_includes/v1.5/extensions-v1beta1-operations.html deleted file mode 100755 index 8ad9d2a2aa..0000000000 --- a/_includes/v1.5/extensions-v1beta1-operations.html +++ /dev/null @@ -1,15948 +0,0 @@ - - - - - - -Operations - - - -
    -
    -

    Operations

    -
    -
    -

    get available resources

    -
    -
    -
    GET /apis/extensions/v1beta1
    -
    -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    unversioned.APIResourceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DeploymentList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscalerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Ingress

    -
    -
    -
    GET /apis/extensions/v1beta1/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.IngressList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Job

    -
    -
    -
    GET /apis/extensions/v1beta1/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.JobList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind DaemonSet

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of DaemonSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a DaemonSet

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DaemonSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified DaemonSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DaemonSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a DaemonSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified DaemonSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified DaemonSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DaemonSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified DaemonSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DaemonSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DeploymentList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Deployment

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a Deployment

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Deployment

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Deployment

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a Deployment

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create rollback of a DeploymentRollback

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.DeploymentRollback

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DeploymentRollback

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.DeploymentRollback

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Deployment

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Deployment

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Deployment

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscalerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of HorizontalPodAutoscaler

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a HorizontalPodAutoscaler

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.HorizontalPodAutoscaler

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified HorizontalPodAutoscaler

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.HorizontalPodAutoscaler

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a HorizontalPodAutoscaler

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified HorizontalPodAutoscaler

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified HorizontalPodAutoscaler

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.HorizontalPodAutoscaler

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified HorizontalPodAutoscaler

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.HorizontalPodAutoscaler

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.IngressList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Ingress

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create an Ingress

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Ingress

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Ingress

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete an Ingress

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Ingress

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Ingress

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Job

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.JobList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Job

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a Job

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Job

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Job

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Job

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Job

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a Job

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Job

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Job

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Job

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Job

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Job

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Job

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicyList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of NetworkPolicy

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a NetworkPolicy

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.NetworkPolicy

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified NetworkPolicy

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.NetworkPolicy

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a NetworkPolicy

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified NetworkPolicy

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicy

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ReplicaSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a ReplicaSet

    -
    -
    -
    POST /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ReplicaSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ReplicaSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ReplicaSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a ReplicaSet

    -
    -
    -
    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ReplicaSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified ReplicaSet

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ReplicaSet

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified ReplicaSet

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSet

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.NetworkPolicyList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ReplicaSetList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResourceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ThirdPartyResource

    -
    -
    -
    DELETE /apis/extensions/v1beta1/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    create a ThirdPartyResource

    -
    -
    -
    POST /apis/extensions/v1beta1/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ThirdPartyResource

    -
    -
    -
    PUT /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.ThirdPartyResource

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    delete a ThirdPartyResource

    -
    -
    -
    DELETE /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ThirdPartyResource

    -
    -
    -
    PATCH /apis/extensions/v1beta1/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.ThirdPartyResource

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of DaemonSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/daemonsets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Ingress

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/ingresses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Job

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of DaemonSet

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind DaemonSet

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the DaemonSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Deployment

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Deployment

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind HorizontalPodAutoscaler

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the HorizontalPodAutoscaler

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Ingress

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Ingress

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Job

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Job

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Job

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the NetworkPolicy

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicaSet

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of NetworkPolicy

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/networkpolicies
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicaSet

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/replicasets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/thirdpartyresources
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ThirdPartyResource

    -
    -
    -
    GET /apis/extensions/v1beta1/watch/thirdpartyresources/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the ThirdPartyResource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apisextensionsv1beta1

      -
    • -
    -
    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_includes/v1.5/v1-definitions.html b/_includes/v1.5/v1-definitions.html deleted file mode 100755 index 5dbb6c7094..0000000000 --- a/_includes/v1.5/v1-definitions.html +++ /dev/null @@ -1,8266 +0,0 @@ - - - - - - -Top Level API Objects - - - -
    - -
    -

    Definitions

    -
    -
    -

    v1.Node

    -
    -

    Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the behavior of a node. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NodeSpec

    status

    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

    false

    v1.NodeStatus

    - -
    -
    -

    v1.PersistentVolumeClaimList

    -
    -

    PersistentVolumeClaimList is a list of PersistentVolumeClaim items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims

    true

    v1.PersistentVolumeClaim array

    - -
    -
    -

    v1.Preconditions

    -
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    uid

    Specifies the target UID.

    false

    types.UID

    - -
    -
    -

    v1.SELinuxOptions

    -
    -

    SELinuxOptions are the labels to be applied to the container

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    user

    User is a SELinux user label that applies to the container.

    false

    string

    role

    Role is a SELinux role label that applies to the container.

    false

    string

    type

    Type is a SELinux type label that applies to the container.

    false

    string

    level

    Level is SELinux level label that applies to the container.

    false

    string

    - -
    -
    -

    v1.ObjectFieldSelector

    -
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    false

    string

    fieldPath

    Path of the field to select in the specified API version.

    true

    string

    - -
    -
    -

    v1.ContainerStateRunning

    -
    -

    ContainerStateRunning is a running state of a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    startedAt

    Time at which the container was last (re-)started

    false

    string (date-time)

    - -
    -
    -

    v1.VolumeMount

    -
    -

    VolumeMount describes a mounting of a Volume within a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must match the Name of a Volume.

    true

    string

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    false

    boolean

    false

    mountPath

    Path within the container at which the volume should be mounted. Must not contain :.

    true

    string

    subPath

    Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root).

    false

    string

    - -
    -
    -

    v1.PersistentVolumeClaimSpec

    -
    -

    PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    accessModes

    AccessModes contains the desired access modes the volume should have. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes-1

    false

    v1.PersistentVolumeAccessMode array

    selector

    A label query over volumes to consider for binding.

    false

    unversioned.LabelSelector

    resources

    Resources represents the minimum resources the volume should have. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources

    false

    v1.ResourceRequirements

    volumeName

    VolumeName is the binding reference to the PersistentVolume backing this claim.

    false

    string

    - -
    -
    -

    v1.CephFSVolumeSource

    -
    -

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

    true

    string array

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    false

    string

    user

    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

    false

    string

    secretFile

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.DownwardAPIVolumeSource

    -
    -

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    items

    Items is a list of downward API volume file

    false

    v1.DownwardAPIVolumeFile array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    unversioned.StatusCause

    -
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    A machine-readable description of the cause of the error. If this value is empty there is no information available.

    false

    string

    message

    A human-readable description of the cause of the error. This field may be presented as-is to a reader.

    false

    string

    field

    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
    -
    -Examples:
    - "name" - the field "name" on the current resource
    - "items[0].name" - the field "name" on the first array entry in "items"

    false

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdName

    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

    true

    string

    fsType

    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

    false

    string

    partition

    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

    false

    integer (int32)

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

    false

    boolean

    false

    - -
    -
    -

    v1.ResourceQuotaSpec

    -
    -

    ResourceQuotaSpec defines the desired hard limits to enforce for Quota.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hard

    Hard is the set of desired hard limits for each named resource. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota

    false

    object

    scopes

    A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.

    false

    v1.ResourceQuotaScope array

    - -
    -
    -

    v1.NamespaceStatus

    -
    -

    NamespaceStatus is information about the current status of a Namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase is the current lifecycle phase of the namespace. More info: http://releases.k8s.io/HEAD/docs/design/namespaces.md#phases

    false

    string

    - -
    -
    -

    v1.NamespaceSpec

    -
    -

    NamespaceSpec describes the attributes on a Namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    finalizers

    Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: http://releases.k8s.io/HEAD/docs/design/namespaces.md#finalizers

    false

    v1.FinalizerName array

    - -
    -
    -

    v1.PersistentVolume

    -
    -

    PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: http://kubernetes.io/docs/user-guide/persistent-volumes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    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

    false

    v1.PersistentVolumeSpec

    status

    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

    false

    v1.PersistentVolumeStatus

    - -
    -
    -

    v1.ConfigMapList

    -
    -

    ConfigMapList is a resource containing a list of ConfigMap objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of ConfigMaps.

    true

    v1.ConfigMap array

    - -
    -
    -

    v1.PersistentVolumeStatus

    -
    -

    PersistentVolumeStatus is the current status of a persistent volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#phase

    false

    string

    message

    A human-readable message indicating details about why the volume is in this state.

    false

    string

    reason

    Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.

    false

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.EndpointsList

    -
    -

    EndpointsList is a list of endpoints.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of endpoints.

    true

    v1.Endpoints array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    repository

    Repository URL

    true

    string

    revision

    Commit hash for the specified revision.

    false

    string

    directory

    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.

    false

    string

    - -
    -
    -

    v1.ReplicationControllerCondition

    -
    -

    ReplicationControllerCondition describes the state of a replication controller at a certain point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of replication controller condition.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastTransitionTime

    The last time the condition transitioned from one status to another.

    false

    string (date-time)

    reason

    The reason for the condition’s last transition.

    false

    string

    message

    A human readable message indicating details about the transition.

    false

    string

    - -
    -
    -

    v1.ScaleStatus

    -
    -

    ScaleStatus represents the current status of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    actual number of observed instances of the scaled object.

    true

    integer (int32)

    selector

    label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    string

    - -
    -
    -

    v1.Capabilities

    -
    -

    Adds and removes POSIX capabilities from running containers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    add

    Added capabilities

    false

    v1.Capability array

    drop

    Removed capabilities

    false

    v1.Capability array

    - -
    -
    -

    v1.ConfigMap

    -
    -

    ConfigMap holds configuration data for pods to consume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    data

    Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.

    false

    object

    - -
    -
    -

    v1.PodTemplateList

    -
    -

    PodTemplateList is a list of PodTemplates.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of pod templates

    true

    v1.PodTemplate array

    - -
    -
    -

    v1.NodeCondition

    -
    -

    NodeCondition contains condition information for a node.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of node condition.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastHeartbeatTime

    Last time we got an update on a given condition.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transit from one status to another.

    false

    string (date-time)

    reason

    (brief) reason for the condition’s last transition.

    false

    string

    message

    Human readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.LocalObjectReference

    -
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    - -
    -
    -

    v1.ResourceQuotaStatus

    -
    -

    ResourceQuotaStatus defines the enforced hard limits and observed use.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hard

    Hard is the set of enforced hard limits for each named resource. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota

    false

    object

    used

    Used is the current observed total usage of the resource in the namespace.

    false

    object

    - -
    -
    -

    v1.ExecAction

    -
    -

    ExecAction describes a "run in container" action.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    command

    Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

    ', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

    false

    string array

    - -
    -
    -

    v1.ObjectMeta

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

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

    false

    string

    generateName

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

    false

    string

    namespace

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

    false

    string

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    uid

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

    false

    string

    resourceVersion

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

    false

    string

    generation

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

    false

    integer (int64)

    creationTimestamp

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
    -
    -Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionTimestamp

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
    -
    -Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionGracePeriodSeconds

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

    false

    integer (int64)

    labels

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

    false

    object

    annotations

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

    false

    object

    ownerReferences

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

    false

    v1.OwnerReference array

    finalizers

    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

    false

    string array

    clusterName

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

    false

    string

    - -
    -
    -

    v1.LimitRangeSpec

    -
    -

    LimitRangeSpec defines a min/max usage limit for resources that match on kind.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits is the list of LimitRangeItem objects that are enforced.

    true

    v1.LimitRangeItem array

    - -
    -
    -

    types.UID

    - -
    -
    -

    v1.AzureFileVolumeSource

    -
    -

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    true

    string

    shareName

    Share Name

    true

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.ISCSIVolumeSource

    -
    -

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPortal

    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).

    true

    string

    iqn

    Target iSCSI Qualified Name.

    true

    string

    lun

    iSCSI target lun number.

    true

    integer (int32)

    iscsiInterface

    Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

    false

    string

    fsType

    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

    false

    string

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    false

    boolean

    false

    - -
    -
    -

    v1.EmptyDirVolumeSource

    -
    -

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    medium

    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

    false

    string

    - -
    -
    -

    v1.NodeList

    -
    -

    NodeList is the whole list of all Nodes which have been registered with master.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of nodes

    true

    v1.Node array

    - -
    -
    -

    unversioned.Patch

    -
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    -
    -
    -
    -

    v1.NamespaceList

    -
    -

    NamespaceList is a list of Namespaces.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces

    true

    v1.Namespace array

    - -
    -
    -

    v1.PersistentVolumeClaim

    -
    -

    PersistentVolumeClaim is a user’s request for and claim to a persistent volume

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired characteristics of a volume requested by a pod author. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimSpec

    status

    Status represents the current information/status of a persistent volume claim. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimStatus

    - -
    -
    -

    v1beta1.Eviction

    -
    -

    Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to …/pods/<pod name>/evictions.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    ObjectMeta describes the pod that is being evicted.

    false

    v1.ObjectMeta

    deleteOptions

    DeleteOptions may be provided

    false

    v1.DeleteOptions

    - -
    -
    -

    v1.ServiceAccount

    -
    -

    ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    secrets

    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

    false

    v1.ObjectReference array

    imagePullSecrets

    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

    false

    v1.LocalObjectReference array

    - -
    -
    -

    v1.NodeAddress

    -
    -

    NodeAddress contains information for the node’s address.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Node address type, one of Hostname, ExternalIP or InternalIP.

    true

    string

    address

    The node address.

    true

    string

    - -
    -
    -

    v1.Namespace

    -
    -

    Namespace provides a scope for Names. Use of multiple namespaces is optional.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the behavior of the Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NamespaceSpec

    status

    Status describes the current status of a Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.NamespaceStatus

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    datasetName

    Name of the dataset stored as metadata → name on the dataset for Flocker should be considered as deprecated

    false

    string

    datasetUUID

    UUID of the dataset. This is unique identifier of a Flocker dataset

    false

    string

    - -
    -
    -

    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).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    claimName

    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

    true

    string

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

    false

    boolean

    false

    - -
    -
    -

    unversioned.ListMeta

    -
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    resourceVersion

    String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    - -
    -
    -

    v1.ResourceQuotaList

    -
    -

    ResourceQuotaList is a list of ResourceQuota items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota

    true

    v1.ResourceQuota array

    - -
    -
    -

    v1.PersistentVolumeClaimStatus

    -
    -

    PersistentVolumeClaimStatus is the current status of a persistent volume claim.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase represents the current phase of PersistentVolumeClaim.

    false

    string

    accessModes

    AccessModes contains the actual access modes the volume backing the PVC has. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes-1

    false

    v1.PersistentVolumeAccessMode array

    capacity

    Represents the actual resources of the underlying volume.

    false

    object

    - -
    -
    -

    v1.UniqueVolumeName

    - -
    -
    -

    unversioned.LabelSelector

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    matchLabels

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

    false

    object

    matchExpressions

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

    false

    unversioned.LabelSelectorRequirement array

    - -
    -
    -

    v1.EndpointSubset

    -
    -

    EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:
    - {
    - Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    - Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    - }
    -The resulting set of endpoints can be viewed as:
    - a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],
    - b: [ 10.10.1.1:309, 10.10.2.2:309 ]

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    addresses

    IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.

    false

    v1.EndpointAddress array

    notReadyAddresses

    IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.

    false

    v1.EndpointAddress array

    ports

    Port numbers available on the related IP addresses.

    false

    v1.EndpointPort array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    Name of the secret in the pod’s namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    driver

    Driver is the name of the driver to use for this volume.

    true

    string

    fsType

    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.

    false

    string

    secretRef

    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.

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    options

    Optional: Extra command options if any.

    false

    object

    - -
    -
    -

    v1.EnvVarSource

    -
    -

    EnvVarSource represents a source for the value of an EnvVar.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    fieldRef

    Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    configMapKeyRef

    Selects a key of a ConfigMap.

    false

    v1.ConfigMapKeySelector

    secretKeyRef

    Selects a key of a secret in the pod’s namespace

    false

    v1.SecretKeySelector

    - -
    -
    -

    v1.Scale

    -
    -

    Scale represents a scaling request for a resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata.

    false

    v1.ObjectMeta

    spec

    defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.

    false

    v1.ScaleSpec

    status

    current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only.

    false

    v1.ScaleStatus

    - -
    -
    -

    v1.LoadBalancerIngress

    -
    -

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

    false

    string

    hostname

    Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

    false

    string

    - -
    -
    -

    v1.AzureDiskVolumeSource

    -
    -

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    diskName

    The Name of the data disk in the blob storage

    true

    string

    diskURI

    The URI the data disk in the blob storage

    true

    string

    cachingMode

    Host Caching mode: None, Read Only, Read Write.

    false

    v1.AzureDataDiskCachingMode

    fsType

    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.

    false

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.KeyToPath

    -
    -

    Maps a string key to a path within a volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    The key to project.

    true

    string

    path

    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 ...

    true

    string

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.Service

    -
    -

    Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the behavior of a service. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ServiceSpec

    status

    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

    false

    v1.ServiceStatus

    - -
    -
    -

    v1.VsphereVirtualDiskVolumeSource

    -
    -

    Represents a vSphere volume resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumePath

    Path that identifies vSphere volume vmdk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1.ServiceAccountList

    -
    -

    ServiceAccountList is a list of ServiceAccount objects

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts

    true

    v1.ServiceAccount array

    - -
    -
    -

    v1.LimitRangeList

    -
    -

    LimitRangeList is a list of LimitRange items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md

    true

    v1.LimitRange array

    - -
    -
    -

    v1.Endpoints

    -
    -

    Endpoints is a collection of endpoints that implement the actual service. Example:
    - Name: "mysvc",
    - Subsets: [
    - {
    - Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    - Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    - },
    - {
    - Addresses: [{"ip": "10.10.3.3"}],
    - Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}]
    - },
    - ]

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    subsets

    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.

    true

    v1.EndpointSubset array

    - -
    -
    -

    v1.DeleteOptions

    -
    -

    DeleteOptions may be provided when deleting an API object

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    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.

    false

    integer (int64)

    preconditions

    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

    false

    v1.Preconditions

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    false

    - -
    -
    -

    v1.Volume

    -
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    hostPath

    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

    false

    v1.HostPathVolumeSource

    emptyDir

    EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

    false

    v1.EmptyDirVolumeSource

    gcePersistentDisk

    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

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    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

    false

    v1.AWSElasticBlockStoreVolumeSource

    gitRepo

    GitRepo represents a git repository at a particular revision.

    false

    v1.GitRepoVolumeSource

    secret

    Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    v1.SecretVolumeSource

    nfs

    NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    false

    v1.NFSVolumeSource

    iscsi

    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

    false

    v1.ISCSIVolumeSource

    glusterfs

    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

    false

    v1.GlusterfsVolumeSource

    persistentVolumeClaim

    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimVolumeSource

    rbd

    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

    false

    v1.RBDVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    cinder

    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

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    flocker

    Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

    false

    v1.FlockerVolumeSource

    downwardAPI

    DownwardAPI represents downward API about the pod that should populate this volume

    false

    v1.DownwardAPIVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    configMap

    ConfigMap represents a configMap that should populate this volume

    false

    v1.ConfigMapVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    quobyte

    Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

    false

    v1.QuobyteVolumeSource

    azureDisk

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    false

    v1.AzureDiskVolumeSource

    photonPersistentDisk

    PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine

    false

    v1.PhotonPersistentDiskVolumeSource

    - -
    -
    -

    v1.ResourceFieldSelector

    -
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    containerName

    Container name: required for volumes, optional for env vars

    false

    string

    resource

    Required: resource to select

    true

    string

    divisor

    Specifies the output format of the exposed resources, defaults to "1"

    false

    string

    - -
    -
    -

    v1.Probe

    -
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    initialDelaySeconds

    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

    false

    integer (int32)

    timeoutSeconds

    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

    false

    integer (int32)

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    false

    integer (int32)

    successThreshold

    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.

    false

    integer (int32)

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    groupVersion

    groupVersion is the group and version this APIResourceList is for.

    true

    string

    resources

    resources contains the name of the resources and if they are namespaced.

    true

    unversioned.APIResource array

    - -
    -
    -

    v1.SecretKeySelector

    -
    -

    SecretKeySelector selects a key of a Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key of the secret to select from. Must be a valid secret key.

    true

    string

    - -
    -
    -

    v1.ReplicationController

    -
    -

    ReplicationController represents the configuration of a replication controller.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    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

    false

    v1.ObjectMeta

    spec

    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

    false

    v1.ReplicationControllerSpec

    status

    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

    false

    v1.ReplicationControllerStatus

    - -
    -
    -

    v1.Capability

    - -
    -
    -

    unversioned.APIResource

    -
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    name is the name of the resource.

    true

    string

    namespaced

    namespaced indicates if a resource is namespaced or not.

    true

    boolean

    false

    kind

    kind is the kind for the resource (e.g. Foo is the kind for a resource foo)

    true

    string

    - -
    -
    -

    v1.PodStatus

    -
    -

    PodStatus represents information about the status of a pod. Status may trail the actual state of a system.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Current condition of the pod. More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase

    false

    string

    conditions

    Current service state of pod. More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions

    false

    v1.PodCondition array

    message

    A human readable message indicating details about why the pod is in this condition.

    false

    string

    reason

    A brief CamelCase message indicating details about why the pod is in this state. e.g. OutOfDisk

    false

    string

    hostIP

    IP address of the host to which the pod is assigned. Empty if not yet scheduled.

    false

    string

    podIP

    IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.

    false

    string

    startTime

    RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.

    false

    string (date-time)

    containerStatuses

    The list has one entry per container in the manifest. Each entry is currently the output of docker inspect. More info: http://kubernetes.io/docs/user-guide/pod-states#container-statuses

    false

    v1.ContainerStatus array

    - -
    -
    -

    v1.LimitRange

    -
    -

    LimitRange sets resource usage limits for each kind of resource in a Namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the limits enforced. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.LimitRangeSpec

    - -
    -
    -

    v1.DownwardAPIVolumeFile

    -
    -

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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 ..

    true

    string

    fieldRef

    Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.PodSpec

    -
    -

    PodSpec is a description of a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: http://kubernetes.io/docs/user-guide/volumes

    false

    v1.Volume array

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers

    true

    v1.Container array

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy

    false

    string

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    false

    integer (int64)

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    false

    integer (int64)

    dnsPolicy

    Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

    false

    string

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://kubernetes.io/docs/user-guide/node-selection

    false

    object

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md

    false

    string

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    false

    string

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    false

    string

    hostNetwork

    Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    false

    boolean

    false

    hostPID

    Use the host’s pid namespace. Optional: Default to false.

    false

    boolean

    false

    hostIPC

    Use the host’s ipc namespace. Optional: Default to false.

    false

    boolean

    false

    securityContext

    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

    false

    v1.PodSecurityContext

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod

    false

    v1.LocalObjectReference array

    hostname

    Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value.

    false

    string

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    false

    string

    - -
    -
    -

    v1.ContainerPort

    -
    -

    ContainerPort represents a network port in a single container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    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.

    false

    string

    hostPort

    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.

    false

    integer (int32)

    containerPort

    Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

    true

    integer (int32)

    protocol

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".

    false

    string

    hostIP

    What host IP to bind the external port to.

    false

    string

    - -
    -
    -

    v1.ResourceQuota

    -
    -

    ResourceQuota sets aggregate quota restrictions enforced per namespace

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired quota. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ResourceQuotaSpec

    status

    Status defines the actual enforced quota and its current usage. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.ResourceQuotaStatus

    - -
    -
    -

    v1.EventList

    -
    -

    EventList is a list of events.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of events

    true

    v1.Event array

    - -
    -
    -

    v1.Lifecycle

    -
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    postStart

    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details

    false

    v1.Handler

    preStop

    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details

    false

    v1.Handler

    - -
    -
    -

    v1.ReplicationControllerSpec

    -
    -

    ReplicationControllerSpec is the specification of a replication controller.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller

    false

    integer (int32)

    minReadySeconds

    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

    false

    integer (int32)

    selector

    Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    object

    template

    Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1.Handler

    -
    -

    Handler defines a specific action that should be taken

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    - -
    -
    -

    v1.NodeStatus

    -
    -

    NodeStatus is information about the current status of a node.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capacity

    Capacity represents the total resources of a node. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity for more details.

    false

    object

    allocatable

    Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.

    false

    object

    phase

    NodePhase is the recently observed lifecycle phase of the node. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-phase The field is never populated, and now is deprecated.

    false

    string

    conditions

    Conditions is an array of current observed node conditions. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-condition

    false

    v1.NodeCondition array

    addresses

    List of addresses reachable to the node. Queried from cloud provider, if available. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-addresses

    false

    v1.NodeAddress array

    daemonEndpoints

    Endpoints of daemons running on the Node.

    false

    v1.NodeDaemonEndpoints

    nodeInfo

    Set of ids/uuids to uniquely identify the node. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-info

    false

    v1.NodeSystemInfo

    images

    List of container images on this node

    false

    v1.ContainerImage array

    volumesInUse

    List of attachable volumes in use (mounted) by the node.

    false

    v1.UniqueVolumeName array

    volumesAttached

    List of volumes that are attached to the node.

    false

    v1.AttachedVolume array

    - -
    -
    -

    v1.GlusterfsVolumeSource

    -
    -

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    path

    Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.AttachedVolume

    -
    -

    AttachedVolume describes a volume attached to a node

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the attached volume

    true

    string

    devicePath

    DevicePath represents the device path where the volume should be available

    true

    string

    - -
    -
    -

    v1.EventSource

    -
    -

    EventSource contains information for an event.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    component

    Component from which the event is generated.

    false

    string

    host

    Node name on which the event is generated.

    false

    string

    - -
    -
    -

    v1.PodCondition

    -
    -

    PodCondition contains details for the current condition of this pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type is the type of the condition. Currently only Ready. More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions

    true

    string

    status

    Status is the status of the condition. Can be True, False, Unknown. More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions

    true

    string

    lastProbeTime

    Last time we probed the condition.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transitioned from one status to another.

    false

    string (date-time)

    reason

    Unique, one-word, CamelCase reason for the condition’s last transition.

    false

    string

    message

    Human-readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.RBDVolumeSource

    -
    -

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string array

    image

    The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string

    fsType

    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

    false

    string

    pool

    The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.

    false

    string

    user

    The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    false

    string

    keyring

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.PhotonPersistentDiskVolumeSource

    -
    -

    Represents a Photon Controller persistent disk resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdID

    ID that identifies Photon Controller persistent disk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    versioned.Event

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    true

    string

    object

    true

    string

    - -
    -
    -

    v1.PodTemplate

    -
    -

    PodTemplate describes a template for creating copies of a predefined pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    template

    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

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1.ServiceStatus

    -
    -

    ServiceStatus represents the current status of a service.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    loadBalancer

    LoadBalancer contains the current status of the load-balancer, if one is present.

    false

    v1.LoadBalancerStatus

    - -
    -
    -

    v1.NFSVolumeSource

    -
    -

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    server

    Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    path

    Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.HTTPHeader

    -
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The header field name

    true

    string

    value

    The header field value

    true

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetWWNs

    Required: FC target worldwide names (WWNs)

    true

    string array

    lun

    Required: FC target lun number

    true

    integer (int32)

    fsType

    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.

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.EndpointPort

    -
    -

    EndpointPort is a tuple that describes a single port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.

    false

    string

    port

    The port number of the endpoint.

    true

    integer (int32)

    protocol

    The IP protocol for this port. Must be UDP or TCP. Default is TCP.

    false

    string

    - -
    -
    -

    v1.TCPSocketAction

    -
    -

    TCPSocketAction describes an action based on opening a socket

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    port

    Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    - -
    -
    -

    unversioned.StatusDetails

    -
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

    false

    string

    group

    The group attribute of the resource associated with the status StatusReason.

    false

    string

    kind

    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    causes

    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

    false

    unversioned.StatusCause array

    retryAfterSeconds

    If specified, the time in seconds before the operation should be retried.

    false

    integer (int32)

    - -
    -
    -

    v1.HTTPGetAction

    -
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path to access on the HTTP server.

    false

    string

    port

    Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    false

    string

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

    false

    string

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    false

    v1.HTTPHeader array

    - -
    -
    -

    v1.LoadBalancerStatus

    -
    -

    LoadBalancerStatus represents the status of a load-balancer.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ingress

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

    false

    v1.LoadBalancerIngress array

    - -
    -
    -

    v1.SecretList

    -
    -

    SecretList is a list of Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets

    true

    v1.Secret array

    - -
    -
    -

    v1.Container

    -
    -

    A single application container that you want to run within a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    true

    string

    image

    Docker image name. More info: http://kubernetes.io/docs/user-guide/images

    false

    string

    command

    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

    false

    string array

    args

    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

    false

    string array

    workingDir

    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.

    false

    string

    ports

    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.

    false

    v1.ContainerPort array

    env

    List of environment variables to set in the container. Cannot be updated.

    false

    v1.EnvVar array

    resources

    Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources

    false

    v1.ResourceRequirements

    volumeMounts

    Pod volumes to mount into the container’s filesystem. Cannot be updated.

    false

    v1.VolumeMount array

    livenessProbe

    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

    false

    v1.Probe

    readinessProbe

    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

    false

    v1.Probe

    lifecycle

    Actions that the management system should take in response to container lifecycle events. Cannot be updated.

    false

    v1.Lifecycle

    terminationMessagePath

    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.

    false

    string

    imagePullPolicy

    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

    false

    string

    securityContext

    Security options the pod should run with. More info: http://releases.k8s.io/HEAD/docs/design/security_context.md

    false

    v1.SecurityContext

    stdin

    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.

    false

    boolean

    false

    stdinOnce

    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

    false

    boolean

    false

    tty

    Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.PodSecurityContext

    -
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    seLinuxOptions

    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.

    false

    integer (int32) array

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:
    -
    -1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR’d with rw-rw

    false

    integer (int64)

    - -
    -
    -

    v1.PersistentVolumeSpec

    -
    -

    PersistentVolumeSpec is the specification of a persistent volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capacity

    A description of the persistent volume’s resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity

    false

    object

    gcePersistentDisk

    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

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    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

    false

    v1.AWSElasticBlockStoreVolumeSource

    hostPath

    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

    false

    v1.HostPathVolumeSource

    glusterfs

    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

    false

    v1.GlusterfsVolumeSource

    nfs

    NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    false

    v1.NFSVolumeSource

    rbd

    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

    false

    v1.RBDVolumeSource

    iscsi

    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.

    false

    v1.ISCSIVolumeSource

    cinder

    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

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    flocker

    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

    false

    v1.FlockerVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    quobyte

    Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

    false

    v1.QuobyteVolumeSource

    azureDisk

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    false

    v1.AzureDiskVolumeSource

    photonPersistentDisk

    PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine

    false

    v1.PhotonPersistentDiskVolumeSource

    accessModes

    AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes

    false

    v1.PersistentVolumeAccessMode array

    claimRef

    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

    false

    v1.ObjectReference

    persistentVolumeReclaimPolicy

    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

    false

    string

    - -
    -
    -

    v1.ReplicationControllerStatus

    -
    -

    ReplicationControllerStatus represents the current status of a replication controller.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the most recently oberved number of replicas. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller

    true

    integer (int32)

    fullyLabeledReplicas

    The number of pods that have labels matching the labels of the pod template of the replication controller.

    false

    integer (int32)

    readyReplicas

    The number of ready replicas for this replication controller.

    false

    integer (int32)

    availableReplicas

    The number of available replicas (ready for at least minReadySeconds) for this replication controller.

    false

    integer (int32)

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed replication controller.

    false

    integer (int64)

    conditions

    Represents the latest available observations of a replication controller’s current state.

    false

    v1.ReplicationControllerCondition array

    - -
    -
    -

    v1.FinalizerName

    - -
    -
    -

    v1.ServicePort

    -
    -

    ServicePort contains information on service’s port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the Name field in EndpointPort objects. Optional if only one ServicePort is defined on this service.

    false

    string

    protocol

    The IP protocol for this port. Supports "TCP" and "UDP". Default is TCP.

    false

    string

    port

    The port that will be exposed by this service.

    true

    integer (int32)

    targetPort

    Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod’s container ports. If this is not specified, the value of the port field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the port field. More info: http://kubernetes.io/docs/user-guide/services#defining-a-service

    false

    string

    nodePort

    The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: http://kubernetes.io/docs/user-guide/services#type—nodeport

    false

    integer (int32)

    - -
    -
    -

    v1.ComponentCondition

    -
    -

    Information about the condition of a component.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of condition for a component. Valid value: "Healthy"

    true

    string

    status

    Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".

    true

    string

    message

    Message about the condition for a component. For example, information about a health check.

    false

    string

    error

    Condition error code for a component. For example, a health check error code.

    false

    string

    - -
    -
    -

    v1.OwnerReference

    -
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    API version of the referent.

    true

    string

    kind

    Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    true

    string

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    uid

    UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

    true

    string

    controller

    If true, this reference points to the managing controller.

    false

    boolean

    false

    - -
    -
    -

    v1.ScaleSpec

    -
    -

    ScaleSpec describes the attributes of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    desired number of instances for the scaled object.

    false

    integer (int32)

    - -
    -
    -

    v1.ComponentStatusList

    -
    -

    Status of all the conditions for the component as a list of ComponentStatus objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ComponentStatus objects.

    true

    v1.ComponentStatus array

    - -
    -
    -

    v1.HostPathVolumeSource

    -
    -

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath

    true

    string

    - -
    -
    -

    v1.ContainerStateTerminated

    -
    -

    ContainerStateTerminated is a terminated state of a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exitCode

    Exit status from the last termination of the container

    true

    integer (int32)

    signal

    Signal from the last termination of the container

    false

    integer (int32)

    reason

    (brief) reason from the last termination of the container

    false

    string

    message

    Message regarding the last termination of the container

    false

    string

    startedAt

    Time at which previous execution of the container started

    false

    string (date-time)

    finishedAt

    Time at which the container last terminated

    false

    string (date-time)

    containerID

    Container’s ID in the format docker://<container_id>

    false

    string

    - -
    -
    -

    v1.Binding

    -
    -

    Binding ties one object to another. For example, a pod is bound to a node by a scheduler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    target

    The target object that you want to bind to the standard object.

    true

    v1.ObjectReference

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

    true

    string

    fsType

    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

    false

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    waiting

    Details about a waiting container

    false

    v1.ContainerStateWaiting

    running

    Details about a running container

    false

    v1.ContainerStateRunning

    terminated

    Details about a terminated container

    false

    v1.ContainerStateTerminated

    - -
    -
    -

    v1.SecurityContext

    -
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capabilities

    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

    false

    v1.Capabilities

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

    false

    boolean

    false

    seLinuxOptions

    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false.

    false

    boolean

    false

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

    true

    string

    fsType

    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

    false

    string

    partition

    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).

    false

    integer (int32)

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.ContainerStatus

    -
    -

    ContainerStatus contains details for the current status of this container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.

    true

    string

    state

    Details about the container’s current condition.

    false

    v1.ContainerState

    lastState

    Details about the container’s last termination condition.

    false

    v1.ContainerState

    ready

    Specifies whether the container has passed its readiness probe.

    true

    boolean

    false

    restartCount

    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.

    true

    integer (int32)

    image

    The image the container is running. More info: http://kubernetes.io/docs/user-guide/images

    true

    string

    imageID

    ImageID of the container’s image.

    true

    string

    containerID

    Container’s ID in the format docker://<container_id>. More info: http://kubernetes.io/docs/user-guide/container-environment#container-information

    false

    string

    - -
    -
    -

    v1.QuobyteVolumeSource

    -
    -

    Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    registry

    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

    true

    string

    volume

    Volume is a string that references an already created Quobyte volume by name.

    true

    string

    readOnly

    ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

    false

    boolean

    false

    user

    User to map volume access to Defaults to serivceaccount user

    false

    string

    group

    Group to map volume access to Default is no group

    false

    string

    - -
    -
    -

    v1.ContainerImage

    -
    -

    Describe a container image

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    names

    Names by which this image is known. e.g. ["k8s.gcr.io/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"]

    true

    string array

    sizeBytes

    The size of the image in bytes.

    false

    integer (int64)

    - -
    -
    -

    v1.ResourceQuotaScope

    - -
    -
    -

    v1.ReplicationControllerList

    -
    -

    ReplicationControllerList is a collection of replication controllers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller

    true

    v1.ReplicationController array

    - -
    -
    -

    v1.NodeDaemonEndpoints

    -
    -

    NodeDaemonEndpoints lists ports opened by daemons running on the Node.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kubeletEndpoint

    Endpoint on which Kubelet is listening.

    false

    v1.DaemonEndpoint

    - -
    -
    -

    v1.Secret

    -
    -

    Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    data

    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

    false

    object

    stringData

    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.

    false

    object

    type

    Used to facilitate programmatic handling of secret data.

    false

    string

    - -
    -
    -

    v1.Event

    -
    -

    Event is a report of an event somewhere in the cluster.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    true

    v1.ObjectMeta

    involvedObject

    The object that this event is about.

    true

    v1.ObjectReference

    reason

    This should be a short, machine understandable string that gives the reason for the transition into the object’s current status.

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    source

    The component reporting this event. Should be a short machine understandable string.

    false

    v1.EventSource

    firstTimestamp

    The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)

    false

    string (date-time)

    lastTimestamp

    The time at which the most recent occurrence of this event was recorded.

    false

    string (date-time)

    count

    The number of times this event has occurred.

    false

    integer (int32)

    type

    Type of this event (Normal, Warning), new types could be added in the future

    false

    string

    - -
    -
    -

    v1.EnvVar

    -
    -

    EnvVar represents an environment variable present in a Container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    true

    string

    value

    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".

    false

    string

    valueFrom

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

    false

    v1.EnvVarSource

    - -
    -
    -

    v1.PersistentVolumeAccessMode

    - -
    -
    -

    v1.ResourceRequirements

    -
    -

    ResourceRequirements describes the compute resource requirements.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/user-guide/compute-resources/

    false

    object

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/user-guide/compute-resources/

    false

    object

    - -
    -
    -

    v1.ComponentStatus

    -
    -

    ComponentStatus (and ComponentStatusList) holds the cluster validation info.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    conditions

    List of component conditions observed

    false

    v1.ComponentCondition array

    - -
    -
    -

    v1.LimitRangeItem

    -
    -

    LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of resource that this limit applies to.

    false

    string

    max

    Max usage constraints on this kind by resource name.

    false

    object

    min

    Min usage constraints on this kind by resource name.

    false

    object

    default

    Default resource requirement limit value by resource name if resource limit is omitted.

    false

    object

    defaultRequest

    DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.

    false

    object

    maxLimitRequestRatio

    MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.

    false

    object

    - -
    -
    -

    v1.PodTemplateSpec

    -
    -

    PodTemplateSpec describes the data a pod should have when created from a template

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    - -
    -
    -

    v1.PodList

    -
    -

    PodList is a list of Pods.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of pods. More info: http://kubernetes.io/docs/user-guide/pods

    true

    v1.Pod array

    - -
    -
    -

    v1.ServiceList

    -
    -

    ServiceList holds a list of services.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of services

    true

    v1.Service array

    - -
    -
    -

    v1.PersistentVolumeList

    -
    -

    PersistentVolumeList is a list of PersistentVolume items.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes

    true

    v1.PersistentVolume array

    - -
    -
    -

    v1.ObjectReference

    -
    -

    ObjectReference contains enough information to let you inspect or modify the referred object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    namespace

    Namespace of the referent. More info: http://kubernetes.io/docs/user-guide/namespaces

    false

    string

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    uid

    UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

    false

    string

    apiVersion

    API version of the referent.

    false

    string

    resourceVersion

    Specific resourceVersion to which this reference is made, if any. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    fieldPath

    If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.

    false

    string

    - -
    -
    -

    unversioned.LabelSelectorRequirement

    -
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    key is the label key that the selector applies to.

    true

    string

    operator

    operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

    true

    string

    values

    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    false

    string array

    - -
    -
    -

    v1.ContainerStateWaiting

    -
    -

    ContainerStateWaiting is a waiting state of a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    (brief) reason the container is not yet running.

    false

    string

    message

    Message regarding why the container is not yet running.

    false

    string

    - -
    -
    -

    unversioned.Status

    -
    -

    Status is a return value for calls that don’t return other objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    status

    Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    reason

    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.

    false

    string

    details

    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.

    false

    unversioned.StatusDetails

    code

    Suggested HTTP return code for this status, 0 if not set.

    false

    integer (int32)

    - -
    -
    -

    v1.ConfigMapKeySelector

    -
    -

    Selects a key from a ConfigMap.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key to select.

    true

    string

    - -
    -
    -

    v1.NodeSystemInfo

    -
    -

    NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    machineID

    MachineID reported by the node. For unique machine identification in the cluster this field is prefered. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html

    true

    string

    systemUUID

    SystemUUID reported by the node. For unique machine identification MachineID is prefered. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html

    true

    string

    bootID

    Boot ID reported by the node.

    true

    string

    kernelVersion

    Kernel Version reported by the node from uname -r (e.g. 3.16.0-0.bpo.4-amd64).

    true

    string

    osImage

    OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).

    true

    string

    containerRuntimeVersion

    ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).

    true

    string

    kubeletVersion

    Kubelet Version reported by the node.

    true

    string

    kubeProxyVersion

    KubeProxy Version reported by the node.

    true

    string

    operatingSystem

    The Operating System reported by the node

    true

    string

    architecture

    The Architecture reported by the node

    true

    string

    - -
    -
    -

    v1.ServiceSpec

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ports

    The list of ports that are exposed by this service. More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies

    true

    v1.ServicePort array

    selector

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

    false

    object

    clusterIP

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

    false

    string

    type

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

    false

    string

    externalIPs

    externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. A previous form of this functionality exists as the deprecatedPublicIPs field. When using this field, callers should also clear the deprecatedPublicIPs field.

    false

    string array

    deprecatedPublicIPs

    deprecatedPublicIPs is deprecated and replaced by the externalIPs field with almost the exact same semantics. This field is retained in the v1 API for compatibility until at least 8/20/2016. It will be removed from any new API revisions. If both deprecatedPublicIPs and externalIPs are set, deprecatedPublicIPs is used.

    false

    string array

    sessionAffinity

    Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies

    false

    string

    loadBalancerIP

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

    false

    string

    loadBalancerSourceRanges

    If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: http://kubernetes.io/docs/user-guide/services-firewalls

    false

    string array

    externalName

    externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName.

    false

    string

    - -
    -
    -

    v1.Pod

    -
    -

    Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    status

    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

    false

    v1.PodStatus

    - -
    -
    -

    v1.NodeSpec

    -
    -

    NodeSpec describes the attributes that a node is created with.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podCIDR

    PodCIDR represents the pod IP range assigned to the node.

    false

    string

    externalID

    External ID of the node assigned by some machine database (e.g. a cloud provider). Deprecated.

    false

    string

    providerID

    ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>

    false

    string

    unschedulable

    Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#manual-node-administration

    false

    boolean

    false

    - -
    -
    -

    v1.EndpointAddress

    -
    -

    EndpointAddress is a tuple that describes single IP address.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.

    true

    string

    hostname

    The Hostname of this endpoint

    false

    string

    nodeName

    Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.

    false

    string

    targetRef

    Reference to object providing the endpoint.

    false

    v1.ObjectReference

    - -
    -
    -

    v1.DaemonEndpoint

    -
    -

    DaemonEndpoint contains information about a single Daemon endpoint.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    Port

    Port number of the given endpoint.

    true

    integer (int32)

    - -
    -
    -

    v1.AzureDataDiskCachingMode

    - -
    -
    -

    any

    -
    -

    Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

    -
    -
    -
    -
    -
    - - - diff --git a/_includes/v1.5/v1-operations.html b/_includes/v1.5/v1-operations.html deleted file mode 100755 index c56782a6b5..0000000000 --- a/_includes/v1.5/v1-operations.html +++ /dev/null @@ -1,32969 +0,0 @@ - - - - - - -Operations - - - -
    -
    -

    Operations

    -
    -
    -

    get available resources

    -
    -
    -
    GET /api/v1
    -
    -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    unversioned.APIResourceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list objects of kind ComponentStatus

    -
    -
    -
    GET /api/v1/componentstatuses
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ComponentStatusList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ComponentStatus

    -
    -
    -
    GET /api/v1/componentstatuses/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the ComponentStatus

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ComponentStatus

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ConfigMap

    -
    -
    -
    GET /api/v1/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMapList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Endpoints

    -
    -
    -
    GET /api/v1/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EndpointsList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Event

    -
    -
    -
    GET /api/v1/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EventList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind LimitRange

    -
    -
    -
    GET /api/v1/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRangeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Namespace

    -
    -
    -
    GET /api/v1/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.NamespaceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Namespace

    -
    -
    -
    DELETE /api/v1/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Namespace

    -
    -
    -
    POST /api/v1/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Binding

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/bindings
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Binding

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Binding

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ConfigMap

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMapList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ConfigMap

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ConfigMap

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ConfigMap

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ConfigMap

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ConfigMap

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ConfigMap

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ConfigMap

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ConfigMap

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Endpoints

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EndpointsList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Endpoints

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create Endpoints

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Endpoints

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Endpoints

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Endpoints

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Endpoints

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete Endpoints

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Endpoints

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/endpoints/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Endpoints

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Event

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.EventList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Event

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create an Event

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Event

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Event

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Event

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Event

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete an Event

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Event

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind LimitRange

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRangeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of LimitRange

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a LimitRange

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.LimitRange

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified LimitRange

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified LimitRange

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.LimitRange

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a LimitRange

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified LimitRange

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/limitranges/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.LimitRange

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaimList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of PersistentVolumeClaim

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a PersistentVolumeClaim

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolumeClaim

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified PersistentVolumeClaim

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolumeClaim

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a PersistentVolumeClaim

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified PersistentVolumeClaim

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified PersistentVolumeClaim

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolumeClaim

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified PersistentVolumeClaim

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaim

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Pod

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Pod

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Pod

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Pod

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to attach of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/attach
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.

    false

    boolean

    QueryParameter

    container

    The container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to attach of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/attach
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.

    false

    boolean

    QueryParameter

    container

    The container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create binding of a Binding

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/binding
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Binding

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Binding

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Binding

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create eviction of an Eviction

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/eviction
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1beta1.Eviction

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Eviction

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1beta1.Eviction

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to exec of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/exec
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Redirect the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Redirect the standard output stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Redirect the standard error stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.

    false

    boolean

    QueryParameter

    container

    Container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    QueryParameter

    command

    Command is the remote command to execute. argv array. Not executed within a shell.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to exec of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/exec
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    stdin

    Redirect the standard input stream of the pod for this call. Defaults to false.

    false

    boolean

    QueryParameter

    stdout

    Redirect the standard output stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    stderr

    Redirect the standard error stream of the pod for this call. Defaults to true.

    false

    boolean

    QueryParameter

    tty

    TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.

    false

    boolean

    QueryParameter

    container

    Container in which to execute the command. Defaults to only container if there is only one container in the pod.

    false

    string

    QueryParameter

    command

    Command is the remote command to execute. argv array. Not executed within a shell.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read log of the specified Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/log
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    container

    The container for which to stream logs. Defaults to only container if there is one container in the pod.

    false

    string

    QueryParameter

    follow

    Follow the log stream of the pod. Defaults to false.

    false

    boolean

    QueryParameter

    previous

    Return previous terminated container logs. Defaults to false.

    false

    boolean

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    sinceTime

    An RFC3339 timestamp 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.

    false

    string

    QueryParameter

    timestamps

    If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.

    false

    boolean

    QueryParameter

    tailLines

    If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime

    false

    integer (int32)

    QueryParameter

    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.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      text/plain

      -
    • -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to portforward of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/portforward
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to portforward of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/portforward
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Pod

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Pod

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to pod.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Pod

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/pods/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Pod

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/pods/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Pod

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Pod

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/pods/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Pod

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PodTemplate

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplateList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of PodTemplate

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a PodTemplate

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PodTemplate

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified PodTemplate

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified PodTemplate

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PodTemplate

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a PodTemplate

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified PodTemplate

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplate

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicationController

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationControllerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ReplicationController

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ReplicationController

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ReplicationController

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ReplicationController

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ReplicationController

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ReplicationController

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ReplicationController

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ReplicationController

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read scale of the specified Scale

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace scale of the specified Scale

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Scale

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update scale of the specified Scale

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Scale

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Scale

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified ReplicationController

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified ReplicationController

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ReplicationController

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified ReplicationController

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationController

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ResourceQuota

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuotaList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ResourceQuota

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ResourceQuota

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ResourceQuota

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ResourceQuota

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ResourceQuota

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ResourceQuota

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ResourceQuota

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ResourceQuota

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified ResourceQuota

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified ResourceQuota

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ResourceQuota

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified ResourceQuota

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuota

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Secret

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.SecretList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Secret

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Secret

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Secret

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Secret

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Secret

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Secret

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Secret

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Secret

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ServiceAccount

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccountList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of ServiceAccount

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a ServiceAccount

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ServiceAccount

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified ServiceAccount

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified ServiceAccount

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.ServiceAccount

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ServiceAccount

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified ServiceAccount

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccount

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Service

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Service

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Service

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Service

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/services/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Service

    -
    -
    -
    POST /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    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.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Service

    -
    -
    -
    GET /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Service

    -
    -
    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Service

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Namespace

    -
    -
    -
    GET /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Namespace

    -
    -
    -
    PUT /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Namespace

    -
    -
    -
    DELETE /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Namespace

    -
    -
    -
    PATCH /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace finalize of the specified Namespace

    -
    -
    -
    PUT /api/v1/namespaces/{name}/finalize
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Namespace

    -
    -
    -
    GET /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Namespace

    -
    -
    -
    PUT /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Namespace

    -
    -
    -
    PATCH /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Node

    -
    -
    -
    GET /api/v1/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.NodeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of Node

    -
    -
    -
    DELETE /api/v1/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a Node

    -
    -
    -
    POST /api/v1/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Node

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified Node

    -
    -
    -
    GET /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified Node

    -
    -
    -
    PUT /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Node

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Node

    -
    -
    -
    DELETE /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified Node

    -
    -
    -
    PATCH /api/v1/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Node

    -
    -
    -
    GET /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Node

    -
    -
    -
    PUT /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Node

    -
    -
    -
    DELETE /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Node

    -
    -
    -
    POST /api/v1/nodes/{name}/proxy
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect GET requests to proxy of Node

    -
    -
    -
    GET /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect PUT requests to proxy of Node

    -
    -
    -
    PUT /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect DELETE requests to proxy of Node

    -
    -
    -
    DELETE /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    connect POST requests to proxy of Node

    -
    -
    -
    POST /api/v1/nodes/{name}/proxy/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    path

    Path is the URL path to use for the current proxy request to node.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified Node

    -
    -
    -
    GET /api/v1/nodes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified Node

    -
    -
    -
    PUT /api/v1/nodes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Node

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Node

    -
    -
    -
    PATCH /api/v1/nodes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Node

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeClaimList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PersistentVolume

    -
    -
    -
    GET /api/v1/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolumeList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete collection of PersistentVolume

    -
    -
    -
    DELETE /api/v1/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    create a PersistentVolume

    -
    -
    -
    POST /api/v1/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolume

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read the specified PersistentVolume

    -
    -
    -
    GET /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    export

    Should this value be exported. Export strips fields that a user can not specify.

    false

    boolean

    QueryParameter

    exact

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace

    false

    boolean

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace the specified PersistentVolume

    -
    -
    -
    PUT /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolume

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a PersistentVolume

    -
    -
    -
    DELETE /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.DeleteOptions

    QueryParameter

    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.

    false

    integer (int32)

    QueryParameter

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    unversioned.Status

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update the specified PersistentVolume

    -
    -
    -
    PATCH /api/v1/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    read status of the specified PersistentVolume

    -
    -
    -
    GET /api/v1/persistentvolumes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    replace status of the specified PersistentVolume

    -
    -
    -
    PUT /api/v1/persistentvolumes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.PersistentVolume

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified PersistentVolume

    -
    -
    -
    PATCH /api/v1/persistentvolumes/{name}/status
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    unversioned.Patch

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PersistentVolume

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      application/json-patch+json

      -
    • -
    • -

      application/merge-patch+json

      -
    • -
    • -

      application/strategic-merge-patch+json

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Pod

    -
    -
    -
    GET /api/v1/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind PodTemplate

    -
    -
    -
    GET /api/v1/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.PodTemplateList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Pod

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Pod

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Pod

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Pod

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/pods/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Pod

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Pod

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Pod

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Pod

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Service

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Service

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Service

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Service

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Service

    -
    -
    -
    GET /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Service

    -
    -
    -
    PUT /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Service

    -
    -
    -
    DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Service

    -
    -
    -
    POST /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Node

    -
    -
    -
    GET /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Node

    -
    -
    -
    PUT /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Node

    -
    -
    -
    DELETE /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Node

    -
    -
    -
    POST /api/v1/proxy/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy GET requests to Node

    -
    -
    -
    GET /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy PUT requests to Node

    -
    -
    -
    PUT /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy DELETE requests to Node

    -
    -
    -
    DELETE /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    proxy POST requests to Node

    -
    -
    -
    POST /api/v1/proxy/nodes/{name}/{path}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    PathParameter

    name

    name of the Node

    true

    string

    PathParameter

    path

    path to the resource

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    default

    success

    string

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ReplicationController

    -
    -
    -
    GET /api/v1/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ReplicationControllerList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ResourceQuota

    -
    -
    -
    GET /api/v1/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ResourceQuotaList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Secret

    -
    -
    -
    GET /api/v1/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.SecretList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind ServiceAccount

    -
    -
    -
    GET /api/v1/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceAccountList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    list or watch objects of kind Service

    -
    -
    -
    GET /api/v1/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceList

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ConfigMap

    -
    -
    -
    GET /api/v1/watch/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Endpoints

    -
    -
    -
    GET /api/v1/watch/endpoints
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Event

    -
    -
    -
    GET /api/v1/watch/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of LimitRange

    -
    -
    -
    GET /api/v1/watch/limitranges
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Namespace

    -
    -
    -
    GET /api/v1/watch/namespaces
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ConfigMap

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/configmaps
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ConfigMap

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ConfigMap

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Endpoints

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Endpoints

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Endpoints

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Event

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/events
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Event

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Event

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of LimitRange

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind LimitRange

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the LimitRange

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PersistentVolumeClaim

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Pod

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Pod

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Pod

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PodTemplate

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind PodTemplate

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/podtemplates/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the PodTemplate

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicationController

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ReplicationController

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ReplicationController

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ResourceQuota

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ResourceQuota

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/resourcequotas/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ResourceQuota

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Secret

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Secret

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Secret

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ServiceAccount

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind ServiceAccount

    -
    -
    -
    GET /api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the ServiceAccount

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Service

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Service

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

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Namespace

    -
    -
    -
    GET /api/v1/watch/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the Namespace

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Node

    -
    -
    -
    GET /api/v1/watch/nodes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind Node

    -
    -
    -
    GET /api/v1/watch/nodes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the Node

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PersistentVolumeClaim

    -
    -
    -
    GET /api/v1/watch/persistentvolumeclaims
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PersistentVolume

    -
    -
    -
    GET /api/v1/watch/persistentvolumes
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch changes to an object of kind PersistentVolume

    -
    -
    -
    GET /api/v1/watch/persistentvolumes/{name}
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    name

    name of the PersistentVolume

    true

    string

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Pod

    -
    -
    -
    GET /api/v1/watch/pods
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of PodTemplate

    -
    -
    -
    GET /api/v1/watch/podtemplates
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ReplicationController

    -
    -
    -
    GET /api/v1/watch/replicationcontrollers
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ResourceQuota

    -
    -
    -
    GET /api/v1/watch/resourcequotas
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Secret

    -
    -
    -
    GET /api/v1/watch/secrets
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of ServiceAccount

    -
    -
    -
    GET /api/v1/watch/serviceaccounts
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    watch individual changes to a list of Service

    -
    -
    -
    GET /api/v1/watch/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    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.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    versioned.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/_redirects b/_redirects index c5b254fe94..7e8e9ebb02 100644 --- a/_redirects +++ b/_redirects @@ -71,9 +71,6 @@ /docs/api-reference/policy/v1beta1/definitions/ https://v1-4.docs.kubernetes.io/docs/api-reference/policy/v1beta1/definitions/ 301 /docs/api-reference/README/ https://v1-4.docs.kubernetes.io/docs/api-reference/README/ 301 /docs/api-reference/storage.k8s.io/v1beta1/operations/ https://v1-4.docs.kubernetes.io/docs/api-reference/storage.k8s.io/v1beta1/operations/ 301 -/docs/api-reference/v1.4/* https://v1-4.docs.kubernetes.io/docs/reference/ 301 -/docs/api-reference/1_5/* https://v1-5.docs.kubernetes.io/docs/reference/ 301 -/docs/api-reference/v1.5/* https://v1-5.docs.kubernetes.io/docs/reference/ 301 /docs/api-reference/v1.6/* https://v1-6.docs.kubernetes.io/docs/reference/ 301 /docs/api-reference/v1.7/* https://v1-7.docs.kubernetes.io/docs/reference/ 301 /docs/api-reference/v1.8/* https://v1-8.docs.kubernetes.io/docs/api-reference/v1.8/:splat 301 @@ -194,9 +191,6 @@ /docs/reporting-security-issues/ /security/ 301 -/docs/resources-reference/1_5/* /docs/resources-reference/v1.5/ 301 -/docs/resources-reference/1_5/* https://v1-5.docs.kubernetes.io/docs/resources-reference/v1.5/ 301 -/docs/resources-reference/v1.5/node_modules/* https://v1-5.docs.kubernetes.io/docs/resources-reference/v1.5/ 301 /docs/resources-reference/1_6/* /docs/resources-reference/v1.6/ 301 /docs/resources-reference/1_7/* /docs/resources-reference/v1.7/ 301 /docs/resources-reference/v1.8/* /docs/api-reference/v1.8/:splat 301 @@ -348,9 +342,7 @@ /docs/user-guide/kubectl/v1.9/* /docs/reference/generated/kubectl/kubectl-commands/:splat 301 /docs/user-guide/kubectl-conventions/ /docs/reference/kubectl/conventions/ /docs/user-guide/kubectl-cheatsheet/ /docs/reference/kubectl/cheatsheet/ -/docs/user-guide/kubectl/1_5/* https://v1-5.docs.kubernetes.io/docs/user-guide/kubectl/v1.5/ 301 /docs/user-guide/kubectl/kubectl_*/ /docs/reference/generated/kubectl/kubectl-commands#:splat 301 -/docs/user-guide/kubectl/v1.5/node_modules/* https://v1-5.docs.kubernetes.io/docs/user-guide/kubectl/v1.5/ 301 /docs/user-guide/kubectl/v1.6/node_modules/* https://v1-6.docs.kubernetes.io/docs/user-guide/kubectl/v1.6/ 301 /docs/user-guide/labels/ /docs/concepts/overview/working-with-objects/labels/ 301 /docs/user-guide/liveness/ /docs/tasks/configure-pod-container/configure-liveness-readiness-probes/ 301 From cef6e066971a45a1a102abb66454ca67702df35a Mon Sep 17 00:00:00 2001 From: Joseph Herlant Date: Thu, 8 Feb 2018 15:48:52 -0800 Subject: [PATCH 096/329] Fix minor typos and misspells detected using misspell (#7313) --- docs/admin/admission-controllers.md | 4 ++-- docs/concepts/cluster-administration/networking.md | 2 +- docs/concepts/storage/persistent-volumes.md | 2 +- docs/reference/index.md | 2 +- .../setup-tools/kubeadm/implementation-details.md | 2 +- docs/tasks/administer-cluster/reconfigure-kubelet.md | 2 +- docs/tasks/administer-cluster/running-cloud-controller.md | 2 +- docs/tutorials/stateful-application/zookeeper.md | 8 ++++---- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/admin/admission-controllers.md b/docs/admin/admission-controllers.md index 66d97be994..aca3a8db8c 100644 --- a/docs/admin/admission-controllers.md +++ b/docs/admin/admission-controllers.md @@ -354,7 +354,7 @@ webhooks are called in serial; each one may modify the object if it desires. This admission controller (as implied by the name) only runs in the mutating phase. If a webhook called by this has side effects (for example, decrementing quota) it -*must* have a reconcilation system, as it is not guaranteed that subsequent +*must* have a reconciliation system, as it is not guaranteed that subsequent webhooks or validating admission controllers will permit the request to finish. If you disable the MutatingAdmissionWebhook, you must also disable the @@ -565,7 +565,7 @@ fails. This admission controller only runs in the validation phase; the webhooks mutate the object, as opposed to the webhooks called by the `MutatingAdmissionWebhook` admission controller. If a webhook called by this has side effects (for example, decrementing quota) it -*must* have a reconcilation system, as it is not guaranteed that subsequent +*must* have a reconciliation system, as it is not guaranteed that subsequent webhooks or other validating admission controllers will permit the request to finish. If you disable the ValidatingAdmissionWebhook, you must also disable the diff --git a/docs/concepts/cluster-administration/networking.md b/docs/concepts/cluster-administration/networking.md index eea0d02174..1b6023e2a8 100644 --- a/docs/concepts/cluster-administration/networking.md +++ b/docs/concepts/cluster-administration/networking.md @@ -243,7 +243,7 @@ to run, and in both cases, the network provides one IP address per pod - as is s ### CNI-Genie from Huawei -[CNI-Genie](https://github.com/Huawei-PaaS/CNI-Genie) is a CNI plugin that enables Kubernetes to [simultanously have access to different implementations](https://github.com/Huawei-PaaS/CNI-Genie/blob/master/docs/multiple-cni-plugins/README.md#what-cni-genie-feature-1-multiple-cni-plugins-enables) of the [Kubernetes network model](https://git.k8s.io/website/docs/concepts/cluster-administration/networking.md#kubernetes-model) in runtime. This includes any implementation that runs as a [CNI plugin](https://github.com/containernetworking/cni#3rd-party-plugins), such as [Flannel](https://github.com/coreos/flannel#flannel), [Calico](http://docs.projectcalico.org/), [Romana](http://romana.io), [Weave-net](https://www.weave.works/products/weave-net/). +[CNI-Genie](https://github.com/Huawei-PaaS/CNI-Genie) is a CNI plugin that enables Kubernetes to [simultaneously have access to different implementations](https://github.com/Huawei-PaaS/CNI-Genie/blob/master/docs/multiple-cni-plugins/README.md#what-cni-genie-feature-1-multiple-cni-plugins-enables) of the [Kubernetes network model](https://git.k8s.io/website/docs/concepts/cluster-administration/networking.md#kubernetes-model) in runtime. This includes any implementation that runs as a [CNI plugin](https://github.com/containernetworking/cni#3rd-party-plugins), such as [Flannel](https://github.com/coreos/flannel#flannel), [Calico](http://docs.projectcalico.org/), [Romana](http://romana.io), [Weave-net](https://www.weave.works/products/weave-net/). CNI-Genie also supports [assigning multiple IP addresses to a pod](https://github.com/Huawei-PaaS/CNI-Genie/blob/master/docs/multiple-ips/README.md#feature-2-extension-cni-genie-multiple-ip-addresses-per-pod), each from a different CNI plugin. diff --git a/docs/concepts/storage/persistent-volumes.md b/docs/concepts/storage/persistent-volumes.md index 4256900d8d..50566a510c 100644 --- a/docs/concepts/storage/persistent-volumes.md +++ b/docs/concepts/storage/persistent-volumes.md @@ -536,7 +536,7 @@ spec: ### Binding Block Volumes -If a user requests a raw block volume by indicating this using the `volumeMode` field in the `PersistentVolumeClaim` spec, the binding rules differ slighty from previous releases that didn't consider this mode as part of the spec. +If a user requests a raw block volume by indicating this using the `volumeMode` field in the `PersistentVolumeClaim` spec, the binding rules differ slightly from previous releases that didn't consider this mode as part of the spec. Listed is a table of possible combinations the user and admin might specify for requesting a raw block device. The table indicates if the volume will be bound or not given the combinations: Volume binding matrix for statically provisioned volumes: diff --git a/docs/reference/index.md b/docs/reference/index.md index 6dee32c275..7659541fed 100644 --- a/docs/reference/index.md +++ b/docs/reference/index.md @@ -21,7 +21,7 @@ To call the Kubernetes API from a programming language, you can use client libraries: - [Kubernetes Go client library](https://github.com/kubernetes/client-go/) -- [Kubernetes Python client libary](https://github.com/kubernetes-incubator/client-python) +- [Kubernetes Python client library](https://github.com/kubernetes-incubator/client-python) ## CLI Reference diff --git a/docs/reference/setup-tools/kubeadm/implementation-details.md b/docs/reference/setup-tools/kubeadm/implementation-details.md index 6a57e131b8..834a5e7266 100644 --- a/docs/reference/setup-tools/kubeadm/implementation-details.md +++ b/docs/reference/setup-tools/kubeadm/implementation-details.md @@ -241,7 +241,7 @@ Other API server flags that are set unconditionally are: - [`ServiceAccount`](/docs/admin/admission-controllers/#serviceaccount) to enforce service account automation - [`PersistentVolumeLabel`](/docs/admin/admission-controllers/#persistentvolumelabel) attaches region or zone labels to PersistentVolumes as defined by the cloud provider (This admission controller is deprecated and will be removed in a future version. - It is not deployed by kubeadm by default with v1.9 onwards when not explicitely opting into using `gce` or `aws` as cloud providers) + It is not deployed by kubeadm by default with v1.9 onwards when not explicitly opting into using `gce` or `aws` as cloud providers) - [`DefaultStorageClass`](/docs/admin/admission-controllers/#defaultstorageclass) to enforce default storage class on `PersistentVolumeClaim` objects - [`DefaultTolerationSeconds`](/docs/admin/admission-controllers/#defaulttolerationseconds) - [`NodeRestriction`](/docs/admin/admission-controllers/#noderestriction) to limit what a kubelet can modify diff --git a/docs/tasks/administer-cluster/reconfigure-kubelet.md b/docs/tasks/administer-cluster/reconfigure-kubelet.md index 90307c46a7..db6a9d9e76 100644 --- a/docs/tasks/administer-cluster/reconfigure-kubelet.md +++ b/docs/tasks/administer-cluster/reconfigure-kubelet.md @@ -333,7 +333,7 @@ condition's message reverts to either `using current (default)` or ### Deauthorize your Node fom reading the old ConfigMap -Once you know your Node is using the default configuraiton again, it is a good +Once you know your Node is using the default configuration again, it is a good idea to deauthorize the node from reading the old ConfigMap. Run the following commands to remove the RoleBinding and Role: diff --git a/docs/tasks/administer-cluster/running-cloud-controller.md b/docs/tasks/administer-cluster/running-cloud-controller.md index 8c755c42b8..f4bff2081e 100644 --- a/docs/tasks/administer-cluster/running-cloud-controller.md +++ b/docs/tasks/administer-cluster/running-cloud-controller.md @@ -25,7 +25,7 @@ Every cloud has their own set of requirements for running their own cloud provid * cloud authentication/authorization: your cloud may require a token or IAM rules to allow access to their APIs * kubernetes authentication/authorization: cloud-controller-manager may need RBAC rules set to speak to the kubernetes apiserver -* high availabilty: like kube-controller-manager, you may want a high available setup for cloud controller manager using leader election (on by default). +* high availability: like kube-controller-manager, you may want a high available setup for cloud controller manager using leader election (on by default). ### Running cloud-controller-manager diff --git a/docs/tutorials/stateful-application/zookeeper.md b/docs/tutorials/stateful-application/zookeeper.md index 17d1b9aa3a..097d141d41 100644 --- a/docs/tutorials/stateful-application/zookeeper.md +++ b/docs/tutorials/stateful-application/zookeeper.md @@ -498,11 +498,11 @@ servers' WALs, and all of their snapshots, remain durable. ## Ensuring Consistent Configuration As noted in the [Facilitating Leader Election](#facilitating-leader-election) and -[Achieving Consensus](#achieving-consensus) sections, the servers in a -ZooKeeper ensemble require consistent configuration in order to elect a leader +[Achieving Consensus](#achieving-consensus) sections, the servers in a +ZooKeeper ensemble require consistent configuration in order to elect a leader and form a quorum. They also require consistent configuration of the Zab protocol -in order for the protocol to work correctly over a network. In our example we -achive consistent configuration by embedding the configuration directly into +in order for the protocol to work correctly over a network. In our example we +achieve consistent configuration by embedding the configuration directly into the manifest. Get the `zk` StatefulSet. From e07add216aff4aad2b6afa6868e4dc7119af2daf Mon Sep 17 00:00:00 2001 From: Joseph Herlant Date: Thu, 8 Feb 2018 15:52:51 -0800 Subject: [PATCH 097/329] Fix minor typo (#7310) --- docs/tasks/administer-cluster/out-of-resource.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/administer-cluster/out-of-resource.md b/docs/tasks/administer-cluster/out-of-resource.md index f43791fdbe..450bb72627 100644 --- a/docs/tasks/administer-cluster/out-of-resource.md +++ b/docs/tasks/administer-cluster/out-of-resource.md @@ -80,7 +80,7 @@ where: * `eviction-signal` is an eviction signal token as defined in the previous table. * `operator` is the desired relational operator, such as `<` (less than). -* `quantity` is the eviction threshhold quantity, such as `1Gi`. These tokens must +* `quantity` is the eviction threshold quantity, such as `1Gi`. These tokens must match the quantity representation used by Kubernetes. An eviction threshold can also be expressed as a percentage using the `%` token. From d61f235fd6a3ba82b223bad0f97adee4a9c2cdbb Mon Sep 17 00:00:00 2001 From: "Tim Allclair (St. Clair)" Date: Thu, 8 Feb 2018 17:44:51 -0800 Subject: [PATCH 098/329] Fix PSP example command (#7309) --- docs/concepts/policy/pod-security-policy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/policy/pod-security-policy.md b/docs/concepts/policy/pod-security-policy.md index e8177afa2a..39064901b9 100644 --- a/docs/concepts/policy/pod-security-policy.md +++ b/docs/concepts/policy/pod-security-policy.md @@ -273,7 +273,7 @@ Error from server (Forbidden): error when creating "STDIN": pods "privileged" is Delete the pod before moving on: ```shell -$ kubectl-user delete pause +$ kubectl-user delete pod pause ``` ### Run another pod From a711bd8268d19a2d0741f4092bcb81f943ec622c Mon Sep 17 00:00:00 2001 From: Steve Perry Date: Thu, 8 Feb 2018 19:22:52 -0800 Subject: [PATCH 099/329] Remove obsolete reference files. (#7315) --- .../apps/v1beta1/definitions.html | 4099 - docs/api-reference/batch/v1/definitions.html | 4033 - .../extensions/v1beta1/definitions.html | 6475 - docs/api-reference/v1.9/index.html | 103420 --------------- docs/api-reference/v1.9/navData.js | 1 - .../bootstrap/dist/css/bootstrap.min.css | 6 - .../font-awesome/css/font-awesome.css | 2337 - .../font-awesome/css/font-awesome.css.map | 7 - .../font-awesome/css/font-awesome.min.css | 4 - .../font-awesome/fonts/FontAwesome.otf | Bin 134808 -> 0 bytes .../fonts/fontawesome-webfont.eot | Bin 165742 -> 0 bytes .../fonts/fontawesome-webfont.svg | 2671 - .../fonts/fontawesome-webfont.ttf | Bin 165548 -> 0 bytes .../fonts/fontawesome-webfont.woff | Bin 98024 -> 0 bytes .../fonts/fontawesome-webfont.woff2 | Bin 77160 -> 0 bytes .../highlight.js/styles/default.css | 99 - .../jquery.scrollto/jquery.scrollTo.min.js | 7 - .../node_modules/jquery/dist/jquery.min.js | 4 - docs/api-reference/v1.9/scroll.js | 196 - docs/api-reference/v1.9/stylesheet.css | 269 - docs/api-reference/v1.9/tabvisibility.js | 27 - 21 files changed, 123655 deletions(-) delete mode 100755 docs/api-reference/apps/v1beta1/definitions.html delete mode 100755 docs/api-reference/batch/v1/definitions.html delete mode 100755 docs/api-reference/extensions/v1beta1/definitions.html delete mode 100644 docs/api-reference/v1.9/index.html delete mode 100644 docs/api-reference/v1.9/navData.js delete mode 100644 docs/api-reference/v1.9/node_modules/bootstrap/dist/css/bootstrap.min.css delete mode 100644 docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.css delete mode 100644 docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.css.map delete mode 100644 docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.min.css delete mode 100644 docs/api-reference/v1.9/node_modules/font-awesome/fonts/FontAwesome.otf delete mode 100644 docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.eot delete mode 100644 docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.svg delete mode 100644 docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.ttf delete mode 100644 docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.woff delete mode 100644 docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 delete mode 100644 docs/api-reference/v1.9/node_modules/highlight.js/styles/default.css delete mode 100644 docs/api-reference/v1.9/node_modules/jquery.scrollto/jquery.scrollTo.min.js delete mode 100644 docs/api-reference/v1.9/node_modules/jquery/dist/jquery.min.js delete mode 100644 docs/api-reference/v1.9/scroll.js delete mode 100644 docs/api-reference/v1.9/stylesheet.css delete mode 100644 docs/api-reference/v1.9/tabvisibility.js diff --git a/docs/api-reference/apps/v1beta1/definitions.html b/docs/api-reference/apps/v1beta1/definitions.html deleted file mode 100755 index 7043dfcba4..0000000000 --- a/docs/api-reference/apps/v1beta1/definitions.html +++ /dev/null @@ -1,4099 +0,0 @@ ---- ---- - - - - - - -Top Level API Objects - - - -
    -
    -

    Top Level API Objects

    - -
    -
    -

    Definitions

    -
    -
    -

    v1.PhotonPersistentDiskVolumeSource

    -
    -

    Represents a Photon Controller persistent disk resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdID

    ID that identifies Photon Controller persistent disk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    versioned.Event

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    true

    string

    object

    true

    string

    - -
    -
    -

    v1.Preconditions

    -
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    uid

    Specifies the target UID.

    false

    types.UID

    - -
    -
    -

    v1.SELinuxOptions

    -
    -

    SELinuxOptions are the labels to be applied to the container

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    user

    User is a SELinux user label that applies to the container.

    false

    string

    role

    Role is a SELinux role label that applies to the container.

    false

    string

    type

    Type is a SELinux type label that applies to the container.

    false

    string

    level

    Level is SELinux level label that applies to the container.

    false

    string

    - -
    -
    -

    v1.ObjectFieldSelector

    -
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    false

    string

    fieldPath

    Path of the field to select in the specified API version.

    true

    string

    - -
    -
    -

    v1.VolumeMount

    -
    -

    VolumeMount describes a mounting of a Volume within a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must match the Name of a Volume.

    true

    string

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    false

    boolean

    false

    mountPath

    Path within the container at which the volume should be mounted. Must not contain :.

    true

    string

    subPath

    Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root).

    false

    string

    - -
    -
    -

    v1.NFSVolumeSource

    -
    -

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    server

    Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    path

    Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.PersistentVolumeClaimSpec

    -
    -

    PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    accessModes

    AccessModes contains the desired access modes the volume should have. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes-1

    false

    v1.PersistentVolumeAccessMode array

    selector

    A label query over volumes to consider for binding.

    false

    unversioned.LabelSelector

    resources

    Resources represents the minimum resources the volume should have. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#resources

    false

    v1.ResourceRequirements

    volumeName

    VolumeName is the binding reference to the PersistentVolume backing this claim.

    false

    string

    - -
    -
    -

    v1.CephFSVolumeSource

    -
    -

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

    true

    string array

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    false

    string

    user

    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

    false

    string

    secretFile

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.HTTPHeader

    -
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The header field name

    true

    string

    value

    The header field value

    true

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetWWNs

    Required: FC target worldwide names (WWNs)

    true

    string array

    lun

    Required: FC target lun number

    true

    integer (int32)

    fsType

    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.

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.DownwardAPIVolumeSource

    -
    -

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    items

    Items is a list of downward API volume file

    false

    v1.DownwardAPIVolumeFile array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    unversioned.StatusCause

    -
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    A machine-readable description of the cause of the error. If this value is empty there is no information available.

    false

    string

    message

    A human-readable description of the cause of the error. This field may be presented as-is to a reader.

    false

    string

    field

    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
    -
    -Examples:
    - "name" - the field "name" on the current resource
    - "items[0].name" - the field "name" on the first array entry in "items"

    false

    string

    - -
    -
    -

    v1beta1.StatefulSetStatus

    -
    -

    StatefulSetStatus represents the current state of a StatefulSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    observedGeneration

    most recent generation observed by this autoscaler.

    false

    integer (int64)

    replicas

    Replicas is the number of actual replicas.

    true

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdName

    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

    true

    string

    fsType

    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

    false

    string

    partition

    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

    false

    integer (int32)

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

    false

    boolean

    false

    - -
    -
    -

    v1.TCPSocketAction

    -
    -

    TCPSocketAction describes an action based on opening a socket

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    port

    Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    unversioned.StatusDetails

    -
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

    false

    string

    group

    The group attribute of the resource associated with the status StatusReason.

    false

    string

    kind

    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    causes

    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

    false

    unversioned.StatusCause array

    retryAfterSeconds

    If specified, the time in seconds before the operation should be retried.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    repository

    Repository URL

    true

    string

    revision

    Commit hash for the specified revision.

    false

    string

    directory

    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.

    false

    string

    - -
    -
    -

    v1.HTTPGetAction

    -
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path to access on the HTTP server.

    false

    string

    port

    Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    false

    string

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

    false

    string

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    false

    v1.HTTPHeader array

    - -
    -
    -

    v1.Capabilities

    -
    -

    Adds and removes POSIX capabilities from running containers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    add

    Added capabilities

    false

    v1.Capability array

    drop

    Removed capabilities

    false

    v1.Capability array

    - -
    -
    -

    v1.LocalObjectReference

    -
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    - -
    -
    -

    v1.Container

    -
    -

    A single application container that you want to run within a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    true

    string

    image

    Docker image name. More info: http://kubernetes.io/docs/user-guide/images

    false

    string

    command

    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

    false

    string array

    args

    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

    false

    string array

    workingDir

    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.

    false

    string

    ports

    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.

    false

    v1.ContainerPort array

    env

    List of environment variables to set in the container. Cannot be updated.

    false

    v1.EnvVar array

    resources

    Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#resources

    false

    v1.ResourceRequirements

    volumeMounts

    Pod volumes to mount into the container’s filesystem. Cannot be updated.

    false

    v1.VolumeMount array

    livenessProbe

    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

    false

    v1.Probe

    readinessProbe

    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

    false

    v1.Probe

    lifecycle

    Actions that the management system should take in response to container lifecycle events. Cannot be updated.

    false

    v1.Lifecycle

    terminationMessagePath

    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.

    false

    string

    imagePullPolicy

    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

    false

    string

    securityContext

    Security options the pod should run with. More info: http://releases.k8s.io/HEAD/docs/design/security_context.md

    false

    v1.SecurityContext

    stdin

    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.

    false

    boolean

    false

    stdinOnce

    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

    false

    boolean

    false

    tty

    Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.PodSecurityContext

    -
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    seLinuxOptions

    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.

    false

    integer (int32) array

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:
    -
    -1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR’d with rw-rw

    false

    integer (int64)

    - -
    -
    -

    v1.ExecAction

    -
    -

    ExecAction describes a "run in container" action.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    command

    Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

    ', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

    false

    string array

    - -
    -
    -

    v1beta1.StatefulSetSpec

    -
    -

    A StatefulSetSpec is the specification of a StatefulSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.

    false

    integer (int32)

    selector

    Selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    unversioned.LabelSelector

    template

    Template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.

    true

    v1.PodTemplateSpec

    volumeClaimTemplates

    VolumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.

    false

    v1.PersistentVolumeClaim array

    serviceName

    ServiceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.

    true

    string

    - -
    -
    -

    v1.ObjectMeta

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

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

    false

    string

    generateName

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

    false

    string

    namespace

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

    false

    string

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    uid

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

    false

    string

    resourceVersion

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

    false

    string

    generation

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

    false

    integer (int64)

    creationTimestamp

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
    -
    -Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionTimestamp

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
    -
    -Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionGracePeriodSeconds

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

    false

    integer (int64)

    labels

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

    false

    object

    annotations

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

    false

    object

    ownerReferences

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

    false

    v1.OwnerReference array

    finalizers

    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

    false

    string array

    clusterName

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

    false

    string

    - -
    -
    -

    v1.OwnerReference

    -
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    API version of the referent.

    true

    string

    kind

    Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    true

    string

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    uid

    UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

    true

    string

    controller

    If true, this reference points to the managing controller.

    false

    boolean

    false

    - -
    -
    -

    types.UID

    - -
    -
    -

    v1.HostPathVolumeSource

    -
    -

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath

    true

    string

    - -
    -
    -

    v1.AzureFileVolumeSource

    -
    -

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    true

    string

    shareName

    Share Name

    true

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.ISCSIVolumeSource

    -
    -

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPortal

    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).

    true

    string

    iqn

    Target iSCSI Qualified Name.

    true

    string

    lun

    iSCSI target lun number.

    true

    integer (int32)

    iscsiInterface

    Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

    false

    string

    fsType

    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

    false

    string

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    false

    boolean

    false

    - -
    -
    -

    v1.EmptyDirVolumeSource

    -
    -

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    medium

    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

    false

    string

    - -
    -
    -

    unversioned.Patch

    -
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    -
    -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

    true

    string

    fsType

    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

    false

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.PersistentVolumeClaim

    -
    -

    PersistentVolumeClaim is a user’s request for and claim to a persistent volume

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired characteristics of a volume requested by a pod author. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimSpec

    status

    Status represents the current information/status of a persistent volume claim. Read-only. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimStatus

    - -
    -
    -

    v1.SecurityContext

    -
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capabilities

    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

    false

    v1.Capabilities

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

    false

    boolean

    false

    seLinuxOptions

    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false.

    false

    boolean

    false

    - -
    -
    -

    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).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    claimName

    ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims

    true

    string

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

    false

    boolean

    false

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

    true

    string

    fsType

    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

    false

    string

    partition

    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).

    false

    integer (int32)

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    datasetName

    Name of the dataset stored as metadata → name on the dataset for Flocker should be considered as deprecated

    false

    string

    datasetUUID

    UUID of the dataset. This is unique identifier of a Flocker dataset

    false

    string

    - -
    -
    -

    unversioned.ListMeta

    -
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    resourceVersion

    String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    - -
    -
    -

    v1.PersistentVolumeClaimStatus

    -
    -

    PersistentVolumeClaimStatus is the current status of a persistent volume claim.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    phase

    Phase represents the current phase of PersistentVolumeClaim.

    false

    string

    accessModes

    AccessModes contains the actual access modes the volume backing the PVC has. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes-1

    false

    v1.PersistentVolumeAccessMode array

    capacity

    Represents the actual resources of the underlying volume.

    false

    object

    - -
    -
    -

    v1.QuobyteVolumeSource

    -
    -

    Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    registry

    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

    true

    string

    volume

    Volume is a string that references an already created Quobyte volume by name.

    true

    string

    readOnly

    ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

    false

    boolean

    false

    user

    User to map volume access to Defaults to serivceaccount user

    false

    string

    group

    Group to map volume access to Default is no group

    false

    string

    - -
    -
    -

    unversioned.LabelSelector

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    matchLabels

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

    false

    object

    matchExpressions

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

    false

    unversioned.LabelSelectorRequirement array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    Name of the secret in the pod’s namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.EnvVar

    -
    -

    EnvVar represents an environment variable present in a Container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    true

    string

    value

    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".

    false

    string

    valueFrom

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

    false

    v1.EnvVarSource

    - -
    -
    -

    v1.PersistentVolumeAccessMode

    - -
    -
    -

    v1.ResourceRequirements

    -
    -

    ResourceRequirements describes the compute resource requirements.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

    false

    object

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

    false

    object

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    driver

    Driver is the name of the driver to use for this volume.

    true

    string

    fsType

    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.

    false

    string

    secretRef

    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.

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    options

    Optional: Extra command options if any.

    false

    object

    - -
    -
    -

    v1.EnvVarSource

    -
    -

    EnvVarSource represents a source for the value of an EnvVar.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    fieldRef

    Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    configMapKeyRef

    Selects a key of a ConfigMap.

    false

    v1.ConfigMapKeySelector

    secretKeyRef

    Selects a key of a secret in the pod’s namespace

    false

    v1.SecretKeySelector

    - -
    -
    -

    v1.PodTemplateSpec

    -
    -

    PodTemplateSpec describes the data a pod should have when created from a template

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    - -
    -
    -

    v1.KeyToPath

    -
    -

    Maps a string key to a path within a volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    The key to project.

    true

    string

    path

    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 ...

    true

    string

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.AzureDiskVolumeSource

    -
    -

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    diskName

    The Name of the data disk in the blob storage

    true

    string

    diskURI

    The URI the data disk in the blob storage

    true

    string

    cachingMode

    Host Caching mode: None, Read Only, Read Write.

    false

    v1.AzureDataDiskCachingMode

    fsType

    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.

    false

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.VsphereVirtualDiskVolumeSource

    -
    -

    Represents a vSphere volume resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumePath

    Path that identifies vSphere volume vmdk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1.DeleteOptions

    -
    -

    DeleteOptions may be provided when deleting an API object

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    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.

    false

    integer (int64)

    preconditions

    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

    false

    v1.Preconditions

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    false

    - -
    -
    -

    v1beta1.StatefulSet

    -
    -

    StatefulSet represents a set of pods with consistent identities. Identities are defined as:
    - - Network: A single stable DNS and hostname.
    - - Storage: As many VolumeClaims as requested.
    -The StatefulSet guarantees that a given network identity will always map to the same storage identity.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired identities of pods in this set.

    false

    v1beta1.StatefulSetSpec

    status

    Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.

    false

    v1beta1.StatefulSetStatus

    - -
    -
    -

    v1.Volume

    -
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    hostPath

    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

    false

    v1.HostPathVolumeSource

    emptyDir

    EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

    false

    v1.EmptyDirVolumeSource

    gcePersistentDisk

    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

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    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

    false

    v1.AWSElasticBlockStoreVolumeSource

    gitRepo

    GitRepo represents a git repository at a particular revision.

    false

    v1.GitRepoVolumeSource

    secret

    Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    v1.SecretVolumeSource

    nfs

    NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    false

    v1.NFSVolumeSource

    iscsi

    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

    false

    v1.ISCSIVolumeSource

    glusterfs

    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

    false

    v1.GlusterfsVolumeSource

    persistentVolumeClaim

    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimVolumeSource

    rbd

    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

    false

    v1.RBDVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    cinder

    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

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    flocker

    Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

    false

    v1.FlockerVolumeSource

    downwardAPI

    DownwardAPI represents downward API about the pod that should populate this volume

    false

    v1.DownwardAPIVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    configMap

    ConfigMap represents a configMap that should populate this volume

    false

    v1.ConfigMapVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    quobyte

    Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

    false

    v1.QuobyteVolumeSource

    azureDisk

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    false

    v1.AzureDiskVolumeSource

    photonPersistentDisk

    PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine

    false

    v1.PhotonPersistentDiskVolumeSource

    - -
    -
    -

    v1.ResourceFieldSelector

    -
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    containerName

    Container name: required for volumes, optional for env vars

    false

    string

    resource

    Required: resource to select

    true

    string

    divisor

    Specifies the output format of the exposed resources, defaults to "1"

    false

    string

    - -
    -
    -

    v1.Probe

    -
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    initialDelaySeconds

    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

    false

    integer (int32)

    timeoutSeconds

    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

    false

    integer (int32)

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    false

    integer (int32)

    successThreshold

    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.

    false

    integer (int32)

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    false

    integer (int32)

    - -
    -
    -

    unversioned.LabelSelectorRequirement

    -
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    key is the label key that the selector applies to.

    true

    string

    operator

    operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

    true

    string

    values

    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    false

    string array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    groupVersion

    groupVersion is the group and version this APIResourceList is for.

    true

    string

    resources

    resources contains the name of the resources and if they are namespaced.

    true

    unversioned.APIResource array

    - -
    -
    -

    v1.SecretKeySelector

    -
    -

    SecretKeySelector selects a key of a Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key of the secret to select from. Must be a valid secret key.

    true

    string

    - -
    -
    -

    unversioned.Status

    -
    -

    Status is a return value for calls that don’t return other objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    status

    Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    reason

    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.

    false

    string

    details

    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.

    false

    unversioned.StatusDetails

    code

    Suggested HTTP return code for this status, 0 if not set.

    false

    integer (int32)

    - -
    -
    -

    v1.Capability

    - -
    -
    -

    unversioned.APIResource

    -
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    name is the name of the resource.

    true

    string

    namespaced

    namespaced indicates if a resource is namespaced or not.

    true

    boolean

    false

    kind

    kind is the kind for the resource (e.g. Foo is the kind for a resource foo)

    true

    string

    - -
    -
    -

    v1.DownwardAPIVolumeFile

    -
    -

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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 ..

    true

    string

    fieldRef

    Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.PodSpec

    -
    -

    PodSpec is a description of a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: http://kubernetes.io/docs/user-guide/volumes

    false

    v1.Volume array

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers

    true

    v1.Container array

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy

    false

    string

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    false

    integer (int64)

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    false

    integer (int64)

    dnsPolicy

    Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

    false

    string

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://kubernetes.io/docs/user-guide/node-selection

    false

    object

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md

    false

    string

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    false

    string

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    false

    string

    hostNetwork

    Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    false

    boolean

    false

    hostPID

    Use the host’s pid namespace. Optional: Default to false.

    false

    boolean

    false

    hostIPC

    Use the host’s ipc namespace. Optional: Default to false.

    false

    boolean

    false

    securityContext

    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

    false

    v1.PodSecurityContext

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod

    false

    v1.LocalObjectReference array

    hostname

    Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value.

    false

    string

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    false

    string

    - -
    -
    -

    v1.ContainerPort

    -
    -

    ContainerPort represents a network port in a single container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    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.

    false

    string

    hostPort

    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.

    false

    integer (int32)

    containerPort

    Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

    true

    integer (int32)

    protocol

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".

    false

    string

    hostIP

    What host IP to bind the external port to.

    false

    string

    - -
    -
    -

    v1.Lifecycle

    -
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    postStart

    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks#hook-details

    false

    v1.Handler

    preStop

    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks#hook-details

    false

    v1.Handler

    - -
    -
    -

    v1.ConfigMapKeySelector

    -
    -

    Selects a key from a ConfigMap.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key to select.

    true

    string

    - -
    -
    -

    v1.Handler

    -
    -

    Handler defines a specific action that should be taken

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    - -
    -
    -

    v1.GlusterfsVolumeSource

    -
    -

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    path

    Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1beta1.StatefulSetList

    -
    -

    StatefulSetList is a collection of StatefulSets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    false

    unversioned.ListMeta

    items

    true

    v1beta1.StatefulSet array

    - -
    -
    -

    v1.AzureDataDiskCachingMode

    - -
    -
    -

    v1.RBDVolumeSource

    -
    -

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string array

    image

    The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string

    fsType

    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

    false

    string

    pool

    The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.

    false

    string

    user

    The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    false

    string

    keyring

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    any

    -
    -

    Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

    -
    -
    -
    -
    -
    - - - diff --git a/docs/api-reference/batch/v1/definitions.html b/docs/api-reference/batch/v1/definitions.html deleted file mode 100755 index 20ecb4cf03..0000000000 --- a/docs/api-reference/batch/v1/definitions.html +++ /dev/null @@ -1,4033 +0,0 @@ ---- -title: Batch API Definitions ---- - - - - - - - -Top Level API Objects - - - -
    -
    -

    Top Level API Objects

    -
    -
    - -
    -
    -
    -
    -

    Definitions

    -
    -
    -

    v1.PhotonPersistentDiskVolumeSource

    -
    -

    Represents a Photon Controller persistent disk resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdID

    ID that identifies Photon Controller persistent disk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    versioned.Event

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    true

    string

    object

    true

    string

    - -
    -
    -

    v1.Preconditions

    -
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    uid

    Specifies the target UID.

    false

    types.UID

    - -
    -
    -

    v1.SELinuxOptions

    -
    -

    SELinuxOptions are the labels to be applied to the container

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    user

    User is a SELinux user label that applies to the container.

    false

    string

    role

    Role is a SELinux role label that applies to the container.

    false

    string

    type

    Type is a SELinux type label that applies to the container.

    false

    string

    level

    Level is SELinux level label that applies to the container.

    false

    string

    - -
    -
    -

    v1.ObjectFieldSelector

    -
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    false

    string

    fieldPath

    Path of the field to select in the specified API version.

    true

    string

    - -
    -
    -

    v1.VolumeMount

    -
    -

    VolumeMount describes a mounting of a Volume within a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must match the Name of a Volume.

    true

    string

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    false

    boolean

    false

    mountPath

    Path within the container at which the volume should be mounted. Must not contain :.

    true

    string

    subPath

    Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root).

    false

    string

    - -
    -
    -

    v1.NFSVolumeSource

    -
    -

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    server

    Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    path

    Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.CephFSVolumeSource

    -
    -

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

    true

    string array

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    false

    string

    user

    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

    false

    string

    secretFile

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.HTTPHeader

    -
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The header field name

    true

    string

    value

    The header field value

    true

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetWWNs

    Required: FC target worldwide names (WWNs)

    true

    string array

    lun

    Required: FC target lun number

    true

    integer (int32)

    fsType

    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.

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.DownwardAPIVolumeSource

    -
    -

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    items

    Items is a list of downward API volume file

    false

    v1.DownwardAPIVolumeFile array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    unversioned.StatusCause

    -
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    A machine-readable description of the cause of the error. If this value is empty there is no information available.

    false

    string

    message

    A human-readable description of the cause of the error. This field may be presented as-is to a reader.

    false

    string

    field

    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
    -
    -Examples:
    - "name" - the field "name" on the current resource
    - "items[0].name" - the field "name" on the first array entry in "items"

    false

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdName

    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

    true

    string

    fsType

    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

    false

    string

    partition

    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

    false

    integer (int32)

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

    false

    boolean

    false

    - -
    -
    -

    v1.TCPSocketAction

    -
    -

    TCPSocketAction describes an action based on opening a socket

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    port

    Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    unversioned.StatusDetails

    -
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

    false

    string

    group

    The group attribute of the resource associated with the status StatusReason.

    false

    string

    kind

    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    causes

    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

    false

    unversioned.StatusCause array

    retryAfterSeconds

    If specified, the time in seconds before the operation should be retried.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    repository

    Repository URL

    true

    string

    revision

    Commit hash for the specified revision.

    false

    string

    directory

    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.

    false

    string

    - -
    -
    -

    v1.HTTPGetAction

    -
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path to access on the HTTP server.

    false

    string

    port

    Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    false

    string

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

    false

    string

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    false

    v1.HTTPHeader array

    - -
    -
    -

    v1.Capabilities

    -
    -

    Adds and removes POSIX capabilities from running containers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    add

    Added capabilities

    false

    v1.Capability array

    drop

    Removed capabilities

    false

    v1.Capability array

    - -
    -
    -

    v1.LocalObjectReference

    -
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    - -
    -
    -

    v1.Container

    -
    -

    A single application container that you want to run within a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    true

    string

    image

    Docker image name. More info: http://kubernetes.io/docs/user-guide/images

    false

    string

    command

    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

    false

    string array

    args

    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

    false

    string array

    workingDir

    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.

    false

    string

    ports

    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.

    false

    v1.ContainerPort array

    env

    List of environment variables to set in the container. Cannot be updated.

    false

    v1.EnvVar array

    resources

    Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#resources

    false

    v1.ResourceRequirements

    volumeMounts

    Pod volumes to mount into the container’s filesystem. Cannot be updated.

    false

    v1.VolumeMount array

    livenessProbe

    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

    false

    v1.Probe

    readinessProbe

    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

    false

    v1.Probe

    lifecycle

    Actions that the management system should take in response to container lifecycle events. Cannot be updated.

    false

    v1.Lifecycle

    terminationMessagePath

    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.

    false

    string

    imagePullPolicy

    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

    false

    string

    securityContext

    Security options the pod should run with. More info: http://releases.k8s.io/HEAD/docs/design/security_context.md

    false

    v1.SecurityContext

    stdin

    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.

    false

    boolean

    false

    stdinOnce

    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

    false

    boolean

    false

    tty

    Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.PodSecurityContext

    -
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    seLinuxOptions

    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.

    false

    integer (int32) array

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:
    -
    -1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR’d with rw-rw

    false

    integer (int64)

    - -
    -
    -

    v1.ExecAction

    -
    -

    ExecAction describes a "run in container" action.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    command

    Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

    ', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

    false

    string array

    - -
    -
    -

    v1.JobStatus

    -
    -

    JobStatus represents the current state of a Job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    conditions

    Conditions represent the latest available observations of an object’s current state. More info: http://kubernetes.io/docs/user-guide/jobs

    false

    v1.JobCondition array

    startTime

    StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string (date-time)

    completionTime

    CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string (date-time)

    active

    Active is the number of actively running pods.

    false

    integer (int32)

    succeeded

    Succeeded is the number of pods which reached Phase Succeeded.

    false

    integer (int32)

    failed

    Failed is the number of pods which reached Phase Failed.

    false

    integer (int32)

    - -
    -
    -

    v1.ObjectMeta

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

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

    false

    string

    generateName

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

    false

    string

    namespace

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

    false

    string

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    uid

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

    false

    string

    resourceVersion

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

    false

    string

    generation

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

    false

    integer (int64)

    creationTimestamp

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
    -
    -Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionTimestamp

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
    -
    -Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionGracePeriodSeconds

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

    false

    integer (int64)

    labels

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

    false

    object

    annotations

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

    false

    object

    ownerReferences

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

    false

    v1.OwnerReference array

    finalizers

    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

    false

    string array

    clusterName

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

    false

    string

    - -
    -
    -

    v1.OwnerReference

    -
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    API version of the referent.

    true

    string

    kind

    Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    true

    string

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    uid

    UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

    true

    string

    controller

    If true, this reference points to the managing controller.

    false

    boolean

    false

    - -
    -
    -

    types.UID

    - -
    -
    -

    v1.HostPathVolumeSource

    -
    -

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath

    true

    string

    - -
    -
    -

    v1.AzureFileVolumeSource

    -
    -

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    true

    string

    shareName

    Share Name

    true

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.ISCSIVolumeSource

    -
    -

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPortal

    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).

    true

    string

    iqn

    Target iSCSI Qualified Name.

    true

    string

    lun

    iSCSI target lun number.

    true

    integer (int32)

    iscsiInterface

    Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

    false

    string

    fsType

    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

    false

    string

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    false

    boolean

    false

    - -
    -
    -

    v1.EmptyDirVolumeSource

    -
    -

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    medium

    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

    false

    string

    - -
    -
    -

    unversioned.Patch

    -
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    -
    -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

    true

    string

    fsType

    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

    false

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.SecurityContext

    -
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capabilities

    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

    false

    v1.Capabilities

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

    false

    boolean

    false

    seLinuxOptions

    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false.

    false

    boolean

    false

    - -
    -
    -

    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).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    claimName

    ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims

    true

    string

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

    false

    boolean

    false

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

    true

    string

    fsType

    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

    false

    string

    partition

    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).

    false

    integer (int32)

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    datasetName

    Name of the dataset stored as metadata → name on the dataset for Flocker should be considered as deprecated

    false

    string

    datasetUUID

    UUID of the dataset. This is unique identifier of a Flocker dataset

    false

    string

    - -
    -
    -

    unversioned.ListMeta

    -
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    resourceVersion

    String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    - -
    -
    -

    v1.QuobyteVolumeSource

    -
    -

    Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    registry

    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

    true

    string

    volume

    Volume is a string that references an already created Quobyte volume by name.

    true

    string

    readOnly

    ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

    false

    boolean

    false

    user

    User to map volume access to Defaults to serivceaccount user

    false

    string

    group

    Group to map volume access to Default is no group

    false

    string

    - -
    -
    -

    v1.Job

    -
    -

    Job represents the configuration of a single job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    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

    false

    v1.JobSpec

    status

    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

    false

    v1.JobStatus

    - -
    -
    -

    unversioned.LabelSelector

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    matchLabels

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

    false

    object

    matchExpressions

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

    false

    unversioned.LabelSelectorRequirement array

    - -
    -
    -

    v1.JobCondition

    -
    -

    JobCondition describes current state of a job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of job condition, Complete or Failed.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastProbeTime

    Last time the condition was checked.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transit from one status to another.

    false

    string (date-time)

    reason

    (brief) reason for the condition’s last transition.

    false

    string

    message

    Human readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.JobList

    -
    -

    JobList is a collection of jobs.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of Job.

    true

    v1.Job array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    Name of the secret in the pod’s namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.EnvVar

    -
    -

    EnvVar represents an environment variable present in a Container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    true

    string

    value

    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".

    false

    string

    valueFrom

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

    false

    v1.EnvVarSource

    - -
    -
    -

    v1.ResourceRequirements

    -
    -

    ResourceRequirements describes the compute resource requirements.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

    false

    object

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

    false

    object

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    driver

    Driver is the name of the driver to use for this volume.

    true

    string

    fsType

    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.

    false

    string

    secretRef

    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.

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    options

    Optional: Extra command options if any.

    false

    object

    - -
    -
    -

    v1.EnvVarSource

    -
    -

    EnvVarSource represents a source for the value of an EnvVar.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    fieldRef

    Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    configMapKeyRef

    Selects a key of a ConfigMap.

    false

    v1.ConfigMapKeySelector

    secretKeyRef

    Selects a key of a secret in the pod’s namespace

    false

    v1.SecretKeySelector

    - -
    -
    -

    v1.PodTemplateSpec

    -
    -

    PodTemplateSpec describes the data a pod should have when created from a template

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    - -
    -
    -

    v1.KeyToPath

    -
    -

    Maps a string key to a path within a volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    The key to project.

    true

    string

    path

    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 ...

    true

    string

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.AzureDiskVolumeSource

    -
    -

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    diskName

    The Name of the data disk in the blob storage

    true

    string

    diskURI

    The URI the data disk in the blob storage

    true

    string

    cachingMode

    Host Caching mode: None, Read Only, Read Write.

    false

    v1.AzureDataDiskCachingMode

    fsType

    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.

    false

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.VsphereVirtualDiskVolumeSource

    -
    -

    Represents a vSphere volume resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumePath

    Path that identifies vSphere volume vmdk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1.JobSpec

    -
    -

    JobSpec describes how the job execution will look like.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    parallelism

    Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://kubernetes.io/docs/user-guide/jobs

    false

    integer (int32)

    completions

    Completions specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: http://kubernetes.io/docs/user-guide/jobs

    false

    integer (int32)

    activeDeadlineSeconds

    Optional duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer

    false

    integer (int64)

    selector

    Selector is a label query over pods that should match the pod count. Normally, the system sets this field for you. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    unversioned.LabelSelector

    manualSelector

    ManualSelector controls generation of pod labels and pod selectors. Leave manualSelector unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API. More info: http://releases.k8s.io/HEAD/docs/design/selector-generation.md

    false

    boolean

    false

    template

    Template is the object that describes the pod that will be created when executing a job. More info: http://kubernetes.io/docs/user-guide/jobs

    true

    v1.PodTemplateSpec

    - -
    -
    -

    v1.DeleteOptions

    -
    -

    DeleteOptions may be provided when deleting an API object

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    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.

    false

    integer (int64)

    preconditions

    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

    false

    v1.Preconditions

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    false

    - -
    -
    -

    v1.Volume

    -
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    hostPath

    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

    false

    v1.HostPathVolumeSource

    emptyDir

    EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

    false

    v1.EmptyDirVolumeSource

    gcePersistentDisk

    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

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    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

    false

    v1.AWSElasticBlockStoreVolumeSource

    gitRepo

    GitRepo represents a git repository at a particular revision.

    false

    v1.GitRepoVolumeSource

    secret

    Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    v1.SecretVolumeSource

    nfs

    NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    false

    v1.NFSVolumeSource

    iscsi

    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

    false

    v1.ISCSIVolumeSource

    glusterfs

    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

    false

    v1.GlusterfsVolumeSource

    persistentVolumeClaim

    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimVolumeSource

    rbd

    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

    false

    v1.RBDVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    cinder

    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

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    flocker

    Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

    false

    v1.FlockerVolumeSource

    downwardAPI

    DownwardAPI represents downward API about the pod that should populate this volume

    false

    v1.DownwardAPIVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    configMap

    ConfigMap represents a configMap that should populate this volume

    false

    v1.ConfigMapVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    quobyte

    Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

    false

    v1.QuobyteVolumeSource

    azureDisk

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    false

    v1.AzureDiskVolumeSource

    photonPersistentDisk

    PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine

    false

    v1.PhotonPersistentDiskVolumeSource

    - -
    -
    -

    v1.ResourceFieldSelector

    -
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    containerName

    Container name: required for volumes, optional for env vars

    false

    string

    resource

    Required: resource to select

    true

    string

    divisor

    Specifies the output format of the exposed resources, defaults to "1"

    false

    string

    - -
    -
    -

    v1.Probe

    -
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    initialDelaySeconds

    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

    false

    integer (int32)

    timeoutSeconds

    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

    false

    integer (int32)

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    false

    integer (int32)

    successThreshold

    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.

    false

    integer (int32)

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    false

    integer (int32)

    - -
    -
    -

    unversioned.LabelSelectorRequirement

    -
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    key is the label key that the selector applies to.

    true

    string

    operator

    operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

    true

    string

    values

    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    false

    string array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    groupVersion

    groupVersion is the group and version this APIResourceList is for.

    true

    string

    resources

    resources contains the name of the resources and if they are namespaced.

    true

    unversioned.APIResource array

    - -
    -
    -

    v1.SecretKeySelector

    -
    -

    SecretKeySelector selects a key of a Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key of the secret to select from. Must be a valid secret key.

    true

    string

    - -
    -
    -

    unversioned.Status

    -
    -

    Status is a return value for calls that don’t return other objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    status

    Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    reason

    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.

    false

    string

    details

    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.

    false

    unversioned.StatusDetails

    code

    Suggested HTTP return code for this status, 0 if not set.

    false

    integer (int32)

    - -
    -
    -

    v1.Capability

    - -
    -
    -

    unversioned.APIResource

    -
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    name is the name of the resource.

    true

    string

    namespaced

    namespaced indicates if a resource is namespaced or not.

    true

    boolean

    false

    kind

    kind is the kind for the resource (e.g. Foo is the kind for a resource foo)

    true

    string

    - -
    -
    -

    v1.DownwardAPIVolumeFile

    -
    -

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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 ..

    true

    string

    fieldRef

    Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.PodSpec

    -
    -

    PodSpec is a description of a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: http://kubernetes.io/docs/user-guide/volumes

    false

    v1.Volume array

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers

    true

    v1.Container array

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy

    false

    string

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    false

    integer (int64)

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    false

    integer (int64)

    dnsPolicy

    Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

    false

    string

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://kubernetes.io/docs/user-guide/node-selection

    false

    object

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md

    false

    string

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    false

    string

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    false

    string

    hostNetwork

    Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    false

    boolean

    false

    hostPID

    Use the host’s pid namespace. Optional: Default to false.

    false

    boolean

    false

    hostIPC

    Use the host’s ipc namespace. Optional: Default to false.

    false

    boolean

    false

    securityContext

    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

    false

    v1.PodSecurityContext

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod

    false

    v1.LocalObjectReference array

    hostname

    Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value.

    false

    string

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    false

    string

    - -
    -
    -

    v1.ContainerPort

    -
    -

    ContainerPort represents a network port in a single container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    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.

    false

    string

    hostPort

    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.

    false

    integer (int32)

    containerPort

    Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

    true

    integer (int32)

    protocol

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".

    false

    string

    hostIP

    What host IP to bind the external port to.

    false

    string

    - -
    -
    -

    v1.Lifecycle

    -
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    postStart

    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks#hook-details

    false

    v1.Handler

    preStop

    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks#hook-details

    false

    v1.Handler

    - -
    -
    -

    v1.ConfigMapKeySelector

    -
    -

    Selects a key from a ConfigMap.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key to select.

    true

    string

    - -
    -
    -

    v1.Handler

    -
    -

    Handler defines a specific action that should be taken

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    - -
    -
    -

    v1.GlusterfsVolumeSource

    -
    -

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    path

    Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.AzureDataDiskCachingMode

    - -
    -
    -

    v1.RBDVolumeSource

    -
    -

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string array

    image

    The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string

    fsType

    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

    false

    string

    pool

    The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.

    false

    string

    user

    The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    false

    string

    keyring

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    any

    -
    -

    Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

    -
    -
    -
    -
    -
    - - - diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html deleted file mode 100755 index 7830bf5666..0000000000 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ /dev/null @@ -1,6475 +0,0 @@ ---- -title: Extensions API Definitions ---- - - - - - - - -Top Level API Objects - - - -
    - -
    -

    Definitions

    -
    -
    -

    v1beta1.DeploymentStatus

    -
    -

    DeploymentStatus is the most recently observed status of the Deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    observedGeneration

    The generation observed by the deployment controller.

    false

    integer (int64)

    replicas

    Total number of non-terminated pods targeted by this deployment (their labels match the selector).

    false

    integer (int32)

    updatedReplicas

    Total number of non-terminated pods targeted by this deployment that have the desired template spec.

    false

    integer (int32)

    availableReplicas

    Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

    false

    integer (int32)

    unavailableReplicas

    Total number of unavailable pods targeted by this deployment.

    false

    integer (int32)

    conditions

    Represents the latest available observations of a deployment’s current state.

    false

    v1beta1.DeploymentCondition array

    - -
    -
    -

    v1beta1.DaemonSetStatus

    -
    -

    DaemonSetStatus represents the current status of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    currentNumberScheduled

    CurrentNumberScheduled is the number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md

    true

    integer (int32)

    numberMisscheduled

    NumberMisscheduled is the number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md

    true

    integer (int32)

    desiredNumberScheduled

    DesiredNumberScheduled is the total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md

    true

    integer (int32)

    numberReady

    NumberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.

    true

    integer (int32)

    - -
    -
    -

    v1beta1.Job

    -
    -

    Job represents the configuration of a single job. DEPRECATED: extensions/v1beta1.Job is deprecated, use batch/v1.Job instead.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    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

    false

    v1beta1.JobSpec

    status

    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

    false

    v1beta1.JobStatus

    - -
    -
    -

    v1.Preconditions

    -
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    uid

    Specifies the target UID.

    false

    types.UID

    - -
    -
    -

    v1.ObjectFieldSelector

    -
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    false

    string

    fieldPath

    Path of the field to select in the specified API version.

    true

    string

    - -
    -
    -

    v1.SELinuxOptions

    -
    -

    SELinuxOptions are the labels to be applied to the container

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    user

    User is a SELinux user label that applies to the container.

    false

    string

    role

    Role is a SELinux role label that applies to the container.

    false

    string

    type

    Type is a SELinux type label that applies to the container.

    false

    string

    level

    Level is SELinux level label that applies to the container.

    false

    string

    - -
    -
    -

    v1.VolumeMount

    -
    -

    VolumeMount describes a mounting of a Volume within a container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    This must match the Name of a Volume.

    true

    string

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    false

    boolean

    false

    mountPath

    Path within the container at which the volume should be mounted. Must not contain :.

    true

    string

    subPath

    Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root).

    false

    string

    - -
    -
    -

    v1beta1.IngressSpec

    -
    -

    IngressSpec describes the Ingress the user wishes to exist.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    backend

    A default backend capable of servicing requests that don’t match any rule. At least one of backend or rules must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.

    false

    v1beta1.IngressBackend

    tls

    TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.

    false

    v1beta1.IngressTLS array

    rules

    A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.

    false

    v1beta1.IngressRule array

    - -
    -
    -

    v1beta1.IngressBackend

    -
    -

    IngressBackend describes all endpoints for a given service and port.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    serviceName

    Specifies the name of the referenced service.

    true

    string

    servicePort

    Specifies the port of the referenced service.

    true

    string

    - -
    -
    -

    v1beta1.ReplicaSetList

    -
    -

    ReplicaSetList is a collection of ReplicaSets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    items

    List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller

    true

    v1beta1.ReplicaSet array

    - -
    -
    -

    v1.CephFSVolumeSource

    -
    -

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

    true

    string array

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    false

    string

    user

    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

    false

    string

    secretFile

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1beta1.IngressStatus

    -
    -

    IngressStatus describe the current state of the Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    loadBalancer

    LoadBalancer contains the current status of the load-balancer.

    false

    v1.LoadBalancerStatus

    - -
    -
    -

    v1.DownwardAPIVolumeSource

    -
    -

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    items

    Items is a list of downward API volume file

    false

    v1.DownwardAPIVolumeFile array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    unversioned.StatusCause

    -
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    reason

    A machine-readable description of the cause of the error. If this value is empty there is no information available.

    false

    string

    message

    A human-readable description of the cause of the error. This field may be presented as-is to a reader.

    false

    string

    field

    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
    -
    -Examples:
    - "name" - the field "name" on the current resource
    - "items[0].name" - the field "name" on the first array entry in "items"

    false

    string

    - -
    -
    -

    v1beta1.ReplicaSetCondition

    -
    -

    ReplicaSetCondition describes the state of a replica set at a certain point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of replica set condition.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastTransitionTime

    The last time the condition transitioned from one status to another.

    false

    string (date-time)

    reason

    The reason for the condition’s last transition.

    false

    string

    message

    A human readable message indicating details about the transition.

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicyList

    -
    -

    Network Policy List is a list of NetworkPolicy objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is a list of schema objects.

    true

    v1beta1.NetworkPolicy array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdName

    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

    true

    string

    fsType

    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

    false

    string

    partition

    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

    false

    integer (int32)

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

    false

    boolean

    false

    - -
    -
    -

    v1beta1.RollingUpdateDeployment

    -
    -

    Spec to control the desired behavior of rolling update.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    maxUnavailable

    The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding up. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.

    false

    string

    maxSurge

    The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.

    false

    string

    - -
    -
    -

    v1beta1.HTTPIngressRuleValue

    -
    -

    HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> → 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 #.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    paths

    A collection of paths that map requests to backends.

    true

    v1beta1.HTTPIngressPath array

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    repository

    Repository URL

    true

    string

    revision

    Commit hash for the specified revision.

    false

    string

    directory

    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.

    false

    string

    - -
    -
    -

    v1beta1.JobStatus

    -
    -

    JobStatus represents the current state of a Job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    conditions

    Conditions represent the latest available observations of an object’s current state. More info: http://kubernetes.io/docs/user-guide/jobs

    false

    v1beta1.JobCondition array

    startTime

    StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string (date-time)

    completionTime

    CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

    false

    string (date-time)

    active

    Active is the number of actively running pods.

    false

    integer (int32)

    succeeded

    Succeeded is the number of pods which reached Phase Succeeded.

    false

    integer (int32)

    failed

    Failed is the number of pods which reached Phase Failed.

    false

    integer (int32)

    - -
    -
    -

    v1.Capabilities

    -
    -

    Adds and removes POSIX capabilities from running containers.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    add

    Added capabilities

    false

    v1.Capability array

    drop

    Removed capabilities

    false

    v1.Capability array

    - -
    -
    -

    v1.LocalObjectReference

    -
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    - -
    -
    -

    v1.ExecAction

    -
    -

    ExecAction describes a "run in container" action.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    command

    Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

    ', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

    false

    string array

    - -
    -
    -

    v1.ObjectMeta

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

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

    false

    string

    generateName

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

    false

    string

    namespace

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

    false

    string

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    uid

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

    false

    string

    resourceVersion

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

    false

    string

    generation

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

    false

    integer (int64)

    creationTimestamp

    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
    -
    -Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionTimestamp

    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
    -
    -Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    string (date-time)

    deletionGracePeriodSeconds

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

    false

    integer (int64)

    labels

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

    false

    object

    annotations

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

    false

    object

    ownerReferences

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

    false

    v1.OwnerReference array

    finalizers

    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

    false

    string array

    clusterName

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

    false

    string

    - -
    -
    -

    v1beta1.ReplicaSetSpec

    -
    -

    ReplicaSetSpec is the specification of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller

    false

    integer (int32)

    minReadySeconds

    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

    false

    integer (int32)

    selector

    Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    unversioned.LabelSelector

    template

    Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template

    false

    v1.PodTemplateSpec

    - -
    -
    -

    v1beta1.DaemonSetSpec

    -
    -

    DaemonSetSpec is the specification of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selector

    Selector is a label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    unversioned.LabelSelector

    template

    Template is the object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template’s node selector (or on every node if no node selector is specified). More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template

    true

    v1.PodTemplateSpec

    - -
    -
    -

    v1beta1.Deployment

    -
    -

    Deployment enables declarative updates for Pods and ReplicaSets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata.

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the Deployment.

    false

    v1beta1.DeploymentSpec

    status

    Most recently observed status of the Deployment.

    false

    v1beta1.DeploymentStatus

    - -
    -
    -

    v1.AzureFileVolumeSource

    -
    -

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    true

    string

    shareName

    Share Name

    true

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    types.UID

    - -
    -
    -

    v1.ISCSIVolumeSource

    -
    -

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPortal

    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).

    true

    string

    iqn

    Target iSCSI Qualified Name.

    true

    string

    lun

    iSCSI target lun number.

    true

    integer (int32)

    iscsiInterface

    Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

    false

    string

    fsType

    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

    false

    string

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    false

    boolean

    false

    - -
    -
    -

    v1.EmptyDirVolumeSource

    -
    -

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    medium

    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

    false

    string

    - -
    -
    -

    v1beta1.IngressList

    -
    -

    IngressList is a collection of Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of Ingress.

    true

    v1beta1.Ingress array

    - -
    -
    -

    v1beta1.ScaleSpec

    -
    -

    describes the attributes of a scale subresource

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    desired number of instances for the scaled object.

    false

    integer (int32)

    - -
    -
    -

    unversioned.Patch

    -
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    -
    -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    datasetName

    Name of the dataset stored as metadata → name on the dataset for Flocker should be considered as deprecated

    false

    string

    datasetUUID

    UUID of the dataset. This is unique identifier of a Flocker dataset

    false

    string

    - -
    -
    -

    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).

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    claimName

    ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims

    true

    string

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

    false

    boolean

    false

    - -
    -
    -

    unversioned.ListMeta

    -
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    selfLink

    SelfLink is a URL representing this object. Populated by the system. Read-only.

    false

    string

    resourceVersion

    String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

    false

    string

    - -
    -
    -

    v1beta1.HorizontalPodAutoscaler

    -
    -

    configuration of a horizontal pod autoscaler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.

    false

    v1beta1.HorizontalPodAutoscalerSpec

    status

    current information about the autoscaler.

    false

    v1beta1.HorizontalPodAutoscalerStatus

    - -
    -
    -

    unversioned.LabelSelector

    -
    -

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

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    matchLabels

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

    false

    object

    matchExpressions

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

    false

    unversioned.LabelSelectorRequirement array

    - -
    -
    -

    v1beta1.RollbackConfig

    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    revision

    The revision to rollback to. If set to 0, rollbck to the last revision.

    false

    integer (int64)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    secretName

    Name of the secret in the pod’s namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    string

    items

    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 ...

    false

    v1.KeyToPath array

    defaultMode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.EnvVarSource

    -
    -

    EnvVarSource represents a source for the value of an EnvVar.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    fieldRef

    Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    configMapKeyRef

    Selects a key of a ConfigMap.

    false

    v1.ConfigMapKeySelector

    secretKeyRef

    Selects a key of a secret in the pod’s namespace

    false

    v1.SecretKeySelector

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    driver

    Driver is the name of the driver to use for this volume.

    true

    string

    fsType

    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.

    false

    string

    secretRef

    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.

    false

    v1.LocalObjectReference

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    options

    Optional: Extra command options if any.

    false

    object

    - -
    -
    -

    v1beta1.JobCondition

    -
    -

    JobCondition describes current state of a job.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of job condition, Complete or Failed.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastProbeTime

    Last time the condition was checked.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transit from one status to another.

    false

    string (date-time)

    reason

    (brief) reason for the condition’s last transition.

    false

    string

    message

    Human readable message indicating details about last transition.

    false

    string

    - -
    -
    -

    v1.LoadBalancerIngress

    -
    -

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ip

    IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

    false

    string

    hostname

    Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

    false

    string

    - -
    -
    -

    v1beta1.APIVersion

    -
    -

    An APIVersion represents a single concrete version of an object model.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of this version (e.g. v1).

    false

    string

    - -
    -
    -

    v1.AzureDiskVolumeSource

    -
    -

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    diskName

    The Name of the data disk in the blob storage

    true

    string

    diskURI

    The URI the data disk in the blob storage

    true

    string

    cachingMode

    Host Caching mode: None, Read Only, Read Write.

    false

    v1.AzureDataDiskCachingMode

    fsType

    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.

    false

    string

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1.KeyToPath

    -
    -

    Maps a string key to a path within a volume.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    The key to project.

    true

    string

    path

    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 ...

    true

    string

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.VsphereVirtualDiskVolumeSource

    -
    -

    Represents a vSphere volume resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumePath

    Path that identifies vSphere volume vmdk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1.DeleteOptions

    -
    -

    DeleteOptions may be provided when deleting an API object

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    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.

    false

    integer (int64)

    preconditions

    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

    false

    v1.Preconditions

    orphanDependents

    Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

    false

    boolean

    false

    - -
    -
    -

    v1.Volume

    -
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    hostPath

    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

    false

    v1.HostPathVolumeSource

    emptyDir

    EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

    false

    v1.EmptyDirVolumeSource

    gcePersistentDisk

    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

    false

    v1.GCEPersistentDiskVolumeSource

    awsElasticBlockStore

    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

    false

    v1.AWSElasticBlockStoreVolumeSource

    gitRepo

    GitRepo represents a git repository at a particular revision.

    false

    v1.GitRepoVolumeSource

    secret

    Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

    false

    v1.SecretVolumeSource

    nfs

    NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    false

    v1.NFSVolumeSource

    iscsi

    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

    false

    v1.ISCSIVolumeSource

    glusterfs

    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

    false

    v1.GlusterfsVolumeSource

    persistentVolumeClaim

    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims

    false

    v1.PersistentVolumeClaimVolumeSource

    rbd

    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

    false

    v1.RBDVolumeSource

    flexVolume

    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.

    false

    v1.FlexVolumeSource

    cinder

    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

    false

    v1.CinderVolumeSource

    cephfs

    CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

    false

    v1.CephFSVolumeSource

    flocker

    Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

    false

    v1.FlockerVolumeSource

    downwardAPI

    DownwardAPI represents downward API about the pod that should populate this volume

    false

    v1.DownwardAPIVolumeSource

    fc

    FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

    false

    v1.FCVolumeSource

    azureFile

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    false

    v1.AzureFileVolumeSource

    configMap

    ConfigMap represents a configMap that should populate this volume

    false

    v1.ConfigMapVolumeSource

    vsphereVolume

    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

    false

    v1.VsphereVirtualDiskVolumeSource

    quobyte

    Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime

    false

    v1.QuobyteVolumeSource

    azureDisk

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    false

    v1.AzureDiskVolumeSource

    photonPersistentDisk

    PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine

    false

    v1.PhotonPersistentDiskVolumeSource

    - -
    -
    -

    v1beta1.DaemonSetList

    -
    -

    DaemonSetList is a collection of daemon sets.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is a list of daemon sets.

    true

    v1beta1.DaemonSet array

    - -
    -
    -

    v1.ResourceFieldSelector

    -
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    containerName

    Container name: required for volumes, optional for env vars

    false

    string

    resource

    Required: resource to select

    true

    string

    divisor

    Specifies the output format of the exposed resources, defaults to "1"

    false

    string

    - -
    -
    -

    v1.Probe

    -
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    initialDelaySeconds

    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

    false

    integer (int32)

    timeoutSeconds

    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

    false

    integer (int32)

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    false

    integer (int32)

    successThreshold

    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.

    false

    integer (int32)

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.DeploymentSpec

    -
    -

    DeploymentSpec is the specification of the desired behavior of the Deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

    false

    integer (int32)

    selector

    Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.

    false

    unversioned.LabelSelector

    template

    Template describes the pods that will be created.

    true

    v1.PodTemplateSpec

    strategy

    The deployment strategy to use to replace existing pods with new ones.

    false

    v1beta1.DeploymentStrategy

    minReadySeconds

    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

    false

    integer (int32)

    revisionHistoryLimit

    The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.

    false

    integer (int32)

    paused

    Indicates that the deployment is paused and will not be processed by the deployment controller.

    false

    boolean

    false

    rollbackTo

    The config this deployment is rolling back to. Will be cleared after rollback is done.

    false

    v1beta1.RollbackConfig

    progressDeadlineSeconds

    The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Once autoRollback is implemented, the deployment controller will automatically rollback failed deployments. Note that progress will not be estimated during the time a deployment is paused. This is not set by default.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    groupVersion

    groupVersion is the group and version this APIResourceList is for.

    true

    string

    resources

    resources contains the name of the resources and if they are namespaced.

    true

    unversioned.APIResource array

    - -
    -
    -

    v1.SecretKeySelector

    -
    -

    SecretKeySelector selects a key of a Secret.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key of the secret to select from. Must be a valid secret key.

    true

    string

    - -
    -
    -

    v1.Capability

    - -
    -
    -

    unversioned.APIResource

    -
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    name is the name of the resource.

    true

    string

    namespaced

    namespaced indicates if a resource is namespaced or not.

    true

    boolean

    false

    kind

    kind is the kind for the resource (e.g. Foo is the kind for a resource foo)

    true

    string

    - -
    -
    -

    v1.DownwardAPIVolumeFile

    -
    -

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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 ..

    true

    string

    fieldRef

    Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.

    false

    v1.ObjectFieldSelector

    resourceFieldRef

    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

    false

    v1.ResourceFieldSelector

    mode

    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.

    false

    integer (int32)

    - -
    -
    -

    v1.ContainerPort

    -
    -

    ContainerPort represents a network port in a single container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    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.

    false

    string

    hostPort

    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.

    false

    integer (int32)

    containerPort

    Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

    true

    integer (int32)

    protocol

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".

    false

    string

    hostIP

    What host IP to bind the external port to.

    false

    string

    - -
    -
    -

    v1.PodSpec

    -
    -

    PodSpec is a description of a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: http://kubernetes.io/docs/user-guide/volumes

    false

    v1.Volume array

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers

    true

    v1.Container array

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy

    false

    string

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    false

    integer (int64)

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    false

    integer (int64)

    dnsPolicy

    Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

    false

    string

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://kubernetes.io/docs/user-guide/node-selection

    false

    object

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md

    false

    string

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    false

    string

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    false

    string

    hostNetwork

    Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    false

    boolean

    false

    hostPID

    Use the host’s pid namespace. Optional: Default to false.

    false

    boolean

    false

    hostIPC

    Use the host’s ipc namespace. Optional: Default to false.

    false

    boolean

    false

    securityContext

    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

    false

    v1.PodSecurityContext

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod

    false

    v1.LocalObjectReference array

    hostname

    Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value.

    false

    string

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    false

    string

    - -
    -
    -

    v1.Lifecycle

    -
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    postStart

    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks#hook-details

    false

    v1.Handler

    preStop

    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://kubernetes.io//docs/concepts/containers/container-lifecycle-hooks#hook-details

    false

    v1.Handler

    - -
    -
    -

    v1.GlusterfsVolumeSource

    -
    -

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    path

    Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.Handler

    -
    -

    Handler defines a specific action that should be taken

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    exec

    One and only one of the following should be specified. Exec specifies the action to take.

    false

    v1.ExecAction

    httpGet

    HTTPGet specifies the http request to perform.

    false

    v1.HTTPGetAction

    tcpSocket

    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

    false

    v1.TCPSocketAction

    - -
    -
    -

    v1beta1.IngressTLS

    -
    -

    IngressTLS describes the transport layer security associated with an Ingress.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    hosts

    Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.

    false

    string array

    secretName

    SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.

    false

    string

    - -
    -
    -

    v1beta1.SubresourceReference

    -
    -

    SubresourceReference contains enough information to let you inspect or modify the referred subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind of the referent; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    name

    Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    apiVersion

    API version of the referent

    false

    string

    subresource

    Subresource name of the referent

    false

    string

    - -
    -
    -

    v1beta1.Scale

    -
    -

    represents a scaling request for a resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata.

    false

    v1.ObjectMeta

    spec

    defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.

    false

    v1beta1.ScaleSpec

    status

    current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only.

    false

    v1beta1.ScaleStatus

    - -
    -
    -

    v1.RBDVolumeSource

    -
    -

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    monitors

    A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string array

    image

    The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    true

    string

    fsType

    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

    false

    string

    pool

    The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.

    false

    string

    user

    The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

    false

    string

    keyring

    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

    false

    string

    secretRef

    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

    false

    v1.LocalObjectReference

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.PhotonPersistentDiskVolumeSource

    -
    -

    Represents a Photon Controller persistent disk resource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    pdID

    ID that identifies Photon Controller persistent disk

    true

    string

    fsType

    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.

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicy

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior for this NetworkPolicy.

    false

    v1beta1.NetworkPolicySpec

    - -
    -
    -

    versioned.Event

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    true

    string

    object

    true

    string

    - -
    -
    -

    v1beta1.ScaleStatus

    -
    -

    represents the current status of a scale subresource.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    actual number of observed instances of the scaled object.

    true

    integer (int32)

    selector

    label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    object

    targetSelector

    label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    string

    - -
    -
    -

    v1beta1.NetworkPolicySpec

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podSelector

    Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.

    true

    unversioned.LabelSelector

    ingress

    List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if namespace.networkPolicy.ingress.isolation is undefined and cluster policy allows it, OR if the traffic source is the pod’s local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not affect ingress isolation. If this field is present and contains at least one rule, this policy allows any traffic which matches at least one of the ingress rules in this list.

    false

    v1beta1.NetworkPolicyIngressRule array

    - -
    -
    -

    v1.NFSVolumeSource

    -
    -

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    server

    Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    path

    Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

    true

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1beta1.DeploymentList

    -
    -

    DeploymentList is a list of Deployments.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    Items is the list of Deployments.

    true

    v1beta1.Deployment array

    - -
    -
    -

    v1beta1.DeploymentRollback

    -
    -

    DeploymentRollback stores the information required to rollback a deployment.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    name

    Required: This must match the Name of a deployment.

    true

    string

    updatedAnnotations

    The annotations to be updated to a deployment

    false

    object

    rollbackTo

    The config of this deployment rollback.

    true

    v1beta1.RollbackConfig

    - -
    -
    -

    v1.HTTPHeader

    -
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The header field name

    true

    string

    value

    The header field value

    true

    string

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerStatus

    -
    -

    current status of a horizontal pod autoscaler

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    observedGeneration

    most recent generation observed by this autoscaler.

    false

    integer (int64)

    lastScaleTime

    last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.

    false

    string (date-time)

    currentReplicas

    current number of replicas of pods managed by this autoscaler.

    true

    integer (int32)

    desiredReplicas

    desired number of replicas of pods managed by this autoscaler.

    true

    integer (int32)

    currentCPUUtilizationPercentage

    current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.

    false

    integer (int32)

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetWWNs

    Required: FC target worldwide names (WWNs)

    true

    string array

    lun

    Required: FC target lun number

    true

    integer (int32)

    fsType

    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.

    false

    string

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    false

    boolean

    false

    - -
    -
    -

    v1beta1.ThirdPartyResource

    -
    -

    A ThirdPartyResource is a generic representation of a resource, it is used by add-ons and plugins to add new resource types to the API. It consists of one or more Versions of the api.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object metadata

    false

    v1.ObjectMeta

    description

    Description is the description of this object.

    false

    string

    versions

    Versions are versions for this third party object

    false

    v1beta1.APIVersion array

    - -
    -
    -

    v1.TCPSocketAction

    -
    -

    TCPSocketAction describes an action based on opening a socket

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    port

    Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    - -
    -
    -

    v1beta1.DeploymentStrategy

    -
    -

    DeploymentStrategy describes how to replace existing pods with new ones.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.

    false

    string

    rollingUpdate

    Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.

    false

    v1beta1.RollingUpdateDeployment

    - -
    -
    -

    v1beta1.IngressRule

    -
    -

    IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    host

    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.

    false

    string

    http

    false

    v1beta1.HTTPIngressRuleValue

    - -
    -
    -

    v1beta1.JobList

    -
    -

    JobList is a collection of jobs. DEPRECATED: extensions/v1beta1.JobList is deprecated, use batch/v1.JobList instead.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    unversioned.ListMeta

    items

    Items is the list of Job.

    true

    v1beta1.Job array

    - -
    -
    -

    v1beta1.NetworkPolicyPeer

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    podSelector

    This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If not provided, this selector selects no pods. If present but empty, this selector selects all pods in this namespace.

    false

    unversioned.LabelSelector

    namespaceSelector

    Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If omitted, this selector selects no namespaces. If present but empty, this selector selects all namespaces.

    false

    unversioned.LabelSelector

    - -
    -
    -

    unversioned.StatusDetails

    -
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

    false

    string

    group

    The group attribute of the resource associated with the status StatusReason.

    false

    string

    kind

    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    causes

    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

    false

    unversioned.StatusCause array

    retryAfterSeconds

    If specified, the time in seconds before the operation should be retried.

    false

    integer (int32)

    - -
    -
    -

    v1.HTTPGetAction

    -
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path to access on the HTTP server.

    false

    string

    port

    Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

    true

    string

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    false

    string

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

    false

    string

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    false

    v1.HTTPHeader array

    - -
    -
    -

    v1.LoadBalancerStatus

    -
    -

    LoadBalancerStatus represents the status of a load-balancer.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ingress

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

    false

    v1.LoadBalancerIngress array

    - -
    -
    -

    v1beta1.CPUTargetUtilization

    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    targetPercentage

    fraction of the requested CPU that should be utilized/used, e.g. 70 means that 70% of the requested CPU should be in use.

    true

    integer (int32)

    - -
    -
    -

    v1.Container

    -
    -

    A single application container that you want to run within a pod.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    true

    string

    image

    Docker image name. More info: http://kubernetes.io/docs/user-guide/images

    false

    string

    command

    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

    false

    string array

    args

    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

    false

    string array

    workingDir

    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.

    false

    string

    ports

    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.

    false

    v1.ContainerPort array

    env

    List of environment variables to set in the container. Cannot be updated.

    false

    v1.EnvVar array

    resources

    Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/concepts/storage/persistent-volumes/#resources

    false

    v1.ResourceRequirements

    volumeMounts

    Pod volumes to mount into the container’s filesystem. Cannot be updated.

    false

    v1.VolumeMount array

    livenessProbe

    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

    false

    v1.Probe

    readinessProbe

    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

    false

    v1.Probe

    lifecycle

    Actions that the management system should take in response to container lifecycle events. Cannot be updated.

    false

    v1.Lifecycle

    terminationMessagePath

    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.

    false

    string

    imagePullPolicy

    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

    false

    string

    securityContext

    Security options the pod should run with. More info: http://releases.k8s.io/HEAD/docs/design/security_context.md

    false

    v1.SecurityContext

    stdin

    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.

    false

    boolean

    false

    stdinOnce

    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

    false

    boolean

    false

    tty

    Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.PodSecurityContext

    -
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    seLinuxOptions

    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.

    false

    integer (int32) array

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:
    -
    -1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR’d with rw-rw

    false

    integer (int64)

    - -
    -
    -

    v1beta1.NetworkPolicyIngressRule

    -
    -

    This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    ports

    List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is not provided, this rule matches all ports (traffic not restricted by port). If this field is empty, this rule matches no ports (no traffic matches). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.

    false

    v1beta1.NetworkPolicyPort array

    from

    List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is not provided, this rule matches all sources (traffic not restricted by source). If this field is empty, this rule matches no sources (no traffic matches). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.

    false

    v1beta1.NetworkPolicyPeer array

    - -
    -
    -

    v1.OwnerReference

    -
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    apiVersion

    API version of the referent.

    true

    string

    kind

    Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    true

    string

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    true

    string

    uid

    UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

    true

    string

    controller

    If true, this reference points to the managing controller.

    false

    boolean

    false

    - -
    -
    -

    v1beta1.ReplicaSetStatus

    -
    -

    ReplicaSetStatus represents the current status of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    replicas

    Replicas is the most recently oberved number of replicas. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller

    true

    integer (int32)

    fullyLabeledReplicas

    The number of pods that have labels matching the labels of the pod template of the replicaset.

    false

    integer (int32)

    readyReplicas

    The number of ready replicas for this replica set.

    false

    integer (int32)

    availableReplicas

    The number of available replicas (ready for at least minReadySeconds) for this replica set.

    false

    integer (int32)

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

    false

    integer (int64)

    conditions

    Represents the latest available observations of a replica set’s current state.

    false

    v1beta1.ReplicaSetCondition array

    - -
    -
    -

    v1beta1.ReplicaSet

    -
    -

    ReplicaSet represents the configuration of a ReplicaSet.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    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

    false

    v1.ObjectMeta

    spec

    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

    false

    v1beta1.ReplicaSetSpec

    status

    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

    false

    v1beta1.ReplicaSetStatus

    - -
    -
    -

    v1.HostPathVolumeSource

    -
    -

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath

    true

    string

    - -
    -
    -

    v1beta1.DaemonSet

    -
    -

    DaemonSet represents the configuration of a daemon set.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.DaemonSetSpec

    status

    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

    false

    v1beta1.DaemonSetStatus

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

    true

    string

    fsType

    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

    false

    string

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1.SecurityContext

    -
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    capabilities

    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

    false

    v1.Capabilities

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

    false

    boolean

    false

    seLinuxOptions

    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    v1.SELinuxOptions

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    integer (int64)

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    false

    boolean

    false

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false.

    false

    boolean

    false

    - -
    -
    -

    v1.Protocol

    - -
    -
    -

    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.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

    true

    string

    fsType

    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

    false

    string

    partition

    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).

    false

    integer (int32)

    readOnly

    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

    false

    boolean

    false

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerSpec

    -
    -

    specification of a horizontal pod autoscaler.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    scaleRef

    reference to Scale subresource; horizontal pod autoscaler will learn the current resource consumption from its status, and will set the desired number of pods by modifying its spec.

    true

    v1beta1.SubresourceReference

    minReplicas

    lower limit for the number of pods that can be set by the autoscaler, default 1.

    false

    integer (int32)

    maxReplicas

    upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.

    true

    integer (int32)

    cpuUtilization

    target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified it defaults to the target CPU utilization at 80% of the requested resources.

    false

    v1beta1.CPUTargetUtilization

    - -
    -
    -

    v1.QuobyteVolumeSource

    -
    -

    Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    registry

    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

    true

    string

    volume

    Volume is a string that references an already created Quobyte volume by name.

    true

    string

    readOnly

    ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

    false

    boolean

    false

    user

    User to map volume access to Defaults to serivceaccount user

    false

    string

    group

    Group to map volume access to Default is no group

    false

    string

    - -
    -
    -

    v1.EnvVar

    -
    -

    EnvVar represents an environment variable present in a Container.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    true

    string

    value

    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".

    false

    string

    valueFrom

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

    false

    v1.EnvVarSource

    - -
    -
    -

    v1.ResourceRequirements

    -
    -

    ResourceRequirements describes the compute resource requirements.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    limits

    Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

    false

    object

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

    false

    object

    - -
    -
    -

    v1.PodTemplateSpec

    -
    -

    PodTemplateSpec describes the data a pod should have when created from a template

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1.PodSpec

    - -
    -
    -

    v1beta1.NetworkPolicyPort

    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    protocol

    Optional. The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.

    false

    v1.Protocol

    port

    If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.

    false

    string

    - -
    -
    -

    v1beta1.DeploymentCondition

    -
    -

    DeploymentCondition describes the state of a deployment at a certain point.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    type

    Type of deployment condition.

    true

    string

    status

    Status of the condition, one of True, False, Unknown.

    true

    string

    lastUpdateTime

    The last time this condition was updated.

    false

    string (date-time)

    lastTransitionTime

    Last time the condition transitioned from one status to another.

    false

    string (date-time)

    reason

    The reason for the condition’s last transition.

    false

    string

    message

    A human readable message indicating details about the transition.

    false

    string

    - -
    -
    -

    v1beta1.JobSpec

    -
    -

    JobSpec describes how the job execution will look like.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    parallelism

    Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://kubernetes.io/docs/user-guide/jobs

    false

    integer (int32)

    completions

    Completions specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: http://kubernetes.io/docs/user-guide/jobs

    false

    integer (int32)

    activeDeadlineSeconds

    Optional duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer

    false

    integer (int64)

    selector

    Selector is a label query over pods that should match the pod count. Normally, the system sets this field for you. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

    false

    unversioned.LabelSelector

    autoSelector

    AutoSelector controls generation of pod labels and pod selectors. It was not present in the original extensions/v1beta1 Job definition, but exists to allow conversion from batch/v1 Jobs, where it corresponds to, but has the opposite meaning as, ManualSelector. More info: http://releases.k8s.io/HEAD/docs/design/selector-generation.md

    false

    boolean

    false

    template

    Template is the object that describes the pod that will be created when executing a job. More info: http://kubernetes.io/docs/user-guide/jobs

    true

    v1.PodTemplateSpec

    - -
    -
    -

    unversioned.LabelSelectorRequirement

    -
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    key

    key is the label key that the selector applies to.

    true

    string

    operator

    operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

    true

    string

    values

    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    false

    string array

    - -
    -
    -

    unversioned.Status

    -
    -

    Status is a return value for calls that don’t return other objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    unversioned.ListMeta

    status

    Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    string

    message

    A human-readable description of the status of this operation.

    false

    string

    reason

    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.

    false

    string

    details

    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.

    false

    unversioned.StatusDetails

    code

    Suggested HTTP return code for this status, 0 if not set.

    false

    integer (int32)

    - -
    -
    -

    v1beta1.HorizontalPodAutoscalerList

    -
    -

    list of horizontal pod autoscaler objects.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    list of horizontal pod autoscaler objects.

    true

    v1beta1.HorizontalPodAutoscaler array

    - -
    -
    -

    v1.ConfigMapKeySelector

    -
    -

    Selects a key from a ConfigMap.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    name

    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

    false

    string

    key

    The key to select.

    true

    string

    - -
    -
    -

    v1beta1.HTTPIngressPath

    -
    -

    HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    path

    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.

    false

    string

    backend

    Backend defines the referenced service endpoint to which the traffic will be forwarded to.

    true

    v1beta1.IngressBackend

    - -
    -
    -

    v1beta1.Ingress

    -
    -

    Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

    false

    v1.ObjectMeta

    spec

    Spec is the desired state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.IngressSpec

    status

    Status is the current state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

    false

    v1beta1.IngressStatus

    - -
    -
    -

    v1beta1.ThirdPartyResourceList

    -
    -

    ThirdPartyResourceList is a list of ThirdPartyResources.

    -
    - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescriptionRequiredSchemaDefault

    kind

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

    false

    string

    apiVersion

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

    false

    string

    metadata

    Standard list metadata.

    false

    unversioned.ListMeta

    items

    Items is the list of ThirdPartyResources.

    true

    v1beta1.ThirdPartyResource array

    - -
    -
    -

    v1.AzureDataDiskCachingMode

    - -
    -
    -

    any

    -
    -

    Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

    -
    -
    -
    -
    -
    - - - diff --git a/docs/api-reference/v1.9/index.html b/docs/api-reference/v1.9/index.html deleted file mode 100644 index fe638458b2..0000000000 --- a/docs/api-reference/v1.9/index.html +++ /dev/null @@ -1,103420 +0,0 @@ - - - - -Kubernetes API Reference Docs - - - - - - - - - -
    -
    • kubectl
    • curl
    -

    API OVERVIEW

    -

    Welcome to the Kubernetes API. You can use the Kubernetes API to read -and write Kubernetes resource objects via a Kubernetes API endpoint.

    -

    Resource Categories

    -

    This is a high-level overview of the basic types of resources provide by the Kubernetes API and their primary functions.

    -

    Workloads are objects you use to manage and run your containers on the cluster.

    -

    Discovery & LB resources are objects you use to "stitch" your workloads together into an externally accessible, load-balanced Service.

    -

    Config & Storage resources are objects you use to inject initialization data into your applications, and to persist data that is external to your container.

    -

    Cluster resources objects define how the cluster itself is configured; these are typically used only by cluster operators.

    -

    Metadata resources are objects you use to configure the behavior of other resources within the cluster, such as HorizontalPodAutoscaler for scaling workloads.

    -
    -

    Resource Objects

    -

    Resource objects typically have 3 components:

    -
      -
    • ResourceSpec: This is defined by the user and describes the desired state of system. Fill this in when creating or updating an -object.
    • -
    • ResourceStatus: This is filled in by the server and reports the current state of the system. Only kubernetes components should fill -this in
    • -
    • Resource ObjectMeta: This is metadata about the resource, such as its name, type, api version, annotations, and labels. This contains -fields that maybe updated both by the end user and the system (e.g. annotations)
    • -
    -
    -

    Resource Operations

    -

    Most resources provide the following Operations:

    -

    Create:

    -

    Create operations will create the resource in the storage backend. After a resource is create the system will apply -the desired state.

    -

    Update:

    -

    Updates come in 2 forms: Replace and Patch

    -

    Replace: -Replacing a resource object will update the resource by replacing the existing spec with the provided one. For -read-then-write operations this is safe because an optimistic lock failure will occur if the resource was modified -between the read and write. Note: The ResourceStatus will be ignored by the system and will not be updated. -To update the status, one must invoke the specific status update operation.

    -

    Note: Replacing a resource object may not result immediately in changes being propagated to downstream objects. For instance -replacing a ConfigMap or Secret resource will not result in all Pods seeing the changes unless the Pods are -restarted out of band.

    -

    Patch: -Patch will apply a change to a specific field. How the change is merged is defined per field. Lists may either be -replaced or merged. Merging lists will not preserve ordering.

    -

    Patches will never cause optimistic locking failures, and the last write will win. Patches are recommended - when the full state is not read before an update, or when failing on optimistic locking is undesirable. When patching - complex types, arrays and maps, how the patch is applied is defined on a per-field basis and may either replace - the field's current value, or merge the contents into the current value.

    -

    Read

    -

    Reads come in 3 forms: Get, List and Watch

    -

    Get: Get will retrieve a specific resource object by name.

    -

    List: List will retrieve all resource objects of a specific type within a namespace, and the results can be restricted to resources matching a selector query.

    -

    List All Namespaces: Like List but retrieves resources across all namespaces.

    -

    Watch: Watch will stream results for an object(s) as it is updated. Similar to a callback, watch is used to respond to resource changes.

    -

    Delete

    -

    Delete will delete a resource. Depending on the specific resource, child objects may or may not be garbage collected by the server. See -notes on specific resource objects for details.

    -

    Additional Operations

    -

    Resources may define additional operations specific to that resource type.

    -

    Rollback: Rollback a PodTemplate to a previous version. Only available for some resource types.

    -

    Read / Write Scale: Read or Update the number of replicas for the given resource. Only available for some resource types.

    -

    Read / Write Status: Read or Update the Status for a resource object. The Status can only changed through these update operations.

    -
    -

    WORKLOADS

    -

    Worloads resources are responsible for managing and running your containers on the cluster. Containers are created -by Controllers through Pods. Pods run Containers and provide environmental dependencies such as shared or -persistent storage Volumes and Configuration or Secret data injected into the -container.

    -

    The most common Controllers are:

    -
      -
    • Deployments for stateless persistent apps (e.g. http servers)
    • -
    • StatefulSets for stateful persistent apps (e.g. databases)
    • -
    • Jobs for run-to-completion apps (e.g. batch jobs).
    • -
    -
    -
    -

    Container v1 core

    -
    -

    Container Config to run nginx (must be embedded in a PodSpec to run).

    -
    -
    
    -name: nginx
    -# Run the nginx:1.10 image
    -image: nginx:1.10
    -
    -
    -

    Container Config to run nginx (must be embedded in a PodSpec to run).

    -
    -
    
    -name: nginx
    -# Run the nginx:1.10 image
    -image: nginx:1.10
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Container
    - - - - - - -

    A single application container that you want to run within a pod.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    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: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
    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: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
    env
    EnvVar array
    patch type: merge
    patch merge key: name
    List of environment variables to set in the container. Cannot be updated.
    envFrom
    EnvFromSource array
    List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
    image
    string
    Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.
    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: https://kubernetes.io/docs/concepts/containers/images#updating-images
    lifecycle
    Lifecycle
    Actions that the management system should take in response to container lifecycle events. Cannot be updated.
    livenessProbe
    Probe
    Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#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 array
    patch type: merge
    patch merge key: containerPort
    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
    Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
    resources
    ResourceRequirements
    Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
    securityContext
    SecurityContext
    Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
    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. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.
    terminationMessagePolicy
    string
    Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.
    tty
    boolean
    Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.
    volumeDevices
    VolumeDevice array
    patch type: merge
    patch merge key: devicePath
    volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.
    volumeMounts
    VolumeMount array
    patch type: merge
    patch merge key: mountPath
    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 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    containerID
    string
    Container's ID in the format 'docker://'.
    image
    string
    The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images
    imageID
    string
    ImageID of the container's image.
    lastState
    ContainerState
    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
    Details about the container's current condition.
    -
    -

    CronJob v1beta1 batch

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    batchv1beta1CronJob
    - - - -

    CronJob represents the configuration of a single cron job.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    CronJobSpec
    Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    CronJobStatus
    Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    CronJobSpec v1beta1 batch

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    concurrencyPolicy
    string
    Specifies how to treat concurrent executions of a Job. Valid values are: - "Allow" (default): allows CronJobs to run concurrently; - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - "Replace": cancels currently running job and replaces it with a new one
    failedJobsHistoryLimit
    integer
    The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
    jobTemplate
    JobTemplateSpec
    Specifies the job that will be created when executing a CronJob.
    schedule
    string
    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.
    successfulJobsHistoryLimit
    integer
    The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.
    suspend
    boolean
    This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.
    -

    CronJobStatus v1beta1 batch

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    active
    ObjectReference array
    A list of pointers to currently running jobs.
    lastScheduleTime
    Time
    Information when was the last time the job was successfully scheduled.
    -

    CronJobList v1beta1 batch

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    CronJob array
    items is the list of CronJobs.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a CronJob

    -

    HTTP Request

    -

    POST /apis/batch/v1beta1/namespaces/{namespace}/cronjobs

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    202
    CronJob
    Accepted
    200
    CronJob
    OK
    201
    CronJob
    Created
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified CronJob

    -

    HTTP Request

    -

    PATCH /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified CronJob

    -

    HTTP Request

    -

    PUT /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}

    -

    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
    201
    CronJob
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a CronJob

    -

    HTTP Request

    -

    DELETE /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of CronJob

    -

    HTTP Request

    -

    DELETE /apis/batch/v1beta1/namespaces/{namespace}/cronjobs

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified CronJob

    -

    HTTP Request

    -

    GET /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    CronJob
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind CronJob

    -

    HTTP Request

    -

    GET /apis/batch/v1beta1/namespaces/{namespace}/cronjobs

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    CronJobList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind CronJob

    -

    HTTP Request

    -

    GET /apis/batch/v1beta1/cronjobs

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    CronJobList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind CronJob

    -

    HTTP Request

    -

    GET /apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs/{name}

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1beta1/watch/namespaces/{namespace}/cronjobs

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 CronJob

    -

    HTTP Request

    -

    GET /apis/batch/v1beta1/watch/cronjobs

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 CronJob

    -

    HTTP Request

    -

    PATCH /apis/batch/v1beta1/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/v1beta1/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/v1beta1/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
    201
    CronJob
    Created
    200
    CronJob
    OK
    -
    -

    DaemonSet v1beta2 apps

    -
    -

    DaemonSet Config to print the hostname on each Node in the cluster every 10 seconds.

    -
    -
    
    -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 <script>`
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -
    -
    -

    DaemonSet Config to print the hostname on each Node in the cluster every 10 seconds.

    -
    -
    
    -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 <script>`
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2DaemonSet
    - - - -

    DaemonSet represents the configuration of a daemon set.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    DaemonSetSpec
    The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    DaemonSetStatus
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    DaemonSetSpec v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).
    revisionHistoryLimit
    integer
    The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.
    selector
    LabelSelector
    A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    template
    PodTemplateSpec
    An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
    updateStrategy
    DaemonSetUpdateStrategy
    An update strategy to replace existing DaemonSet pods with new pods.
    -

    DaemonSetStatus v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    collisionCount
    integer
    Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
    conditions
    DaemonSetCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a DaemonSet's current state.
    currentNumberScheduled
    integer
    The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    desiredNumberScheduled
    integer
    The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    numberAvailable
    integer
    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)
    numberMisscheduled
    integer
    The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    numberReady
    integer
    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.
    numberUnavailable
    integer
    The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)
    observedGeneration
    integer
    The most recent generation observed by the daemon set controller.
    updatedNumberScheduled
    integer
    The total number of nodes that are running updated daemon pod
    -

    DaemonSetList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    DaemonSet array
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    RollingUpdateDaemonSet v1beta2 apps

    - - - - - - - - - - - - - - - -
    FieldDescription
    maxUnavailableThe maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: extensions/v1beta1
    -kind: DaemonSet
    -metadata:
    -  name: daemonset-example
    -spec:
    -  template:
    -    metadata:
    -      labels:
    -        app: daemonset-example
    -    spec:
    -      containers:
    -      - name: daemonset-example
    -        image: ubuntu:trusty
    -        command:
    -        - /bin/sh
    -        args:
    -        - -c
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -' | kubectl create -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X POST -H 'Content-Type: application/yaml' --data '
    -apiVersion: extensions/v1beta1
    -kind: DaemonSet
    -metadata:
    -  name: daemonset-example
    -spec:
    -  template:
    -    metadata:
    -      labels:
    -        app: daemonset-example
    -    spec:
    -      containers:
    -      - name: daemonset-example
    -        image: ubuntu:trusty
    -        command:
    -        - /bin/sh
    -        args:
    -        - -c
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -' http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/daemonsets
    -
    -
    -

    Output

    -
    -
    
    -daemonset "daemonset-example" created
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "DaemonSet",
    -  "apiVersion": "extensions/v1beta1",
    -  "metadata": {
    -    "name": "daemonset-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/extensions/v1beta1/namespaces/default/daemonsets/daemonset-example",
    -    "uid": "65552ced-b0e2-11e6-aef0-42010af00229",
    -    "resourceVersion": "3558",
    -    "generation": 1,
    -    "creationTimestamp": "2016-11-22T18:35:09Z",
    -    "labels": {
    -      "app": "daemonset-example"
    -    }
    -  },
    -  "spec": {
    -    "selector": {
    -      "matchLabels": {
    -        "app": "daemonset-example"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "daemonset-example"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "daemonset-example",
    -            "image": "ubuntu:trusty",
    -            "command": [
    -              "/bin/sh"
    -            ],
    -            "args": [
    -              "-c",
    -              "while [ true ]; do echo \"DaemonSet running on $(hostname)\" ; sleep 10 ; done"
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    }
    -  },
    -  "status": {
    -    "currentNumberScheduled": 0,
    -    "numberMisscheduled": 0,
    -    "desiredNumberScheduled": 0
    -  }
    -}
    -
    -

    create a DaemonSet

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/daemonsets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    DaemonSet
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    201
    DaemonSet
    Created
    202
    DaemonSet
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified DaemonSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified DaemonSet

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    201
    DaemonSet
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl delete daemonset daemonset-example
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X DELETE -H 'Content-Type: application/yaml' --data '
    -gracePeriodSeconds: 0
    -orphanDependents: false
    -' 'http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/daemonsets/daemonset-example'
    -
    -
    -

    Output

    -
    -
    
    -daemonset "daemonset-example" deleted
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Status",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "status": "Success",
    -  "code": 200
    -}
    -
    -

    delete a DaemonSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of DaemonSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/daemonsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get daemonset daemonset-example -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/daemonsets/daemonset-example
    -
    -
    -

    Output

    -
    -
    
    -
    -
    -

    Response Body

    -
    -
    
    -
    -

    read the specified DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DaemonSetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/daemonsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DaemonSetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/v1beta2/watch/namespaces/{namespace}/daemonsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/daemonsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 DaemonSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    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 DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    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 DaemonSet

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    201
    DaemonSet
    Created
    -
    -

    Deployment v1beta2 apps

    -
    -

    Deployment Config to run 3 nginx instances (max rollback set to 10 revisions).

    -
    -
    
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  # Unique key of the Deployment instance
    -  name: deployment-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        # Apply this label to pods and default
    -        # the Deployment label selector to this value
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        # Run this image
    -        image: nginx:1.10
    -
    -
    -

    Deployment Config to run 3 nginx instances (max rollback set to 10 revisions).

    -
    -
    
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  # Unique key of the Deployment instance
    -  name: deployment-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        # Apply this label to pods and default
    -        # the Deployment label selector to this value
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        # Run this image
    -        image: nginx:1.10
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2Deployment
    - - - -

    Deployment enables declarative updates for Pods and ReplicaSets.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata.
    spec
    DeploymentSpec
    Specification of the desired behavior of the Deployment.
    status
    DeploymentStatus
    Most recently observed status of the Deployment.
    -

    DeploymentSpec v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
    paused
    boolean
    Indicates that the deployment is paused.
    progressDeadlineSeconds
    integer
    The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.
    replicas
    integer
    Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
    revisionHistoryLimit
    integer
    The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.
    selector
    LabelSelector
    Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.
    strategy
    DeploymentStrategy
    The deployment strategy to use to replace existing pods with new ones.
    template
    PodTemplateSpec
    Template describes the pods that will be created.
    -

    DeploymentStatus v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    availableReplicas
    integer
    Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
    collisionCount
    integer
    Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.
    conditions
    DeploymentCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a deployment's current state.
    observedGeneration
    integer
    The generation observed by the deployment controller.
    readyReplicas
    integer
    Total number of ready pods targeted by this deployment.
    replicas
    integer
    Total number of non-terminated pods targeted by this deployment (their labels match the selector).
    unavailableReplicas
    integer
    Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.
    updatedReplicas
    integer
    Total number of non-terminated pods targeted by this deployment that have the desired template spec.
    -

    DeploymentList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata.
    -

    DeploymentStrategy v1beta2 apps

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateDeployment
    Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.
    type
    string
    Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
    -

    RollingUpdateDeployment v1beta2 apps

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    maxSurgeThe maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.
    maxUnavailableThe maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.10
    -        ports:
    -        - containerPort: 80
    -' | kubectl create -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X POST -H 'Content-Type: application/yaml' --data '
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.10
    -        ports:
    -        - containerPort: 80
    -' http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" created
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "4ccca349-9cb1-11e6-9c54-42010a800148",
    -    "resourceVersion": "2118306",
    -    "generation": 1,
    -    "creationTimestamp": "2016-10-28T01:53:19Z",
    -    "labels": {
    -      "app": "nginx"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {}
    -}
    -
    -

    create a Deployment

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/deployments

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    202
    Deployment
    Accepted
    200
    Deployment
    OK
    201
    Deployment
    Created
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl patch deployment deployment-example -p \
    -    '{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}'
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PATCH -H 'Content-Type: application/strategic-merge-patch+json' --data '
    -{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}' \
    -    'http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -"deployment-example" patched
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "5dc3a8e6-b0ee-11e6-aef0-42010af00229",
    -    "resourceVersion": "164489",
    -    "generation": 11,
    -    "creationTimestamp": "2016-11-22T20:00:50Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "5"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.11",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {
    -    "observedGeneration": 10,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    partially update the specified Deployment

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.11
    -        ports:
    -        - containerPort: 80
    -' | kubectl replace -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PUT -H 'Content-Type: application/yaml' --data '
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.11
    -        ports:
    -        - containerPort: 80
    -' http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" replaced
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "4ccca349-9cb1-11e6-9c54-42010a800148",
    -    "resourceVersion": "2119082",
    -    "generation": 5,
    -    "creationTimestamp": "2016-10-28T01:53:19Z",
    -    "labels": {
    -      "app": "nginx"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.11",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    replace the specified Deployment

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}

    -

    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
    201
    Deployment
    Created
    200
    Deployment
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl delete deployment deployment-example
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X DELETE -H 'Content-Type: application/yaml' --data '
    -gracePeriodSeconds: 0
    -orphanDependents: false
    -' 'http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" deleted
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Status",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "status": "Success",
    -  "code": 200
    -}
    -
    -

    delete a Deployment

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Deployment

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/deployments

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment deployment-example -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -    "resourceVersion": "2064726",
    -    "generation": 4,
    -    "creationTimestamp": "2016-10-27T16:33:35Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "1"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    }
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -    "resourceVersion": "2064726",
    -    "generation": 4,
    -    "creationTimestamp": "2016-10-27T16:33:35Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "1"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    }
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    read the specified Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Deployment
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments'
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "List",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "items": [
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "docs",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/docs",
    -        "uid": "ef49e1d2-915e-11e6-be81-42010a80003f",
    -        "resourceVersion": "1924126",
    -        "generation": 21,
    -        "creationTimestamp": "2016-10-13T16:06:00Z",
    -        "labels": {
    -          "run": "docs"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "10",
    -          "replicatingperfection.net/push-image": "true"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "run": "docs"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "auto-pushed-image-pwittrock/api-docs": "1477496453",
    -              "run": "docs"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "docs",
    -                "image": "pwittrock/api-docs:v9",
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 21,
    -        "replicas": 1,
    -        "updatedReplicas": 1,
    -        "availableReplicas": 1
    -      }
    -    },
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "deployment-example",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/deployment-example",
    -        "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -        "resourceVersion": "2064726",
    -        "generation": 4,
    -        "creationTimestamp": "2016-10-27T16:33:35Z",
    -        "labels": {
    -          "app": "nginx"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "1"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 3,
    -        "selector": {
    -          "matchLabels": {
    -            "app": "nginx"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "app": "nginx"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "nginx",
    -                "image": "nginx:1.10",
    -                "ports": [
    -                  {
    -                    "containerPort": 80,
    -                    "protocol": "TCP"
    -                  }
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "IfNotPresent"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 4,
    -        "replicas": 3,
    -        "updatedReplicas": 3,
    -        "availableReplicas": 3
    -      }
    -    }
    -  ]
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "List",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "items": [
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "docs",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/docs",
    -        "uid": "ef49e1d2-915e-11e6-be81-42010a80003f",
    -        "resourceVersion": "1924126",
    -        "generation": 21,
    -        "creationTimestamp": "2016-10-13T16:06:00Z",
    -        "labels": {
    -          "run": "docs"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "10",
    -          "replicatingperfection.net/push-image": "true"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "run": "docs"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "auto-pushed-image-pwittrock/api-docs": "1477496453",
    -              "run": "docs"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "docs",
    -                "image": "pwittrock/api-docs:v9",
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 21,
    -        "replicas": 1,
    -        "updatedReplicas": 1,
    -        "availableReplicas": 1
    -      }
    -    },
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "deployment-example",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/deployment-example",
    -        "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -        "resourceVersion": "2064726",
    -        "generation": 4,
    -        "creationTimestamp": "2016-10-27T16:33:35Z",
    -        "labels": {
    -          "app": "nginx"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "1"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 3,
    -        "selector": {
    -          "matchLabels": {
    -            "app": "nginx"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "app": "nginx"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "nginx",
    -                "image": "nginx:1.10",
    -                "ports": [
    -                  {
    -                    "containerPort": 80,
    -                    "protocol": "TCP"
    -                  }
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "IfNotPresent"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 4,
    -        "replicas": 3,
    -        "updatedReplicas": 3,
    -        "availableReplicas": 3
    -      }
    -    }
    -  ]
    -}
    -
    -

    list or watch objects of kind Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/deployments

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DeploymentList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/deployments

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DeploymentList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment deployment-example --watch -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/apps/v1beta2/watch/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Deployment",
    -        "apiVersion": "apps/v1beta1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -            "uid": "64c12290-9cbf-11e6-9c54-42010a800148",
    -            "resourceVersion": "2128095",
    -            "generation": 2,
    -            "creationTimestamp": "2016-10-28T03:34:12Z",
    -            "labels": {
    -                "app": "nginx"
    -            },
    -            "annotations": {
    -                "deployment.kubernetes.io/revision": "3"
    -            }
    -        },
    -        "spec": {
    -            "replicas": 3,
    -            "selector": {
    -                "matchLabels": {
    -                    "app": "nginx"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "app": "nginx"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "nginx",
    -                            "image": "nginx:1.10",
    -                            "ports": [
    -                                {
    -                                    "containerPort": 80,
    -                                    "protocol": "TCP"
    -                                }
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "IfNotPresent"
    -                        }
    -                    ],
    -                    "restartPolicy": "Always",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            },
    -            "strategy": {
    -                "type": "RollingUpdate",
    -                "rollingUpdate": {
    -                    "maxUnavailable": 1,
    -                    "maxSurge": 1
    -                }
    -            }
    -        },
    -        "status": {
    -            "observedGeneration": 2,
    -            "replicas": 3,
    -            "updatedReplicas": 3,
    -            "availableReplicas": 3
    -        }
    -    }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Deployment",
    -        "apiVersion": "apps/v1beta1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -            "uid": "64c12290-9cbf-11e6-9c54-42010a800148",
    -            "resourceVersion": "2128095",
    -            "generation": 2,
    -            "creationTimestamp": "2016-10-28T03:34:12Z",
    -            "labels": {
    -                "app": "nginx"
    -            },
    -            "annotations": {
    -                "deployment.kubernetes.io/revision": "3"
    -            }
    -        },
    -        "spec": {
    -            "replicas": 3,
    -            "selector": {
    -                "matchLabels": {
    -                    "app": "nginx"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "app": "nginx"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "nginx",
    -                            "image": "nginx:1.10",
    -                            "ports": [
    -                                {
    -                                    "containerPort": 80,
    -                                    "protocol": "TCP"
    -                                }
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "IfNotPresent"
    -                        }
    -                    ],
    -                    "restartPolicy": "Always",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            },
    -            "strategy": {
    -                "type": "RollingUpdate",
    -                "rollingUpdate": {
    -                    "maxUnavailable": 1,
    -                    "maxSurge": 1
    -                }
    -            }
    -        },
    -        "status": {
    -            "observedGeneration": 2,
    -            "replicas": 3,
    -            "updatedReplicas": 3,
    -            "availableReplicas": 3
    -        }
    -    }
    -}
    -
    -

    watch changes to an object of kind Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/deployments/{name}

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/deployments

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/v1beta2/watch/deployments

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/v1beta2/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/apps/v1beta2/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/apps/v1beta2/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
    201
    Deployment
    Created
    200
    Deployment
    OK
    -
    -

    Job v1 batch

    -
    -

    Job Config to print pi up to 2000 digits (then exit).

    -
    -
    
    -apiVersion: batch/v1
    -kind: Job
    -metadata:
    -  # Unique key of the Job instance
    -  name: example-job
    -spec:
    -  template:
    -    metadata:
    -      name: example-job
    -    spec:
    -      containers:
    -      - name: pi
    -        image: perl
    -        command: ["perl"]
    -        args: ["-Mbignum=bpi", "-wle", "print bpi(2000)"]
    -      # Do not restart containers after they exit
    -      restartPolicy: Never
    -
    -
    -

    Job Config to print pi up to 2000 digits (then exit).

    -
    -
    
    -apiVersion: batch/v1
    -kind: Job
    -metadata:
    -  # Unique key of the Job instance
    -  name: example-job
    -spec:
    -  template:
    -    metadata:
    -      name: example-job
    -    spec:
    -      containers:
    -      - name: pi
    -        image: perl
    -        command: ["perl"]
    -        args: ["-Mbignum=bpi", "-wle", "print bpi(2000)"]
    -      # Do not restart containers after they exit
    -      restartPolicy: Never
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    batchv1Job
    -

    Job represents the configuration of a single job.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    JobSpec
    Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    JobStatus
    Current status of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    JobSpec v1 batch

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    activeDeadlineSeconds
    integer
    Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer
    backoffLimit
    integer
    Specifies the number of retries before marking this job failed. Defaults to 6
    completions
    integer
    Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
    manualSelector
    boolean
    manualSelector controls generation of pod labels and pod selectors. Leave manualSelector unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector
    parallelism
    integer
    Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
    selector
    LabelSelector
    A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    template
    PodTemplateSpec
    Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
    -

    JobStatus v1 batch

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    active
    integer
    The number of actively running pods.
    completionTime
    Time
    Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.
    conditions
    JobCondition array
    patch type: merge
    patch merge key: type
    The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
    failed
    integer
    The number of pods which reached phase Failed.
    startTime
    Time
    Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.
    succeeded
    integer
    The number of pods which reached phase Succeeded.
    -

    JobList v1 batch

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    Job array
    items is the list of Jobs.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: batch/v1
    -kind: Job
    -metadata:
    -  name: example-job
    -spec:
    -  template:
    -    metadata:
    -      name: example-job
    -    spec:
    -      containers:
    -      - name: pi
    -        image: perl
    -        command: ["perl",  "-Mbignum=bpi", "-wle", "print bpi(2000)"]
    -      restartPolicy: Never
    -' | kubectl create -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X POST -H 'Content-Type: application/yaml' --data '
    -apiVersion: batch/v1
    -kind: Job
    -metadata:
    -  name: example-job
    -spec:
    -  template:
    -    metadata:
    -      name: example-job
    -    spec:
    -      containers:
    -      - name: pi
    -        image: perl
    -        command: ["perl",  "-Mbignum=bpi", "-wle", "print bpi(2000)"]
    -      restartPolicy: Never
    -' http://127.0.0.1:8001/apis/batch/v1/namespaces/default/jobs
    -
    -
    -

    Output

    -
    -
    
    -job "example-job" created
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Job",
    -  "apiVersion": "batch/v1",
    -  "metadata": {
    -    "name": "example-job",
    -    "namespace": "default",
    -    "selfLink": "/apis/batch/v1/namespaces/default/jobs/example-job",
    -    "uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -    "resourceVersion": "7479",
    -    "creationTimestamp": "2016-11-04T18:45:25Z"
    -  },
    -  "spec": {
    -    "parallelism": 1,
    -    "completions": 1,
    -    "selector": {
    -      "matchLabels": {
    -        "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "name": "example-job",
    -        "creationTimestamp": null,
    -        "labels": {
    -          "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -          "job-name": "example-job"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "pi",
    -            "image": "perl",
    -            "command": [
    -              "perl",
    -              "-Mbignum=bpi",
    -              "-wle",
    -              "print bpi(2000)"
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "Always"
    -          }
    -        ],
    -        "restartPolicy": "Never",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    }
    -  },
    -  "status": {}
    -}
    -
    -

    create a Job

    -

    HTTP Request

    -

    POST /apis/batch/v1/namespaces/{namespace}/jobs

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    Job
    Created
    202
    Job
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Job

    -

    HTTP Request

    -

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

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Job

    -

    HTTP Request

    -

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

    -

    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
    201
    Job
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl delete job example-job
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X DELETE -H 'Content-Type: application/yaml' --data '
    -gracePeriodSeconds: 0
    -orphanDependents: false
    -' 'http://127.0.0.1:8001/apis/batch/v1/namespaces/default/jobs/example-job'
    -
    -
    -

    Output

    -
    -
    
    -job "example-job" deleted
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Status",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "status": "Success",
    -  "code": 200
    -}
    -
    -

    delete a Job

    -

    HTTP Request

    -

    DELETE /apis/batch/v1/namespaces/{namespace}/jobs/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Job

    -

    HTTP Request

    -

    DELETE /apis/batch/v1/namespaces/{namespace}/jobs

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get job example-job -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET http://127.0.0.1:8001/apis/batch/v1/namespaces/default/jobs/example-job
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "Job",
    -  "apiVersion": "batch/v1",
    -  "metadata": {
    -    "name": "example-job",
    -    "namespace": "default",
    -    "selfLink": "/apis/batch/v1/namespaces/default/jobs/example-job",
    -    "uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -    "resourceVersion": "7482",
    -    "creationTimestamp": "2016-11-04T18:45:25Z"
    -  },
    -  "spec": {
    -    "parallelism": 1,
    -    "completions": 1,
    -    "selector": {
    -      "matchLabels": {
    -        "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "name": "example-job",
    -        "creationTimestamp": null,
    -        "labels": {
    -          "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -          "job-name": "example-job"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "pi",
    -            "image": "perl",
    -            "command": [
    -              "perl",
    -              "-Mbignum=bpi",
    -              "-wle",
    -              "print bpi(2000)"
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "Always"
    -          }
    -        ],
    -        "restartPolicy": "Never",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    }
    -  },
    -  "status": {
    -    "startTime": "2016-11-04T18:45:25Z",
    -    "active": 1
    -  }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Job",
    -  "apiVersion": "batch/v1",
    -  "metadata": {
    -    "name": "example-job",
    -    "namespace": "default",
    -    "selfLink": "/apis/batch/v1/namespaces/default/jobs/example-job",
    -    "uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -    "resourceVersion": "7482",
    -    "creationTimestamp": "2016-11-04T18:45:25Z"
    -  },
    -  "spec": {
    -    "parallelism": 1,
    -    "completions": 1,
    -    "selector": {
    -      "matchLabels": {
    -        "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "name": "example-job",
    -        "creationTimestamp": null,
    -        "labels": {
    -          "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -          "job-name": "example-job"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "pi",
    -            "image": "perl",
    -            "command": [
    -              "perl",
    -              "-Mbignum=bpi",
    -              "-wle",
    -              "print bpi(2000)"
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "Always"
    -          }
    -        ],
    -        "restartPolicy": "Never",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    }
    -  },
    -  "status": {
    -    "startTime": "2016-11-04T18:45:25Z",
    -    "active": 1
    -  }
    -}
    -
    -

    read the specified Job

    -

    HTTP Request

    -

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

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

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

    List

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get job -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/batch/v1/namespaces/default/jobs'
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "JobList",
    -  "apiVersion": "batch/v1",
    -  "metadata": {
    -    "selfLink": "/apis/batch/v1/namespaces/default/jobs",
    -    "resourceVersion": "7589"
    -  },
    -  "items": [
    -    {
    -      "metadata": {
    -        "name": "",
    -        "namespace": "default",
    -        "selfLink": "/apis/batch/v1/namespaces/default/jobs/",
    -        "uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -        "resourceVersion": "7482",
    -        "creationTimestamp": "2016-11-04T18:45:25Z"
    -      },
    -      "spec": {
    -        "parallelism": 1,
    -        "completions": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "name": "",
    -            "creationTimestamp": null,
    -            "labels": {
    -              "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -              "job-name": ""
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "pi",
    -                "image": "perl",
    -                "command": [
    -                  "perl",
    -                  "-Mbignum=bpi",
    -                  "-wle",
    -                  "print bpi(2000)"
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Never",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        }
    -      },
    -      "status": {
    -        "startTime": "2016-11-04T18:45:25Z",
    -        "active": 1
    -      }
    -    }
    -  ]
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "JobList",
    -  "apiVersion": "batch/v1",
    -  "metadata": {
    -    "selfLink": "/apis/batch/v1/namespaces/default/jobs",
    -    "resourceVersion": "7589"
    -  },
    -  "items": [
    -    {
    -      "metadata": {
    -        "name": "",
    -        "namespace": "default",
    -        "selfLink": "/apis/batch/v1/namespaces/default/jobs/",
    -        "uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -        "resourceVersion": "7482",
    -        "creationTimestamp": "2016-11-04T18:45:25Z"
    -      },
    -      "spec": {
    -        "parallelism": 1,
    -        "completions": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "name": "",
    -            "creationTimestamp": null,
    -            "labels": {
    -              "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -              "job-name": ""
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "pi",
    -                "image": "perl",
    -                "command": [
    -                  "perl",
    -                  "-Mbignum=bpi",
    -                  "-wle",
    -                  "print bpi(2000)"
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Never",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        }
    -      },
    -      "status": {
    -        "startTime": "2016-11-04T18:45:25Z",
    -        "active": 1
    -      }
    -    }
    -  ]
    -}
    -
    -

    list or watch objects of kind Job

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    JobList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Job

    -

    HTTP Request

    -

    GET /apis/batch/v1/jobs

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    JobList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get job example-job --watch -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/batch/v1/watch/namespaces/default/jobs/example-job'
    -
    -
    -

    Output

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Job",
    -        "apiVersion": "batch/v1",
    -        "metadata": {
    -            "name": "example-job",
    -            "namespace": "default",
    -            "selfLink": "/apis/batch/v1/namespaces/default/jobs/example-job",
    -            "uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -            "resourceVersion": "7482",
    -            "creationTimestamp": "2016-11-04T18:45:25Z"
    -        },
    -        "spec": {
    -            "parallelism": 1,
    -            "completions": 1,
    -            "selector": {
    -                "matchLabels": {
    -                    "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "name": "example-job",
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -                        "job-name": "example-job"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "pi",
    -                            "image": "perl",
    -                            "command": [
    -                                "perl",
    -                                "-Mbignum=bpi",
    -                                "-wle",
    -                                "print bpi(2000)"
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "Always"
    -                        }
    -                    ],
    -                    "restartPolicy": "Never",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            }
    -        },
    -        "status": {
    -            "startTime": "2016-11-04T18:45:25Z",
    -            "active": 1
    -        }
    -    }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Job",
    -        "apiVersion": "batch/v1",
    -        "metadata": {
    -            "name": "example-job",
    -            "namespace": "default",
    -            "selfLink": "/apis/batch/v1/namespaces/default/jobs/example-job",
    -            "uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -            "resourceVersion": "7482",
    -            "creationTimestamp": "2016-11-04T18:45:25Z"
    -        },
    -        "spec": {
    -            "parallelism": 1,
    -            "completions": 1,
    -            "selector": {
    -                "matchLabels": {
    -                    "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "name": "example-job",
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "controller-uid": "d93a3569-a2be-11e6-a008-fa043d458cc7",
    -                        "job-name": "example-job"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "pi",
    -                            "image": "perl",
    -                            "command": [
    -                                "perl",
    -                                "-Mbignum=bpi",
    -                                "-wle",
    -                                "print bpi(2000)"
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "Always"
    -                        }
    -                    ],
    -                    "restartPolicy": "Never",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            }
    -        },
    -        "status": {
    -            "startTime": "2016-11-04T18:45:25Z",
    -            "active": 1
    -        }
    -    }
    -}
    -
    -

    watch changes to an object of kind Job

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/batch/v1/watch/namespaces/{namespace}/jobs

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Job

    -

    HTTP Request

    -

    GET /apis/batch/v1/watch/jobs

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    201
    Job
    Created
    200
    Job
    OK
    -
    -

    Pod v1 core

    -
    -

    Pod Config to print "Hello World".

    -
    -
    
    -apiVersion: v1
    -kind: Pod
    -metadata:
    -  name: pod-example
    -spec:
    -  containers:
    -  - image: ubuntu:trusty
    -    command: ["echo"]
    -    args: ["Hello World"]
    -
    -
    -

    Pod Config to print "Hello World".

    -
    -
    
    -apiVersion: v1
    -kind: Pod
    -metadata:
    -  name: pod-example
    -spec:
    -  containers:
    -  - image: ubuntu:trusty
    -    command: ["echo"]
    -    args: ["Hello World"]
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Pod
    - - - - - - -

    Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    PodSpec
    Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    PodStatus
    Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    PodSpec v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    activeDeadlineSeconds
    integer
    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.
    affinity
    Affinity
    If specified, the pod's scheduling constraints
    automountServiceAccountToken
    boolean
    AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.
    containers
    Container array
    patch type: merge
    patch merge key: name
    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.
    dnsConfig
    PodDNSConfig
    Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. This is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.
    dnsPolicy
    string
    Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. Note that 'None' policy is an alpha feature introduced in v1.9 and CustomPodDNS feature gate must be enabled to use it.
    hostAliases
    HostAlias array
    patch type: merge
    patch merge key: ip
    HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.
    hostIPC
    boolean
    Use the host's ipc namespace. Optional: Default to false.
    hostNetwork
    boolean
    Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.
    hostPID
    boolean
    Use the host's pid namespace. Optional: Default to false.
    hostname
    string
    Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.
    imagePullSecrets
    LocalObjectReference array
    patch type: merge
    patch merge key: name
    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod
    initContainers
    Container array
    patch type: merge
    patch merge key: name
    List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
    nodeName
    string
    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.
    nodeSelector
    object
    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
    priority
    integer
    The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.
    priorityClassName
    string
    If specified, indicates the pod's priority. "SYSTEM" is a special keyword which indicates the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.
    restartPolicy
    string
    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy
    schedulerName
    string
    If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.
    securityContext
    PodSecurityContext
    SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.
    serviceAccount
    string
    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.
    serviceAccountName
    string
    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
    subdomain
    string
    If specified, the fully qualified Pod hostname will be "...svc.". If not specified, the pod will not have a domainname at all.
    terminationGracePeriodSeconds
    integer
    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.
    tolerations
    Toleration array
    If specified, the pod's tolerations.
    volumes
    Volume array
    patch type: merge,retainKeys
    patch merge key: name
    List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes
    -

    PodStatus v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    conditions
    PodCondition array
    patch type: merge
    patch merge key: type
    Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
    containerStatuses
    ContainerStatus array
    The list has one entry per container in the manifest. Each entry is currently the output of docker inspect. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
    hostIP
    string
    IP address of the host to which the pod is assigned. Empty if not yet scheduled.
    initContainerStatuses
    ContainerStatus array
    The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
    message
    string
    A human readable message indicating details about why the pod is in this condition.
    phase
    string
    Current condition of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase
    podIP
    string
    IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.
    qosClass
    string
    The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod/
    reason
    string
    A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'
    startTime
    Time
    RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.
    -

    PodList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    Pod array
    List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a Pod

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/pods

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    Pod
    Created
    202
    Pod
    Accepted
    200
    Pod
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Pod

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/pods/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Pod

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/pods/{name}

    -

    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
    201
    Pod
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a Pod

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/pods/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Pod

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/pods

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Pod

    -

    HTTP Request

    -

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

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Pod
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Pod

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PodList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Pod

    -

    HTTP Request

    -

    GET /api/v1/pods

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PodList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Pod

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Pod

    -

    HTTP Request

    -

    GET /api/v1/watch/pods

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    201
    Pod
    Created
    200
    Pod
    OK
    -

    Proxy Operations

    -

    See supported operations below...

    -

    Create Connect Portforward

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect POST requests to portforward of Pod

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/pods/{name}/portforward

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    portsList of ports to forward Required when using WebSockets
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect POST requests to proxy of Pod

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/pods/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect POST requests to proxy of Pod

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy POST requests to Pod

    -

    HTTP Request

    -

    POST /api/v1/proxy/namespaces/{namespace}/pods/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy POST requests to Pod

    -

    HTTP Request

    -

    POST /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect DELETE requests to proxy of Pod

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect DELETE requests to proxy of Pod

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy DELETE requests to Pod

    -

    HTTP Request

    -

    DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy DELETE requests to Pod

    -

    HTTP Request

    -

    DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Connect Portforward

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect GET requests to portforward of Pod

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/pods/{name}/portforward

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    portsList of ports to forward Required when using WebSockets
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect GET requests to proxy of Pod

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/pods/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect GET requests to proxy of Pod

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy GET requests to Pod

    -

    HTTP Request

    -

    GET /api/v1/proxy/namespaces/{namespace}/pods/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy GET requests to Pod

    -

    HTTP Request

    -

    GET /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Head Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect HEAD requests to proxy of Pod

    -

    HTTP Request

    -

    HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Head Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect HEAD requests to proxy of Pod

    -

    HTTP Request

    -

    HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect PUT requests to proxy of Pod

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect PUT requests to proxy of Pod

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to pod.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy PUT requests to Pod

    -

    HTTP Request

    -

    PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy PUT requests to Pod

    -

    HTTP Request

    -

    PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Misc Operations

    -

    See supported operations below...

    -

    Read Log

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read log of the specified Pod

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/pods/{name}/log

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    containerThe container for which to stream logs. Defaults to only container if there is one container in the pod.
    followFollow the log stream of the pod. Defaults to false.
    limitBytesIf 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.
    prettyIf 'true', then the output is pretty printed.
    previousReturn previous terminated container logs. Defaults to false.
    sinceSecondsA 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.
    tailLinesIf set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime
    timestampsIf true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -
    -

    ReplicaSet v1beta2 apps

    -
    -

    ReplicaSet Config to run 3 nginx instances.

    -
    -
    
    -apiVersion: extensions/v1beta1
    -kind: ReplicaSet
    -metadata:
    -  # Unique key of the ReplicaSet instance
    -  name: replicaset-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      # Run the nginx image
    -      - name: nginx
    -        image: nginx:1.10
    -
    -
    -

    ReplicaSet Config to run 3 nginx instances.

    -
    -
    
    -apiVersion: extensions/v1beta1
    -kind: ReplicaSet
    -metadata:
    -  # Unique key of the ReplicaSet instance
    -  name: replicaset-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      # Run the nginx image
    -      - name: nginx
    -        image: nginx:1.10
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2ReplicaSet
    - - - - - - -

    ReplicaSet ensures that a specified number of pod replicas are running at any given time.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    ReplicaSetSpec
    Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    ReplicaSetStatus
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    ReplicaSetSpec v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
    replicas
    integer
    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
    selector
    LabelSelector
    Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    template
    PodTemplateSpec
    Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
    -

    ReplicaSetStatus v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    availableReplicas
    integer
    The number of available replicas (ready for at least minReadySeconds) for this replica set.
    conditions
    ReplicaSetCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a replica set's current state.
    fullyLabeledReplicas
    integer
    The number of pods that have labels matching the labels of the pod template of the replicaset.
    observedGeneration
    integer
    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.
    readyReplicas
    integer
    The number of ready replicas for this replica set.
    replicas
    integer
    Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
    -

    ReplicaSetList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    ReplicaSet array
    List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ReplicaSet

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/replicasets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    ReplicaSet
    Created
    202
    ReplicaSet
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ReplicaSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ReplicaSet

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}

    -

    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
    201
    ReplicaSet
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ReplicaSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ReplicaSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/replicasets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ReplicaSet
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ReplicaSetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/replicasets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ReplicaSetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ReplicaSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/v1beta2/watch/replicasets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ReplicaSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/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/apps/v1beta2/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/apps/v1beta2/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
    201
    ReplicaSet
    Created
    200
    ReplicaSet
    OK
    -
    -

    ReplicationController v1 core

    -
    -

    ReplicationController Config to run 3 nginx instances.

    -
    -
    
    -apiVersion: v1
    -kind: ReplicationController
    -metadata:
    -  # Unique key of the ReplicationController instance
    -  name: replicationcontroller-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      # Run the nginx image
    -      - name: nginx
    -        image: nginx:1.10
    -
    -
    -

    ReplicationController Config to run 3 nginx instances.

    -
    -
    
    -apiVersion: v1
    -kind: ReplicationController
    -metadata:
    -  # Unique key of the ReplicationController instance
    -  name: replicationcontroller-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      # Run the nginx image
    -      - name: nginx
    -        image: nginx:1.10
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ReplicationController
    - - - - - - -

    ReplicationController represents the configuration of a replication controller.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    ReplicationControllerSpec
    Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    ReplicationControllerStatus
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    ReplicationControllerSpec v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
    replicas
    integer
    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller
    selector
    object
    Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    template
    PodTemplateSpec
    Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
    -

    ReplicationControllerStatus v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    availableReplicas
    integer
    The number of available replicas (ready for at least minReadySeconds) for this replication controller.
    conditions
    ReplicationControllerCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a replication controller's current state.
    fullyLabeledReplicas
    integer
    The number of pods that have labels matching the labels of the pod template of the replication controller.
    observedGeneration
    integer
    ObservedGeneration reflects the generation of the most recently observed replication controller.
    readyReplicas
    integer
    The number of ready replicas for this replication controller.
    replicas
    integer
    Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller
    -

    ReplicationControllerList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    ReplicationController array
    List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ReplicationController

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/replicationcontrollers

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    202
    ReplicationController
    Accepted
    200
    ReplicationController
    OK
    201
    ReplicationController
    Created
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ReplicationController

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ReplicationController

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}

    -

    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
    201
    ReplicationController
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ReplicationController

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/replicationcontrollers/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ReplicationController

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/replicationcontrollers

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ReplicationController

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ReplicationController
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ReplicationController

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/replicationcontrollers

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ReplicationControllerList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ReplicationController

    -

    HTTP Request

    -

    GET /api/v1/replicationcontrollers

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ReplicationControllerList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ReplicationController

    -

    HTTP Request

    -

    GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ReplicationController
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ReplicationController

    -

    HTTP Request

    -

    GET /api/v1/watch/replicationcontrollers

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    201
    ReplicationController
    Created
    -
    -

    StatefulSet v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2StatefulSet
    - - - -

    StatefulSet represents a set of pods with consistent identities. Identities are defined as:

    -
      -
    • Network: A single stable DNS and hostname.
    • -
    • Storage: As many VolumeClaims as requested. -The StatefulSet guarantees that a given network identity will always map to the same storage identity.
    • -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    StatefulSetSpec
    Spec defines the desired identities of pods in this set.
    status
    StatefulSetStatus
    Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.
    -

    StatefulSetSpec v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    podManagementPolicy
    string
    podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is OrderedReady, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is Parallel which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.
    replicas
    integer
    replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.
    revisionHistoryLimit
    integer
    revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.
    selector
    LabelSelector
    selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    serviceName
    string
    serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.
    template
    PodTemplateSpec
    template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.
    updateStrategy
    StatefulSetUpdateStrategy
    updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.
    volumeClaimTemplates
    PersistentVolumeClaim array
    volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.
    -

    StatefulSetStatus v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    collisionCount
    integer
    collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
    conditions
    StatefulSetCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a statefulset's current state.
    currentReplicas
    integer
    currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.
    currentRevision
    string
    currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).
    observedGeneration
    integer
    observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.
    readyReplicas
    integer
    readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
    replicas
    integer
    replicas is the number of Pods created by the StatefulSet controller.
    updateRevision
    string
    updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)
    updatedReplicas
    integer
    updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
    -

    StatefulSetList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a StatefulSet

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/statefulsets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    StatefulSet
    Created
    202
    StatefulSet
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified StatefulSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified StatefulSet

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}

    -

    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
    201
    StatefulSet
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a StatefulSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of StatefulSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/statefulsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified StatefulSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    StatefulSet
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind StatefulSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    StatefulSetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind StatefulSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/statefulsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    StatefulSetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind StatefulSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/statefulsets/{name}

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 StatefulSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1beta2/watch/statefulsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1beta2/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/v1beta2/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/v1beta2/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
    201
    StatefulSet
    Created
    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 -a LoadBalancer or NodePort Service. For development, internally accessible -Workloads can be accessed via proxy through the api master using the kubectl proxy command.

    -

    Common resource types:

    -
      -
    • Services for providing a single ip endpoint loadbalanced across multiple Workload replicas.
    • -
    • Ingress for providing a https(s) endpoint http(s) routed to one or more Services
    • -
    -
    -
    -

    Endpoints v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Endpoints
    -

    Endpoints is a collection of endpoints that implement the actual service. Example: - Name: "mysvc", - Subsets: [ - { - Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], - Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] - }, - { - Addresses: [{"ip": "10.10.3.3"}], - Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}] - }, - ]

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    subsets
    EndpointSubset 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.
    -

    EndpointsList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create Endpoints

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/endpoints

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    Endpoints
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Endpoints
    OK
    201
    Endpoints
    Created
    202
    Endpoints
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Endpoints

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/endpoints/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Endpoints
    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
    Endpoints
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Endpoints

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/endpoints/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Endpoints
    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
    Endpoints
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Endpoints
    OK
    201
    Endpoints
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete Endpoints

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/endpoints/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Endpoints
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Endpoints

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/endpoints

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Endpoints

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Endpoints
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Endpoints
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Endpoints

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    EndpointsList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Endpoints

    -

    HTTP Request

    -

    GET /api/v1/endpoints

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    EndpointsList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Endpoints

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Endpoints
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Endpoints

    -

    HTTP Request

    -

    GET /api/v1/watch/endpoints

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    Ingress v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1Ingress
    -

    Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    IngressSpec
    Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    IngressStatus
    Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    IngressSpec v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    backend
    IngressBackend
    A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.
    rules
    IngressRule array
    A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.
    tls
    IngressTLS array
    TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.
    -

    IngressStatus v1beta1 extensions

    - - - - - - - - - - - - - - - -
    FieldDescription
    loadBalancer
    LoadBalancerStatus
    LoadBalancer contains the current status of the load-balancer.
    -

    IngressList v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create an Ingress

    -

    HTTP Request

    -

    POST /apis/extensions/v1beta1/namespaces/{namespace}/ingresses

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    Ingress
    Created
    202
    Ingress
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Ingress

    -

    HTTP Request

    -

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

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Ingress

    -

    HTTP Request

    -

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

    -

    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
    201
    Ingress
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete an Ingress

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Ingress

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Ingress

    -

    HTTP Request

    -

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

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

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

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Ingress

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    IngressList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Ingress

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/ingresses

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    IngressList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Ingress

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Ingress
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Ingress

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/watch/ingresses

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    201
    Ingress
    Created
    -
    -

    Service v1 core

    -
    -

    Service Config to load balance traffic across all Pods with the app=nginx label. Receives on and sends to port 80. Exposes an externally accessible endpoint.

    -
    -
    
    -kind: Service
    -apiVersion: v1
    -metadata:
    -  # Unique key of the Service instance
    -  name: service-example
    -spec:
    -  ports:
    -    # Accept traffic sent to port 80
    -    - name: http
    -      port: 80
    -      targetPort: 80
    -  selector:
    -    # Loadbalance traffic across Pods matching
    -    # this label selector
    -    app: nginx
    -  # Create an HA proxy in the cloud provider
    -  # with an External IP address - *Only supported
    -  # by some cloud providers*
    -  type: LoadBalancer
    -
    -
    -

    Service Config to load balance traffic across all Pods with the app=nginx label. Receives on and sends to port 80. Exposes an externally accessible endpoint.

    -
    -
    
    -kind: Service
    -apiVersion: v1
    -metadata:
    -  # Unique key of the Service instance
    -  name: service-example
    -spec:
    -  ports:
    -    # Accept traffic sent to port 80
    -    - name: http
    -      port: 80
    -      targetPort: 80
    -  selector:
    -    # Loadbalance traffic across Pods matching
    -    # this label selector
    -    app: nginx
    -  # Create an HA proxy in the cloud provider
    -  # with an External IP address - *Only supported
    -  # by some cloud providers*
    -  type: LoadBalancer
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Service
    -

    Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    ServiceSpec
    Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    ServiceStatus
    Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    ServiceSpec v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    clusterIP
    string
    clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are "None", empty string (""), or a valid IP address. "None" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
    externalIPs
    string array
    externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.
    externalName
    string
    externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName.
    externalTrafficPolicy
    string
    externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. "Local" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. "Cluster" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.
    healthCheckNodePort
    integer
    healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local.
    loadBalancerIP
    string
    Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.
    loadBalancerSourceRanges
    string array
    If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/
    ports
    ServicePort array
    patch type: merge
    patch merge key: port
    The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
    publishNotReadyAddresses
    boolean
    publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery. This field will replace the service.alpha.kubernetes.io/tolerate-unready-endpoints when that annotation is deprecated and all clients have been converted to use this field.
    selector
    object
    Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/
    sessionAffinity
    string
    Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
    sessionAffinityConfig
    SessionAffinityConfig
    sessionAffinityConfig contains the configurations of session affinity.
    type
    string
    type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types
    -

    ServiceStatus v1 core

    - - - - - - - - - - - - - - - -
    FieldDescription
    loadBalancer
    LoadBalancerStatus
    LoadBalancer contains the current status of the load-balancer, if one is present.
    -

    ServiceList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'kind: Service
    -apiVersion: v1
    -metadata:
    -  name: service-example
    -spec:
    -  ports:
    -    - name: http
    -      port: 80
    -      targetPort: 80
    -  selector:
    -      app: nginx
    -  type: LoadBalancer
    -' | kubectl create -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X POST -H 'Content-Type: application/yaml' --data '
    -kind: Service
    -apiVersion: v1
    -metadata:
    -  name: service-example
    -spec:
    -  ports:
    -    - name: http
    -      port: 80
    -      targetPort: 80
    -  selector:
    -      app: nginx
    -  type: LoadBalancer
    -' http://127.0.0.1:8001/api/v1/namespaces/default/services
    -
    -
    -

    Output

    -
    -
    
    -service "service-example" created
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Service",
    -  "apiVersion": "v1",
    -  "metadata": {
    -    "name": "service-example",
    -    "namespace": "default",
    -    "selfLink": "/api/v1/namespaces/default/services/service-example",
    -    "uid": "93e5c731-9d30-11e6-9c54-42010a800148",
    -    "resourceVersion": "2205767",
    -    "creationTimestamp": "2016-10-28T17:04:24Z"
    -  },
    -  "spec": {
    -    "ports": [
    -      {
    -        "name": "http",
    -        "protocol": "TCP",
    -        "port": 80,
    -        "targetPort": 80,
    -        "nodePort": 32417
    -      }
    -    ],
    -    "selector": {
    -      "app": "nginx"
    -    },
    -    "clusterIP": "10.183.250.161",
    -    "type": "LoadBalancer",
    -    "sessionAffinity": "None"
    -  },
    -  "status": {
    -    "loadBalancer": {}
    -  }
    -}
    -
    -

    create a Service

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/services

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    Service
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    Service
    Created
    202
    Service
    Accepted
    200
    Service
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl patch service  -p \
    -    '{"spec":{"ports":[{"name":"http","port":80,"targetPort":8080}]}}'
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PATCH -H 'Content-Type: application/strategic-merge-patch+json' --data '
    -{"spec":{"ports":[{"name":"http","port":80,"targetPort":8080}]}}' \
    -    'http://127.0.0.1:8001/api/v1/namespaces/default/services/'
    -
    -
    -

    Output

    -
    -
    
    -"" patched
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Service",
    -  "apiVersion": "v1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/api/v1/namespaces/default/services/deployment-example",
    -    "uid": "93e5c731-9d30-11e6-9c54-42010a800148",
    -    "resourceVersion": "2205995",
    -    "creationTimestamp": "2016-10-28T17:04:24Z"
    -  },
    -  "spec": {
    -    "ports": [
    -      {
    -        "name": "http",
    -        "protocol": "TCP",
    -        "port": 80,
    -        "targetPort": 8080,
    -        "nodePort": 32417
    -      }
    -    ],
    -    "selector": {
    -      "app": "nginx"
    -    },
    -    "clusterIP": "10.183.250.161",
    -    "type": "LoadBalancer",
    -    "sessionAffinity": "None"
    -  },
    -  "status": {
    -    "loadBalancer": {
    -      "ingress": [
    -        {
    -          "ip": "104.198.186.106"
    -        }
    -      ]
    -    }
    -  }
    -}
    -
    -

    partially update the specified Service

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/services/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    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
    Service
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: v1
    -kind: Service
    -metadata:
    -  name: deployment-example
    -  resourceVersion: "2205995"
    -spec:
    -  clusterIP: 10.183.250.161
    -  ports:
    -  - name: http
    -    nodePort: 32417
    -    port: 80
    -    protocol: TCP
    -    targetPort: 8080
    -  selector:
    -    app: nginx
    -  sessionAffinity: None
    -  type: LoadBalancer
    -' | kubectl replace -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PUT -H 'Content-Type: application/yaml' --data '
    -apiVersion: v1
    -kind: Service
    -metadata:
    -  name: deployment-example
    -  resourceVersion: "2205995"
    -spec:
    -  clusterIP: 10.183.250.161
    -  ports:
    -  - name: http
    -    nodePort: 32417
    -    port: 80
    -    protocol: TCP
    -    targetPort: 8080
    -  selector:
    -    app: nginx
    -  sessionAffinity: None
    -  type: LoadBalancer
    -' http://127.0.0.1:8001/api/v1/namespaces/default/services/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -service "deployment-example" replaced
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Service",
    -  "apiVersion": "v1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/api/v1/namespaces/default/services/deployment-example",
    -    "uid": "93e5c731-9d30-11e6-9c54-42010a800148",
    -    "resourceVersion": "2208672",
    -    "creationTimestamp": "2016-10-28T17:04:24Z"
    -  },
    -  "spec": {
    -    "ports": [
    -      {
    -        "name": "http",
    -        "protocol": "TCP",
    -        "port": 80,
    -        "targetPort": 8080,
    -        "nodePort": 32417
    -      }
    -    ],
    -    "selector": {
    -      "app": "nginx"
    -    },
    -    "clusterIP": "10.183.250.161",
    -    "type": "LoadBalancer",
    -    "sessionAffinity": "None"
    -  },
    -  "status": {
    -    "loadBalancer": {
    -      "ingress": [
    -        {
    -          "ip": "104.198.186.106"
    -        }
    -      ]
    -    }
    -  }
    -}
    -
    -

    replace the specified Service

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/services/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    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
    Service
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Service
    OK
    201
    Service
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl delete service deployment-example
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X DELETE -H 'Content-Type: application/yaml' --data '
    -gracePeriodSeconds: 0
    -orphanDependents: false
    -' 'http://127.0.0.1:8001/api/v1/namespaces/default/services/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -service "deployment-example" deleted
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Status",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "status": "Success",
    -  "code": 200
    -}
    -
    -

    delete a Service

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/services/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get service deployment-example -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET http://127.0.0.1:8001/api/v1/namespaces/default/services/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "Service",
    -  "apiVersion": "v1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/api/v1/namespaces/default/services/deployment-example",
    -    "uid": "93e5c731-9d30-11e6-9c54-42010a800148",
    -    "resourceVersion": "2205995",
    -    "creationTimestamp": "2016-10-28T17:04:24Z"
    -  },
    -  "spec": {
    -    "ports": [
    -      {
    -        "name": "http",
    -        "protocol": "TCP",
    -        "port": 80,
    -        "targetPort": 8080,
    -        "nodePort": 32417
    -      }
    -    ],
    -    "selector": {
    -      "app": "nginx"
    -    },
    -    "clusterIP": "10.183.250.161",
    -    "type": "LoadBalancer",
    -    "sessionAffinity": "None"
    -  },
    -  "status": {
    -    "loadBalancer": {
    -      "ingress": [
    -        {
    -          "ip": "104.198.186.106"
    -        }
    -      ]
    -    }
    -  }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Service",
    -  "apiVersion": "v1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/api/v1/namespaces/default/services/deployment-example",
    -    "uid": "93e5c731-9d30-11e6-9c54-42010a800148",
    -    "resourceVersion": "2205995",
    -    "creationTimestamp": "2016-10-28T17:04:24Z"
    -  },
    -  "spec": {
    -    "ports": [
    -      {
    -        "name": "http",
    -        "protocol": "TCP",
    -        "port": 80,
    -        "targetPort": 8080,
    -        "nodePort": 32417
    -      }
    -    ],
    -    "selector": {
    -      "app": "nginx"
    -    },
    -    "clusterIP": "10.183.250.161",
    -    "type": "LoadBalancer",
    -    "sessionAffinity": "None"
    -  },
    -  "status": {
    -    "loadBalancer": {
    -      "ingress": [
    -        {
    -          "ip": "104.198.186.106"
    -        }
    -      ]
    -    }
    -  }
    -}
    -
    -

    read the specified Service

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Service
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get service -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/api/v1/namespaces/default/services'
    -
    -
    -

    Output

    -
    -
    
    -
    -
    -

    Response Body

    -
    -
    
    -
    -

    list or watch objects of kind Service

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ServiceList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Service

    -

    HTTP Request

    -

    GET /api/v1/services

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ServiceList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get service deployment-example --watch -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/api/v1/watch/namespaces/default/services/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Service",
    -        "apiVersion": "v1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/api/v1/namespaces/default/services/deployment-example",
    -            "uid": "93e5c731-9d30-11e6-9c54-42010a800148",
    -            "resourceVersion": "2205995",
    -            "creationTimestamp": "2016-10-28T17:04:24Z"
    -        },
    -        "spec": {
    -            "ports": [
    -                {
    -                    "name": "http",
    -                    "protocol": "TCP",
    -                    "port": 80,
    -                    "targetPort": 8080,
    -                    "nodePort": 32417
    -                }
    -            ],
    -            "selector": {
    -                "app": "nginx"
    -            },
    -            "clusterIP": "10.183.250.161",
    -            "type": "LoadBalancer",
    -            "sessionAffinity": "None"
    -        },
    -        "status": {
    -            "loadBalancer": {
    -                "ingress": [
    -                    {
    -                        "ip": "104.198.186.106"
    -                    }
    -                ]
    -            }
    -        }
    -    }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Service",
    -        "apiVersion": "v1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/api/v1/namespaces/default/services/deployment-example",
    -            "uid": "93e5c731-9d30-11e6-9c54-42010a800148",
    -            "resourceVersion": "2205995",
    -            "creationTimestamp": "2016-10-28T17:04:24Z"
    -        },
    -        "spec": {
    -            "ports": [
    -                {
    -                    "name": "http",
    -                    "protocol": "TCP",
    -                    "port": 80,
    -                    "targetPort": 8080,
    -                    "nodePort": 32417
    -                }
    -            ],
    -            "selector": {
    -                "app": "nginx"
    -            },
    -            "clusterIP": "10.183.250.161",
    -            "type": "LoadBalancer",
    -            "sessionAffinity": "None"
    -        },
    -        "status": {
    -            "loadBalancer": {
    -                "ingress": [
    -                    {
    -                        "ip": "104.198.186.106"
    -                    }
    -                ]
    -            }
    -        }
    -    }
    -}
    -
    -

    watch changes to an object of kind Service

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Service

    -

    HTTP Request

    -

    GET /api/v1/watch/services

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Service

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/services/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    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
    Service
    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 Service

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/services/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    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
    Service
    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 Service

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/services/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    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
    Service
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Service
    OK
    201
    Service
    Created
    -

    Proxy Operations

    -

    See supported operations below...

    -

    Create Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect POST requests to proxy of Service

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/services/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect POST requests to proxy of Service

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy POST requests to Service

    -

    HTTP Request

    -

    POST /api/v1/proxy/namespaces/{namespace}/services/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy POST requests to Service

    -

    HTTP Request

    -

    POST /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect DELETE requests to proxy of Service

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect DELETE requests to proxy of Service

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy DELETE requests to Service

    -

    HTTP Request

    -

    DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy DELETE requests to Service

    -

    HTTP Request

    -

    DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect GET requests to proxy of Service

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/services/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect GET requests to proxy of Service

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy GET requests to Service

    -

    HTTP Request

    -

    GET /api/v1/proxy/namespaces/{namespace}/services/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy GET requests to Service

    -

    HTTP Request

    -

    GET /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Head Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect HEAD requests to proxy of Service

    -

    HTTP Request

    -

    HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Head Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect HEAD requests to proxy of Service

    -

    HTTP Request

    -

    HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect PUT requests to proxy of Service

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/services/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect PUT requests to proxy of Service

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath 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.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy PUT requests to Service

    -

    HTTP Request

    -

    PUT /api/v1/proxy/namespaces/{namespace}/services/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy PUT requests to Service

    -

    HTTP Request

    -

    PUT /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Service
    namespaceobject name and auth scope, such as for teams and projects
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    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 for providing text key value pairs injected into the application through environment variables, command line arguments, or files
    • -
    • Secrets for providing binary data injected into the application through files
    • -
    • Volumes for providing a filesystem external to the Container. Maybe shared across Containers within the same Pod and have a lifetime persisting beyond a Container or Pod.
    • -
    -
    -
    -

    ConfigMap v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ConfigMap
    -

    ConfigMap holds configuration data for pods to consume.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    data
    object
    Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    ConfigMapList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ConfigMap

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/configmaps

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    ConfigMap
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ConfigMap
    OK
    201
    ConfigMap
    Created
    202
    ConfigMap
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ConfigMap

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/configmaps/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ConfigMap
    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
    ConfigMap
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ConfigMap

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/configmaps/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ConfigMap
    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
    ConfigMap
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ConfigMap
    OK
    201
    ConfigMap
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ConfigMap

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/configmaps/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ConfigMap
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ConfigMap

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/configmaps

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ConfigMap

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/configmaps/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ConfigMap
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ConfigMap
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ConfigMap

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/configmaps

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ConfigMapList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ConfigMap

    -

    HTTP Request

    -

    GET /api/v1/configmaps

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ConfigMapList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ConfigMap

    -

    HTTP Request

    -

    GET /api/v1/watch/namespaces/{namespace}/configmaps/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ConfigMap
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ConfigMap

    -

    HTTP Request

    -

    GET /api/v1/watch/configmaps

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    Secret v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Secret
    -

    Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    data
    object
    Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. 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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/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.
    -

    SecretList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    Secret array
    Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a Secret

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/secrets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    Secret
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    Secret
    Created
    202
    Secret
    Accepted
    200
    Secret
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Secret

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/secrets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Secret
    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
    Secret
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Secret

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/secrets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Secret
    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
    Secret
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Secret
    OK
    201
    Secret
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a Secret

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/secrets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Secret
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Secret

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/secrets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Secret

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Secret
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Secret
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Secret

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    SecretList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Secret

    -

    HTTP Request

    -

    GET /api/v1/secrets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    SecretList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Secret

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Secret
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Secret

    -

    HTTP Request

    -

    GET /api/v1/watch/secrets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    PersistentVolumeClaim v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PersistentVolumeClaim
    - - - - - -

    PersistentVolumeClaim is a user's request for and claim to a persistent volume

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    PersistentVolumeClaimSpec
    Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
    status
    PersistentVolumeClaimStatus
    Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
    -

    PersistentVolumeClaimSpec v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    accessModes
    string array
    AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1
    resources
    ResourceRequirements
    Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
    selector
    LabelSelector
    A label query over volumes to consider for binding.
    storageClassName
    string
    Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1
    volumeMode
    string
    volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is an alpha feature and may change in the future.
    volumeName
    string
    VolumeName is the binding reference to the PersistentVolume backing this claim.
    -

    PersistentVolumeClaimStatus v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    accessModes
    string array
    AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1
    capacity
    object
    Represents the actual resources of the underlying volume.
    conditions
    PersistentVolumeClaimCondition array
    patch type: merge
    patch merge key: type
    Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.
    phase
    string
    Phase represents the current phase of PersistentVolumeClaim.
    -

    PersistentVolumeClaimList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    PersistentVolumeClaim array
    A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a PersistentVolumeClaim

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/persistentvolumeclaims

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    PersistentVolumeClaim
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    PersistentVolumeClaim
    OK
    201
    PersistentVolumeClaim
    Created
    202
    PersistentVolumeClaim
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified PersistentVolumeClaim

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolumeClaim
    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
    PersistentVolumeClaim
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified PersistentVolumeClaim

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolumeClaim
    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
    PersistentVolumeClaim
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    PersistentVolumeClaim
    Created
    200
    PersistentVolumeClaim
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a PersistentVolumeClaim

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolumeClaim
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of PersistentVolumeClaim

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified PersistentVolumeClaim

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolumeClaim
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PersistentVolumeClaim
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PersistentVolumeClaim

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PersistentVolumeClaimList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PersistentVolumeClaim

    -

    HTTP Request

    -

    GET /api/v1/persistentvolumeclaims

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PersistentVolumeClaimList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind PersistentVolumeClaim

    -

    HTTP Request

    -

    GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolumeClaim
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 PersistentVolumeClaim

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolumeClaim
    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
    PersistentVolumeClaim
    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 PersistentVolumeClaim

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolumeClaim
    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
    PersistentVolumeClaim
    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 PersistentVolumeClaim

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolumeClaim
    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
    PersistentVolumeClaim
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    PersistentVolumeClaim
    OK
    201
    PersistentVolumeClaim
    Created
    -
    -

    StorageClass v1 storage

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    storagev1StorageClass
    - - - -

    StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.

    -

    StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    allowVolumeExpansion
    boolean
    AllowVolumeExpansion shows whether the storage class allow volume expand
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    mountOptions
    string array
    Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid.
    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.
    reclaimPolicy
    string
    Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.
    volumeBindingMode
    string
    VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is alpha-level and is only honored by servers that enable the VolumeScheduling feature.
    -

    StorageClassList v1 storage

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a StorageClass

    -

    HTTP Request

    -

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

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    StorageClass
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    StorageClass
    OK
    201
    StorageClass
    Created
    202
    StorageClass
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified StorageClass

    -

    HTTP Request

    -

    PATCH /apis/storage.k8s.io/v1/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    StorageClass
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified StorageClass

    -

    HTTP Request

    -

    PUT /apis/storage.k8s.io/v1/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    StorageClass
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    StorageClass
    OK
    201
    StorageClass
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a StorageClass

    -

    HTTP Request

    -

    DELETE /apis/storage.k8s.io/v1/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of StorageClass

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified StorageClass

    -

    HTTP Request

    -

    GET /apis/storage.k8s.io/v1/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    StorageClass
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind StorageClass

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    StorageClassList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind StorageClass

    -

    HTTP Request

    -

    GET /apis/storage.k8s.io/v1/watch/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1/watch/storageclasses

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    Volume v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Volume
    -

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    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: https://kubernetes.io/docs/concepts/storage/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: https://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: https://kubernetes.io/docs/concepts/storage/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: https://kubernetes.io/docs/concepts/storage/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: https://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: https://kubernetes.io/docs/concepts/storage/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: https://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: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    nfs
    NFSVolumeSource
    NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
    persistentVolumeClaim
    PersistentVolumeClaimVolumeSource
    PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
    photonPersistentDisk
    PhotonPersistentDiskVolumeSource
    PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
    portworxVolume
    PortworxVolumeSource
    PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
    projected
    ProjectedVolumeSource
    Items for all in one resources secrets, configmaps, and downward API
    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: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md
    scaleIO
    ScaleIOVolumeSource
    ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
    secret
    SecretVolumeSource
    Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
    storageos
    StorageOSVolumeSource
    StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
    vsphereVolume
    VsphereVirtualDiskVolumeSource
    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
    -

    METADATA

    -

    Metadata resources are responsible for configuring behavior of your other Resources within the Cluster.

    -

    Common resource types:

    -
      -
    • HorizontalPodAutoscaler (HPA) for automatically scaling the replicacount of your workloads in response to load
    • -
    • PodDisruptionBudget for configuring how many replicas in a given workload maybe made concurrently unavailable when performing maintenance.
    • -
    • ThirdPartyResource for extending the Kubernetes APIs with your own types
    • -
    • Event for notification of resource lifecycle events in the cluster.
    • -
    -
    -
    -

    ControllerRevision v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2ControllerRevision
    - - - -

    ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    dataData is the serialized representation of the state.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    revision
    integer
    Revision indicates the revision of the state represented by Data.
    -

    ControllerRevisionList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    ControllerRevision array
    Items is the list of ControllerRevisions
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ControllerRevision

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    ControllerRevision
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    ControllerRevision
    Created
    202
    ControllerRevision
    Accepted
    200
    ControllerRevision
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ControllerRevision

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    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
    ControllerRevision
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ControllerRevision

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    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
    ControllerRevision
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ControllerRevision
    OK
    201
    ControllerRevision
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ControllerRevision

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ControllerRevision

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ControllerRevision
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ControllerRevisionList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/controllerrevisions

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ControllerRevisionList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/controllerrevisions

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    CustomResourceDefinition v1beta1 apiextensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiextensionsv1beta1CustomResourceDefinition
    -

    CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    CustomResourceDefinitionSpec
    Spec describes how the user wants the resources to appear
    status
    CustomResourceDefinitionStatus
    Status indicates the actual state of the CustomResourceDefinition
    -

    CustomResourceDefinitionSpec v1beta1 apiextensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    group
    string
    Group is the group this resource belongs in
    names
    CustomResourceDefinitionNames
    Names are the names used to describe this custom resource
    scope
    string
    Scope indicates whether this resource is cluster or namespace scoped. Default is namespaced
    validation
    CustomResourceValidation
    Validation describes the validation methods for CustomResources
    version
    string
    Version is the version this resource belongs in
    -

    CustomResourceDefinitionStatus v1beta1 apiextensions

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    acceptedNames
    CustomResourceDefinitionNames
    AcceptedNames are the names that are actually being used to serve discovery They may be different than the names in spec.
    conditions
    CustomResourceDefinitionCondition array
    Conditions indicate state for particular aspects of a CustomResourceDefinition
    -

    CustomResourceDefinitionList v1beta1 apiextensions

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    CustomResourceDefinition array
    Items individual CustomResourceDefinitions
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a CustomResourceDefinition

    -

    HTTP Request

    -

    POST /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    CustomResourceDefinition
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    CustomResourceDefinition
    OK
    201
    CustomResourceDefinition
    Created
    202
    CustomResourceDefinition
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified CustomResourceDefinition

    -

    HTTP Request

    -

    PATCH /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CustomResourceDefinition
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    CustomResourceDefinition
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified CustomResourceDefinition

    -

    HTTP Request

    -

    PUT /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CustomResourceDefinition
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    CustomResourceDefinition
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    CustomResourceDefinition
    OK
    201
    CustomResourceDefinition
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a CustomResourceDefinition

    -

    HTTP Request

    -

    DELETE /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CustomResourceDefinition
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of CustomResourceDefinition

    -

    HTTP Request

    -

    DELETE /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified CustomResourceDefinition

    -

    HTTP Request

    -

    GET /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CustomResourceDefinition
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    CustomResourceDefinition
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind CustomResourceDefinition

    -

    HTTP Request

    -

    GET /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    CustomResourceDefinitionList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind CustomResourceDefinition

    -

    HTTP Request

    -

    GET /apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CustomResourceDefinition
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 CustomResourceDefinition

    -

    HTTP Request

    -

    GET /apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 CustomResourceDefinition

    -

    HTTP Request

    -

    PUT /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CustomResourceDefinition
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    CustomResourceDefinition
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    CustomResourceDefinition
    Created
    200
    CustomResourceDefinition
    OK
    -
    -

    Event v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Event
    - - - -

    Event is a report of an event somewhere in the cluster.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    action
    string
    What action was taken/failed regarding to the Regarding object.
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    count
    integer
    The number of times this event has occurred.
    eventTime
    MicroTime
    Time when this Event was first observed.
    firstTimestamp
    Time
    The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)
    involvedObject
    ObjectReference
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    lastTimestamp
    Time
    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
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    reason
    string
    This should be a short, machine understandable string that gives the reason for the transition into the object's current status.
    related
    ObjectReference
    Optional secondary object for more complex actions.
    reportingComponent
    string
    Name of the controller that emitted this Event, e.g. kubernetes.io/kubelet.
    reportingInstance
    string
    ID of the controller instance, e.g. kubelet-xyzf.
    series
    EventSeries
    Data about the Event series this event represents or nil if it's a singleton Event.
    source
    EventSource
    The component reporting this event. Should be a short machine understandable string.
    type
    string
    Type of this event (Normal, Warning), new types could be added in the future
    -

    EventList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create an Event

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/events

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    Event
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Event
    OK
    201
    Event
    Created
    202
    Event
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Event

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    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
    Event
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Event

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    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
    Event
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Event
    OK
    201
    Event
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete an Event

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Event

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/events

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Event

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

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

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Event

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/events

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    EventList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Event

    -

    HTTP Request

    -

    GET /api/v1/events

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    EventList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Event

    -

    HTTP Request

    -

    GET /api/v1/watch/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Event

    -

    HTTP Request

    -

    GET /api/v1/watch/events

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    LimitRange v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1LimitRange
    -

    LimitRange sets resource usage limits for each kind of resource in a Namespace.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    LimitRangeSpec
    Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    LimitRangeSpec v1 core

    - - - - - - - - - - - - - - - -
    FieldDescription
    limits
    LimitRangeItem array
    Limits is the list of LimitRangeItem objects that are enforced.
    -

    LimitRangeList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    LimitRange array
    Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a LimitRange

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/limitranges

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    LimitRange
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    LimitRange
    OK
    201
    LimitRange
    Created
    202
    LimitRange
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified LimitRange

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/limitranges/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the LimitRange
    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
    LimitRange
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified LimitRange

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/limitranges/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the LimitRange
    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
    LimitRange
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    LimitRange
    Created
    200
    LimitRange
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a LimitRange

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/limitranges/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the LimitRange
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of LimitRange

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/limitranges

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified LimitRange

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the LimitRange
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    LimitRange
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind LimitRange

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    LimitRangeList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind LimitRange

    -

    HTTP Request

    -

    GET /api/v1/limitranges

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    LimitRangeList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind LimitRange

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the LimitRange
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 LimitRange

    -

    HTTP Request

    -

    GET /api/v1/watch/limitranges

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    HorizontalPodAutoscaler v1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv1HorizontalPodAutoscaler
    - - - -

    configuration of a horizontal pod autoscaler.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    HorizontalPodAutoscalerSpec
    behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
    status
    HorizontalPodAutoscalerStatus
    current information about the autoscaler.
    -

    HorizontalPodAutoscalerSpec v1 autoscaling

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    maxReplicas
    integer
    upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.
    minReplicas
    integer
    lower limit for the number of pods that can be set by the autoscaler, default 1.
    scaleTargetRef
    CrossVersionObjectReference
    reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource.
    targetCPUUtilizationPercentage
    integer
    target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.
    -

    HorizontalPodAutoscalerStatus v1 autoscaling

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    currentCPUUtilizationPercentage
    integer
    current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.
    currentReplicas
    integer
    current number of replicas of pods managed by this autoscaler.
    desiredReplicas
    integer
    desired number of replicas of pods managed by this autoscaler.
    lastScaleTime
    Time
    last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.
    observedGeneration
    integer
    most recent generation observed by this autoscaler.
    -

    HorizontalPodAutoscalerList v1 autoscaling

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a HorizontalPodAutoscaler

    -

    HTTP Request

    -

    POST /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    202
    HorizontalPodAutoscaler
    Accepted
    200
    HorizontalPodAutoscaler
    OK
    201
    HorizontalPodAutoscaler
    Created
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified HorizontalPodAutoscaler

    -

    HTTP Request

    -

    PATCH /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified HorizontalPodAutoscaler

    -

    HTTP Request

    -

    PUT /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    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
    201
    HorizontalPodAutoscaler
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a HorizontalPodAutoscaler

    -

    HTTP Request

    -

    DELETE /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of HorizontalPodAutoscaler

    -

    HTTP Request

    -

    DELETE /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    HorizontalPodAutoscaler
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    HorizontalPodAutoscalerList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v1/horizontalpodautoscalers

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    HorizontalPodAutoscalerList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the HorizontalPodAutoscaler
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v1/watch/horizontalpodautoscalers

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    201
    HorizontalPodAutoscaler
    Created
    -
    -

    InitializerConfiguration v1alpha1 admissionregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    admissionregistrationv1alpha1InitializerConfiguration
    -

    InitializerConfiguration describes the configuration of initializers.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    initializers
    Initializer array
    patch type: merge
    patch merge key: name
    Initializers is a list of resources and their default initializers Order-sensitive. When merging multiple InitializerConfigurations, we sort the initializers from different InitializerConfigurations by the name of the InitializerConfigurations; the order of the initializers from the same InitializerConfiguration is preserved.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
    -

    InitializerConfigurationList v1alpha1 admissionregistration

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    InitializerConfiguration array
    List of InitializerConfiguration.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create an InitializerConfiguration

    -

    HTTP Request

    -

    POST /apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    InitializerConfiguration
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    InitializerConfiguration
    Created
    202
    InitializerConfiguration
    Accepted
    200
    InitializerConfiguration
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified InitializerConfiguration

    -

    HTTP Request

    -

    PATCH /apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the InitializerConfiguration
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    InitializerConfiguration
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified InitializerConfiguration

    -

    HTTP Request

    -

    PUT /apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the InitializerConfiguration
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    InitializerConfiguration
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    InitializerConfiguration
    OK
    201
    InitializerConfiguration
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete an InitializerConfiguration

    -

    HTTP Request

    -

    DELETE /apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the InitializerConfiguration
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of InitializerConfiguration

    -

    HTTP Request

    -

    DELETE /apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified InitializerConfiguration

    -

    HTTP Request

    -

    GET /apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the InitializerConfiguration
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    InitializerConfiguration
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind InitializerConfiguration

    -

    HTTP Request

    -

    GET /apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    InitializerConfigurationList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind InitializerConfiguration

    -

    HTTP Request

    -

    GET /apis/admissionregistration.k8s.io/v1alpha1/watch/initializerconfigurations/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the InitializerConfiguration
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 InitializerConfiguration

    -

    HTTP Request

    -

    GET /apis/admissionregistration.k8s.io/v1alpha1/watch/initializerconfigurations

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    PodTemplate v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PodTemplate
    -

    PodTemplate describes a template for creating copies of a predefined pod.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    template
    PodTemplateSpec
    Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    PodTemplateSpec v1 core

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    PodSpec
    Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    PodTemplateList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a PodTemplate

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/podtemplates

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    PodTemplate
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    PodTemplate
    OK
    201
    PodTemplate
    Created
    202
    PodTemplate
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified PodTemplate

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/podtemplates/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodTemplate
    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
    PodTemplate
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified PodTemplate

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/podtemplates/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodTemplate
    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
    PodTemplate
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    PodTemplate
    OK
    201
    PodTemplate
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a PodTemplate

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/podtemplates/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodTemplate
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of PodTemplate

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/podtemplates

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified PodTemplate

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/podtemplates/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodTemplate
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PodTemplate
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PodTemplate

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/podtemplates

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PodTemplateList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PodTemplate

    -

    HTTP Request

    -

    GET /api/v1/podtemplates

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PodTemplateList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind PodTemplate

    -

    HTTP Request

    -

    GET /api/v1/watch/namespaces/{namespace}/podtemplates/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodTemplate
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 PodTemplate

    -

    HTTP Request

    -

    GET /api/v1/watch/podtemplates

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    PodDisruptionBudget v1beta1 policy

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    policyv1beta1PodDisruptionBudget
    -

    PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    PodDisruptionBudgetSpec
    Specification of the desired behavior of the PodDisruptionBudget.
    status
    PodDisruptionBudgetStatus
    Most recently observed status of the PodDisruptionBudget.
    -

    PodDisruptionBudgetSpec v1beta1 policy

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    maxUnavailableAn eviction is allowed if at most "maxUnavailable" pods selected by "selector" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with "minAvailable".
    minAvailableAn eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%".
    selector
    LabelSelector
    Label query over pods whose evictions are managed by the disruption budget.
    -

    PodDisruptionBudgetStatus v1beta1 policy

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    currentHealthy
    integer
    current number of healthy pods
    desiredHealthy
    integer
    minimum desired number of healthy pods
    disruptedPods
    object
    DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.
    disruptionsAllowed
    integer
    Number of pod disruptions that are currently allowed.
    expectedPods
    integer
    total number of pods counted by this disruption budget
    observedGeneration
    integer
    Most recent generation observed when updating this PDB status. PodDisruptionsAllowed and other status informatio is valid only if observedGeneration equals to PDB's object generation.
    -

    PodDisruptionBudgetList v1beta1 policy

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a PodDisruptionBudget

    -

    HTTP Request

    -

    POST /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    PodDisruptionBudget
    Created
    202
    PodDisruptionBudget
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified PodDisruptionBudget

    -

    HTTP Request

    -

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

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified PodDisruptionBudget

    -

    HTTP Request

    -

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

    -

    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
    201
    PodDisruptionBudget
    Created
    200
    PodDisruptionBudget
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a PodDisruptionBudget

    -

    HTTP Request

    -

    DELETE /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of PodDisruptionBudget

    -

    HTTP Request

    -

    DELETE /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified PodDisruptionBudget

    -

    HTTP Request

    -

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

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

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

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PodDisruptionBudget

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PodDisruptionBudgetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PodDisruptionBudget

    -

    HTTP Request

    -

    GET /apis/policy/v1beta1/poddisruptionbudgets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PodDisruptionBudgetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind PodDisruptionBudget

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodDisruptionBudget
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 PodDisruptionBudget

    -

    HTTP Request

    -

    GET /apis/policy/v1beta1/watch/poddisruptionbudgets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    201
    PodDisruptionBudget
    Created
    -
    -

    PriorityClass v1alpha1 scheduling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    schedulingv1alpha1PriorityClass
    - - - - - - -

    PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    description
    string
    description is an arbitrary string that usually provides guidelines on when this priority class should be used.
    globalDefault
    boolean
    globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/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
    value
    integer
    The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.
    -

    PriorityClassList v1alpha1 scheduling

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    PriorityClass array
    items is the list of PriorityClasses
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/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

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a PriorityClass

    -

    HTTP Request

    -

    POST /apis/scheduling.k8s.io/v1alpha1/priorityclasses

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    PriorityClass
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    202
    PriorityClass
    Accepted
    200
    PriorityClass
    OK
    201
    PriorityClass
    Created
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified PriorityClass

    -

    HTTP Request

    -

    PATCH /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PriorityClass
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PriorityClass
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified PriorityClass

    -

    HTTP Request

    -

    PUT /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PriorityClass
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    PriorityClass
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    PriorityClass
    OK
    201
    PriorityClass
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a PriorityClass

    -

    HTTP Request

    -

    DELETE /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PriorityClass
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of PriorityClass

    -

    HTTP Request

    -

    DELETE /apis/scheduling.k8s.io/v1alpha1/priorityclasses

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified PriorityClass

    -

    HTTP Request

    -

    GET /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PriorityClass
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PriorityClass
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PriorityClass

    -

    HTTP Request

    -

    GET /apis/scheduling.k8s.io/v1alpha1/priorityclasses

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PriorityClassList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind PriorityClass

    -

    HTTP Request

    -

    GET /apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PriorityClass
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 PriorityClass

    -

    HTTP Request

    -

    GET /apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    PodPreset v1alpha1 settings

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    settingsv1alpha1PodPreset
    - - - - - - -

    PodPreset is a policy resource that defines additional runtime requirements for a Pod.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    PodPresetSpec
    -

    PodPresetSpec v1alpha1 settings

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    env
    EnvVar array
    Env defines the collection of EnvVar to inject into containers.
    envFrom
    EnvFromSource array
    EnvFrom defines the collection of EnvFromSource to inject into containers.
    selector
    LabelSelector
    Selector is a label query over a set of resources, in this case pods. Required.
    volumeMounts
    VolumeMount array
    VolumeMounts defines the collection of VolumeMount to inject into containers.
    volumes
    Volume array
    Volumes defines the collection of Volume to inject into the pod.
    -

    PodPresetList v1alpha1 settings

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    PodPreset 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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a PodPreset

    -

    HTTP Request

    -

    POST /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    PodPreset
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    PodPreset
    Created
    202
    PodPreset
    Accepted
    200
    PodPreset
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified PodPreset

    -

    HTTP Request

    -

    PATCH /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodPreset
    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
    PodPreset
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified PodPreset

    -

    HTTP Request

    -

    PUT /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodPreset
    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
    PodPreset
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    PodPreset
    Created
    200
    PodPreset
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a PodPreset

    -

    HTTP Request

    -

    DELETE /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodPreset
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of PodPreset

    -

    HTTP Request

    -

    DELETE /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified PodPreset

    -

    HTTP Request

    -

    GET /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodPreset
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PodPreset
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PodPreset

    -

    HTTP Request

    -

    GET /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PodPresetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PodPreset

    -

    HTTP Request

    -

    GET /apis/settings.k8s.io/v1alpha1/podpresets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PodPresetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind PodPreset

    -

    HTTP Request

    -

    GET /apis/settings.k8s.io/v1alpha1/watch/namespaces/{namespace}/podpresets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodPreset
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 PodPreset

    -

    HTTP Request

    -

    GET /apis/settings.k8s.io/v1alpha1/watch/namespaces/{namespace}/podpresets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 PodPreset

    -

    HTTP Request

    -

    GET /apis/settings.k8s.io/v1alpha1/watch/podpresets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    PodSecurityPolicy v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1PodSecurityPolicy
    -

    Pod Security Policy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    PodSecurityPolicySpec
    spec defines the policy enforced.
    -

    PodSecurityPolicySpec v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    allowPrivilegeEscalation
    boolean
    AllowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.
    allowedCapabilities
    string array
    AllowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both AllowedCapabilities and RequiredDropCapabilities.
    allowedFlexVolumes
    AllowedFlexVolume array
    AllowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the "Volumes" field.
    allowedHostPaths
    AllowedHostPath array
    is a white list of allowed host paths. Empty indicates that all host paths may be used.
    defaultAddCapabilities
    string array
    DefaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both DefaultAddCapabilities and RequiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the AllowedCapabilities list.
    defaultAllowPrivilegeEscalation
    boolean
    DefaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.
    fsGroup
    FSGroupStrategyOptions
    FSGroup is the strategy that will dictate what fs group is used by the SecurityContext.
    hostIPC
    boolean
    hostIPC determines if the policy allows the use of HostIPC in the pod spec.
    hostNetwork
    boolean
    hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.
    hostPID
    boolean
    hostPID determines if the policy allows the use of HostPID in the pod spec.
    hostPorts
    HostPortRange array
    hostPorts determines which host port ranges are allowed to be exposed.
    privileged
    boolean
    privileged determines if a pod can request to be run as privileged.
    readOnlyRootFilesystem
    boolean
    ReadOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.
    requiredDropCapabilities
    string array
    RequiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.
    runAsUser
    RunAsUserStrategyOptions
    runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.
    seLinux
    SELinuxStrategyOptions
    seLinux is the strategy that will dictate the allowable labels that may be set.
    supplementalGroups
    SupplementalGroupsStrategyOptions
    SupplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext.
    volumes
    string array
    volumes is a white list of allowed volume plugins. Empty indicates that all plugins may be used.
    -

    PodSecurityPolicyList v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    PodSecurityPolicy 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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a PodSecurityPolicy

    -

    HTTP Request

    -

    POST /apis/extensions/v1beta1/podsecuritypolicies

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    PodSecurityPolicy
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    202
    PodSecurityPolicy
    Accepted
    200
    PodSecurityPolicy
    OK
    201
    PodSecurityPolicy
    Created
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified PodSecurityPolicy

    -

    HTTP Request

    -

    PATCH /apis/extensions/v1beta1/podsecuritypolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodSecurityPolicy
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PodSecurityPolicy
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified PodSecurityPolicy

    -

    HTTP Request

    -

    PUT /apis/extensions/v1beta1/podsecuritypolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodSecurityPolicy
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    PodSecurityPolicy
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    PodSecurityPolicy
    OK
    201
    PodSecurityPolicy
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a PodSecurityPolicy

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/podsecuritypolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodSecurityPolicy
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of PodSecurityPolicy

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/podsecuritypolicies

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified PodSecurityPolicy

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/podsecuritypolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodSecurityPolicy
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PodSecurityPolicy
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PodSecurityPolicy

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/podsecuritypolicies

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PodSecurityPolicyList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind PodSecurityPolicy

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/watch/podsecuritypolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PodSecurityPolicy
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 PodSecurityPolicy

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/watch/podsecuritypolicies

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -

    CLUSTER

    -

    Cluster resources are responsible for defining configuration of the cluster itself, and are generally only used by cluster operators.

    -
    -
    -

    APIService v1beta1 apiregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiregistrationv1beta1APIService
    -

    APIService represents a server for a particular GroupVersion. Name must be "version.group".

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    APIServiceSpec
    Spec contains information for locating and communicating with a server
    status
    APIServiceStatus
    Status contains derived information about an API server
    -

    APIServiceSpec v1beta1 apiregistration

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    caBundle
    string
    CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate.
    group
    string
    Group is the API group name this server hosts
    groupPriorityMinimum
    integer
    GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s
    insecureSkipTLSVerify
    boolean
    InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.
    service
    ServiceReference
    Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.
    version
    string
    Version is the API version this server hosts. For example, "v1"
    versionPriority
    integer
    VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) Since it's inside of a group, the number can be small, probably in the 10s.
    -

    APIServiceStatus v1beta1 apiregistration

    - - - - - - - - - - - - - - - -
    FieldDescription
    conditions
    APIServiceCondition array
    patch type: merge
    patch merge key: type
    Current service state of apiService.
    -

    APIServiceList v1beta1 apiregistration

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    APIService 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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create an APIService

    -

    HTTP Request

    -

    POST /apis/apiregistration.k8s.io/v1beta1/apiservices

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    APIService
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    APIService
    OK
    201
    APIService
    Created
    202
    APIService
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified APIService

    -

    HTTP Request

    -

    PATCH /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the APIService
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    APIService
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified APIService

    -

    HTTP Request

    -

    PUT /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the APIService
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    APIService
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    APIService
    Created
    200
    APIService
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete an APIService

    -

    HTTP Request

    -

    DELETE /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the APIService
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of APIService

    -

    HTTP Request

    -

    DELETE /apis/apiregistration.k8s.io/v1beta1/apiservices

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified APIService

    -

    HTTP Request

    -

    GET /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the APIService
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    APIService
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind APIService

    -

    HTTP Request

    -

    GET /apis/apiregistration.k8s.io/v1beta1/apiservices

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    APIServiceList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind APIService

    -

    HTTP Request

    -

    GET /apis/apiregistration.k8s.io/v1beta1/watch/apiservices/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the APIService
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 APIService

    -

    HTTP Request

    -

    GET /apis/apiregistration.k8s.io/v1beta1/watch/apiservices

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 APIService

    -

    HTTP Request

    -

    PUT /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the APIService
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    APIService
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    APIService
    OK
    201
    APIService
    Created
    -
    -

    Binding v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Binding
    -

    Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    target
    ObjectReference
    The target object that you want to bind to the standard object.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a Binding

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/bindings

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    Binding
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    Binding
    Created
    202
    Binding
    Accepted
    200
    Binding
    OK
    -
    -

    CertificateSigningRequest v1beta1 certificates

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    certificatesv1beta1CertificateSigningRequest
    -

    Describes a certificate signing request

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    CertificateSigningRequestSpec
    The certificate request itself and any additional information.
    status
    CertificateSigningRequestStatus
    Derived information about the request.
    -

    CertificateSigningRequestSpec v1beta1 certificates

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    extra
    object
    Extra information about the requesting user. See user.Info interface for details.
    groups
    string array
    Group information about the requesting user. See user.Info interface for details.
    request
    string
    Base64-encoded PKCS#10 CSR data
    uid
    string
    UID information about the requesting user. See user.Info interface for details.
    usages
    string array
    allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12
    username
    string
    Information about the requesting user. See user.Info interface for details.
    -

    CertificateSigningRequestStatus v1beta1 certificates

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    certificate
    string
    If request was approved, the controller will place the issued certificate here.
    conditions
    CertificateSigningRequestCondition array
    Conditions applied to the request, such as approval or denial.
    -

    CertificateSigningRequestList v1beta1 certificates

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a CertificateSigningRequest

    -

    HTTP Request

    -

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

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    CertificateSigningRequest
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    CertificateSigningRequest
    OK
    201
    CertificateSigningRequest
    Created
    202
    CertificateSigningRequest
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified CertificateSigningRequest

    -

    HTTP Request

    -

    PATCH /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CertificateSigningRequest
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    CertificateSigningRequest
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified CertificateSigningRequest

    -

    HTTP Request

    -

    PUT /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}

    -

    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
    201
    CertificateSigningRequest
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a CertificateSigningRequest

    -

    HTTP Request

    -

    DELETE /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CertificateSigningRequest
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of CertificateSigningRequest

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified CertificateSigningRequest

    -

    HTTP Request

    -

    GET /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CertificateSigningRequest
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    CertificateSigningRequest
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind CertificateSigningRequest

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    CertificateSigningRequestList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind CertificateSigningRequest

    -

    HTTP Request

    -

    GET /apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the CertificateSigningRequest
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 CertificateSigningRequest

    -

    HTTP Request

    -

    GET /apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1beta1/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
    201
    CertificateSigningRequest
    Created
    -
    -

    ClusterRole v1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1ClusterRole
    - - - -

    ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    aggregationRule
    AggregationRule
    AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    rules
    PolicyRule array
    Rules holds all the PolicyRules for this ClusterRole
    -

    ClusterRoleList v1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ClusterRole

    -

    HTTP Request

    -

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

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRole
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    201
    ClusterRole
    Created
    202
    ClusterRole
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ClusterRole

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ClusterRole

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRole
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    201
    ClusterRole
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ClusterRole

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ClusterRole

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ClusterRole

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ClusterRole

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ClusterRoleList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ClusterRole

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/watch/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1/watch/clusterroles

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    ClusterRoleBinding v1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1ClusterRoleBinding
    - - - -

    ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    roleRef
    RoleRef
    RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.
    subjects
    Subject array
    Subjects holds references to the objects the role applies to.
    -

    ClusterRoleBindingList v1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ClusterRoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    201
    ClusterRoleBinding
    Created
    202
    ClusterRoleBinding
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ClusterRoleBinding

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ClusterRoleBinding

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    201
    ClusterRoleBinding
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ClusterRoleBinding

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ClusterRoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ClusterRoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ClusterRoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ClusterRoleBindingList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ClusterRoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1/watch/clusterrolebindings

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    ComponentStatus v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ComponentStatus
    -

    ComponentStatus (and ComponentStatusList) holds the cluster validation info.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    conditions
    ComponentCondition array
    patch type: merge
    patch merge key: type
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    ComponentStatusList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ComponentStatus

    -

    HTTP Request

    -

    GET /api/v1/componentstatuses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ComponentStatus
    -

    Query Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ComponentStatus
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list objects of kind ComponentStatus

    -

    HTTP Request

    -

    GET /api/v1/componentstatuses

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ComponentStatusList
    OK
    -
    -

    LocalSubjectAccessReview v1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1LocalSubjectAccessReview
    - - - -

    LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    SubjectAccessReviewSpec
    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
    Status is filled in by the server and indicates whether the request is allowed or not
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a LocalSubjectAccessReview

    -

    HTTP Request

    -

    POST /apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    LocalSubjectAccessReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    LocalSubjectAccessReview
    Created
    202
    LocalSubjectAccessReview
    Accepted
    200
    LocalSubjectAccessReview
    OK
    -
    -

    Namespace v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Namespace
    -

    Namespace provides a scope for Names. Use of multiple namespaces is optional.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    NamespaceSpec
    Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    NamespaceStatus
    Status describes the current status of a Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    NamespaceSpec v1 core

    - - - - - - - - - - - - - - - -
    FieldDescription
    finalizers
    string array
    Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
    -

    NamespaceStatus v1 core

    - - - - - - - - - - - - - - - -
    FieldDescription
    phase
    string
    Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
    -

    NamespaceList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    Namespace array
    Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a Namespace

    -

    HTTP Request

    -

    POST /api/v1/namespaces

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    Namespace
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Namespace
    OK
    201
    Namespace
    Created
    202
    Namespace
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Namespace

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Namespace

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{name}

    -

    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
    201
    Namespace
    Created
    200
    Namespace
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a Namespace

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Namespace
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Namespace

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Namespace
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Namespace
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Namespace

    -

    HTTP Request

    -

    GET /api/v1/namespaces

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    NamespaceList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Namespace

    -

    HTTP Request

    -

    GET /api/v1/watch/namespaces/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Namespace
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Namespace

    -

    HTTP Request

    -

    GET /api/v1/watch/namespaces

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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
    201
    Namespace
    Created
    -
    -

    Node v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Node
    -

    Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    NodeSpec
    Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    NodeStatus
    Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    NodeSpec v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    configSource
    NodeConfigSource
    If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field
    externalID
    string
    External ID of the node assigned by some machine database (e.g. a cloud provider). Deprecated.
    podCIDR
    string
    PodCIDR represents the pod IP range assigned to the node.
    providerID
    string
    ID of the node assigned by the cloud provider in the format: ://
    taints
    Taint array
    If specified, the node's taints.
    unschedulable
    boolean
    Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration
    -

    NodeStatus v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    addresses
    NodeAddress array
    patch type: merge
    patch merge key: type
    List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses
    allocatable
    object
    Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.
    capacity
    object
    Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity
    conditions
    NodeCondition array
    patch type: merge
    patch merge key: type
    Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition
    daemonEndpoints
    NodeDaemonEndpoints
    Endpoints of daemons running on the Node.
    images
    ContainerImage array
    List of container images on this node
    nodeInfo
    NodeSystemInfo
    Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info
    phase
    string
    NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.
    volumesAttached
    AttachedVolume array
    List of volumes that are attached to the node.
    volumesInUse
    string array
    List of attachable volumes in use (mounted) by the node.
    -

    NodeList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a Node

    -

    HTTP Request

    -

    POST /api/v1/nodes

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    Node
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    202
    Node
    Accepted
    200
    Node
    OK
    201
    Node
    Created
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Node

    -

    HTTP Request

    -

    PATCH /api/v1/nodes/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Node

    -

    HTTP Request

    -

    PUT /api/v1/nodes/{name}

    -

    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
    201
    Node
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a Node

    -

    HTTP Request

    -

    DELETE /api/v1/nodes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Node

    -

    HTTP Request

    -

    DELETE /api/v1/nodes

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Node

    -

    HTTP Request

    -

    GET /api/v1/nodes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Node
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Node

    -

    HTTP Request

    -

    GET /api/v1/nodes

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    NodeList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Node

    -

    HTTP Request

    -

    GET /api/v1/watch/nodes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    201
    Node
    Created
    -

    Proxy Operations

    -

    See supported operations below...

    -

    Create Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect POST requests to proxy of Node

    -

    HTTP Request

    -

    POST /api/v1/nodes/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect POST requests to proxy of Node

    -

    HTTP Request

    -

    POST /api/v1/nodes/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy POST requests to Node

    -

    HTTP Request

    -

    POST /api/v1/proxy/nodes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Create Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy POST requests to Node

    -

    HTTP Request

    -

    POST /api/v1/proxy/nodes/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect DELETE requests to proxy of Node

    -

    HTTP Request

    -

    DELETE /api/v1/nodes/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect DELETE requests to proxy of Node

    -

    HTTP Request

    -

    DELETE /api/v1/nodes/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy DELETE requests to Node

    -

    HTTP Request

    -

    DELETE /api/v1/proxy/nodes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Delete Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy DELETE requests to Node

    -

    HTTP Request

    -

    DELETE /api/v1/proxy/nodes/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect GET requests to proxy of Node

    -

    HTTP Request

    -

    GET /api/v1/nodes/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect GET requests to proxy of Node

    -

    HTTP Request

    -

    GET /api/v1/nodes/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy GET requests to Node

    -

    HTTP Request

    -

    GET /api/v1/proxy/nodes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Get Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy GET requests to Node

    -

    HTTP Request

    -

    GET /api/v1/proxy/nodes/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Head Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect HEAD requests to proxy of Node

    -

    HTTP Request

    -

    HEAD /api/v1/nodes/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Head Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect HEAD requests to proxy of Node

    -

    HTTP Request

    -

    HEAD /api/v1/nodes/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Connect Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect PUT requests to proxy of Node

    -

    HTTP Request

    -

    PUT /api/v1/nodes/{name}/proxy

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Connect Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    connect PUT requests to proxy of Node

    -

    HTTP Request

    -

    PUT /api/v1/nodes/{name}/proxy/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    pathpath to the resource
    -

    Query Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    pathPath is the URL path to use for the current proxy request to node.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Proxy

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy PUT requests to Node

    -

    HTTP Request

    -

    PUT /api/v1/proxy/nodes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -

    Replace Proxy Path

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    proxy PUT requests to Node

    -

    HTTP Request

    -

    PUT /api/v1/proxy/nodes/{name}/{path}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Node
    pathpath to the resource
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    string
    OK
    -
    -

    PersistentVolume v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PersistentVolume
    - - - - - -

    PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    PersistentVolumeSpec
    Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
    status
    PersistentVolumeStatus
    Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
    -

    PersistentVolumeSpec v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    accessModes
    string array
    AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/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: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
    azureDisk
    AzureDiskVolumeSource
    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
    azureFile
    AzureFilePersistentVolumeSource
    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: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity
    cephfs
    CephFSPersistentVolumeSource
    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: https://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: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding
    csi
    CSIPersistentVolumeSource
    CSI represents storage that handled by an external CSI driver
    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: https://kubernetes.io/docs/concepts/storage/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: https://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: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
    iscsi
    ISCSIPersistentVolumeSource
    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.
    local
    LocalVolumeSource
    Local represents directly-attached storage with node affinity
    mountOptions
    string array
    A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options
    nfs
    NFSVolumeSource
    NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/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: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming
    photonPersistentDisk
    PhotonPersistentDiskVolumeSource
    PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
    portworxVolume
    PortworxVolumeSource
    PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
    quobyte
    QuobyteVolumeSource
    Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
    rbd
    RBDPersistentVolumeSource
    RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md
    scaleIO
    ScaleIOPersistentVolumeSource
    ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
    storageClassName
    string
    Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.
    storageos
    StorageOSPersistentVolumeSource
    StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md
    volumeMode
    string
    volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is an alpha feature and may change in the future.
    vsphereVolume
    VsphereVirtualDiskVolumeSource
    VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
    -

    PersistentVolumeStatus v1 core

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    message
    string
    A human-readable message indicating details about why the volume is in this state.
    phase
    string
    Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase
    reason
    string
    Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.
    -

    PersistentVolumeList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    PersistentVolume array
    List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a PersistentVolume

    -

    HTTP Request

    -

    POST /api/v1/persistentvolumes

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    PersistentVolume
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    PersistentVolume
    Created
    202
    PersistentVolume
    Accepted
    200
    PersistentVolume
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified PersistentVolume

    -

    HTTP Request

    -

    PATCH /api/v1/persistentvolumes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolume
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PersistentVolume
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified PersistentVolume

    -

    HTTP Request

    -

    PUT /api/v1/persistentvolumes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolume
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    PersistentVolume
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    PersistentVolume
    OK
    201
    PersistentVolume
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a PersistentVolume

    -

    HTTP Request

    -

    DELETE /api/v1/persistentvolumes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolume
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of PersistentVolume

    -

    HTTP Request

    -

    DELETE /api/v1/persistentvolumes

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified PersistentVolume

    -

    HTTP Request

    -

    GET /api/v1/persistentvolumes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolume
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PersistentVolume
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind PersistentVolume

    -

    HTTP Request

    -

    GET /api/v1/persistentvolumes

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    PersistentVolumeList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind PersistentVolume

    -

    HTTP Request

    -

    GET /api/v1/watch/persistentvolumes/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolume
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 PersistentVolume

    -

    HTTP Request

    -

    PATCH /api/v1/persistentvolumes/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolume
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PersistentVolume
    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 PersistentVolume

    -

    HTTP Request

    -

    GET /api/v1/persistentvolumes/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolume
    -

    Query Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    PersistentVolume
    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 PersistentVolume

    -

    HTTP Request

    -

    PUT /api/v1/persistentvolumes/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the PersistentVolume
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    PersistentVolume
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    PersistentVolume
    OK
    201
    PersistentVolume
    Created
    -
    -

    ResourceQuota v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ResourceQuota
    -

    ResourceQuota sets aggregate quota restrictions enforced per namespace

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    ResourceQuotaSpec
    Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    ResourceQuotaStatus
    Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    ResourceQuotaSpec v1 core

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    hard
    object
    Hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
    scopes
    string array
    A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.
    -

    ResourceQuotaStatus v1 core

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    hard
    object
    Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
    used
    object
    Used is the current observed total usage of the resource in the namespace.
    -

    ResourceQuotaList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    ResourceQuota array
    Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ResourceQuota

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/resourcequotas

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    ResourceQuota
    Created
    202
    ResourceQuota
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ResourceQuota

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ResourceQuota

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}

    -

    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
    201
    ResourceQuota
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ResourceQuota

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/resourcequotas/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ResourceQuota

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/resourcequotas

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ResourceQuota

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/resourcequotas/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ResourceQuota
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ResourceQuota

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/resourcequotas

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ResourceQuotaList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ResourceQuota

    -

    HTTP Request

    -

    GET /api/v1/resourcequotas

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ResourceQuotaList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ResourceQuota

    -

    HTTP Request

    -

    GET /api/v1/watch/namespaces/{namespace}/resourcequotas/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ResourceQuota
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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
    201
    ResourceQuota
    Created
    -
    -

    Role v1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1Role
    - - - -

    Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    rules
    PolicyRule array
    Rules holds all the PolicyRules for this Role
    -

    RoleList v1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a Role

    -

    HTTP Request

    -

    POST /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    Role
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    Role
    Created
    202
    Role
    Accepted
    200
    Role
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Role

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    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
    Role
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Role

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    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
    Role
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Role
    OK
    201
    Role
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a Role

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Role

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    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
    Role
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/roles

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/watch/roles

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    RoleBinding v1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1RoleBinding
    - - - -

    RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    roleRef
    RoleRef
    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 array
    Subjects holds references to the objects the role applies to.
    -

    RoleBindingList v1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a RoleBinding

    -

    HTTP Request

    -

    POST /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    RoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    RoleBinding
    OK
    201
    RoleBinding
    Created
    202
    RoleBinding
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified RoleBinding

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    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
    RoleBinding
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified RoleBinding

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    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
    RoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    RoleBinding
    OK
    201
    RoleBinding
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a RoleBinding

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of RoleBinding

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    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
    RoleBinding
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleBindingList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/rolebindings

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleBindingList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1/watch/rolebindings

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    SelfSubjectAccessReview v1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1SelfSubjectAccessReview
    - - - -

    SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    SelfSubjectAccessReviewSpec
    Spec holds information about the request being evaluated. user and groups must be empty
    status
    SubjectAccessReviewStatus
    Status is filled in by the server and indicates whether the request is allowed or not
    -

    SelfSubjectAccessReviewSpec v1 authorization

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    nonResourceAttributes
    NonResourceAttributes
    NonResourceAttributes describes information for a non-resource access request
    resourceAttributes
    ResourceAttributes
    ResourceAuthorizationAttributes describes information for a resource access request
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a SelfSubjectAccessReview

    -

    HTTP Request

    -

    POST /apis/authorization.k8s.io/v1/selfsubjectaccessreviews

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    SelfSubjectAccessReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    SelfSubjectAccessReview
    Created
    202
    SelfSubjectAccessReview
    Accepted
    200
    SelfSubjectAccessReview
    OK
    -
    -

    SelfSubjectRulesReview v1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1SelfSubjectRulesReview
    - - - -

    SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    SelfSubjectRulesReviewSpec
    Spec holds information about the request being evaluated.
    status
    SubjectRulesReviewStatus
    Status is filled in by the server and indicates the set of actions a user can perform.
    -

    SelfSubjectRulesReviewSpec v1 authorization

    - - - - - - - - - - - - - - - -
    FieldDescription
    namespace
    string
    Namespace to evaluate rules for. Required.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a SelfSubjectRulesReview

    -

    HTTP Request

    -

    POST /apis/authorization.k8s.io/v1/selfsubjectrulesreviews

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    SelfSubjectRulesReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    202
    SelfSubjectRulesReview
    Accepted
    200
    SelfSubjectRulesReview
    OK
    201
    SelfSubjectRulesReview
    Created
    -
    -

    ServiceAccount v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ServiceAccount
    -

    ServiceAccount binds together: a name, understood by users, and perhaps by peripheral systems, for an identity a principal that can be authenticated and authorized * a set of secrets

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    automountServiceAccountToken
    boolean
    AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.
    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: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    secrets
    ObjectReference array
    patch type: merge
    patch merge key: name
    Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret
    -

    ServiceAccountList v1 core

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    ServiceAccount array
    List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ServiceAccount

    -

    HTTP Request

    -

    POST /api/v1/namespaces/{namespace}/serviceaccounts

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    ServiceAccount
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ServiceAccount
    OK
    201
    ServiceAccount
    Created
    202
    ServiceAccount
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ServiceAccount

    -

    HTTP Request

    -

    PATCH /api/v1/namespaces/{namespace}/serviceaccounts/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ServiceAccount
    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
    ServiceAccount
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ServiceAccount

    -

    HTTP Request

    -

    PUT /api/v1/namespaces/{namespace}/serviceaccounts/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ServiceAccount
    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
    ServiceAccount
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ServiceAccount
    OK
    201
    ServiceAccount
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ServiceAccount

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/serviceaccounts/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ServiceAccount
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ServiceAccount

    -

    HTTP Request

    -

    DELETE /api/v1/namespaces/{namespace}/serviceaccounts

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ServiceAccount

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/serviceaccounts/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ServiceAccount
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ServiceAccount
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ServiceAccount

    -

    HTTP Request

    -

    GET /api/v1/namespaces/{namespace}/serviceaccounts

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ServiceAccountList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ServiceAccount

    -

    HTTP Request

    -

    GET /api/v1/serviceaccounts

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ServiceAccountList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ServiceAccount

    -

    HTTP Request

    -

    GET /api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ServiceAccount
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ServiceAccount

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ServiceAccount

    -

    HTTP Request

    -

    GET /api/v1/watch/serviceaccounts

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    SubjectAccessReview v1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1SubjectAccessReview
    - - - -

    SubjectAccessReview checks whether or not a user or group can perform an action.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    SubjectAccessReviewSpec
    Spec holds information about the request being evaluated
    status
    SubjectAccessReviewStatus
    Status is filled in by the server and indicates whether the request is allowed or not
    -

    SubjectAccessReviewSpec v1 authorization

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    extra
    object
    Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.
    groups
    string array
    Groups is the groups you're testing for.
    nonResourceAttributes
    NonResourceAttributes
    NonResourceAttributes describes information for a non-resource access request
    resourceAttributes
    ResourceAttributes
    ResourceAuthorizationAttributes describes information for a resource access request
    uid
    string
    UID information about the requesting user.
    user
    string
    User is the user you're testing for. If you specify "User" but not "Groups", then is it interpreted as "What if User were not a member of any groups
    -

    SubjectAccessReviewStatus v1 authorization

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    allowed
    boolean
    Allowed is required. True if the action would be allowed, false otherwise.
    denied
    boolean
    Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.
    evaluationError
    string
    EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.
    reason
    string
    Reason is optional. It indicates why a request was allowed or denied.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a SubjectAccessReview

    -

    HTTP Request

    -

    POST /apis/authorization.k8s.io/v1/subjectaccessreviews

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    SubjectAccessReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    SubjectAccessReview
    OK
    201
    SubjectAccessReview
    Created
    202
    SubjectAccessReview
    Accepted
    -
    -

    TokenReview v1 authentication

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authenticationv1TokenReview
    - - - -

    TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    TokenReviewSpec
    Spec holds information about the request being evaluated
    status
    TokenReviewStatus
    Status is filled in by the server and indicates whether the request can be authenticated.
    -

    TokenReviewSpec v1 authentication

    - - - - - - - - - - - - - - - -
    FieldDescription
    token
    string
    Token is the opaque bearer token.
    -

    TokenReviewStatus v1 authentication

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    authenticated
    boolean
    Authenticated indicates that the token was associated with a known user.
    error
    string
    Error indicates that the token couldn't be checked
    user
    UserInfo
    User is the UserInfo associated with the provided token.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a TokenReview

    -

    HTTP Request

    -

    POST /apis/authentication.k8s.io/v1/tokenreviews

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    TokenReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    TokenReview
    OK
    201
    TokenReview
    Created
    202
    TokenReview
    Accepted
    -
    -

    NetworkPolicy v1 networking

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    networkingv1NetworkPolicy
    - - - -

    NetworkPolicy describes what network traffic is allowed for a set of Pods

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    NetworkPolicySpec
    Specification of the desired behavior for this NetworkPolicy.
    -

    NetworkPolicySpec v1 networking

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    egress
    NetworkPolicyEgressRule array
    List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8
    ingress
    NetworkPolicyIngressRule array
    List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)
    podSelector
    LabelSelector
    Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.
    policyTypes
    string array
    List of rule types that the NetworkPolicy relates to. Valid options are Ingress, Egress, or Ingress,Egress. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include "Egress" (since such a policy would not include an Egress section and would otherwise default to just [ "Ingress" ]). This field is beta-level in 1.8
    -

    NetworkPolicyList v1 networking

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a NetworkPolicy

    -

    HTTP Request

    -

    POST /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    NetworkPolicy
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    NetworkPolicy
    OK
    201
    NetworkPolicy
    Created
    202
    NetworkPolicy
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified NetworkPolicy

    -

    HTTP Request

    -

    PATCH /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    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
    NetworkPolicy
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified NetworkPolicy

    -

    HTTP Request

    -

    PUT /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    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
    NetworkPolicy
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    NetworkPolicy
    OK
    201
    NetworkPolicy
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a NetworkPolicy

    -

    HTTP Request

    -

    DELETE /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of NetworkPolicy

    -

    HTTP Request

    -

    DELETE /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    NetworkPolicy
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    NetworkPolicyList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/networking.k8s.io/v1/networkpolicies

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    NetworkPolicyList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/networking.k8s.io/v1/watch/networkpolicies

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -

    DEFINITIONS

    -

    This section contains definitions for objects used in the Kubernetes APIs.

    -

    APIGroup v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1APIGroup
    -

    APIGroup contains the name, the supported versions, and the preferred version of a group.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    name
    string
    name is the name of the group.
    preferredVersion
    GroupVersionForDiscovery
    preferredVersion is the version preferred by the API server, which probably is the storage version.
    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.
    versions
    GroupVersionForDiscovery array
    versions are the versions supported in this group.
    -

    APIResource v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1APIResource
    -

    APIResource specifies the name of a resource and whether it is namespaced.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    categories
    string array
    categories is a list of the grouped resources this resource belongs to (e.g. 'all')
    group
    string
    group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale".
    kind
    string
    kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')
    name
    string
    name is the plural name of the resource.
    namespaced
    boolean
    namespaced indicates if a resource is namespaced or not.
    shortNames
    string array
    shortNames is a list of suggested short names of the resource.
    singularName
    string
    singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.
    verbs
    string array
    verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)
    version
    string
    version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".
    -

    APIServiceCondition v1beta1 apiregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiregistrationv1beta1APIServiceCondition
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    Human-readable message indicating details about last transition.
    reason
    string
    Unique, one-word, CamelCase reason for the condition's last transition.
    status
    string
    Status is the status of the condition. Can be True, False, Unknown.
    type
    string
    Type is the type of the condition.
    -

    APIVersions v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1APIVersions
    -

    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.

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/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.
    versions
    string array
    versions are the api versions that are available.
    -

    AWSElasticBlockStoreVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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: https://kubernetes.io/docs/concepts/storage/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: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
    volumeID
    string
    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
    -

    Affinity v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Affinity
    -

    Affinity is a group of affinity scheduling rules.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    nodeAffinity
    NodeAffinity
    Describes node affinity scheduling rules for the pod.
    podAffinity
    PodAffinity
    Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).
    podAntiAffinity
    PodAntiAffinity
    Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).
    -

    AggregationRule v1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1AggregationRule
    - - -

    AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole

    - - - - - - - - - - - - - - - -
    FieldDescription
    clusterRoleSelectors
    LabelSelector array
    ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added
    -

    AllowedFlexVolume v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1AllowedFlexVolume
    -

    AllowedFlexVolume represents a single Flexvolume that is allowed to be used.

    - - - - - - - - - - - - - - - -
    FieldDescription
    driver
    string
    Driver is the name of the Flexvolume driver.
    -

    AllowedHostPath v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1AllowedHostPath
    -

    defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.

    - - - - - - - - - - - - - - - -
    FieldDescription
    pathPrefix
    string
    is the path prefix that the host volume must match. It does not support *. Trailing slashes are trimmed when validating the path prefix with a host path. Examples: /foo would allow /foo, /foo/ and /foo/bar /foo would not allow /food or /etc/foo
    -

    AttachedVolume v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1AttachedVolume
    -

    AttachedVolume describes a volume attached to a node

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    devicePath
    string
    DevicePath represents the device path where the volume should be available
    name
    string
    Name of the attached volume
    -

    AzureDiskVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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.
    kind
    string
    Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared
    readOnly
    boolean
    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
    -

    AzureFilePersistentVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1AzureFilePersistentVolumeSource
    -

    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
    secretNamespace
    string
    the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod
    shareName
    string
    Share Name
    -

    AzureFileVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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
    -

    CSIPersistentVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1CSIPersistentVolumeSource
    -

    Represents storage that is managed by an external CSI volume driver

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    driver
    string
    Driver is the name of the driver to use for this volume. Required.
    readOnly
    boolean
    Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).
    volumeHandle
    string
    VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.
    -

    Capabilities v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Capabilities
    -

    Adds and removes POSIX capabilities from running containers.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    add
    string array
    Added capabilities
    drop
    string array
    Removed capabilities
    -

    CephFSPersistentVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1CephFSPersistentVolumeSource
    -

    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: https://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: https://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: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
    secretRef
    SecretReference
    Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://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: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
    -

    CephFSVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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: https://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: https://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: https://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: https://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: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
    -

    CertificateSigningRequestCondition v1beta1 certificates

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    certificatesv1beta1CertificateSigningRequestCondition
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastUpdateTime
    Time
    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.
    -

    CinderVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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: https://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: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
    volumeID
    string
    volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
    -

    ClientIPConfig v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ClientIPConfig
    -

    ClientIPConfig represents the configurations of Client IP based session affinity.

    - - - - - - - - - - - - - - - -
    FieldDescription
    timeoutSeconds
    integer
    timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". Default value is 10800(for 3 hours).
    -

    ComponentCondition v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ComponentCondition
    -

    Information about the condition of a component.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    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"
    -

    ConfigMapEnvSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ConfigMapEnvSource
    -

    ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.

    -

    The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    optional
    boolean
    Specify whether the ConfigMap must be defined
    -

    ConfigMapKeySelector v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ConfigMapKeySelector
    -

    Selects a key from a ConfigMap.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    key
    string
    The key to select.
    name
    string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    optional
    boolean
    Specify whether the ConfigMap or it's key must be defined
    -

    ConfigMapProjection v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ConfigMapProjection
    -

    Adapts a ConfigMap into a projected volume.

    -

    The contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    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 unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
    name
    string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    optional
    boolean
    Specify whether the ConfigMap or it's keys must be defined
    -

    ConfigMapVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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 unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
    name
    string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    optional
    boolean
    Specify whether the ConfigMap or it's keys must be defined
    -

    ContainerImage v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ContainerImage
    -

    Describe a container image

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    names
    string array
    Names by which this image is known. e.g. ["k8s.gcr.io/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"]
    sizeBytes
    integer
    The size of the image in bytes.
    -

    ContainerPort v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ContainerPort
    -

    ContainerPort represents a network port in a single container.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    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".
    -

    ContainerState v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ContainerState
    -

    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.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    running
    ContainerStateRunning
    Details about a running container
    terminated
    ContainerStateTerminated
    Details about a terminated container
    waiting
    ContainerStateWaiting
    Details about a waiting container
    -

    ContainerStateRunning v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ContainerStateRunning
    -

    ContainerStateRunning is a running state of a container.

    - - - - - - - - - - - - - - - -
    FieldDescription
    startedAt
    Time
    Time at which the container was last (re-)started
    -

    ContainerStateTerminated v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ContainerStateTerminated
    -

    ContainerStateTerminated is a terminated state of a container.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    containerID
    string
    Container's ID in the format 'docker://'
    exitCode
    integer
    Exit status from the last termination of the container
    finishedAt
    Time
    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 at which previous execution of the container started
    -

    ContainerStateWaiting v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ContainerStateWaiting
    -

    ContainerStateWaiting is a waiting state of a container.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    message
    string
    Message regarding why the container is not yet running.
    reason
    string
    (brief) reason the container is not yet running.
    -

    ControllerRevision v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1ControllerRevision
    - - -

    ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    dataData is the serialized representation of the state.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    revision
    integer
    Revision indicates the revision of the state represented by Data.
    -

    CrossVersionObjectReference v1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv1CrossVersionObjectReference
    - - -

    CrossVersionObjectReference contains enough information to let you identify the referred resource.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    API version of the referent
    kind
    string
    Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
    name
    string
    Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
    -

    CustomResourceDefinitionCondition v1beta1 apiextensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiextensionsv1beta1CustomResourceDefinitionCondition
    -

    CustomResourceDefinitionCondition contains details for the current condition of this pod.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    Human-readable message indicating details about last transition.
    reason
    string
    Unique, one-word, CamelCase reason for the condition's last transition.
    status
    string
    Status is the status of the condition. Can be True, False, Unknown.
    type
    string
    Type is the type of the condition.
    -

    CustomResourceDefinitionNames v1beta1 apiextensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiextensionsv1beta1CustomResourceDefinitionNames
    -

    CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    kind
    string
    Kind is the serialized kind of the resource. It is normally CamelCase and singular.
    listKind
    string
    ListKind is the serialized kind of the list for this resource. Defaults to List.
    plural
    string
    Plural is the plural name of the resource to serve. It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase.
    shortNames
    string array
    ShortNames are short names for the resource. It must be all lowercase.
    singular
    string
    Singular is the singular name of the resource. It must be all lowercase Defaults to lowercased
    -

    CustomResourceValidation v1beta1 apiextensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiextensionsv1beta1CustomResourceValidation
    -

    CustomResourceValidation is a list of validation methods for CustomResources.

    - - - - - - - - - - - - - - - -
    FieldDescription
    openAPIV3Schema
    JSONSchemaProps
    OpenAPIV3Schema is the OpenAPI v3 schema to be validated against.
    -

    DaemonEndpoint v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1DaemonEndpoint
    -

    DaemonEndpoint contains information about a single Daemon endpoint.

    - - - - - - - - - - - - - - - -
    FieldDescription
    Port
    integer
    Port number of the given endpoint.
    -

    DaemonSet v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1DaemonSet
    - - -

    DaemonSet represents the configuration of a daemon set.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    DaemonSetSpec
    The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    DaemonSetStatus
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    DaemonSetCondition v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1DaemonSetCondition
    - - -

    DaemonSetCondition describes the state of a DaemonSet at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of DaemonSet condition.
    -

    DaemonSetUpdateStrategy v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1DaemonSetUpdateStrategy
    - - -

    DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateDaemonSet
    Rolling update config params. Present only if type = "RollingUpdate".
    type
    string
    Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
    -

    DeleteOptions v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1DeleteOptions
    -

    DeleteOptions may be provided when deleting an API object.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    orphanDependents
    boolean
    Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    preconditions
    Preconditions
    Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.
    propagationPolicy
    string
    Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Deployment v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1Deployment
    - - -

    Deployment enables declarative updates for Pods and ReplicaSets.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata.
    spec
    DeploymentSpec
    Specification of the desired behavior of the Deployment.
    status
    DeploymentStatus
    Most recently observed status of the Deployment.
    -

    DeploymentCondition v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1DeploymentCondition
    - - -

    DeploymentCondition describes the state of a deployment at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    lastUpdateTime
    Time
    The last time this condition was updated.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of deployment condition.
    -

    DownwardAPIProjection v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1DownwardAPIProjection
    -

    Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.

    - - - - - - - - - - - - - - - -
    FieldDescription
    items
    DownwardAPIVolumeFile array
    Items is a list of DownwardAPIVolume file
    -

    DownwardAPIVolumeFile v1 core

    - - - - - - - - - - - - - - - -
    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 core

    - - - - - - - - - - - - - - - -
    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 core

    - - - - - - - - - - - - - - - -
    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: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
    sizeLimit
    Quantity
    Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir
    -

    EndpointAddress v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1EndpointAddress
    -

    EndpointAddress is a tuple that describes single IP address.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    hostname
    string
    The Hostname of this endpoint
    ip
    string
    The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.
    nodeName
    string
    Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.
    targetRef
    ObjectReference
    Reference to object providing the endpoint.
    -

    EndpointPort v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1EndpointPort
    -

    EndpointPort is a tuple that describes a single port.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.
    port
    integer
    The port number of the endpoint.
    protocol
    string
    The IP protocol for this port. Must be UDP or TCP. Default is TCP.
    -

    EndpointSubset v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1EndpointSubset
    -

    EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: - { - Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], - Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] - } -The resulting set of endpoints can be viewed as: - a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], - b: [ 10.10.1.1:309, 10.10.2.2:309 ]

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    addresses
    EndpointAddress array
    IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.
    notReadyAddresses
    EndpointAddress array
    IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.
    ports
    EndpointPort array
    Port numbers available on the related IP addresses.
    -

    EnvFromSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1EnvFromSource
    -

    EnvFromSource represents the source of a set of ConfigMaps

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    configMapRef
    ConfigMapEnvSource
    The ConfigMap to select from
    prefix
    string
    An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
    secretRef
    SecretEnvSource
    The Secret to select from
    -

    EnvVar v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1EnvVar
    -

    EnvVar represents an environment variable present in a Container.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    Name of the environment variable. Must be a C_IDENTIFIER.
    value
    string
    Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(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. Defaults to "".
    valueFrom
    EnvVarSource
    Source for the environment variable's value. Cannot be used if value is not empty.
    -

    EnvVarSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1EnvVarSource
    -

    EnvVarSource represents a source for the value of an EnvVar.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    configMapKeyRef
    ConfigMapKeySelector
    Selects a key of a ConfigMap.
    fieldRef
    ObjectFieldSelector
    Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.
    resourceFieldRef
    ResourceFieldSelector
    Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.
    secretKeyRef
    SecretKeySelector
    Selects a key of a secret in the pod's namespace
    -

    EventSeries v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1EventSeries
    - - -

    EventSeries contain information on series of events, i.e. thing that was/is happening continously for some time.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    count
    integer
    Number of occurrences in this series up to the last heartbeat time
    lastObservedTime
    MicroTime
    Time of the last occurence observed
    state
    string
    State of this Series: Ongoing or Finished
    -

    EventSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1EventSource
    -

    EventSource contains information for an event.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    component
    string
    Component from which the event is generated.
    host
    string
    Node name on which the event is generated.
    -

    Eviction v1beta1 policy

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    policyv1beta1Eviction
    -

    Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods//evictions.

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    ObjectMeta describes the pod that is being evicted.
    -

    ExecAction v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ExecAction
    -

    ExecAction describes a "run in container" action.

    - - - - - - - - - - - - - - - - -
    FieldDescription
    command
    string array
    Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
    -

    ExternalDocumentation v1beta1 apiextensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiextensionsv1beta1ExternalDocumentation
    -

    ExternalDocumentation allows referencing an external resource for extended documentation.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    description
    string
    url
    string
    -

    FCVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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
    Optional: FC target lun number
    readOnly
    boolean
    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
    targetWWNs
    string array
    Optional: FC target worldwide names (WWNs)
    wwids
    string array
    Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.
    -

    FSGroupStrategyOptions v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1FSGroupStrategyOptions
    -

    FSGroupStrategyOptions defines the strategy type and options used to create the strategy.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    ranges
    IDRange array
    Ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end.
    rule
    string
    Rule is the strategy that will dictate what FSGroup is used in the SecurityContext.
    -

    FlexVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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 core

    - - - - - - - - - - - - - - - -
    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 core

    - - - - - - - - - - - - - - - -
    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: https://kubernetes.io/docs/concepts/storage/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: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
    pdName
    string
    Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
    readOnly
    boolean
    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
    -

    GitRepoVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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 core

    - - - - - - - - - - - - - - - -
    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: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
    path
    string
    Path is the Glusterfs volume path. More info: https://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: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
    -

    GroupVersionForDiscovery v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1GroupVersionForDiscovery
    -

    GroupVersion contains the "group/version" and "version" string of a version. It is made a struct to keep extensibility.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    groupVersion
    string
    groupVersion specifies the API group and version in the form "group/version"
    version
    string
    version specifies the version in the form of "version". This is to save the clients the trouble of splitting the GroupVersion.
    -

    HTTPGetAction v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1HTTPGetAction
    -

    HTTPGetAction describes an action based on HTTP Get requests.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    host
    string
    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
    httpHeaders
    HTTPHeader array
    Custom headers to set in the request. HTTP allows repeated headers.
    path
    string
    Path to access on the HTTP server.
    portName or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
    scheme
    string
    Scheme to use for connecting to the host. Defaults to HTTP.
    -

    HTTPHeader v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1HTTPHeader
    -

    HTTPHeader describes a custom header to be used in HTTP probes

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    The header field name
    value
    string
    The header field value
    -

    HTTPIngressPath v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1HTTPIngressPath
    -

    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 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1HTTPIngressRuleValue
    -

    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 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Handler
    -

    Handler defines a specific action that should be taken

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    exec
    ExecAction
    One and only one of the following should be specified. Exec specifies the action to take.
    httpGet
    HTTPGetAction
    HTTPGet specifies the http request to perform.
    tcpSocket
    TCPSocketAction
    TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported
    -

    HorizontalPodAutoscalerCondition v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1HorizontalPodAutoscalerCondition
    -

    HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    lastTransitionTime is the last time the condition transitioned from one status to another
    message
    string
    message is a human-readable explanation containing details about the transition
    reason
    string
    reason is the reason for the condition's last transition.
    status
    string
    status is the status of the condition (True, False, Unknown)
    type
    string
    type describes the current condition
    -

    HostAlias v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1HostAlias
    -

    HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    hostnames
    string array
    Hostnames for the above IP address.
    ip
    string
    IP address of the host file entry.
    -

    HostPathVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
    type
    string
    Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
    -

    HostPortRange v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1HostPortRange
    -

    Host Port Range defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    max
    integer
    max is the end of the range, inclusive.
    min
    integer
    min is the start of the range, inclusive.
    -

    IDRange v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1IDRange
    -

    ID Range provides a min/max of an allowed range of IDs.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    max
    integer
    Max is the end of the range, inclusive.
    min
    integer
    Min is the start of the range, inclusive.
    -

    IPBlock v1 networking

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    networkingv1IPBlock
    - - -

    IPBlock describes a particular CIDR (Ex. "192.168.1.1/24") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    cidr
    string
    CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24"
    except
    string array
    Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" Except values will be rejected if they are outside the CIDR range
    -

    ISCSIPersistentVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ISCSIPersistentVolumeSource
    -

    ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    chapAuthDiscovery
    boolean
    whether support iSCSI Discovery CHAP authentication
    chapAuthSession
    boolean
    whether support iSCSI Session CHAP authentication
    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: https://kubernetes.io/docs/concepts/storage/volumes#iscsi
    initiatorName
    string
    Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection.
    iqn
    string
    Target iSCSI Qualified Name.
    iscsiInterface
    string
    iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).
    lun
    integer
    iSCSI Target Lun number.
    portals
    string array
    iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).
    readOnly
    boolean
    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.
    secretRef
    SecretReference
    CHAP Secret for iSCSI target and initiator authentication
    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).
    -

    ISCSIVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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
    chapAuthDiscovery
    boolean
    whether support iSCSI Discovery CHAP authentication
    chapAuthSession
    boolean
    whether support iSCSI Session CHAP authentication
    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: https://kubernetes.io/docs/concepts/storage/volumes#iscsi
    initiatorName
    string
    Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection.
    iqn
    string
    Target iSCSI Qualified Name.
    iscsiInterface
    string
    iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).
    lun
    integer
    iSCSI Target Lun number.
    portals
    string array
    iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).
    readOnly
    boolean
    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.
    secretRef
    LocalObjectReference
    CHAP Secret for iSCSI target and initiator authentication
    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).
    -

    IngressBackend v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1IngressBackend
    -

    IngressBackend describes all endpoints for a given service and port.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    serviceName
    string
    Specifies the name of the referenced service.
    servicePortSpecifies the port of the referenced service.
    -

    IngressRule v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1IngressRule
    -

    IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    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 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1IngressTLS
    -

    IngressTLS describes the transport layer security associated with an Ingress.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    hosts
    string array
    Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.
    secretName
    string
    SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.
    -

    Initializer v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1Initializer
    - - -

    Initializer is information about an initializer that has not yet completed.

    - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    name of the process that is responsible for initializing this object.
    -

    Initializers v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1Initializers
    -

    Initializers tracks the progress of initialization.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    pending
    Initializer array
    patch type: merge
    patch merge key: name
    Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.
    result
    Status
    If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.
    -

    JSON v1beta1 apiextensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiextensionsv1beta1JSON
    -

    JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.

    - - - - - - - - - - - - - - - -
    FieldDescription
    Raw
    string
    -

    JSONSchemaProps v1beta1 apiextensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiextensionsv1beta1JSONSchemaProps
    -

    JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    $ref
    string
    $schema
    string
    additionalItems
    JSONSchemaPropsOrBool
    additionalProperties
    JSONSchemaPropsOrBool
    allOf
    JSONSchemaProps array
    anyOf
    JSONSchemaProps array
    default
    JSON
    definitions
    object
    dependencies
    object
    description
    string
    enum
    JSON array
    example
    JSON
    exclusiveMaximum
    boolean
    exclusiveMinimum
    boolean
    externalDocs
    ExternalDocumentation
    format
    string
    id
    string
    items
    JSONSchemaPropsOrArray
    maxItems
    integer
    maxLength
    integer
    maxProperties
    integer
    maximum
    number
    minItems
    integer
    minLength
    integer
    minProperties
    integer
    minimum
    number
    multipleOf
    number
    not
    JSONSchemaProps
    oneOf
    JSONSchemaProps array
    pattern
    string
    patternProperties
    object
    properties
    object
    required
    string array
    title
    string
    type
    string
    uniqueItems
    boolean
    -

    JSONSchemaPropsOrArray v1beta1 apiextensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiextensionsv1beta1JSONSchemaPropsOrArray
    -

    JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    JSONSchemas
    JSONSchemaProps array
    Schema
    JSONSchemaProps
    -

    JSONSchemaPropsOrBool v1beta1 apiextensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiextensionsv1beta1JSONSchemaPropsOrBool
    -

    JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    Allows
    boolean
    Schema
    JSONSchemaProps
    -

    JobCondition v1 batch

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    batchv1JobCondition
    -

    JobCondition describes current state of a job.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastProbeTime
    Time
    Last time the condition was checked.
    lastTransitionTime
    Time
    Last time the condition transit from one status to another.
    message
    string
    Human readable message indicating details about last transition.
    reason
    string
    (brief) reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of job condition, Complete or Failed.
    -

    JobTemplateSpec v1beta1 batch

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    batchv1beta1JobTemplateSpec
    - - -

    JobTemplateSpec describes the data a Job should have when created from a template

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    metadata
    ObjectMeta
    Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    JobSpec
    Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    KeyToPath v1 core

    - - - - - - - - - - - - - - - -
    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 v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1LabelSelector
    -

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

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    matchExpressions
    LabelSelectorRequirement array
    matchExpressions is a list of label selector requirements. The requirements are ANDed.
    matchLabels
    object
    matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    -

    LabelSelectorRequirement v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1LabelSelectorRequirement
    -

    A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    key
    string
    patch type: merge
    patch merge key: key
    key is the label key that the selector applies to.
    operator
    string
    operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
    values
    string array
    values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    -

    Lifecycle v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Lifecycle
    -

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    postStart
    Handler
    PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks
    preStop
    Handler
    PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks
    -

    LimitRangeItem v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1LimitRangeItem
    -

    LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    default
    object
    Default resource requirement limit value by resource name if resource limit is omitted.
    defaultRequest
    object
    DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.
    max
    object
    Max usage constraints on this kind by resource name.
    maxLimitRequestRatio
    object
    MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.
    min
    object
    Min usage constraints on this kind by resource name.
    type
    string
    Type of resource that this limit applies to.
    -

    ListMeta v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1ListMeta
    -

    ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    continue
    string
    continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response.
    resourceVersion
    string
    String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency
    selfLink
    string
    selfLink is a URL representing this object. Populated by the system. Read-only.
    -

    LoadBalancerIngress v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1LoadBalancerIngress
    -

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    hostname
    string
    Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)
    ip
    string
    IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)
    -

    LoadBalancerStatus v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1LoadBalancerStatus
    -

    LoadBalancerStatus represents the status of a load-balancer.

    - - - - - - - - - - - - - - - -
    FieldDescription
    ingress
    LoadBalancerIngress array
    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.
    -

    LocalObjectReference v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1LocalObjectReference
    -

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    -

    LocalVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1LocalVolumeSource
    -

    Local represents directly-attached storage with node affinity

    - - - - - - - - - - - - - - - -
    FieldDescription
    path
    string
    The full path to the volume on the node For alpha, this path must be a directory Once block as a source is supported, then this path can point to a block device
    -

    MetricSpec v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1MetricSpec
    -

    MetricSpec specifies how to scale based on a single metric (only type and one other matching field should be set at once).

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    object
    ObjectMetricSource
    object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).
    pods
    PodsMetricSource
    pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
    resource
    ResourceMetricSource
    resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
    type
    string
    type is the type of metric source. It should match one of the fields below.
    -

    MetricStatus v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1MetricStatus
    -

    MetricStatus describes the last-read state of a single metric.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    object
    ObjectMetricStatus
    object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).
    pods
    PodsMetricStatus
    pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
    resource
    ResourceMetricStatus
    resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
    type
    string
    type is the type of metric source. It will match one of the fields below.
    -

    MicroTime v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1MicroTime
    - - - - - - - - - - - - - - -
    FieldDescription
    -

    MutatingWebhookConfiguration v1beta1 admissionregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    admissionregistrationv1beta1MutatingWebhookConfiguration
    -

    MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
    webhooks
    Webhook array
    patch type: merge
    patch merge key: name
    Webhooks is a list of webhooks and the affected resources and operations.
    -

    NFSVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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: https://kubernetes.io/docs/concepts/storage/volumes#nfs
    readOnly
    boolean
    ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
    server
    string
    Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
    -

    NetworkPolicyEgressRule v1 networking

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    networkingv1NetworkPolicyEgressRule
    - - -

    NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    ports
    NetworkPolicyPort array
    List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.
    to
    NetworkPolicyPeer array
    List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.
    -

    NetworkPolicyIngressRule v1 networking

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    networkingv1NetworkPolicyIngressRule
    - - -

    NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    from
    NetworkPolicyPeer array
    List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.
    ports
    NetworkPolicyPort array
    List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.
    -

    NetworkPolicyPeer v1 networking

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    networkingv1NetworkPolicyPeer
    - - -

    NetworkPolicyPeer describes a peer to allow traffic from. Exactly one of its fields must be specified.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    ipBlock
    IPBlock
    IPBlock defines policy on a particular IPBlock
    namespaceSelector
    LabelSelector
    Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If present but empty, this selector selects all namespaces.
    podSelector
    LabelSelector
    This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If present but empty, this selector selects all pods in this namespace.
    -

    NetworkPolicyPort v1 networking

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    networkingv1NetworkPolicyPort
    - - -

    NetworkPolicyPort describes a port to allow traffic on

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    portThe port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers.
    protocol
    string
    The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.
    -

    NodeAddress v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1NodeAddress
    -

    NodeAddress contains information for the node's address.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    address
    string
    The node address.
    type
    string
    Node address type, one of Hostname, ExternalIP or InternalIP.
    -

    NodeAffinity v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1NodeAffinity
    -

    Node affinity is a group of node affinity scheduling rules.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    preferredDuringSchedulingIgnoredDuringExecution
    PreferredSchedulingTerm array
    The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.
    requiredDuringSchedulingIgnoredDuringExecution
    NodeSelector
    If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.
    -

    NodeCondition v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1NodeCondition
    -

    NodeCondition contains condition information for a node.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastHeartbeatTime
    Time
    Last time we got an update on a given condition.
    lastTransitionTime
    Time
    Last time the condition transit from one status to another.
    message
    string
    Human readable message indicating details about last transition.
    reason
    string
    (brief) reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of node condition.
    -

    NodeConfigSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1NodeConfigSource
    -

    NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    configMapRef
    ObjectReference
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    NodeDaemonEndpoints v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1NodeDaemonEndpoints
    -

    NodeDaemonEndpoints lists ports opened by daemons running on the Node.

    - - - - - - - - - - - - - - - -
    FieldDescription
    kubeletEndpoint
    DaemonEndpoint
    Endpoint on which Kubelet is listening.
    -

    NodeSelector v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1NodeSelector
    -

    A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.

    - - - - - - - - - - - - - - - -
    FieldDescription
    nodeSelectorTerms
    NodeSelectorTerm array
    Required. A list of node selector terms. The terms are ORed.
    -

    NodeSelectorRequirement v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1NodeSelectorRequirement
    -

    A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    key
    string
    The label key that the selector applies to.
    operator
    string
    Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
    values
    string array
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.
    -

    NodeSelectorTerm v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1NodeSelectorTerm
    -

    A null or empty node selector term matches no objects.

    - - - - - - - - - - - - - - - -
    FieldDescription
    matchExpressions
    NodeSelectorRequirement array
    Required. A list of node selector requirements. The requirements are ANDed.
    -

    NodeSystemInfo v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1NodeSystemInfo
    -

    NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    architecture
    string
    The Architecture reported by the node
    bootID
    string
    Boot ID reported by the node.
    containerRuntimeVersion
    string
    ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).
    kernelVersion
    string
    Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).
    kubeProxyVersion
    string
    KubeProxy Version reported by the node.
    kubeletVersion
    string
    Kubelet Version reported by the node.
    machineID
    string
    MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html
    operatingSystem
    string
    The Operating System reported by the node
    osImage
    string
    OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).
    systemUUID
    string
    SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html
    -

    NonResourceAttributes v1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1NonResourceAttributes
    - - -

    NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    path
    string
    Path is the URL path of the request
    verb
    string
    Verb is the standard HTTP verb
    -

    NonResourceRule v1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1NonResourceRule
    - - -

    NonResourceRule holds information that describes a rule for the non-resource

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    nonResourceURLs
    string array
    NonResourceURLs is a set of partial urls that a user should have access to. s are allowed, but only as the full, final step in the path. "" means all.
    verbs
    string array
    Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. "*" means all.
    -

    ObjectFieldSelector v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ObjectFieldSelector
    -

    ObjectFieldSelector selects an APIVersioned field of an object.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    Version of the schema the FieldPath is written in terms of, defaults to "v1".
    fieldPath
    string
    Path of the field to select in the specified API version.
    -

    ObjectMeta v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1ObjectMeta
    -

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

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    annotations
    object
    Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations
    clusterName
    string
    The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
    creationTimestamp
    Time
    CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    deletionGracePeriodSeconds
    integer
    Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
    deletionTimestamp
    Time
    DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    finalizers
    string array
    patch type: merge
    Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.
    generateName
    string
    GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header). Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency
    generation
    integer
    A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
    initializers
    Initializers
    An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects. When an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.
    labels
    object
    Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
    name
    string
    Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
    namespace
    string
    Namespace defines the space within each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces
    ownerReferences
    OwnerReference array
    patch type: merge
    patch merge key: uid
    List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
    resourceVersion
    string
    An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency
    selfLink
    string
    SelfLink is a URL representing this object. Populated by the system. Read-only.
    uid
    string
    UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
    -

    ObjectMetricSource v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1ObjectMetricSource
    -

    ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    metricName
    string
    metricName is the name of the metric in question.
    target
    CrossVersionObjectReference
    target is the described Kubernetes object.
    targetValue
    Quantity
    targetValue is the target value of the metric (as a quantity).
    -

    ObjectMetricStatus v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1ObjectMetricStatus
    -

    ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    currentValue
    Quantity
    currentValue is the current value of the metric (as a quantity).
    metricName
    string
    metricName is the name of the metric in question.
    target
    CrossVersionObjectReference
    target is the described Kubernetes object.
    -

    ObjectReference v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ObjectReference
    -

    ObjectReference contains enough information to let you inspect or modify the referred object.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    API version of the referent.
    fieldPath
    string
    If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.
    kind
    string
    Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    name
    string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    namespace
    string
    Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
    resourceVersion
    string
    Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency
    uid
    string
    UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
    -

    OwnerReference v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1OwnerReference
    -

    OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    API version of the referent.
    blockOwnerDeletion
    boolean
    If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
    controller
    boolean
    If true, this reference points to the managing controller.
    kind
    string
    Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    name
    string
    Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names
    uid
    string
    UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
    -

    Patch v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1Patch
    -

    Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

    - - - - - - - - - - - - -
    FieldDescription
    -

    PersistentVolumeClaimCondition v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PersistentVolumeClaimCondition
    -

    PersistentVolumeClaimCondition contails details about state of pvc

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastProbeTime
    Time
    Last time we probed the condition.
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    Human-readable message indicating details about last transition.
    reason
    string
    Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "ResizeStarted" that means the underlying persistent volume is being resized.
    status
    string
    type
    string
    -

    PersistentVolumeClaimVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
    readOnly
    boolean
    Will force the ReadOnly setting in VolumeMounts. Default false.
    -

    PhotonPersistentDiskVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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
    -

    PodAffinity v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PodAffinity
    -

    Pod affinity is a group of inter pod affinity scheduling rules.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    preferredDuringSchedulingIgnoredDuringExecution
    WeightedPodAffinityTerm array
    The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
    requiredDuringSchedulingIgnoredDuringExecution
    PodAffinityTerm array
    If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
    -

    PodAffinityTerm v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PodAffinityTerm
    -

    Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    labelSelector
    LabelSelector
    A label query over a set of resources, in this case pods.
    namespaces
    string array
    namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace"
    topologyKey
    string
    This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.
    -

    PodAntiAffinity v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PodAntiAffinity
    -

    Pod anti affinity is a group of inter pod anti affinity scheduling rules.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    preferredDuringSchedulingIgnoredDuringExecution
    WeightedPodAffinityTerm array
    The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
    requiredDuringSchedulingIgnoredDuringExecution
    PodAffinityTerm array
    If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
    -

    PodCondition v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PodCondition
    -

    PodCondition contains details for the current condition of this pod.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastProbeTime
    Time
    Last time we probed the condition.
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    Human-readable message indicating details about last transition.
    reason
    string
    Unique, one-word, CamelCase reason for the condition's last transition.
    status
    string
    Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
    type
    string
    Type is the type of the condition. Currently only Ready. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
    -

    PodDNSConfig v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PodDNSConfig
    -

    PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    nameservers
    string array
    A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.
    options
    PodDNSConfigOption array
    A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.
    searches
    string array
    A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.
    -

    PodDNSConfigOption v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PodDNSConfigOption
    -

    PodDNSConfigOption defines DNS resolver options of a pod.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    Required.
    value
    string
    -

    PodSecurityContext v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PodSecurityContext
    -

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    fsGroup
    integer
    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- If unset, the Kubelet will not modify the ownership and permissions of any volume.
    runAsNonRoot
    boolean
    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
    runAsUser
    integer
    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.
    seLinuxOptions
    SELinuxOptions
    The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.
    supplementalGroups
    integer array
    A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.
    -

    PodsMetricSource v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1PodsMetricSource
    -

    PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    metricName
    string
    metricName is the name of the metric in question
    targetAverageValue
    Quantity
    targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)
    -

    PodsMetricStatus v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1PodsMetricStatus
    -

    PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    currentAverageValue
    Quantity
    currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)
    metricName
    string
    metricName is the name of the metric in question
    -

    PolicyRule v1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1PolicyRule
    - - -

    PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroups
    string array
    APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.
    nonResourceURLs
    string array
    NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both.
    resourceNames
    string array
    ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.
    resources
    string array
    Resources is a list of resources this rule applies to. ResourceAll represents all resources.
    verbs
    string array
    Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.
    -

    PortworxVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PortworxVolumeSource
    -

    PortworxVolumeSource represents a Portworx volume resource.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    fsType
    string
    FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified.
    readOnly
    boolean
    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
    volumeID
    string
    VolumeID uniquely identifies a Portworx volume
    -

    Preconditions v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1Preconditions
    -

    Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

    - - - - - - - - - - - - - - - -
    FieldDescription
    uid
    string
    Specifies the target UID.
    -

    PreferredSchedulingTerm v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1PreferredSchedulingTerm
    -

    An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    preference
    NodeSelectorTerm
    A node selector term, associated with the corresponding weight.
    weight
    integer
    Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.
    -

    Probe v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Probe
    -

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    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: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#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
    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: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
    -

    ProjectedVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ProjectedVolumeSource
    -

    Represents a projected volume source

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    defaultMode
    integer
    Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
    sources
    VolumeProjection array
    list of volume projections
    -

    Quantity resource core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    CoreresourceQuantity
    - - - - - - - - - - - - - - -
    FieldDescription
    -

    QuobyteVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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.
    -

    RBDPersistentVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1RBDPersistentVolumeSource
    -

    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: https://kubernetes.io/docs/concepts/storage/volumes#rbd
    image
    string
    The rados image name. More info: https://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: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
    monitors
    string array
    A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
    pool
    string
    The rados pool name. Default is rbd. More info: https://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: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
    secretRef
    SecretReference
    SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
    user
    string
    The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
    -

    RBDVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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: https://kubernetes.io/docs/concepts/storage/volumes#rbd
    image
    string
    The rados image name. More info: https://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: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
    monitors
    string array
    A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
    pool
    string
    The rados pool name. Default is rbd. More info: https://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: https://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: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
    user
    string
    The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
    -

    ReplicaSet v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1ReplicaSet
    - - -

    ReplicaSet ensures that a specified number of pod replicas are running at any given time.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    ReplicaSetSpec
    Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    ReplicaSetStatus
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    ReplicaSetCondition v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1ReplicaSetCondition
    - - -

    ReplicaSetCondition describes the state of a replica set at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    The last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of replica set condition.
    -

    ReplicationControllerCondition v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ReplicationControllerCondition
    -

    ReplicationControllerCondition describes the state of a replication controller at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    The last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of replication controller condition.
    -

    ResourceAttributes v1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1ResourceAttributes
    - - -

    ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    group
    string
    Group is the API Group of the Resource. "*" means all.
    name
    string
    Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all.
    namespace
    string
    Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
    resource
    string
    Resource is one of the existing resource types. "*" means all.
    subresource
    string
    Subresource is one of the existing resource types. "" means none.
    verb
    string
    Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all.
    version
    string
    Version is the API Version of the Resource. "*" means all.
    -

    ResourceFieldSelector v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ResourceFieldSelector
    -

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    containerName
    string
    Container name: required for volumes, optional for env vars
    divisor
    Quantity
    Specifies the output format of the exposed resources, defaults to "1"
    resource
    string
    Required: resource to select
    -

    ResourceMetricSource v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1ResourceMetricSource
    -

    ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    name is the name of the resource in question.
    targetAverageUtilization
    integer
    targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.
    targetAverageValue
    Quantity
    targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.
    -

    ResourceMetricStatus v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1ResourceMetricStatus
    -

    ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    currentAverageUtilization
    integer
    currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if targetAverageValue was set in the corresponding metric specification.
    currentAverageValue
    Quantity
    currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.
    name
    string
    name is the name of the resource in question.
    -

    ResourceRequirements v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ResourceRequirements
    -

    ResourceRequirements describes the compute resource requirements.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    limits
    object
    Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
    requests
    object
    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
    -

    ResourceRule v1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1ResourceRule
    - - -

    ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroups
    string array
    APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "*" means all.
    resourceNames
    string array
    ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. "*" means all.
    resources
    string array
    Resources is a list of resources this rule applies to. "" means all in the specified apiGroups. "/foo" represents the subresource 'foo' for all resources in the specified apiGroups.
    verbs
    string array
    Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all.
    -

    RoleRef v1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1RoleRef
    - - -

    RoleRef contains information that points to the role being used

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroup
    string
    APIGroup is the group for the resource being referenced
    kind
    string
    Kind is the type of resource being referenced
    name
    string
    Name is the name of resource being referenced
    -

    RollbackConfig v1beta1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta1RollbackConfig
    -

    DEPRECATED.

    - - - - - - - - - - - - - - - -
    FieldDescription
    revision
    integer
    The revision to rollback to. If set to 0, rollback to the last revision.
    -

    RollingUpdateStatefulSetStrategy v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1RollingUpdateStatefulSetStrategy
    - - -

    RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.

    - - - - - - - - - - - - - - - -
    FieldDescription
    partition
    integer
    Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.
    -

    Rule v1alpha1 admissionregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    admissionregistrationv1alpha1Rule
    -

    Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended to make sure that all the tuple expansions are valid.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroups
    string array
    APIGroups is the API groups the resources belong to. '' is all groups. If '' is present, the length of the slice must be one. Required.
    apiVersions
    string array
    APIVersions is the API versions the resources belong to. '' is all versions. If '' is present, the length of the slice must be one. Required.
    resources
    string array
    Resources is a list of resources this rule applies to. For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '' means all resources, but not subresources. 'pods/' means all subresources of pods. '/scale' means all scale subresources. '/*' means all resources and their subresources. If wildcard is present, the validation rule will ensure resources do not overlap with each other. Depending on the enclosing object, subresources might not be allowed. Required.
    -

    RuleWithOperations v1beta1 admissionregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    admissionregistrationv1beta1RuleWithOperations
    -

    RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroups
    string array
    APIGroups is the API groups the resources belong to. '' is all groups. If '' is present, the length of the slice must be one. Required.
    apiVersions
    string array
    APIVersions is the API versions the resources belong to. '' is all versions. If '' is present, the length of the slice must be one. Required.
    operations
    string array
    Operations is the operations the admission hook cares about - CREATE, UPDATE, or for all operations. If '' is present, the length of the slice must be one. Required.
    resources
    string array
    Resources is a list of resources this rule applies to. For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '' means all resources, but not subresources. 'pods/' means all subresources of pods. '/scale' means all scale subresources. '/*' means all resources and their subresources. If wildcard is present, the validation rule will ensure resources do not overlap with each other. Depending on the enclosing object, subresources might not be allowed. Required.
    -

    RunAsUserStrategyOptions v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1RunAsUserStrategyOptions
    -

    Run A sUser Strategy Options defines the strategy type and any options used to create the strategy.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    ranges
    IDRange array
    Ranges are the allowed ranges of uids that may be used.
    rule
    string
    Rule is the strategy that will dictate the allowable RunAsUser values that may be set.
    -

    SELinuxOptions v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1SELinuxOptions
    -

    SELinuxOptions are the labels to be applied to the container

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    level
    string
    Level is SELinux level label that applies to the container.
    role
    string
    Role is a SELinux role label that applies to the container.
    type
    string
    Type is a SELinux type label that applies to the container.
    user
    string
    User is a SELinux user label that applies to the container.
    -

    SELinuxStrategyOptions v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1SELinuxStrategyOptions
    -

    SELinux Strategy Options defines the strategy type and any options used to create the strategy.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rule
    string
    type is the strategy that will dictate the allowable labels that may be set.
    seLinuxOptions
    SELinuxOptions
    seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
    -

    Scale v1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv1Scale
    - - -

    Scale represents a scaling request for a resource.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
    spec
    ScaleSpec
    defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
    status
    ScaleStatus
    current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
    -

    ScaleIOPersistentVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ScaleIOPersistentVolumeSource
    -

    ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    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.
    gateway
    string
    The host address of the ScaleIO API Gateway.
    protectionDomain
    string
    The name of the ScaleIO Protection Domain for the configured storage.
    readOnly
    boolean
    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
    secretRef
    SecretReference
    SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.
    sslEnabled
    boolean
    Flag to enable/disable SSL communication with Gateway, default false
    storageMode
    string
    Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.
    storagePool
    string
    The ScaleIO Storage Pool associated with the protection domain.
    system
    string
    The name of the storage system as configured in ScaleIO.
    volumeName
    string
    The name of a volume already created in the ScaleIO system that is associated with this volume source.
    -

    ScaleIOVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ScaleIOVolumeSource
    -

    ScaleIOVolumeSource represents a persistent ScaleIO volume

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    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.
    gateway
    string
    The host address of the ScaleIO API Gateway.
    protectionDomain
    string
    The name of the ScaleIO Protection Domain for the configured storage.
    readOnly
    boolean
    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
    secretRef
    LocalObjectReference
    SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.
    sslEnabled
    boolean
    Flag to enable/disable SSL communication with Gateway, default false
    storageMode
    string
    Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.
    storagePool
    string
    The ScaleIO Storage Pool associated with the protection domain.
    system
    string
    The name of the storage system as configured in ScaleIO.
    volumeName
    string
    The name of a volume already created in the ScaleIO system that is associated with this volume source.
    -

    SecretEnvSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1SecretEnvSource
    -

    SecretEnvSource selects a Secret to populate the environment variables with.

    -

    The contents of the target Secret's Data field will represent the key-value pairs as environment variables.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    optional
    boolean
    Specify whether the Secret must be defined
    -

    SecretKeySelector v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1SecretKeySelector
    -

    SecretKeySelector selects a key of a Secret.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    key
    string
    The key of the secret to select from. Must be a valid secret key.
    name
    string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    optional
    boolean
    Specify whether the Secret or it's key must be defined
    -

    SecretProjection v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1SecretProjection
    -

    Adapts a secret into a projected volume.

    -

    The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    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 unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
    name
    string
    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    optional
    boolean
    Specify whether the Secret or its key must be defined
    -

    SecretReference v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1SecretReference
    -

    SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    Name is unique within a namespace to reference a secret resource.
    namespace
    string
    Namespace defines the space within which the secret name must be unique.
    -

    SecretVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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 unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
    optional
    boolean
    Specify whether the Secret or it's keys must be defined
    secretName
    string
    Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
    -

    SecurityContext v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1SecurityContext
    -

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    allowPrivilegeEscalation
    boolean
    AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN
    capabilities
    Capabilities
    The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.
    privileged
    boolean
    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.
    readOnlyRootFilesystem
    boolean
    Whether this container has a read-only root filesystem. Default is false.
    runAsNonRoot
    boolean
    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
    runAsUser
    integer
    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
    seLinuxOptions
    SELinuxOptions
    The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
    -

    ServerAddressByClientCIDR v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1ServerAddressByClientCIDR
    -

    ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    clientCIDR
    string
    The CIDR with which clients can match their IP to figure out the server address that they should use.
    serverAddress
    string
    Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.
    -

    ServicePort v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1ServicePort
    -

    ServicePort contains information on service's port.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service.
    nodePort
    integer
    The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
    port
    integer
    The port that will be exposed by this service.
    protocol
    string
    The IP protocol for this port. Supports "TCP" and "UDP". Default is TCP.
    targetPortNumber or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service
    -

    ServiceReference v1beta1 admissionregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    admissionregistrationv1beta1ServiceReference
    -

    ServiceReference holds a reference to Service.legacy.k8s.io

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    name is the name of the service. Required
    namespace
    string
    namespace is the namespace of the service. Required
    path
    string
    path is an optional URL path which will be sent in any request to this service.
    -

    SessionAffinityConfig v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1SessionAffinityConfig
    -

    SessionAffinityConfig represents the configurations of session affinity.

    - - - - - - - - - - - - - - - -
    FieldDescription
    clientIP
    ClientIPConfig
    clientIP contains the configurations of Client IP based session affinity.
    -

    StatefulSet v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1StatefulSet
    - - -

    StatefulSet represents a set of pods with consistent identities. Identities are defined as:

    -
      -
    • Network: A single stable DNS and hostname.
    • -
    • Storage: As many VolumeClaims as requested. -The StatefulSet guarantees that a given network identity will always map to the same storage identity.
    • -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    StatefulSetSpec
    Spec defines the desired identities of pods in this set.
    status
    StatefulSetStatus
    Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.
    -

    StatefulSetCondition v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1StatefulSetCondition
    - - -

    StatefulSetCondition describes the state of a statefulset at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of statefulset condition.
    -

    StatefulSetUpdateStrategy v1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1StatefulSetUpdateStrategy
    - - -

    StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateStatefulSetStrategy
    RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
    type
    string
    Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.
    -

    Status v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1Status
    -

    Status is a return value for calls that don't return other objects.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    code
    integer
    Suggested HTTP return code for this status, 0 if not set.
    details
    StatusDetails
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    message
    string
    A human-readable description of the status of this operation.
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/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.
    status
    string
    Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    StatusCause v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1StatusCause
    -

    StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    field
    string
    The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional. Examples: "name" - the field "name" on the current resource "items[0].name" - the field "name" on the first array entry in "items"
    message
    string
    A human-readable description of the cause of the error. This field may be presented as-is to a reader.
    reason
    string
    A machine-readable description of the cause of the error. If this value is empty there is no information available.
    -

    StatusDetails v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1StatusDetails
    -

    StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    causes
    StatusCause array
    The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.
    group
    string
    The group attribute of the resource associated with the status StatusReason.
    kind
    string
    The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    name
    string
    The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).
    retryAfterSeconds
    integer
    If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.
    uid
    string
    UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids
    -

    StorageOSPersistentVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1StorageOSPersistentVolumeSource
    -

    Represents a StorageOS persistent 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.
    readOnly
    boolean
    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
    secretRef
    ObjectReference
    SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.
    volumeName
    string
    VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.
    volumeNamespace
    string
    VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.
    -

    StorageOSVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1StorageOSVolumeSource
    -

    Represents a StorageOS persistent 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.
    readOnly
    boolean
    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
    secretRef
    LocalObjectReference
    SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.
    volumeName
    string
    VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.
    volumeNamespace
    string
    VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.
    -

    Subject v1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1Subject
    - - -

    Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroup
    string
    APIGroup holds the API group of the referenced subject. Defaults to "" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
    kind
    string
    Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error.
    name
    string
    Name of the object being referenced.
    namespace
    string
    Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error.
    -

    SubjectRulesReviewStatus v1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1SubjectRulesReviewStatus
    - - -

    SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    evaluationError
    string
    EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.
    incomplete
    boolean
    Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.
    nonResourceRules
    NonResourceRule array
    NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.
    resourceRules
    ResourceRule array
    ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.
    -

    SupplementalGroupsStrategyOptions v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1SupplementalGroupsStrategyOptions
    -

    SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    ranges
    IDRange array
    Ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end.
    rule
    string
    Rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.
    -

    TCPSocketAction v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1TCPSocketAction
    -

    TCPSocketAction describes an action based on opening a socket

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    host
    string
    Optional: Host name to connect to, defaults to the pod IP.
    portNumber or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
    -

    Taint v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Taint
    -

    The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    effect
    string
    Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
    key
    string
    Required. The taint key to be applied to a node.
    timeAdded
    Time
    TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.
    value
    string
    Required. The taint value corresponding to the taint key.
    -

    Time v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1Time
    - - - - - - - - - - - - - - -
    FieldDescription
    -

    Toleration v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1Toleration
    -

    The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    effect
    string
    Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
    key
    string
    Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.
    operator
    string
    Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.
    tolerationSeconds
    integer
    TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.
    value
    string
    Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.
    -

    UserInfo v1 authentication

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authenticationv1UserInfo
    - - -

    UserInfo holds the information about the user needed to implement the user.Info interface.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    extra
    object
    Any additional information provided by the authenticator.
    groups
    string array
    The names of groups this user is a part of.
    uid
    string
    A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.
    username
    string
    The name that uniquely identifies this user among all active users.
    -

    ValidatingWebhookConfiguration v1beta1 admissionregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    admissionregistrationv1beta1ValidatingWebhookConfiguration
    -

    ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
    webhooks
    Webhook array
    patch type: merge
    patch merge key: name
    Webhooks is a list of webhooks and the affected resources and operations.
    -

    VolumeAttachment v1alpha1 storage

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    storagev1alpha1VolumeAttachment
    -

    VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.

    -

    VolumeAttachment objects are non-namespaced.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    VolumeAttachmentSpec
    Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.
    status
    VolumeAttachmentStatus
    Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.
    -

    VolumeAttachmentSource v1alpha1 storage

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    storagev1alpha1VolumeAttachmentSource
    -

    VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.

    - - - - - - - - - - - - - - - -
    FieldDescription
    persistentVolumeName
    string
    Name of the persistent volume to attach.
    -

    VolumeDevice v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1VolumeDevice
    -

    volumeDevice describes a mapping of a raw block device within a container.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    devicePath
    string
    devicePath is the path inside of the container that the device will be mapped to.
    name
    string
    name must match the name of a persistentVolumeClaim in the pod
    -

    VolumeError v1alpha1 storage

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    storagev1alpha1VolumeError
    -

    VolumeError captures an error encountered during a volume operation.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    message
    string
    String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.
    time
    Time
    Time the error was encountered.
    -

    VolumeMount v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1VolumeMount
    -

    VolumeMount describes a mounting of a Volume within a container.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    mountPath
    string
    Path within the container at which the volume should be mounted. Must not contain ':'.
    mountPropagation
    string
    mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release.
    name
    string
    This must match the Name of a Volume.
    readOnly
    boolean
    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.
    subPath
    string
    Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).
    -

    VolumeProjection v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1VolumeProjection
    -

    Projection that may be projected along with other supported volume types

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    configMap
    ConfigMapProjection
    information about the configMap data to project
    downwardAPI
    DownwardAPIProjection
    information about the downwardAPI data to project
    secret
    SecretProjection
    information about the secret data to project
    -

    VsphereVirtualDiskVolumeSource v1 core

    - - - - - - - - - - - - - - - -
    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.
    storagePolicyID
    string
    Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.
    storagePolicyName
    string
    Storage Policy Based Management (SPBM) profile name.
    volumePath
    string
    Path that identifies vSphere volume vmdk
    -

    WatchEvent v1 meta

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    metav1WatchEvent
    -

    Event represents a single event to a watched resource.

    - - - - - - - - - - - - - - - - - -
    FieldDescription
    objectObject is: If Type is Added or Modified: the new state of the object. If Type is Deleted: the state of the object immediately before deletion. If Type is Error: Status is recommended; other types may make sense depending on context.
    type
    string
    -

    Webhook v1beta1 admissionregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    admissionregistrationv1beta1Webhook
    -

    Webhook describes an admission webhook and the resources and operations it applies to.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    clientConfig
    WebhookClientConfig
    ClientConfig defines how to communicate with the hook. Required
    failurePolicy
    string
    FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.
    name
    string
    The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where "imagepolicy" is the name of the webhook, and kubernetes.io is the name of the organization. Required.
    namespaceSelector
    LabelSelector
    NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is other cluster scoped resource, it is not subjected to the webhook. For example, to run the webhook on any objects whose namespace is not associated with "runlevel" of "0" or "1"; you will set the selector as follows: "namespaceSelector": { "matchExpressions": [ { "key": "runlevel", "operator": "NotIn", "values": [ "0", "1" ] } ] } If instead you want to only run the webhook on any objects whose namespace is associated with the "environment" of "prod" or "staging"; you will set the selector as follows: "namespaceSelector": { "matchExpressions": [ { "key": "environment", "operator": "In", "values": [ "prod", "staging" ] } ] } See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors. Default to the empty LabelSelector, which matches everything.
    rules
    RuleWithOperations array
    Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches any Rule.
    -

    WebhookClientConfig v1beta1 admissionregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    admissionregistrationv1beta1WebhookClientConfig
    -

    WebhookClientConfig contains the information to make a TLS connection with the webhook

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    caBundle
    string
    caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. Required.
    service
    ServiceReference
    service is a reference to the service for this webhook. Either service or url must be specified. If the webhook is running within the cluster, then you should use service. If there is only one port open for the service, that port will be used. If there are multiple ports open, port 443 will be used if it is open, otherwise it is an error.
    url
    string
    url gives the location of the webhook, in standard URL form ([scheme://]host:port/path). Exactly one of url or service must be specified. The host should not refer to a service running in the cluster; use the service field instead. The host might be resolved via external DNS in some apiservers (e.g., kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation). host may also be an IP address. Please note that using localhost or 127.0.0.1 as a host is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. The scheme must be "https"; the URL must begin with "https://". A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either.
    -

    WeightedPodAffinityTerm v1 core

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    Corev1WeightedPodAffinityTerm
    -

    The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    podAffinityTerm
    PodAffinityTerm
    Required. A pod affinity term, associated with the corresponding weight.
    weight
    integer
    weight associated with matching the corresponding podAffinityTerm, in the range 1-100.
    -

    OLD API VERSIONS

    -

    This section contains older versions of resources shown above.

    -
    -

    AggregationRule v1beta1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1beta1AggregationRule
    - - - -

    AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole

    - - - - - - - - - - - - - - - -
    FieldDescription
    clusterRoleSelectors
    LabelSelector array
    ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added
    -
    -

    AggregationRule v1alpha1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1alpha1AggregationRule
    - - - -

    AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole

    - - - - - - - - - - - - - - - -
    FieldDescription
    clusterRoleSelectors
    LabelSelector array
    ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added
    -
    -

    ClusterRole v1beta1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1beta1ClusterRole
    - - - -

    ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    aggregationRule
    AggregationRule
    AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    rules
    PolicyRule array
    Rules holds all the PolicyRules for this ClusterRole
    -

    ClusterRoleList v1beta1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ClusterRole

    -

    HTTP Request

    -

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

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRole
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    201
    ClusterRole
    Created
    202
    ClusterRole
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ClusterRole

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ClusterRole

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRole
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    201
    ClusterRole
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ClusterRole

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ClusterRole

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ClusterRole

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ClusterRole

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ClusterRoleList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ClusterRole

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1beta1/watch/clusterroles

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    ClusterRole v1alpha1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1alpha1ClusterRole
    - - - -

    ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    aggregationRule
    AggregationRule
    AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    rules
    PolicyRule array
    Rules holds all the PolicyRules for this ClusterRole
    -

    ClusterRoleList v1alpha1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ClusterRole

    -

    HTTP Request

    -

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

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRole
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    201
    ClusterRole
    Created
    202
    ClusterRole
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ClusterRole

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ClusterRole

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRole
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    201
    ClusterRole
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ClusterRole

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ClusterRole

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ClusterRole

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRole
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ClusterRole

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ClusterRoleList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ClusterRole

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRole
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    ClusterRoleBinding v1beta1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1beta1ClusterRoleBinding
    - - - -

    ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    roleRef
    RoleRef
    RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.
    subjects
    Subject array
    Subjects holds references to the objects the role applies to.
    -

    ClusterRoleBindingList v1beta1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ClusterRoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    ClusterRoleBinding
    Created
    202
    ClusterRoleBinding
    Accepted
    200
    ClusterRoleBinding
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ClusterRoleBinding

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ClusterRoleBinding

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    ClusterRoleBinding
    Created
    200
    ClusterRoleBinding
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ClusterRoleBinding

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ClusterRoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ClusterRoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ClusterRoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ClusterRoleBindingList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ClusterRoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1beta1/watch/clusterrolebindings

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    ClusterRoleBinding v1alpha1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1alpha1ClusterRoleBinding
    - - - -

    ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    roleRef
    RoleRef
    RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.
    subjects
    Subject array
    Subjects holds references to the objects the role applies to.
    -

    ClusterRoleBindingList v1alpha1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ClusterRoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    201
    ClusterRoleBinding
    Created
    202
    ClusterRoleBinding
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ClusterRoleBinding

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ClusterRoleBinding

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    ClusterRoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    201
    ClusterRoleBinding
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ClusterRoleBinding

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ClusterRoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ClusterRoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ClusterRoleBinding
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ClusterRoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ClusterRoleBindingList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ClusterRoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ClusterRoleBinding
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    ControllerRevision v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2ControllerRevision
    - - - -

    ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    dataData is the serialized representation of the state.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    revision
    integer
    Revision indicates the revision of the state represented by Data.
    -

    ControllerRevisionList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    ControllerRevision array
    Items is the list of ControllerRevisions
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ControllerRevision

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    ControllerRevision
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    ControllerRevision
    Created
    202
    ControllerRevision
    Accepted
    200
    ControllerRevision
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ControllerRevision

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    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
    ControllerRevision
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ControllerRevision

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    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
    ControllerRevision
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ControllerRevision
    OK
    201
    ControllerRevision
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ControllerRevision

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ControllerRevision

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ControllerRevision
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ControllerRevisionList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/controllerrevisions

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ControllerRevisionList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/controllerrevisions

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    ControllerRevision v1beta1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta1ControllerRevision
    - - - -

    DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    dataData is the serialized representation of the state.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    revision
    integer
    Revision indicates the revision of the state represented by Data.
    -

    ControllerRevisionList v1beta1 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    ControllerRevision array
    Items is the list of ControllerRevisions
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ControllerRevision

    -

    HTTP Request

    -

    POST /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    ControllerRevision
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    ControllerRevision
    OK
    201
    ControllerRevision
    Created
    202
    ControllerRevision
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ControllerRevision

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    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
    ControllerRevision
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ControllerRevision

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    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
    ControllerRevision
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    ControllerRevision
    Created
    200
    ControllerRevision
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ControllerRevision

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ControllerRevision

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ControllerRevision
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ControllerRevisionList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/controllerrevisions

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ControllerRevisionList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/watch/namespaces/{namespace}/controllerrevisions/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ControllerRevision
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ControllerRevision

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ControllerRevision

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/watch/controllerrevisions

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    CronJob v2alpha1 batch

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    batchv2alpha1CronJob
    - - - -

    CronJob represents the configuration of a single cron job.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    CronJobSpec
    Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    CronJobStatus
    Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    CronJobSpec v2alpha1 batch

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    concurrencyPolicy
    string
    Specifies how to treat concurrent executions of a Job. Valid values are: - "Allow" (default): allows CronJobs to run concurrently; - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - "Replace": cancels currently running job and replaces it with a new one
    failedJobsHistoryLimit
    integer
    The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.
    jobTemplate
    JobTemplateSpec
    Specifies the job that will be created when executing a CronJob.
    schedule
    string
    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.
    successfulJobsHistoryLimit
    integer
    The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.
    suspend
    boolean
    This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.
    -

    CronJobStatus v2alpha1 batch

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    active
    ObjectReference array
    A list of pointers to currently running jobs.
    lastScheduleTime
    Time
    Information when was the last time the job was successfully scheduled.
    -

    CronJobList v2alpha1 batch

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    CronJob array
    items is the list of CronJobs.
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a CronJob

    -

    HTTP Request

    -

    POST /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    CronJob
    Created
    202
    CronJob
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified CronJob

    -

    HTTP Request

    -

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

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified CronJob

    -

    HTTP Request

    -

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

    -

    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
    201
    CronJob
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a CronJob

    -

    HTTP Request

    -

    DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of CronJob

    -

    HTTP Request

    -

    DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified CronJob

    -

    HTTP Request

    -

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

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    CronJob
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind CronJob

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    CronJobList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind CronJob

    -

    HTTP Request

    -

    GET /apis/batch/v2alpha1/cronjobs

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    CronJobList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind CronJob

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 CronJob

    -

    HTTP Request

    -

    GET /apis/batch/v2alpha1/watch/cronjobs

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    201
    CronJob
    Created
    -
    -

    CrossVersionObjectReference v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1CrossVersionObjectReference
    - - - -

    CrossVersionObjectReference contains enough information to let you identify the referred resource.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    API version of the referent
    kind
    string
    Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
    name
    string
    Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
    -
    -

    DaemonSet v1beta2 apps

    -
    -

    DaemonSet Config to print the hostname on each Node in the cluster every 10 seconds.

    -
    -
    
    -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 <script>`
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -
    -
    -

    DaemonSet Config to print the hostname on each Node in the cluster every 10 seconds.

    -
    -
    
    -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 <script>`
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2DaemonSet
    - - - -

    DaemonSet represents the configuration of a daemon set.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    DaemonSetSpec
    The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    DaemonSetStatus
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    DaemonSetSpec v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).
    revisionHistoryLimit
    integer
    The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.
    selector
    LabelSelector
    A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    template
    PodTemplateSpec
    An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
    updateStrategy
    DaemonSetUpdateStrategy
    An update strategy to replace existing DaemonSet pods with new pods.
    -

    DaemonSetStatus v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    collisionCount
    integer
    Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
    conditions
    DaemonSetCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a DaemonSet's current state.
    currentNumberScheduled
    integer
    The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    desiredNumberScheduled
    integer
    The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    numberAvailable
    integer
    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)
    numberMisscheduled
    integer
    The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    numberReady
    integer
    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.
    numberUnavailable
    integer
    The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)
    observedGeneration
    integer
    The most recent generation observed by the daemon set controller.
    updatedNumberScheduled
    integer
    The total number of nodes that are running updated daemon pod
    -

    DaemonSetList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    DaemonSet array
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    RollingUpdateDaemonSet v1beta2 apps

    - - - - - - - - - - - - - - - -
    FieldDescription
    maxUnavailableThe maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: extensions/v1beta1
    -kind: DaemonSet
    -metadata:
    -  name: daemonset-example
    -spec:
    -  template:
    -    metadata:
    -      labels:
    -        app: daemonset-example
    -    spec:
    -      containers:
    -      - name: daemonset-example
    -        image: ubuntu:trusty
    -        command:
    -        - /bin/sh
    -        args:
    -        - -c
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -' | kubectl create -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X POST -H 'Content-Type: application/yaml' --data '
    -apiVersion: extensions/v1beta1
    -kind: DaemonSet
    -metadata:
    -  name: daemonset-example
    -spec:
    -  template:
    -    metadata:
    -      labels:
    -        app: daemonset-example
    -    spec:
    -      containers:
    -      - name: daemonset-example
    -        image: ubuntu:trusty
    -        command:
    -        - /bin/sh
    -        args:
    -        - -c
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -' http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/daemonsets
    -
    -
    -

    Output

    -
    -
    
    -daemonset "daemonset-example" created
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "DaemonSet",
    -  "apiVersion": "extensions/v1beta1",
    -  "metadata": {
    -    "name": "daemonset-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/extensions/v1beta1/namespaces/default/daemonsets/daemonset-example",
    -    "uid": "65552ced-b0e2-11e6-aef0-42010af00229",
    -    "resourceVersion": "3558",
    -    "generation": 1,
    -    "creationTimestamp": "2016-11-22T18:35:09Z",
    -    "labels": {
    -      "app": "daemonset-example"
    -    }
    -  },
    -  "spec": {
    -    "selector": {
    -      "matchLabels": {
    -        "app": "daemonset-example"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "daemonset-example"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "daemonset-example",
    -            "image": "ubuntu:trusty",
    -            "command": [
    -              "/bin/sh"
    -            ],
    -            "args": [
    -              "-c",
    -              "while [ true ]; do echo \"DaemonSet running on $(hostname)\" ; sleep 10 ; done"
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    }
    -  },
    -  "status": {
    -    "currentNumberScheduled": 0,
    -    "numberMisscheduled": 0,
    -    "desiredNumberScheduled": 0
    -  }
    -}
    -
    -

    create a DaemonSet

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/daemonsets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    DaemonSet
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    201
    DaemonSet
    Created
    202
    DaemonSet
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified DaemonSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified DaemonSet

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    201
    DaemonSet
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl delete daemonset daemonset-example
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X DELETE -H 'Content-Type: application/yaml' --data '
    -gracePeriodSeconds: 0
    -orphanDependents: false
    -' 'http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/daemonsets/daemonset-example'
    -
    -
    -

    Output

    -
    -
    
    -daemonset "daemonset-example" deleted
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Status",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "status": "Success",
    -  "code": 200
    -}
    -
    -

    delete a DaemonSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of DaemonSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/daemonsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get daemonset daemonset-example -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/daemonsets/daemonset-example
    -
    -
    -

    Output

    -
    -
    
    -
    -
    -

    Response Body

    -
    -
    
    -
    -

    read the specified DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DaemonSetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/daemonsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DaemonSetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/v1beta2/watch/namespaces/{namespace}/daemonsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/daemonsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 DaemonSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    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 DaemonSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    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 DaemonSet

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    201
    DaemonSet
    Created
    -
    -

    DaemonSet v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1DaemonSet
    - - - -

    DEPRECATED - This group version of DaemonSet is deprecated by apps/v1beta2/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    DaemonSetSpec
    The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    DaemonSetStatus
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    DaemonSetSpec v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).
    revisionHistoryLimit
    integer
    The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.
    selector
    LabelSelector
    A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    template
    PodTemplateSpec
    An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
    templateGeneration
    integer
    DEPRECATED. A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation.
    updateStrategy
    DaemonSetUpdateStrategy
    An update strategy to replace existing DaemonSet pods with new pods.
    -

    DaemonSetStatus v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    collisionCount
    integer
    Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
    conditions
    DaemonSetCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a DaemonSet's current state.
    currentNumberScheduled
    integer
    The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    desiredNumberScheduled
    integer
    The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    numberAvailable
    integer
    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)
    numberMisscheduled
    integer
    The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    numberReady
    integer
    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.
    numberUnavailable
    integer
    The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)
    observedGeneration
    integer
    The most recent generation observed by the daemon set controller.
    updatedNumberScheduled
    integer
    The total number of nodes that are running updated daemon pod
    -

    DaemonSetList v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    DaemonSet array
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    RollingUpdateDaemonSet v1beta1 extensions

    - - - - - - - - - - - - - - - -
    FieldDescription
    maxUnavailableThe maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: extensions/v1beta1
    -kind: DaemonSet
    -metadata:
    -  name: daemonset-example
    -spec:
    -  template:
    -    metadata:
    -      labels:
    -        app: daemonset-example
    -    spec:
    -      containers:
    -      - name: daemonset-example
    -        image: ubuntu:trusty
    -        command:
    -        - /bin/sh
    -        args:
    -        - -c
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -' | kubectl create -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X POST -H 'Content-Type: application/yaml' --data '
    -apiVersion: extensions/v1beta1
    -kind: DaemonSet
    -metadata:
    -  name: daemonset-example
    -spec:
    -  template:
    -    metadata:
    -      labels:
    -        app: daemonset-example
    -    spec:
    -      containers:
    -      - name: daemonset-example
    -        image: ubuntu:trusty
    -        command:
    -        - /bin/sh
    -        args:
    -        - -c
    -        - >-
    -          while [ true ]; do
    -          echo "DaemonSet running on $(hostname)" ;
    -          sleep 10 ;
    -          done
    -' http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/daemonsets
    -
    -
    -

    Output

    -
    -
    
    -daemonset "daemonset-example" created
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "DaemonSet",
    -  "apiVersion": "extensions/v1beta1",
    -  "metadata": {
    -    "name": "daemonset-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/extensions/v1beta1/namespaces/default/daemonsets/daemonset-example",
    -    "uid": "65552ced-b0e2-11e6-aef0-42010af00229",
    -    "resourceVersion": "3558",
    -    "generation": 1,
    -    "creationTimestamp": "2016-11-22T18:35:09Z",
    -    "labels": {
    -      "app": "daemonset-example"
    -    }
    -  },
    -  "spec": {
    -    "selector": {
    -      "matchLabels": {
    -        "app": "daemonset-example"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "daemonset-example"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "daemonset-example",
    -            "image": "ubuntu:trusty",
    -            "command": [
    -              "/bin/sh"
    -            ],
    -            "args": [
    -              "-c",
    -              "while [ true ]; do echo \"DaemonSet running on $(hostname)\" ; sleep 10 ; done"
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    }
    -  },
    -  "status": {
    -    "currentNumberScheduled": 0,
    -    "numberMisscheduled": 0,
    -    "desiredNumberScheduled": 0
    -  }
    -}
    -
    -

    create a DaemonSet

    -

    HTTP Request

    -

    POST /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    DaemonSet
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    201
    DaemonSet
    Created
    202
    DaemonSet
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified DaemonSet

    -

    HTTP Request

    -

    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified DaemonSet

    -

    HTTP Request

    -

    PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    201
    DaemonSet
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl delete daemonset daemonset-example
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X DELETE -H 'Content-Type: application/yaml' --data '
    -gracePeriodSeconds: 0
    -orphanDependents: false
    -' 'http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/daemonsets/daemonset-example'
    -
    -
    -

    Output

    -
    -
    
    -daemonset "daemonset-example" deleted
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Status",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "status": "Success",
    -  "code": 200
    -}
    -
    -

    delete a DaemonSet

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of DaemonSet

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get daemonset daemonset-example -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/daemonsets/daemonset-example
    -
    -
    -

    Output

    -
    -
    
    -
    -
    -

    Response Body

    -
    -
    
    -
    -

    read the specified DaemonSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind DaemonSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DaemonSetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind DaemonSet

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/daemonsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DaemonSetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind DaemonSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 DaemonSet

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/watch/daemonsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 DaemonSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    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 DaemonSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    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 DaemonSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the DaemonSet
    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
    DaemonSet
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    DaemonSet
    OK
    201
    DaemonSet
    Created
    -
    -

    DaemonSetCondition v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2DaemonSetCondition
    - - - -

    DaemonSetCondition describes the state of a DaemonSet at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of DaemonSet condition.
    -
    -

    DaemonSetCondition v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1DaemonSetCondition
    - - - -

    DaemonSetCondition describes the state of a DaemonSet at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of DaemonSet condition.
    -
    -

    DaemonSetUpdateStrategy v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2DaemonSetUpdateStrategy
    - - - -

    DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateDaemonSet
    Rolling update config params. Present only if type = "RollingUpdate".
    type
    string
    Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
    -
    -

    DaemonSetUpdateStrategy v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1DaemonSetUpdateStrategy
    - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateDaemonSet
    Rolling update config params. Present only if type = "RollingUpdate".
    type
    string
    Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is OnDelete.
    -
    -

    Deployment v1beta2 apps

    -
    -

    Deployment Config to run 3 nginx instances (max rollback set to 10 revisions).

    -
    -
    
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  # Unique key of the Deployment instance
    -  name: deployment-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        # Apply this label to pods and default
    -        # the Deployment label selector to this value
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        # Run this image
    -        image: nginx:1.10
    -
    -
    -

    Deployment Config to run 3 nginx instances (max rollback set to 10 revisions).

    -
    -
    
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  # Unique key of the Deployment instance
    -  name: deployment-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        # Apply this label to pods and default
    -        # the Deployment label selector to this value
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        # Run this image
    -        image: nginx:1.10
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2Deployment
    - - - -

    Deployment enables declarative updates for Pods and ReplicaSets.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata.
    spec
    DeploymentSpec
    Specification of the desired behavior of the Deployment.
    status
    DeploymentStatus
    Most recently observed status of the Deployment.
    -

    DeploymentSpec v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
    paused
    boolean
    Indicates that the deployment is paused.
    progressDeadlineSeconds
    integer
    The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.
    replicas
    integer
    Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
    revisionHistoryLimit
    integer
    The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.
    selector
    LabelSelector
    Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.
    strategy
    DeploymentStrategy
    The deployment strategy to use to replace existing pods with new ones.
    template
    PodTemplateSpec
    Template describes the pods that will be created.
    -

    DeploymentStatus v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    availableReplicas
    integer
    Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
    collisionCount
    integer
    Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.
    conditions
    DeploymentCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a deployment's current state.
    observedGeneration
    integer
    The generation observed by the deployment controller.
    readyReplicas
    integer
    Total number of ready pods targeted by this deployment.
    replicas
    integer
    Total number of non-terminated pods targeted by this deployment (their labels match the selector).
    unavailableReplicas
    integer
    Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.
    updatedReplicas
    integer
    Total number of non-terminated pods targeted by this deployment that have the desired template spec.
    -

    DeploymentList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata.
    -

    DeploymentStrategy v1beta2 apps

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateDeployment
    Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.
    type
    string
    Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
    -

    RollingUpdateDeployment v1beta2 apps

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    maxSurgeThe maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.
    maxUnavailableThe maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.10
    -        ports:
    -        - containerPort: 80
    -' | kubectl create -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X POST -H 'Content-Type: application/yaml' --data '
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.10
    -        ports:
    -        - containerPort: 80
    -' http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" created
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "4ccca349-9cb1-11e6-9c54-42010a800148",
    -    "resourceVersion": "2118306",
    -    "generation": 1,
    -    "creationTimestamp": "2016-10-28T01:53:19Z",
    -    "labels": {
    -      "app": "nginx"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {}
    -}
    -
    -

    create a Deployment

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/deployments

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    202
    Deployment
    Accepted
    200
    Deployment
    OK
    201
    Deployment
    Created
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl patch deployment deployment-example -p \
    -    '{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}'
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PATCH -H 'Content-Type: application/strategic-merge-patch+json' --data '
    -{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}' \
    -    'http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -"deployment-example" patched
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "5dc3a8e6-b0ee-11e6-aef0-42010af00229",
    -    "resourceVersion": "164489",
    -    "generation": 11,
    -    "creationTimestamp": "2016-11-22T20:00:50Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "5"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.11",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {
    -    "observedGeneration": 10,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    partially update the specified Deployment

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.11
    -        ports:
    -        - containerPort: 80
    -' | kubectl replace -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PUT -H 'Content-Type: application/yaml' --data '
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.11
    -        ports:
    -        - containerPort: 80
    -' http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" replaced
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "4ccca349-9cb1-11e6-9c54-42010a800148",
    -    "resourceVersion": "2119082",
    -    "generation": 5,
    -    "creationTimestamp": "2016-10-28T01:53:19Z",
    -    "labels": {
    -      "app": "nginx"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.11",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    replace the specified Deployment

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}

    -

    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
    201
    Deployment
    Created
    200
    Deployment
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl delete deployment deployment-example
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X DELETE -H 'Content-Type: application/yaml' --data '
    -gracePeriodSeconds: 0
    -orphanDependents: false
    -' 'http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" deleted
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Status",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "status": "Success",
    -  "code": 200
    -}
    -
    -

    delete a Deployment

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Deployment

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/deployments

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment deployment-example -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -    "resourceVersion": "2064726",
    -    "generation": 4,
    -    "creationTimestamp": "2016-10-27T16:33:35Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "1"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    }
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -    "resourceVersion": "2064726",
    -    "generation": 4,
    -    "creationTimestamp": "2016-10-27T16:33:35Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "1"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    }
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    read the specified Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Deployment
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/apps/v1beta2/namespaces/default/deployments'
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "List",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "items": [
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "docs",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/docs",
    -        "uid": "ef49e1d2-915e-11e6-be81-42010a80003f",
    -        "resourceVersion": "1924126",
    -        "generation": 21,
    -        "creationTimestamp": "2016-10-13T16:06:00Z",
    -        "labels": {
    -          "run": "docs"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "10",
    -          "replicatingperfection.net/push-image": "true"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "run": "docs"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "auto-pushed-image-pwittrock/api-docs": "1477496453",
    -              "run": "docs"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "docs",
    -                "image": "pwittrock/api-docs:v9",
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 21,
    -        "replicas": 1,
    -        "updatedReplicas": 1,
    -        "availableReplicas": 1
    -      }
    -    },
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "deployment-example",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/deployment-example",
    -        "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -        "resourceVersion": "2064726",
    -        "generation": 4,
    -        "creationTimestamp": "2016-10-27T16:33:35Z",
    -        "labels": {
    -          "app": "nginx"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "1"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 3,
    -        "selector": {
    -          "matchLabels": {
    -            "app": "nginx"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "app": "nginx"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "nginx",
    -                "image": "nginx:1.10",
    -                "ports": [
    -                  {
    -                    "containerPort": 80,
    -                    "protocol": "TCP"
    -                  }
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "IfNotPresent"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 4,
    -        "replicas": 3,
    -        "updatedReplicas": 3,
    -        "availableReplicas": 3
    -      }
    -    }
    -  ]
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "List",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "items": [
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "docs",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/docs",
    -        "uid": "ef49e1d2-915e-11e6-be81-42010a80003f",
    -        "resourceVersion": "1924126",
    -        "generation": 21,
    -        "creationTimestamp": "2016-10-13T16:06:00Z",
    -        "labels": {
    -          "run": "docs"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "10",
    -          "replicatingperfection.net/push-image": "true"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "run": "docs"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "auto-pushed-image-pwittrock/api-docs": "1477496453",
    -              "run": "docs"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "docs",
    -                "image": "pwittrock/api-docs:v9",
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 21,
    -        "replicas": 1,
    -        "updatedReplicas": 1,
    -        "availableReplicas": 1
    -      }
    -    },
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "deployment-example",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/deployment-example",
    -        "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -        "resourceVersion": "2064726",
    -        "generation": 4,
    -        "creationTimestamp": "2016-10-27T16:33:35Z",
    -        "labels": {
    -          "app": "nginx"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "1"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 3,
    -        "selector": {
    -          "matchLabels": {
    -            "app": "nginx"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "app": "nginx"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "nginx",
    -                "image": "nginx:1.10",
    -                "ports": [
    -                  {
    -                    "containerPort": 80,
    -                    "protocol": "TCP"
    -                  }
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "IfNotPresent"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 4,
    -        "replicas": 3,
    -        "updatedReplicas": 3,
    -        "availableReplicas": 3
    -      }
    -    }
    -  ]
    -}
    -
    -

    list or watch objects of kind Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/deployments

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DeploymentList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/deployments

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DeploymentList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment deployment-example --watch -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/apps/v1beta2/watch/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Deployment",
    -        "apiVersion": "apps/v1beta1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -            "uid": "64c12290-9cbf-11e6-9c54-42010a800148",
    -            "resourceVersion": "2128095",
    -            "generation": 2,
    -            "creationTimestamp": "2016-10-28T03:34:12Z",
    -            "labels": {
    -                "app": "nginx"
    -            },
    -            "annotations": {
    -                "deployment.kubernetes.io/revision": "3"
    -            }
    -        },
    -        "spec": {
    -            "replicas": 3,
    -            "selector": {
    -                "matchLabels": {
    -                    "app": "nginx"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "app": "nginx"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "nginx",
    -                            "image": "nginx:1.10",
    -                            "ports": [
    -                                {
    -                                    "containerPort": 80,
    -                                    "protocol": "TCP"
    -                                }
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "IfNotPresent"
    -                        }
    -                    ],
    -                    "restartPolicy": "Always",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            },
    -            "strategy": {
    -                "type": "RollingUpdate",
    -                "rollingUpdate": {
    -                    "maxUnavailable": 1,
    -                    "maxSurge": 1
    -                }
    -            }
    -        },
    -        "status": {
    -            "observedGeneration": 2,
    -            "replicas": 3,
    -            "updatedReplicas": 3,
    -            "availableReplicas": 3
    -        }
    -    }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Deployment",
    -        "apiVersion": "apps/v1beta1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -            "uid": "64c12290-9cbf-11e6-9c54-42010a800148",
    -            "resourceVersion": "2128095",
    -            "generation": 2,
    -            "creationTimestamp": "2016-10-28T03:34:12Z",
    -            "labels": {
    -                "app": "nginx"
    -            },
    -            "annotations": {
    -                "deployment.kubernetes.io/revision": "3"
    -            }
    -        },
    -        "spec": {
    -            "replicas": 3,
    -            "selector": {
    -                "matchLabels": {
    -                    "app": "nginx"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "app": "nginx"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "nginx",
    -                            "image": "nginx:1.10",
    -                            "ports": [
    -                                {
    -                                    "containerPort": 80,
    -                                    "protocol": "TCP"
    -                                }
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "IfNotPresent"
    -                        }
    -                    ],
    -                    "restartPolicy": "Always",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            },
    -            "strategy": {
    -                "type": "RollingUpdate",
    -                "rollingUpdate": {
    -                    "maxUnavailable": 1,
    -                    "maxSurge": 1
    -                }
    -            }
    -        },
    -        "status": {
    -            "observedGeneration": 2,
    -            "replicas": 3,
    -            "updatedReplicas": 3,
    -            "availableReplicas": 3
    -        }
    -    }
    -}
    -
    -

    watch changes to an object of kind Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/deployments/{name}

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/deployments

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/v1beta2/watch/deployments

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/v1beta2/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/apps/v1beta2/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/apps/v1beta2/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
    201
    Deployment
    Created
    200
    Deployment
    OK
    -
    -

    Deployment v1beta1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta1Deployment
    - - - -

    DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata.
    spec
    DeploymentSpec
    Specification of the desired behavior of the Deployment.
    status
    DeploymentStatus
    Most recently observed status of the Deployment.
    -

    DeploymentSpec v1beta1 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
    paused
    boolean
    Indicates that the deployment is paused.
    progressDeadlineSeconds
    integer
    The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.
    replicas
    integer
    Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
    revisionHistoryLimit
    integer
    The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 2.
    rollbackTo
    RollbackConfig
    DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done.
    selector
    LabelSelector
    Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.
    strategy
    DeploymentStrategy
    The deployment strategy to use to replace existing pods with new ones.
    template
    PodTemplateSpec
    Template describes the pods that will be created.
    -

    DeploymentStatus v1beta1 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    availableReplicas
    integer
    Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
    collisionCount
    integer
    Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.
    conditions
    DeploymentCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a deployment's current state.
    observedGeneration
    integer
    The generation observed by the deployment controller.
    readyReplicas
    integer
    Total number of ready pods targeted by this deployment.
    replicas
    integer
    Total number of non-terminated pods targeted by this deployment (their labels match the selector).
    unavailableReplicas
    integer
    Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.
    updatedReplicas
    integer
    Total number of non-terminated pods targeted by this deployment that have the desired template spec.
    -

    DeploymentList v1beta1 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata.
    -

    DeploymentStrategy v1beta1 apps

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateDeployment
    Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.
    type
    string
    Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
    -

    DeploymentRollback v1beta1 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    name
    string
    Required: This must match the Name of a deployment.
    rollbackTo
    RollbackConfig
    The config of this deployment rollback.
    updatedAnnotations
    object
    The annotations to be updated to a deployment
    -

    RollingUpdateDeployment v1beta1 apps

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    maxSurgeThe maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.
    maxUnavailableThe maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.10
    -        ports:
    -        - containerPort: 80
    -' | kubectl create -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X POST -H 'Content-Type: application/yaml' --data '
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.10
    -        ports:
    -        - containerPort: 80
    -' http://127.0.0.1:8001/apis/apps/v1beta1/namespaces/default/deployments
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" created
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "4ccca349-9cb1-11e6-9c54-42010a800148",
    -    "resourceVersion": "2118306",
    -    "generation": 1,
    -    "creationTimestamp": "2016-10-28T01:53:19Z",
    -    "labels": {
    -      "app": "nginx"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {}
    -}
    -
    -

    create a Deployment

    -

    HTTP Request

    -

    POST /apis/apps/v1beta1/namespaces/{namespace}/deployments

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    Deployment
    Created
    202
    Deployment
    Accepted
    200
    Deployment
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl patch deployment deployment-example -p \
    -    '{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}'
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PATCH -H 'Content-Type: application/strategic-merge-patch+json' --data '
    -{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}' \
    -    'http://127.0.0.1:8001/apis/apps/v1beta1/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -"deployment-example" patched
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "5dc3a8e6-b0ee-11e6-aef0-42010af00229",
    -    "resourceVersion": "164489",
    -    "generation": 11,
    -    "creationTimestamp": "2016-11-22T20:00:50Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "5"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.11",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {
    -    "observedGeneration": 10,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    partially update the specified Deployment

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.11
    -        ports:
    -        - containerPort: 80
    -' | kubectl replace -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PUT -H 'Content-Type: application/yaml' --data '
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.11
    -        ports:
    -        - containerPort: 80
    -' http://127.0.0.1:8001/apis/apps/v1beta1/namespaces/default/deployments/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" replaced
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "4ccca349-9cb1-11e6-9c54-42010a800148",
    -    "resourceVersion": "2119082",
    -    "generation": 5,
    -    "creationTimestamp": "2016-10-28T01:53:19Z",
    -    "labels": {
    -      "app": "nginx"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.11",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    replace the specified Deployment

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}

    -

    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
    201
    Deployment
    Created
    200
    Deployment
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl delete deployment deployment-example
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X DELETE -H 'Content-Type: application/yaml' --data '
    -gracePeriodSeconds: 0
    -orphanDependents: false
    -' 'http://127.0.0.1:8001/apis/apps/v1beta1/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" deleted
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Status",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "status": "Success",
    -  "code": 200
    -}
    -
    -

    delete a Deployment

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Deployment

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta1/namespaces/{namespace}/deployments

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment deployment-example -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET http://127.0.0.1:8001/apis/apps/v1beta1/namespaces/default/deployments/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -    "resourceVersion": "2064726",
    -    "generation": 4,
    -    "creationTimestamp": "2016-10-27T16:33:35Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "1"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    }
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -    "resourceVersion": "2064726",
    -    "generation": 4,
    -    "creationTimestamp": "2016-10-27T16:33:35Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "1"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    }
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    read the specified Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Deployment
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/apps/v1beta1/namespaces/default/deployments'
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "List",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "items": [
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "docs",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/docs",
    -        "uid": "ef49e1d2-915e-11e6-be81-42010a80003f",
    -        "resourceVersion": "1924126",
    -        "generation": 21,
    -        "creationTimestamp": "2016-10-13T16:06:00Z",
    -        "labels": {
    -          "run": "docs"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "10",
    -          "replicatingperfection.net/push-image": "true"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "run": "docs"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "auto-pushed-image-pwittrock/api-docs": "1477496453",
    -              "run": "docs"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "docs",
    -                "image": "pwittrock/api-docs:v9",
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 21,
    -        "replicas": 1,
    -        "updatedReplicas": 1,
    -        "availableReplicas": 1
    -      }
    -    },
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "deployment-example",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/deployment-example",
    -        "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -        "resourceVersion": "2064726",
    -        "generation": 4,
    -        "creationTimestamp": "2016-10-27T16:33:35Z",
    -        "labels": {
    -          "app": "nginx"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "1"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 3,
    -        "selector": {
    -          "matchLabels": {
    -            "app": "nginx"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "app": "nginx"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "nginx",
    -                "image": "nginx:1.10",
    -                "ports": [
    -                  {
    -                    "containerPort": 80,
    -                    "protocol": "TCP"
    -                  }
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "IfNotPresent"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 4,
    -        "replicas": 3,
    -        "updatedReplicas": 3,
    -        "availableReplicas": 3
    -      }
    -    }
    -  ]
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "List",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "items": [
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "docs",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/docs",
    -        "uid": "ef49e1d2-915e-11e6-be81-42010a80003f",
    -        "resourceVersion": "1924126",
    -        "generation": 21,
    -        "creationTimestamp": "2016-10-13T16:06:00Z",
    -        "labels": {
    -          "run": "docs"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "10",
    -          "replicatingperfection.net/push-image": "true"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "run": "docs"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "auto-pushed-image-pwittrock/api-docs": "1477496453",
    -              "run": "docs"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "docs",
    -                "image": "pwittrock/api-docs:v9",
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 21,
    -        "replicas": 1,
    -        "updatedReplicas": 1,
    -        "availableReplicas": 1
    -      }
    -    },
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "deployment-example",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/deployment-example",
    -        "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -        "resourceVersion": "2064726",
    -        "generation": 4,
    -        "creationTimestamp": "2016-10-27T16:33:35Z",
    -        "labels": {
    -          "app": "nginx"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "1"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 3,
    -        "selector": {
    -          "matchLabels": {
    -            "app": "nginx"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "app": "nginx"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "nginx",
    -                "image": "nginx:1.10",
    -                "ports": [
    -                  {
    -                    "containerPort": 80,
    -                    "protocol": "TCP"
    -                  }
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "IfNotPresent"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 4,
    -        "replicas": 3,
    -        "updatedReplicas": 3,
    -        "availableReplicas": 3
    -      }
    -    }
    -  ]
    -}
    -
    -

    list or watch objects of kind Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/namespaces/{namespace}/deployments

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DeploymentList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/deployments

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DeploymentList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment deployment-example --watch -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/apps/v1beta1/watch/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Deployment",
    -        "apiVersion": "apps/v1beta1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -            "uid": "64c12290-9cbf-11e6-9c54-42010a800148",
    -            "resourceVersion": "2128095",
    -            "generation": 2,
    -            "creationTimestamp": "2016-10-28T03:34:12Z",
    -            "labels": {
    -                "app": "nginx"
    -            },
    -            "annotations": {
    -                "deployment.kubernetes.io/revision": "3"
    -            }
    -        },
    -        "spec": {
    -            "replicas": 3,
    -            "selector": {
    -                "matchLabels": {
    -                    "app": "nginx"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "app": "nginx"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "nginx",
    -                            "image": "nginx:1.10",
    -                            "ports": [
    -                                {
    -                                    "containerPort": 80,
    -                                    "protocol": "TCP"
    -                                }
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "IfNotPresent"
    -                        }
    -                    ],
    -                    "restartPolicy": "Always",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            },
    -            "strategy": {
    -                "type": "RollingUpdate",
    -                "rollingUpdate": {
    -                    "maxUnavailable": 1,
    -                    "maxSurge": 1
    -                }
    -            }
    -        },
    -        "status": {
    -            "observedGeneration": 2,
    -            "replicas": 3,
    -            "updatedReplicas": 3,
    -            "availableReplicas": 3
    -        }
    -    }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Deployment",
    -        "apiVersion": "apps/v1beta1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -            "uid": "64c12290-9cbf-11e6-9c54-42010a800148",
    -            "resourceVersion": "2128095",
    -            "generation": 2,
    -            "creationTimestamp": "2016-10-28T03:34:12Z",
    -            "labels": {
    -                "app": "nginx"
    -            },
    -            "annotations": {
    -                "deployment.kubernetes.io/revision": "3"
    -            }
    -        },
    -        "spec": {
    -            "replicas": 3,
    -            "selector": {
    -                "matchLabels": {
    -                    "app": "nginx"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "app": "nginx"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "nginx",
    -                            "image": "nginx:1.10",
    -                            "ports": [
    -                                {
    -                                    "containerPort": 80,
    -                                    "protocol": "TCP"
    -                                }
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "IfNotPresent"
    -                        }
    -                    ],
    -                    "restartPolicy": "Always",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            },
    -            "strategy": {
    -                "type": "RollingUpdate",
    -                "rollingUpdate": {
    -                    "maxUnavailable": 1,
    -                    "maxSurge": 1
    -                }
    -            }
    -        },
    -        "status": {
    -            "observedGeneration": 2,
    -            "replicas": 3,
    -            "updatedReplicas": 3,
    -            "availableReplicas": 3
    -        }
    -    }
    -}
    -
    -

    watch changes to an object of kind Deployment

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/watch/namespaces/{namespace}/deployments/{name}

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Deployment

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/v1beta1/watch/deployments

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/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/apps/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/apps/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
    201
    Deployment
    Created
    -
    -

    Deployment v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1Deployment
    - - - -

    DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata.
    spec
    DeploymentSpec
    Specification of the desired behavior of the Deployment.
    status
    DeploymentStatus
    Most recently observed status of the Deployment.
    -

    DeploymentSpec v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
    paused
    boolean
    Indicates that the deployment is paused and will not be processed by the deployment controller.
    progressDeadlineSeconds
    integer
    The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. This is not set by default.
    replicas
    integer
    Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
    revisionHistoryLimit
    integer
    The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.
    rollbackTo
    RollbackConfig
    DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done.
    selector
    LabelSelector
    Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.
    strategy
    DeploymentStrategy
    patch type: retainKeys
    The deployment strategy to use to replace existing pods with new ones.
    template
    PodTemplateSpec
    Template describes the pods that will be created.
    -

    DeploymentStatus v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    availableReplicas
    integer
    Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
    collisionCount
    integer
    Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.
    conditions
    DeploymentCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a deployment's current state.
    observedGeneration
    integer
    The generation observed by the deployment controller.
    readyReplicas
    integer
    Total number of ready pods targeted by this deployment.
    replicas
    integer
    Total number of non-terminated pods targeted by this deployment (their labels match the selector).
    unavailableReplicas
    integer
    Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.
    updatedReplicas
    integer
    Total number of non-terminated pods targeted by this deployment that have the desired template spec.
    -

    DeploymentList v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata.
    -

    DeploymentStrategy v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateDeployment
    Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.
    type
    string
    Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
    -

    DeploymentRollback v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    name
    string
    Required: This must match the Name of a deployment.
    rollbackTo
    RollbackConfig
    The config of this deployment rollback.
    updatedAnnotations
    object
    The annotations to be updated to a deployment
    -

    RollingUpdateDeployment v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    maxSurgeThe maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.
    maxUnavailableThe maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.10
    -        ports:
    -        - containerPort: 80
    -' | kubectl create -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X POST -H 'Content-Type: application/yaml' --data '
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.10
    -        ports:
    -        - containerPort: 80
    -' http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/deployments
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" created
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "4ccca349-9cb1-11e6-9c54-42010a800148",
    -    "resourceVersion": "2118306",
    -    "generation": 1,
    -    "creationTimestamp": "2016-10-28T01:53:19Z",
    -    "labels": {
    -      "app": "nginx"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {}
    -}
    -
    -

    create a Deployment

    -

    HTTP Request

    -

    POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    Deployment
    Created
    202
    Deployment
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl patch deployment deployment-example -p \
    -    '{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}'
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PATCH -H 'Content-Type: application/strategic-merge-patch+json' --data '
    -{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}' \
    -    'http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -"deployment-example" patched
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "5dc3a8e6-b0ee-11e6-aef0-42010af00229",
    -    "resourceVersion": "164489",
    -    "generation": 11,
    -    "creationTimestamp": "2016-11-22T20:00:50Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "5"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.11",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {
    -    "observedGeneration": 10,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    partially update the specified Deployment

    -

    HTTP Request

    -

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

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -$ echo 'apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.11
    -        ports:
    -        - containerPort: 80
    -' | kubectl replace -f -
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X PUT -H 'Content-Type: application/yaml' --data '
    -apiVersion: apps/v1beta1
    -kind: Deployment
    -metadata:
    -  name: deployment-example
    -spec:
    -  replicas: 3
    -  revisionHistoryLimit: 10
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      - name: nginx
    -        image: nginx:1.11
    -        ports:
    -        - containerPort: 80
    -' http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/deployments/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" replaced
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "4ccca349-9cb1-11e6-9c54-42010a800148",
    -    "resourceVersion": "2119082",
    -    "generation": 5,
    -    "creationTimestamp": "2016-10-28T01:53:19Z",
    -    "labels": {
    -      "app": "nginx"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.11",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    },
    -    "revisionHistoryLimit": 10
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    replace the specified Deployment

    -

    HTTP Request

    -

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

    -

    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
    201
    Deployment
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl delete deployment deployment-example
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X DELETE -H 'Content-Type: application/yaml' --data '
    -gracePeriodSeconds: 0
    -orphanDependents: false
    -' 'http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -deployment "deployment-example" deleted
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Status",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "status": "Success",
    -  "code": 200
    -}
    -
    -

    delete a Deployment

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Deployment

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment deployment-example -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/deployments/deployment-example
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -    "resourceVersion": "2064726",
    -    "generation": 4,
    -    "creationTimestamp": "2016-10-27T16:33:35Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "1"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    }
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "Deployment",
    -  "apiVersion": "apps/v1beta1",
    -  "metadata": {
    -    "name": "deployment-example",
    -    "namespace": "default",
    -    "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -    "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -    "resourceVersion": "2064726",
    -    "generation": 4,
    -    "creationTimestamp": "2016-10-27T16:33:35Z",
    -    "labels": {
    -      "app": "nginx"
    -    },
    -    "annotations": {
    -      "deployment.kubernetes.io/revision": "1"
    -    }
    -  },
    -  "spec": {
    -    "replicas": 3,
    -    "selector": {
    -      "matchLabels": {
    -        "app": "nginx"
    -      }
    -    },
    -    "template": {
    -      "metadata": {
    -        "creationTimestamp": null,
    -        "labels": {
    -          "app": "nginx"
    -        }
    -      },
    -      "spec": {
    -        "containers": [
    -          {
    -            "name": "nginx",
    -            "image": "nginx:1.10",
    -            "ports": [
    -              {
    -                "containerPort": 80,
    -                "protocol": "TCP"
    -              }
    -            ],
    -            "resources": {},
    -            "terminationMessagePath": "/dev/termination-log",
    -            "imagePullPolicy": "IfNotPresent"
    -          }
    -        ],
    -        "restartPolicy": "Always",
    -        "terminationGracePeriodSeconds": 30,
    -        "dnsPolicy": "ClusterFirst",
    -        "securityContext": {}
    -      }
    -    },
    -    "strategy": {
    -      "type": "RollingUpdate",
    -      "rollingUpdate": {
    -        "maxUnavailable": 1,
    -        "maxSurge": 1
    -      }
    -    }
    -  },
    -  "status": {
    -    "observedGeneration": 4,
    -    "replicas": 3,
    -    "updatedReplicas": 3,
    -    "availableReplicas": 3
    -  }
    -}
    -
    -

    read the specified Deployment

    -

    HTTP Request

    -

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

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Deployment
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/deployments'
    -
    -
    -

    Output

    -
    -
    
    -{
    -  "kind": "List",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "items": [
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "docs",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/docs",
    -        "uid": "ef49e1d2-915e-11e6-be81-42010a80003f",
    -        "resourceVersion": "1924126",
    -        "generation": 21,
    -        "creationTimestamp": "2016-10-13T16:06:00Z",
    -        "labels": {
    -          "run": "docs"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "10",
    -          "replicatingperfection.net/push-image": "true"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "run": "docs"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "auto-pushed-image-pwittrock/api-docs": "1477496453",
    -              "run": "docs"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "docs",
    -                "image": "pwittrock/api-docs:v9",
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 21,
    -        "replicas": 1,
    -        "updatedReplicas": 1,
    -        "availableReplicas": 1
    -      }
    -    },
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "deployment-example",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/deployment-example",
    -        "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -        "resourceVersion": "2064726",
    -        "generation": 4,
    -        "creationTimestamp": "2016-10-27T16:33:35Z",
    -        "labels": {
    -          "app": "nginx"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "1"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 3,
    -        "selector": {
    -          "matchLabels": {
    -            "app": "nginx"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "app": "nginx"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "nginx",
    -                "image": "nginx:1.10",
    -                "ports": [
    -                  {
    -                    "containerPort": 80,
    -                    "protocol": "TCP"
    -                  }
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "IfNotPresent"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 4,
    -        "replicas": 3,
    -        "updatedReplicas": 3,
    -        "availableReplicas": 3
    -      }
    -    }
    -  ]
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -  "kind": "List",
    -  "apiVersion": "v1",
    -  "metadata": {},
    -  "items": [
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "docs",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/docs",
    -        "uid": "ef49e1d2-915e-11e6-be81-42010a80003f",
    -        "resourceVersion": "1924126",
    -        "generation": 21,
    -        "creationTimestamp": "2016-10-13T16:06:00Z",
    -        "labels": {
    -          "run": "docs"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "10",
    -          "replicatingperfection.net/push-image": "true"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 1,
    -        "selector": {
    -          "matchLabels": {
    -            "run": "docs"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "auto-pushed-image-pwittrock/api-docs": "1477496453",
    -              "run": "docs"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "docs",
    -                "image": "pwittrock/api-docs:v9",
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "Always"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 21,
    -        "replicas": 1,
    -        "updatedReplicas": 1,
    -        "availableReplicas": 1
    -      }
    -    },
    -    {
    -      "kind": "Deployment",
    -      "apiVersion": "app/v1beta1",
    -      "metadata": {
    -        "name": "deployment-example",
    -        "namespace": "default",
    -        "selfLink": "/apis/app/v1beta1/namespaces/default/deployments/deployment-example",
    -        "uid": "1b33145a-9c63-11e6-9c54-42010a800148",
    -        "resourceVersion": "2064726",
    -        "generation": 4,
    -        "creationTimestamp": "2016-10-27T16:33:35Z",
    -        "labels": {
    -          "app": "nginx"
    -        },
    -        "annotations": {
    -          "deployment.kubernetes.io/revision": "1"
    -        }
    -      },
    -      "spec": {
    -        "replicas": 3,
    -        "selector": {
    -          "matchLabels": {
    -            "app": "nginx"
    -          }
    -        },
    -        "template": {
    -          "metadata": {
    -            "creationTimestamp": null,
    -            "labels": {
    -              "app": "nginx"
    -            }
    -          },
    -          "spec": {
    -            "containers": [
    -              {
    -                "name": "nginx",
    -                "image": "nginx:1.10",
    -                "ports": [
    -                  {
    -                    "containerPort": 80,
    -                    "protocol": "TCP"
    -                  }
    -                ],
    -                "resources": {},
    -                "terminationMessagePath": "/dev/termination-log",
    -                "imagePullPolicy": "IfNotPresent"
    -              }
    -            ],
    -            "restartPolicy": "Always",
    -            "terminationGracePeriodSeconds": 30,
    -            "dnsPolicy": "ClusterFirst",
    -            "securityContext": {}
    -          }
    -        },
    -        "strategy": {
    -          "type": "RollingUpdate",
    -          "rollingUpdate": {
    -            "maxUnavailable": 1,
    -            "maxSurge": 1
    -          }
    -        }
    -      },
    -      "status": {
    -        "observedGeneration": 4,
    -        "replicas": 3,
    -        "updatedReplicas": 3,
    -        "availableReplicas": 3
    -      }
    -    }
    -  ]
    -}
    -
    -

    list or watch objects of kind Deployment

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DeploymentList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Deployment

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/deployments

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    DeploymentList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -$ kubectl get deployment deployment-example --watch -o json
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -$ kubectl proxy
    -$ curl -X GET 'http://127.0.0.1:8001/apis/extensions/v1beta1/watch/namespaces/default/deployments/deployment-example'
    -
    -
    -

    Output

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Deployment",
    -        "apiVersion": "apps/v1beta1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -            "uid": "64c12290-9cbf-11e6-9c54-42010a800148",
    -            "resourceVersion": "2128095",
    -            "generation": 2,
    -            "creationTimestamp": "2016-10-28T03:34:12Z",
    -            "labels": {
    -                "app": "nginx"
    -            },
    -            "annotations": {
    -                "deployment.kubernetes.io/revision": "3"
    -            }
    -        },
    -        "spec": {
    -            "replicas": 3,
    -            "selector": {
    -                "matchLabels": {
    -                    "app": "nginx"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "app": "nginx"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "nginx",
    -                            "image": "nginx:1.10",
    -                            "ports": [
    -                                {
    -                                    "containerPort": 80,
    -                                    "protocol": "TCP"
    -                                }
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "IfNotPresent"
    -                        }
    -                    ],
    -                    "restartPolicy": "Always",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            },
    -            "strategy": {
    -                "type": "RollingUpdate",
    -                "rollingUpdate": {
    -                    "maxUnavailable": 1,
    -                    "maxSurge": 1
    -                }
    -            }
    -        },
    -        "status": {
    -            "observedGeneration": 2,
    -            "replicas": 3,
    -            "updatedReplicas": 3,
    -            "availableReplicas": 3
    -        }
    -    }
    -}
    -
    -
    -

    Response Body

    -
    -
    
    -{
    -    "type": "ADDED",
    -    "object": {
    -        "kind": "Deployment",
    -        "apiVersion": "apps/v1beta1",
    -        "metadata": {
    -            "name": "deployment-example",
    -            "namespace": "default",
    -            "selfLink": "/apis/apps/v1beta1/namespaces/default/deployments/deployment-example",
    -            "uid": "64c12290-9cbf-11e6-9c54-42010a800148",
    -            "resourceVersion": "2128095",
    -            "generation": 2,
    -            "creationTimestamp": "2016-10-28T03:34:12Z",
    -            "labels": {
    -                "app": "nginx"
    -            },
    -            "annotations": {
    -                "deployment.kubernetes.io/revision": "3"
    -            }
    -        },
    -        "spec": {
    -            "replicas": 3,
    -            "selector": {
    -                "matchLabels": {
    -                    "app": "nginx"
    -                }
    -            },
    -            "template": {
    -                "metadata": {
    -                    "creationTimestamp": null,
    -                    "labels": {
    -                        "app": "nginx"
    -                    }
    -                },
    -                "spec": {
    -                    "containers": [
    -                        {
    -                            "name": "nginx",
    -                            "image": "nginx:1.10",
    -                            "ports": [
    -                                {
    -                                    "containerPort": 80,
    -                                    "protocol": "TCP"
    -                                }
    -                            ],
    -                            "resources": {
    -                            },
    -                            "terminationMessagePath": "/dev/termination-log",
    -                            "imagePullPolicy": "IfNotPresent"
    -                        }
    -                    ],
    -                    "restartPolicy": "Always",
    -                    "terminationGracePeriodSeconds": 30,
    -                    "dnsPolicy": "ClusterFirst",
    -                    "securityContext": {
    -                    }
    -                }
    -            },
    -            "strategy": {
    -                "type": "RollingUpdate",
    -                "rollingUpdate": {
    -                    "maxUnavailable": 1,
    -                    "maxSurge": 1
    -                }
    -            }
    -        },
    -        "status": {
    -            "observedGeneration": 2,
    -            "replicas": 3,
    -            "updatedReplicas": 3,
    -            "availableReplicas": 3
    -        }
    -    }
    -}
    -
    -

    watch changes to an object of kind Deployment

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Deployment

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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
    201
    Deployment
    Created
    -
    -

    DeploymentCondition v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2DeploymentCondition
    - - - -

    DeploymentCondition describes the state of a deployment at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    lastUpdateTime
    Time
    The last time this condition was updated.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of deployment condition.
    -
    -

    DeploymentCondition v1beta1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta1DeploymentCondition
    - - - -

    DeploymentCondition describes the state of a deployment at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    lastUpdateTime
    Time
    The last time this condition was updated.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of deployment condition.
    -
    -

    DeploymentCondition v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1DeploymentCondition
    - - - -

    DeploymentCondition describes the state of a deployment at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    lastUpdateTime
    Time
    The last time this condition was updated.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of deployment condition.
    -
    -

    Event v1beta1 events

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    eventsv1beta1Event
    - - - -

    Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    action
    string
    What action was taken/failed regarding to the regarding object.
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    deprecatedCount
    integer
    Deprecated field assuring backward compatibility with core.v1 Event type
    deprecatedFirstTimestamp
    Time
    Deprecated field assuring backward compatibility with core.v1 Event type
    deprecatedLastTimestamp
    Time
    Deprecated field assuring backward compatibility with core.v1 Event type
    deprecatedSource
    EventSource
    Deprecated field assuring backward compatibility with core.v1 Event type
    eventTime
    MicroTime
    Required. Time when this Event was first 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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    note
    string
    Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.
    reason
    string
    Why the action was taken.
    regarding
    ObjectReference
    The object this Event is about. In most cases it's an Object reporting controller implements. E.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.
    related
    ObjectReference
    Optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object.
    reportingController
    string
    Name of the controller that emitted this Event, e.g. kubernetes.io/kubelet.
    reportingInstance
    string
    ID of the controller instance, e.g. kubelet-xyzf.
    series
    EventSeries
    Data about the Event series this event represents or nil if it's a singleton Event.
    type
    string
    Type of this event (Normal, Warning), new types could be added in the future.
    -

    EventList v1beta1 events

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    Event 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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create an Event

    -

    HTTP Request

    -

    POST /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    Event
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    202
    Event
    Accepted
    200
    Event
    OK
    201
    Event
    Created
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Event

    -

    HTTP Request

    -

    PATCH /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    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
    Event
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Event

    -

    HTTP Request

    -

    PUT /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    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
    Event
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    Event
    Created
    200
    Event
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete an Event

    -

    HTTP Request

    -

    DELETE /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Event

    -

    HTTP Request

    -

    DELETE /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Event

    -

    HTTP Request

    -

    GET /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

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

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Event

    -

    HTTP Request

    -

    GET /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    EventList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Event

    -

    HTTP Request

    -

    GET /apis/events.k8s.io/v1beta1/events

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    EventList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Event

    -

    HTTP Request

    -

    GET /apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Event
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Event

    -

    HTTP Request

    -

    GET /apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Event

    -

    HTTP Request

    -

    GET /apis/events.k8s.io/v1beta1/watch/events

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    EventSeries v1beta1 events

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    eventsv1beta1EventSeries
    - - - -

    EventSeries contain information on series of events, i.e. thing that was/is happening continously for some time.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    count
    integer
    Number of occurrences in this series up to the last heartbeat time
    lastObservedTime
    MicroTime
    Time when last Event from the series was seen before last heartbeat.
    state
    string
    Information whether this series is ongoing or finished.
    -
    -

    HorizontalPodAutoscaler v2beta1 autoscaling

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    autoscalingv2beta1HorizontalPodAutoscaler
    - - - -

    HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    HorizontalPodAutoscalerSpec
    spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
    status
    HorizontalPodAutoscalerStatus
    status is the current information about the autoscaler.
    -

    HorizontalPodAutoscalerSpec v2beta1 autoscaling

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    maxReplicas
    integer
    maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.
    metrics
    MetricSpec array
    metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond.
    minReplicas
    integer
    minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod.
    scaleTargetRef
    CrossVersionObjectReference
    scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.
    -

    HorizontalPodAutoscalerStatus v2beta1 autoscaling

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    conditions
    HorizontalPodAutoscalerCondition array
    conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.
    currentMetrics
    MetricStatus array
    currentMetrics is the last read state of the metrics used by this autoscaler.
    currentReplicas
    integer
    currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.
    desiredReplicas
    integer
    desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.
    lastScaleTime
    Time
    lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.
    observedGeneration
    integer
    observedGeneration is the most recent generation observed by this autoscaler.
    -

    HorizontalPodAutoscalerList v2beta1 autoscaling

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    HorizontalPodAutoscaler array
    items is the 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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    metadata is the standard list metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a HorizontalPodAutoscaler

    -

    HTTP Request

    -

    POST /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    HorizontalPodAutoscaler
    Created
    202
    HorizontalPodAutoscaler
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified HorizontalPodAutoscaler

    -

    HTTP Request

    -

    PATCH /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified HorizontalPodAutoscaler

    -

    HTTP Request

    -

    PUT /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    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
    201
    HorizontalPodAutoscaler
    Created
    200
    HorizontalPodAutoscaler
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a HorizontalPodAutoscaler

    -

    HTTP Request

    -

    DELETE /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of HorizontalPodAutoscaler

    -

    HTTP Request

    -

    DELETE /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    HorizontalPodAutoscaler
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    HorizontalPodAutoscalerList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v2beta1/horizontalpodautoscalers

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    HorizontalPodAutoscalerList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the HorizontalPodAutoscaler
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 HorizontalPodAutoscaler

    -

    HTTP Request

    -

    GET /apis/autoscaling/v2beta1/watch/horizontalpodautoscalers

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 HorizontalPodAutoscaler

    -

    HTTP Request

    -

    PATCH /apis/autoscaling/v2beta1/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/v2beta1/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/v2beta1/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
    201
    HorizontalPodAutoscaler
    Created
    -
    -

    IPBlock v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1IPBlock
    - - - -

    DEPRECATED 1.9 - This group version of IPBlock is deprecated by networking/v1/IPBlock. IPBlock describes a particular CIDR (Ex. "192.168.1.1/24") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    cidr
    string
    CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24"
    except
    string array
    Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" Except values will be rejected if they are outside the CIDR range
    -
    -

    Initializer v1alpha1 admissionregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    admissionregistrationv1alpha1Initializer
    - - - -

    Initializer describes the name and the failure policy of an initializer, and what resources it applies to.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    Name is the identifier of the initializer. It will be added to the object that needs to be initialized. Name should be fully qualified, e.g., alwayspullimages.kubernetes.io, where "alwayspullimages" is the name of the webhook, and kubernetes.io is the name of the organization. Required
    rules
    Rule array
    Rules describes what resources/subresources the initializer cares about. The initializer cares about an operation if it matches any Rule. Rule.Resources must not include subresources.
    -
    -

    JobTemplateSpec v2alpha1 batch

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    batchv2alpha1JobTemplateSpec
    - - - -

    JobTemplateSpec describes the data a Job should have when created from a template

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    metadata
    ObjectMeta
    Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    JobSpec
    Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -
    -

    LocalSubjectAccessReview v1beta1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1beta1LocalSubjectAccessReview
    - - - -

    LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    SubjectAccessReviewSpec
    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
    Status is filled in by the server and indicates whether the request is allowed or not
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a LocalSubjectAccessReview

    -

    HTTP Request

    -

    POST /apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    LocalSubjectAccessReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    LocalSubjectAccessReview
    OK
    201
    LocalSubjectAccessReview
    Created
    202
    LocalSubjectAccessReview
    Accepted
    -
    -

    NetworkPolicy v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1NetworkPolicy
    - - - -

    DEPRECATED 1.9 - This group version of NetworkPolicy is deprecated by networking/v1/NetworkPolicy. NetworkPolicy describes what network traffic is allowed for a set of Pods

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    NetworkPolicySpec
    Specification of the desired behavior for this NetworkPolicy.
    -

    NetworkPolicySpec v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    egress
    NetworkPolicyEgressRule array
    List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8
    ingress
    NetworkPolicyIngressRule array
    List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default).
    podSelector
    LabelSelector
    Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.
    policyTypes
    string array
    List of rule types that the NetworkPolicy relates to. Valid options are Ingress, Egress, or Ingress,Egress. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include "Egress" (since such a policy would not include an Egress section and would otherwise default to just [ "Ingress" ]). This field is beta-level in 1.8
    -

    NetworkPolicyList v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a NetworkPolicy

    -

    HTTP Request

    -

    POST /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    NetworkPolicy
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    NetworkPolicy
    Created
    202
    NetworkPolicy
    Accepted
    200
    NetworkPolicy
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified NetworkPolicy

    -

    HTTP Request

    -

    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    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
    NetworkPolicy
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified NetworkPolicy

    -

    HTTP Request

    -

    PUT /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    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
    NetworkPolicy
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    NetworkPolicy
    OK
    201
    NetworkPolicy
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a NetworkPolicy

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of NetworkPolicy

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    NetworkPolicy
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    NetworkPolicyList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/networkpolicies

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    NetworkPolicyList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the NetworkPolicy
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 NetworkPolicy

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/watch/networkpolicies

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    NetworkPolicyEgressRule v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1NetworkPolicyEgressRule
    - - - -

    DEPRECATED 1.9 - This group version of NetworkPolicyEgressRule is deprecated by networking/v1/NetworkPolicyEgressRule. NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    ports
    NetworkPolicyPort array
    List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.
    to
    NetworkPolicyPeer array
    List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.
    -
    -

    NetworkPolicyIngressRule v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1NetworkPolicyIngressRule
    - - - -

    DEPRECATED 1.9 - This group version of NetworkPolicyIngressRule is deprecated by networking/v1/NetworkPolicyIngressRule. This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    from
    NetworkPolicyPeer array
    List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.
    ports
    NetworkPolicyPort array
    List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.
    -
    -

    NetworkPolicyPeer v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1NetworkPolicyPeer
    - - - -

    DEPRECATED 1.9 - This group version of NetworkPolicyPeer is deprecated by networking/v1/NetworkPolicyPeer.

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    ipBlock
    IPBlock
    IPBlock defines policy on a particular IPBlock
    namespaceSelector
    LabelSelector
    Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If present but empty, this selector selects all namespaces.
    podSelector
    LabelSelector
    This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If present but empty, this selector selects all pods in this namespace.
    -
    -

    NetworkPolicyPort v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1NetworkPolicyPort
    - - - -

    DEPRECATED 1.9 - This group version of NetworkPolicyPort is deprecated by networking/v1/NetworkPolicyPort.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    portIf specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.
    protocol
    string
    Optional. The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.
    -
    -

    NonResourceAttributes v1beta1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1beta1NonResourceAttributes
    - - - -

    NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    path
    string
    Path is the URL path of the request
    verb
    string
    Verb is the standard HTTP verb
    -
    -

    NonResourceRule v1beta1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1beta1NonResourceRule
    - - - -

    NonResourceRule holds information that describes a rule for the non-resource

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    nonResourceURLs
    string array
    NonResourceURLs is a set of partial urls that a user should have access to. s are allowed, but only as the full, final step in the path. "" means all.
    verbs
    string array
    Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. "*" means all.
    -
    -

    PolicyRule v1beta1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1beta1PolicyRule
    - - - -

    PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroups
    string array
    APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.
    nonResourceURLs
    string array
    NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both.
    resourceNames
    string array
    ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.
    resources
    string array
    Resources is a list of resources this rule applies to. '' represents all resources in the specified apiGroups. '/foo' represents the subresource 'foo' for all resources in the specified apiGroups.
    verbs
    string array
    Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.
    -
    -

    PolicyRule v1alpha1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1alpha1PolicyRule
    - - - -

    PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroups
    string array
    APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.
    nonResourceURLs
    string array
    NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path This name is intentionally different than the internal type so that the DefaultConvert works nicely and because the ordering may be different. Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both.
    resourceNames
    string array
    ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.
    resources
    string array
    Resources is a list of resources this rule applies to. ResourceAll represents all resources.
    verbs
    string array
    Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.
    -
    -

    ReplicaSet v1beta2 apps

    -
    -

    ReplicaSet Config to run 3 nginx instances.

    -
    -
    
    -apiVersion: extensions/v1beta1
    -kind: ReplicaSet
    -metadata:
    -  # Unique key of the ReplicaSet instance
    -  name: replicaset-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      # Run the nginx image
    -      - name: nginx
    -        image: nginx:1.10
    -
    -
    -

    ReplicaSet Config to run 3 nginx instances.

    -
    -
    
    -apiVersion: extensions/v1beta1
    -kind: ReplicaSet
    -metadata:
    -  # Unique key of the ReplicaSet instance
    -  name: replicaset-example
    -spec:
    -  # 3 Pods should exist at all times.
    -  replicas: 3
    -  template:
    -    metadata:
    -      labels:
    -        app: nginx
    -    spec:
    -      containers:
    -      # Run the nginx image
    -      - name: nginx
    -        image: nginx:1.10
    -
    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2ReplicaSet
    - - - - - - -

    ReplicaSet ensures that a specified number of pod replicas are running at any given time.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    ReplicaSetSpec
    Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    ReplicaSetStatus
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    ReplicaSetSpec v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
    replicas
    integer
    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
    selector
    LabelSelector
    Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    template
    PodTemplateSpec
    Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
    -

    ReplicaSetStatus v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    availableReplicas
    integer
    The number of available replicas (ready for at least minReadySeconds) for this replica set.
    conditions
    ReplicaSetCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a replica set's current state.
    fullyLabeledReplicas
    integer
    The number of pods that have labels matching the labels of the pod template of the replicaset.
    observedGeneration
    integer
    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.
    readyReplicas
    integer
    The number of ready replicas for this replica set.
    replicas
    integer
    Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
    -

    ReplicaSetList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    ReplicaSet array
    List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ReplicaSet

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/replicasets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    ReplicaSet
    Created
    202
    ReplicaSet
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ReplicaSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ReplicaSet

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}

    -

    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
    201
    ReplicaSet
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ReplicaSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ReplicaSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/replicasets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ReplicaSet
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ReplicaSetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/replicasets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ReplicaSetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ReplicaSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ReplicaSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/apps/v1beta2/watch/replicasets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ReplicaSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/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/apps/v1beta2/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/apps/v1beta2/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
    201
    ReplicaSet
    Created
    200
    ReplicaSet
    OK
    -
    -

    ReplicaSet v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1ReplicaSet
    - - - -

    DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1beta2/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    spec
    ReplicaSetSpec
    Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    status
    ReplicaSetStatus
    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: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
    -

    ReplicaSetSpec v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    minReadySeconds
    integer
    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
    replicas
    integer
    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
    selector
    LabelSelector
    Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    template
    PodTemplateSpec
    Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
    -

    ReplicaSetStatus v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    availableReplicas
    integer
    The number of available replicas (ready for at least minReadySeconds) for this replica set.
    conditions
    ReplicaSetCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a replica set's current state.
    fullyLabeledReplicas
    integer
    The number of pods that have labels matching the labels of the pod template of the replicaset.
    observedGeneration
    integer
    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.
    readyReplicas
    integer
    The number of ready replicas for this replica set.
    replicas
    integer
    Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
    -

    ReplicaSetList v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
    items
    ReplicaSet array
    List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller
    kind
    string
    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a ReplicaSet

    -

    HTTP Request

    -

    POST /apis/extensions/v1beta1/namespaces/{namespace}/replicasets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    ReplicaSet
    Created
    202
    ReplicaSet
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified ReplicaSet

    -

    HTTP Request

    -

    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified ReplicaSet

    -

    HTTP Request

    -

    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}

    -

    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
    201
    ReplicaSet
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a ReplicaSet

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of ReplicaSet

    -

    HTTP Request

    -

    DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified ReplicaSet

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    ReplicaSet
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ReplicaSet

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ReplicaSetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind ReplicaSet

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/replicasets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    ReplicaSetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind ReplicaSet

    -

    HTTP Request

    -

    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the ReplicaSet
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 ReplicaSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    201
    ReplicaSet
    Created
    -
    -

    ReplicaSetCondition v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2ReplicaSetCondition
    - - - -

    ReplicaSetCondition describes the state of a replica set at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    The last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of replica set condition.
    -
    -

    ReplicaSetCondition v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1ReplicaSetCondition
    - - - -

    ReplicaSetCondition describes the state of a replica set at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    The last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of replica set condition.
    -
    -

    ResourceAttributes v1beta1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1beta1ResourceAttributes
    - - - -

    ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    group
    string
    Group is the API Group of the Resource. "*" means all.
    name
    string
    Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all.
    namespace
    string
    Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
    resource
    string
    Resource is one of the existing resource types. "*" means all.
    subresource
    string
    Subresource is one of the existing resource types. "" means none.
    verb
    string
    Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all.
    version
    string
    Version is the API Version of the Resource. "*" means all.
    -
    -

    ResourceRule v1beta1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1beta1ResourceRule
    - - - -

    ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroups
    string array
    APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "*" means all.
    resourceNames
    string array
    ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. "*" means all.
    resources
    string array
    Resources is a list of resources this rule applies to. "" means all in the specified apiGroups. "/foo" represents the subresource 'foo' for all resources in the specified apiGroups.
    verbs
    string array
    Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all.
    -
    -

    Role v1beta1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1beta1Role
    - - - -

    Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    rules
    PolicyRule array
    Rules holds all the PolicyRules for this Role
    -

    RoleList v1beta1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a Role

    -

    HTTP Request

    -

    POST /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    Role
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Role
    OK
    201
    Role
    Created
    202
    Role
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Role

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    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
    Role
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Role

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    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
    Role
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Role
    OK
    201
    Role
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a Role

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Role

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    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
    Role
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/roles

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/watch/roles

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    Role v1alpha1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1alpha1Role
    - - - -

    Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    rules
    PolicyRule array
    Rules holds all the PolicyRules for this Role
    -

    RoleList v1alpha1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a Role

    -

    HTTP Request

    -

    POST /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    Role
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Role
    OK
    201
    Role
    Created
    202
    Role
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified Role

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    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
    Role
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified Role

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    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
    Role
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    Role
    OK
    201
    Role
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a Role

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of Role

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    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
    Role
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind Role

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind Role

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the Role
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 Role

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    RoleBinding v1beta1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1beta1RoleBinding
    - - - -

    RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    roleRef
    RoleRef
    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 array
    Subjects holds references to the objects the role applies to.
    -

    RoleBindingList v1beta1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a RoleBinding

    -

    HTTP Request

    -

    POST /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    RoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    RoleBinding
    OK
    201
    RoleBinding
    Created
    202
    RoleBinding
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified RoleBinding

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    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
    RoleBinding
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified RoleBinding

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    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
    RoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    RoleBinding
    OK
    201
    RoleBinding
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a RoleBinding

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of RoleBinding

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    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
    RoleBinding
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleBindingList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/rolebindings

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleBindingList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    RoleBinding v1alpha1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1alpha1RoleBinding
    - - - -

    RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata.
    roleRef
    RoleRef
    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 array
    Subjects holds references to the objects the role applies to.
    -

    RoleBindingList v1alpha1 rbac

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard object's metadata.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a RoleBinding

    -

    HTTP Request

    -

    POST /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    RoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    RoleBinding
    Created
    202
    RoleBinding
    Accepted
    200
    RoleBinding
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified RoleBinding

    -

    HTTP Request

    -

    PATCH /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    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
    RoleBinding
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified RoleBinding

    -

    HTTP Request

    -

    PUT /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    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
    RoleBinding
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    RoleBinding
    OK
    201
    RoleBinding
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a RoleBinding

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of RoleBinding

    -

    HTTP Request

    -

    DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    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
    RoleBinding
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleBindingList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind RoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    RoleBindingList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - - - - - -
    ParameterDescription
    namename of the RoleBinding
    namespaceobject name and auth scope, such as for teams and projects
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 RoleBinding

    -

    HTTP Request

    -

    GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 RoleBinding

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    RoleRef v1beta1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1beta1RoleRef
    - - - -

    RoleRef contains information that points to the role being used

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroup
    string
    APIGroup is the group for the resource being referenced
    kind
    string
    Kind is the type of resource being referenced
    name
    string
    Name is the name of resource being referenced
    -
    -

    RoleRef v1alpha1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1alpha1RoleRef
    - - - -

    RoleRef contains information that points to the role being used

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroup
    string
    APIGroup is the group for the resource being referenced
    kind
    string
    Kind is the type of resource being referenced
    name
    string
    Name is the name of resource being referenced
    -
    -

    RollbackConfig v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1RollbackConfig
    -

    DEPRECATED.

    - - - - - - - - - - - - - - - -
    FieldDescription
    revision
    integer
    The revision to rollback to. If set to 0, rollback to the last revision.
    -
    -

    RollingUpdateStatefulSetStrategy v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2RollingUpdateStatefulSetStrategy
    - - - -

    RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.

    - - - - - - - - - - - - - - - -
    FieldDescription
    partition
    integer
    Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.
    -
    -

    RollingUpdateStatefulSetStrategy v1beta1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta1RollingUpdateStatefulSetStrategy
    - - - -

    RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.

    - - - - - - - - - - - - - - - -
    FieldDescription
    partition
    integer
    Partition indicates the ordinal at which the StatefulSet should be partitioned.
    -
    -

    Scale v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2Scale
    - - - -

    Scale represents a scaling request for a resource.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
    spec
    ScaleSpec
    defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
    status
    ScaleStatus
    current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
    -

    ScaleSpec v1beta2 apps

    - - - - - - - - - - - - - - - -
    FieldDescription
    replicas
    integer
    desired number of instances for the scaled object.
    -

    ScaleStatus v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    replicas
    integer
    actual number of observed instances of the scaled object.
    selector
    object
    label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
    targetSelector
    string
    label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    -
    -

    Scale v1beta1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta1Scale
    - - - -

    Scale represents a scaling request for a resource.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
    spec
    ScaleSpec
    defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
    status
    ScaleStatus
    current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
    -

    ScaleSpec v1beta1 apps

    - - - - - - - - - - - - - - - -
    FieldDescription
    replicas
    integer
    desired number of instances for the scaled object.
    -

    ScaleStatus v1beta1 apps

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    replicas
    integer
    actual number of observed instances of the scaled object.
    selector
    object
    label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
    targetSelector
    string
    label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    -
    -

    Scale v1beta1 extensions

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    extensionsv1beta1Scale
    - - - -

    represents a scaling request for a resource.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
    spec
    ScaleSpec
    defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
    status
    ScaleStatus
    current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
    -

    ScaleSpec v1beta1 extensions

    - - - - - - - - - - - - - - - -
    FieldDescription
    replicas
    integer
    desired number of instances for the scaled object.
    -

    ScaleStatus v1beta1 extensions

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    replicas
    integer
    actual number of observed instances of the scaled object.
    selector
    object
    label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
    targetSelector
    string
    label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    -
    -

    SelfSubjectAccessReview v1beta1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1beta1SelfSubjectAccessReview
    - - - -

    SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    SelfSubjectAccessReviewSpec
    Spec holds information about the request being evaluated. user and groups must be empty
    status
    SubjectAccessReviewStatus
    Status is filled in by the server and indicates whether the request is allowed or not
    -

    SelfSubjectAccessReviewSpec v1beta1 authorization

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    nonResourceAttributes
    NonResourceAttributes
    NonResourceAttributes describes information for a non-resource access request
    resourceAttributes
    ResourceAttributes
    ResourceAuthorizationAttributes describes information for a resource access request
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a SelfSubjectAccessReview

    -

    HTTP Request

    -

    POST /apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    SelfSubjectAccessReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    SelfSubjectAccessReview
    Created
    202
    SelfSubjectAccessReview
    Accepted
    200
    SelfSubjectAccessReview
    OK
    -
    -

    SelfSubjectRulesReview v1beta1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1beta1SelfSubjectRulesReview
    - - - -

    SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    SelfSubjectRulesReviewSpec
    Spec holds information about the request being evaluated.
    status
    SubjectRulesReviewStatus
    Status is filled in by the server and indicates the set of actions a user can perform.
    -

    SelfSubjectRulesReviewSpec v1beta1 authorization

    - - - - - - - - - - - - - - - -
    FieldDescription
    namespace
    string
    Namespace to evaluate rules for. Required.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a SelfSubjectRulesReview

    -

    HTTP Request

    -

    POST /apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    SelfSubjectRulesReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    202
    SelfSubjectRulesReview
    Accepted
    200
    SelfSubjectRulesReview
    OK
    201
    SelfSubjectRulesReview
    Created
    -
    -

    ServiceReference v1beta1 apiregistration

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    apiregistrationv1beta1ServiceReference
    -

    ServiceReference holds a reference to Service.legacy.k8s.io

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    name
    string
    Name is the name of the service
    namespace
    string
    Namespace is the namespace of the service
    -
    -

    StatefulSet v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2StatefulSet
    - - - -

    StatefulSet represents a set of pods with consistent identities. Identities are defined as:

    -
      -
    • Network: A single stable DNS and hostname.
    • -
    • Storage: As many VolumeClaims as requested. -The StatefulSet guarantees that a given network identity will always map to the same storage identity.
    • -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    StatefulSetSpec
    Spec defines the desired identities of pods in this set.
    status
    StatefulSetStatus
    Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.
    -

    StatefulSetSpec v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    podManagementPolicy
    string
    podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is OrderedReady, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is Parallel which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.
    replicas
    integer
    replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.
    revisionHistoryLimit
    integer
    revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.
    selector
    LabelSelector
    selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    serviceName
    string
    serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.
    template
    PodTemplateSpec
    template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.
    updateStrategy
    StatefulSetUpdateStrategy
    updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.
    volumeClaimTemplates
    PersistentVolumeClaim array
    volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.
    -

    StatefulSetStatus v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    collisionCount
    integer
    collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
    conditions
    StatefulSetCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a statefulset's current state.
    currentReplicas
    integer
    currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.
    currentRevision
    string
    currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).
    observedGeneration
    integer
    observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.
    readyReplicas
    integer
    readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
    replicas
    integer
    replicas is the number of Pods created by the StatefulSet controller.
    updateRevision
    string
    updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)
    updatedReplicas
    integer
    updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
    -

    StatefulSetList v1beta2 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a StatefulSet

    -

    HTTP Request

    -

    POST /apis/apps/v1beta2/namespaces/{namespace}/statefulsets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    StatefulSet
    Created
    202
    StatefulSet
    Accepted
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified StatefulSet

    -

    HTTP Request

    -

    PATCH /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified StatefulSet

    -

    HTTP Request

    -

    PUT /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}

    -

    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
    201
    StatefulSet
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a StatefulSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of StatefulSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta2/namespaces/{namespace}/statefulsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified StatefulSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    StatefulSet
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind StatefulSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    StatefulSetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind StatefulSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/statefulsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    StatefulSetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind StatefulSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta2/watch/namespaces/{namespace}/statefulsets/{name}

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 StatefulSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1beta2/watch/statefulsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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/v1beta2/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/v1beta2/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/v1beta2/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
    201
    StatefulSet
    Created
    200
    StatefulSet
    OK
    -
    -

    StatefulSet v1beta1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta1StatefulSet
    - - - -

    DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as:

    -
      -
    • Network: A single stable DNS and hostname.
    • -
    • Storage: As many VolumeClaims as requested. -The StatefulSet guarantees that a given network identity will always map to the same storage identity.
    • -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    StatefulSetSpec
    Spec defines the desired identities of pods in this set.
    status
    StatefulSetStatus
    Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.
    -

    StatefulSetSpec v1beta1 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    podManagementPolicy
    string
    podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is OrderedReady, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is Parallel which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.
    replicas
    integer
    replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.
    revisionHistoryLimit
    integer
    revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.
    selector
    LabelSelector
    selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    serviceName
    string
    serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.
    template
    PodTemplateSpec
    template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.
    updateStrategy
    StatefulSetUpdateStrategy
    updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.
    volumeClaimTemplates
    PersistentVolumeClaim array
    volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.
    -

    StatefulSetStatus v1beta1 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    collisionCount
    integer
    collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
    conditions
    StatefulSetCondition array
    patch type: merge
    patch merge key: type
    Represents the latest available observations of a statefulset's current state.
    currentReplicas
    integer
    currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.
    currentRevision
    string
    currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).
    observedGeneration
    integer
    observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.
    readyReplicas
    integer
    readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
    replicas
    integer
    replicas is the number of Pods created by the StatefulSet controller.
    updateRevision
    string
    updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)
    updatedReplicas
    integer
    updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
    -

    StatefulSetList v1beta1 apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a StatefulSet

    -

    HTTP Request

    -

    POST /apis/apps/v1beta1/namespaces/{namespace}/statefulsets

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    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
    201
    StatefulSet
    Created
    202
    StatefulSet
    Accepted
    200
    StatefulSet
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified StatefulSet

    -

    HTTP Request

    -

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

    -

    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
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified StatefulSet

    -

    HTTP Request

    -

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

    -

    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
    201
    StatefulSet
    Created
    200
    StatefulSet
    OK
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a StatefulSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}

    -

    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.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of StatefulSet

    -

    HTTP Request

    -

    DELETE /apis/apps/v1beta1/namespaces/{namespace}/statefulsets

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified StatefulSet

    -

    HTTP Request

    -

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

    -

    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.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    StatefulSet
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind StatefulSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    StatefulSetList
    OK
    -

    List All Namespaces

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind StatefulSet

    -

    HTTP Request

    -

    GET /apis/apps/v1beta1/statefulsets

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    StatefulSetList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind StatefulSet

    -

    HTTP Request

    -

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

    -

    Path Parameters

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

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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 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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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
    201
    StatefulSet
    Created
    -
    -

    StatefulSetCondition v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2StatefulSetCondition
    - - - -

    StatefulSetCondition describes the state of a statefulset at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of statefulset condition.
    -
    -

    StatefulSetCondition v1beta1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta1StatefulSetCondition
    - - - -

    StatefulSetCondition describes the state of a statefulset at a certain point.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    lastTransitionTime
    Time
    Last time the condition transitioned from one status to another.
    message
    string
    A human readable message indicating details about the transition.
    reason
    string
    The reason for the condition's last transition.
    status
    string
    Status of the condition, one of True, False, Unknown.
    type
    string
    Type of statefulset condition.
    -
    -

    StatefulSetUpdateStrategy v1beta2 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta2StatefulSetUpdateStrategy
    - - - -

    StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateStatefulSetStrategy
    RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
    type
    string
    Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.
    -
    -

    StatefulSetUpdateStrategy v1beta1 apps

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    appsv1beta1StatefulSetUpdateStrategy
    - - - -

    StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.

    - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    rollingUpdate
    RollingUpdateStatefulSetStrategy
    RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
    type
    string
    Type indicates the type of the StatefulSetUpdateStrategy.
    -
    -

    StorageClass v1beta1 storage

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    storagev1beta1StorageClass
    - - - -

    StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.

    -

    StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    allowVolumeExpansion
    boolean
    AllowVolumeExpansion shows whether the storage class allow volume expand
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    mountOptions
    string array
    Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid.
    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.
    reclaimPolicy
    string
    Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.
    volumeBindingMode
    string
    VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is alpha-level and is only honored by servers that enable the VolumeScheduling feature.
    -

    StorageClassList v1beta1 storage

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ListMeta
    Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a StorageClass

    -

    HTTP Request

    -

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

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    StorageClass
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    201
    StorageClass
    Created
    202
    StorageClass
    Accepted
    200
    StorageClass
    OK
    -

    Patch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    partially update the specified StorageClass

    -

    HTTP Request

    -

    PATCH /apis/storage.k8s.io/v1beta1/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

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

    Body Parameters

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

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    StorageClass
    OK
    -

    Replace

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    replace the specified StorageClass

    -

    HTTP Request

    -

    PUT /apis/storage.k8s.io/v1beta1/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    StorageClass
    -

    Response

    - - - - - - - - - - - - - - - - - -
    CodeDescription
    200
    StorageClass
    OK
    201
    StorageClass
    Created
    -

    Delete

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete a StorageClass

    -

    HTTP Request

    -

    DELETE /apis/storage.k8s.io/v1beta1/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    gracePeriodSecondsThe 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.
    orphanDependentsDeprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
    propagationPolicyWhether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
    -

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    DeleteOptions
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    Status
    OK
    -

    Delete Collection

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    delete collection of StorageClass

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    Status
    OK
    -

    Read Operations

    -

    See supported operations below...

    -

    Read

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    read the specified StorageClass

    -

    HTTP Request

    -

    GET /apis/storage.k8s.io/v1beta1/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    exactShould the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
    exportShould this value be exported. Export strips fields that a user can not specify.
    -

    Response

    - - - - - - - - - - - - - -
    CodeDescription
    200
    StorageClass
    OK
    -

    List

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    list or watch objects of kind StorageClass

    -

    HTTP Request

    -

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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    StorageClassList
    OK
    -

    Watch

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    watch changes to an object of kind StorageClass

    -

    HTTP Request

    -

    GET /apis/storage.k8s.io/v1beta1/watch/storageclasses/{name}

    -

    Path Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    namename of the StorageClass
    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    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

    -

    Query Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ParameterDescription
    continueThe continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    includeUninitializedIf true, partially initialized resources are included in the response.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    limitlimit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
    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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
    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
    WatchEvent
    OK
    -
    -

    Subject v1beta1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1beta1Subject
    - - - -

    Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiGroup
    string
    APIGroup holds the API group of the referenced subject. Defaults to "" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
    kind
    string
    Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error.
    name
    string
    Name of the object being referenced.
    namespace
    string
    Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error.
    -
    -

    Subject v1alpha1 rbac

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    rbacv1alpha1Subject
    - - - -

    Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion holds the API group and version of the referenced subject. Defaults to "v1" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io/v1alpha1" for User and Group subjects.
    kind
    string
    Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error.
    name
    string
    Name of the object being referenced.
    namespace
    string
    Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error.
    -
    -

    SubjectAccessReview v1beta1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1beta1SubjectAccessReview
    - - - -

    SubjectAccessReview checks whether or not a user or group can perform an action.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    SubjectAccessReviewSpec
    Spec holds information about the request being evaluated
    status
    SubjectAccessReviewStatus
    Status is filled in by the server and indicates whether the request is allowed or not
    -

    SubjectAccessReviewSpec v1beta1 authorization

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    extra
    object
    Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.
    group
    string array
    Groups is the groups you're testing for.
    nonResourceAttributes
    NonResourceAttributes
    NonResourceAttributes describes information for a non-resource access request
    resourceAttributes
    ResourceAttributes
    ResourceAuthorizationAttributes describes information for a resource access request
    uid
    string
    UID information about the requesting user.
    user
    string
    User is the user you're testing for. If you specify "User" but not "Group", then is it interpreted as "What if User were not a member of any groups
    -

    SubjectAccessReviewStatus v1beta1 authorization

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    allowed
    boolean
    Allowed is required. True if the action would be allowed, false otherwise.
    denied
    boolean
    Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.
    evaluationError
    string
    EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.
    reason
    string
    Reason is optional. It indicates why a request was allowed or denied.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a SubjectAccessReview

    -

    HTTP Request

    -

    POST /apis/authorization.k8s.io/v1beta1/subjectaccessreviews

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    SubjectAccessReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    202
    SubjectAccessReview
    Accepted
    200
    SubjectAccessReview
    OK
    201
    SubjectAccessReview
    Created
    -
    -

    SubjectRulesReviewStatus v1beta1 authorization

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authorizationv1beta1SubjectRulesReviewStatus
    - - - -

    SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    evaluationError
    string
    EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.
    incomplete
    boolean
    Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.
    nonResourceRules
    NonResourceRule array
    NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.
    resourceRules
    ResourceRule array
    ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.
    -
    -

    TokenReview v1beta1 authentication

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authenticationv1beta1TokenReview
    - - - -

    TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    apiVersion
    string
    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
    metadata
    ObjectMeta
    spec
    TokenReviewSpec
    Spec holds information about the request being evaluated
    status
    TokenReviewStatus
    Status is filled in by the server and indicates whether the request can be authenticated.
    -

    TokenReviewSpec v1beta1 authentication

    - - - - - - - - - - - - - - - -
    FieldDescription
    token
    string
    Token is the opaque bearer token.
    -

    TokenReviewStatus v1beta1 authentication

    - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    authenticated
    boolean
    Authenticated indicates that the token was associated with a known user.
    error
    string
    Error indicates that the token couldn't be checked
    user
    UserInfo
    User is the UserInfo associated with the provided token.
    -

    Write Operations

    -

    See supported operations below...

    -

    Create

    -
    -

    kubectl Command

    -
    -
    
    -Coming Soon
    -
    -
    -

    curl Command (requires kubectl proxy to be running)

    -
    -
    
    -Coming Soon
    -
    -
    -

    Output

    -
    -
    
    -Coming Soon
    -
    -
    -

    Response Body

    -
    -
    
    -Coming Soon
    -
    -

    create a TokenReview

    -

    HTTP Request

    -

    POST /apis/authentication.k8s.io/v1beta1/tokenreviews

    -

    Query Parameters

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

    Body Parameters

    - - - - - - - - - - - - - -
    ParameterDescription
    body
    TokenReview
    -

    Response

    - - - - - - - - - - - - - - - - - - - - - -
    CodeDescription
    202
    TokenReview
    Accepted
    200
    TokenReview
    OK
    201
    TokenReview
    Created
    -
    -

    UserInfo v1beta1 authentication

    - - - - - - - - - - - - - - - -
    GroupVersionKind
    authenticationv1beta1UserInfo
    - - - -

    UserInfo holds the information about the user needed to implement the user.Info interface.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    extra
    object
    Any additional information provided by the authenticator.
    groups
    string array
    The names of groups this user is a part of.
    uid
    string
    A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.
    username
    string
    The name that uniquely identifies this user among all active users.
    -
    -
    - - - - - - - - \ No newline at end of file diff --git a/docs/api-reference/v1.9/navData.js b/docs/api-reference/v1.9/navData.js deleted file mode 100644 index 7ab0b42c56..0000000000 --- a/docs/api-reference/v1.9/navData.js +++ /dev/null @@ -1 +0,0 @@ -(function(){navData = {"toc":[{"section":"userinfo-v1beta1-authentication","subsections":[]},{"section":"tokenreview-v1beta1-authentication","subsections":[{"section":"-strong-write-operations-strong--935","subsections":[{"section":"create-936"}]}]},{"section":"subjectrulesreviewstatus-v1beta1-authorization","subsections":[]},{"section":"subjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--933","subsections":[{"section":"create-934"}]}]},{"section":"subject-v1alpha1-rbac","subsections":[]},{"section":"subject-v1beta1-rbac","subsections":[]},{"section":"storageclass-v1beta1-storage","subsections":[{"section":"-strong-read-operations-strong--928","subsections":[{"section":"watch-list-932"},{"section":"watch-931"},{"section":"list-930"},{"section":"read-929"}]},{"section":"-strong-write-operations-strong--922","subsections":[{"section":"delete-collection-927"},{"section":"delete-926"},{"section":"replace-925"},{"section":"patch-924"},{"section":"create-923"}]}]},{"section":"statefulsetupdatestrategy-v1beta1-apps","subsections":[]},{"section":"statefulsetupdatestrategy-v1beta2-apps","subsections":[]},{"section":"statefulsetcondition-v1beta1-apps","subsections":[]},{"section":"statefulsetcondition-v1beta2-apps","subsections":[]},{"section":"statefulset-v1beta1-apps","subsections":[{"section":"-strong-status-operations-strong--918","subsections":[{"section":"replace-status-921"},{"section":"read-status-920"},{"section":"patch-status-919"}]},{"section":"-strong-read-operations-strong--911","subsections":[{"section":"watch-list-all-namespaces-917"},{"section":"watch-list-916"},{"section":"watch-915"},{"section":"list-all-namespaces-914"},{"section":"list-913"},{"section":"read-912"}]},{"section":"-strong-write-operations-strong--905","subsections":[{"section":"delete-collection-910"},{"section":"delete-909"},{"section":"replace-908"},{"section":"patch-907"},{"section":"create-906"}]}]},{"section":"statefulset-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--901","subsections":[{"section":"replace-status-904"},{"section":"read-status-903"},{"section":"patch-status-902"}]},{"section":"-strong-read-operations-strong--894","subsections":[{"section":"watch-list-all-namespaces-900"},{"section":"watch-list-899"},{"section":"watch-898"},{"section":"list-all-namespaces-897"},{"section":"list-896"},{"section":"read-895"}]},{"section":"-strong-write-operations-strong--888","subsections":[{"section":"delete-collection-893"},{"section":"delete-892"},{"section":"replace-891"},{"section":"patch-890"},{"section":"create-889"}]}]},{"section":"servicereference-v1beta1-apiregistration","subsections":[]},{"section":"selfsubjectrulesreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--886","subsections":[{"section":"create-887"}]}]},{"section":"selfsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--884","subsections":[{"section":"create-885"}]}]},{"section":"scale-v1beta1-extensions","subsections":[]},{"section":"scale-v1beta1-apps","subsections":[]},{"section":"scale-v1beta2-apps","subsections":[]},{"section":"rollingupdatestatefulsetstrategy-v1beta1-apps","subsections":[]},{"section":"rollingupdatestatefulsetstrategy-v1beta2-apps","subsections":[]},{"section":"rollbackconfig-v1beta1-extensions","subsections":[]},{"section":"roleref-v1alpha1-rbac","subsections":[]},{"section":"roleref-v1beta1-rbac","subsections":[]},{"section":"rolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--877","subsections":[{"section":"watch-list-all-namespaces-883"},{"section":"watch-list-882"},{"section":"watch-881"},{"section":"list-all-namespaces-880"},{"section":"list-879"},{"section":"read-878"}]},{"section":"-strong-write-operations-strong--871","subsections":[{"section":"delete-collection-876"},{"section":"delete-875"},{"section":"replace-874"},{"section":"patch-873"},{"section":"create-872"}]}]},{"section":"rolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--864","subsections":[{"section":"watch-list-all-namespaces-870"},{"section":"watch-list-869"},{"section":"watch-868"},{"section":"list-all-namespaces-867"},{"section":"list-866"},{"section":"read-865"}]},{"section":"-strong-write-operations-strong--858","subsections":[{"section":"delete-collection-863"},{"section":"delete-862"},{"section":"replace-861"},{"section":"patch-860"},{"section":"create-859"}]}]},{"section":"role-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--851","subsections":[{"section":"watch-list-all-namespaces-857"},{"section":"watch-list-856"},{"section":"watch-855"},{"section":"list-all-namespaces-854"},{"section":"list-853"},{"section":"read-852"}]},{"section":"-strong-write-operations-strong--845","subsections":[{"section":"delete-collection-850"},{"section":"delete-849"},{"section":"replace-848"},{"section":"patch-847"},{"section":"create-846"}]}]},{"section":"role-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--838","subsections":[{"section":"watch-list-all-namespaces-844"},{"section":"watch-list-843"},{"section":"watch-842"},{"section":"list-all-namespaces-841"},{"section":"list-840"},{"section":"read-839"}]},{"section":"-strong-write-operations-strong--832","subsections":[{"section":"delete-collection-837"},{"section":"delete-836"},{"section":"replace-835"},{"section":"patch-834"},{"section":"create-833"}]}]},{"section":"resourcerule-v1beta1-authorization","subsections":[]},{"section":"resourceattributes-v1beta1-authorization","subsections":[]},{"section":"replicasetcondition-v1beta1-extensions","subsections":[]},{"section":"replicasetcondition-v1beta2-apps","subsections":[]},{"section":"replicaset-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--828","subsections":[{"section":"replace-status-831"},{"section":"read-status-830"},{"section":"patch-status-829"}]},{"section":"-strong-read-operations-strong--821","subsections":[{"section":"watch-list-all-namespaces-827"},{"section":"watch-list-826"},{"section":"watch-825"},{"section":"list-all-namespaces-824"},{"section":"list-823"},{"section":"read-822"}]},{"section":"-strong-write-operations-strong--815","subsections":[{"section":"delete-collection-820"},{"section":"delete-819"},{"section":"replace-818"},{"section":"patch-817"},{"section":"create-816"}]}]},{"section":"replicaset-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--811","subsections":[{"section":"replace-status-814"},{"section":"read-status-813"},{"section":"patch-status-812"}]},{"section":"-strong-read-operations-strong--804","subsections":[{"section":"watch-list-all-namespaces-810"},{"section":"watch-list-809"},{"section":"watch-808"},{"section":"list-all-namespaces-807"},{"section":"list-806"},{"section":"read-805"}]},{"section":"-strong-write-operations-strong--798","subsections":[{"section":"delete-collection-803"},{"section":"delete-802"},{"section":"replace-801"},{"section":"patch-800"},{"section":"create-799"}]}]},{"section":"policyrule-v1alpha1-rbac","subsections":[]},{"section":"policyrule-v1beta1-rbac","subsections":[]},{"section":"nonresourcerule-v1beta1-authorization","subsections":[]},{"section":"nonresourceattributes-v1beta1-authorization","subsections":[]},{"section":"networkpolicyport-v1beta1-extensions","subsections":[]},{"section":"networkpolicypeer-v1beta1-extensions","subsections":[]},{"section":"networkpolicyingressrule-v1beta1-extensions","subsections":[]},{"section":"networkpolicyegressrule-v1beta1-extensions","subsections":[]},{"section":"networkpolicy-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--791","subsections":[{"section":"watch-list-all-namespaces-797"},{"section":"watch-list-796"},{"section":"watch-795"},{"section":"list-all-namespaces-794"},{"section":"list-793"},{"section":"read-792"}]},{"section":"-strong-write-operations-strong--785","subsections":[{"section":"delete-collection-790"},{"section":"delete-789"},{"section":"replace-788"},{"section":"patch-787"},{"section":"create-786"}]}]},{"section":"localsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--783","subsections":[{"section":"create-784"}]}]},{"section":"jobtemplatespec-v2alpha1-batch","subsections":[]},{"section":"initializer-v1alpha1-admissionregistration","subsections":[]},{"section":"ipblock-v1beta1-extensions","subsections":[]},{"section":"horizontalpodautoscaler-v2beta1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--779","subsections":[{"section":"replace-status-782"},{"section":"read-status-781"},{"section":"patch-status-780"}]},{"section":"-strong-read-operations-strong--772","subsections":[{"section":"watch-list-all-namespaces-778"},{"section":"watch-list-777"},{"section":"watch-776"},{"section":"list-all-namespaces-775"},{"section":"list-774"},{"section":"read-773"}]},{"section":"-strong-write-operations-strong--766","subsections":[{"section":"delete-collection-771"},{"section":"delete-770"},{"section":"replace-769"},{"section":"patch-768"},{"section":"create-767"}]}]},{"section":"eventseries-v1beta1-events","subsections":[]},{"section":"event-v1beta1-events","subsections":[{"section":"-strong-read-operations-strong--759","subsections":[{"section":"watch-list-all-namespaces-765"},{"section":"watch-list-764"},{"section":"watch-763"},{"section":"list-all-namespaces-762"},{"section":"list-761"},{"section":"read-760"}]},{"section":"-strong-write-operations-strong--753","subsections":[{"section":"delete-collection-758"},{"section":"delete-757"},{"section":"replace-756"},{"section":"patch-755"},{"section":"create-754"}]}]},{"section":"deploymentcondition-v1beta1-extensions","subsections":[]},{"section":"deploymentcondition-v1beta1-apps","subsections":[]},{"section":"deploymentcondition-v1beta2-apps","subsections":[]},{"section":"deployment-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--749","subsections":[{"section":"replace-status-752"},{"section":"read-status-751"},{"section":"patch-status-750"}]},{"section":"-strong-read-operations-strong--742","subsections":[{"section":"watch-list-all-namespaces-748"},{"section":"watch-list-747"},{"section":"watch-746"},{"section":"list-all-namespaces-745"},{"section":"list-744"},{"section":"read-743"}]},{"section":"-strong-write-operations-strong--736","subsections":[{"section":"delete-collection-741"},{"section":"delete-740"},{"section":"replace-739"},{"section":"patch-738"},{"section":"create-737"}]}]},{"section":"deployment-v1beta1-apps","subsections":[{"section":"-strong-status-operations-strong--732","subsections":[{"section":"replace-status-735"},{"section":"read-status-734"},{"section":"patch-status-733"}]},{"section":"-strong-read-operations-strong--725","subsections":[{"section":"watch-list-all-namespaces-731"},{"section":"watch-list-730"},{"section":"watch-729"},{"section":"list-all-namespaces-728"},{"section":"list-727"},{"section":"read-726"}]},{"section":"-strong-write-operations-strong--719","subsections":[{"section":"delete-collection-724"},{"section":"delete-723"},{"section":"replace-722"},{"section":"patch-721"},{"section":"create-720"}]}]},{"section":"deployment-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--715","subsections":[{"section":"replace-status-718"},{"section":"read-status-717"},{"section":"patch-status-716"}]},{"section":"-strong-read-operations-strong--708","subsections":[{"section":"watch-list-all-namespaces-714"},{"section":"watch-list-713"},{"section":"watch-712"},{"section":"list-all-namespaces-711"},{"section":"list-710"},{"section":"read-709"}]},{"section":"-strong-write-operations-strong--702","subsections":[{"section":"delete-collection-707"},{"section":"delete-706"},{"section":"replace-705"},{"section":"patch-704"},{"section":"create-703"}]}]},{"section":"daemonsetupdatestrategy-v1beta1-extensions","subsections":[]},{"section":"daemonsetupdatestrategy-v1beta2-apps","subsections":[]},{"section":"daemonsetcondition-v1beta1-extensions","subsections":[]},{"section":"daemonsetcondition-v1beta2-apps","subsections":[]},{"section":"daemonset-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--698","subsections":[{"section":"replace-status-701"},{"section":"read-status-700"},{"section":"patch-status-699"}]},{"section":"-strong-read-operations-strong--691","subsections":[{"section":"watch-list-all-namespaces-697"},{"section":"watch-list-696"},{"section":"watch-695"},{"section":"list-all-namespaces-694"},{"section":"list-693"},{"section":"read-692"}]},{"section":"-strong-write-operations-strong--685","subsections":[{"section":"delete-collection-690"},{"section":"delete-689"},{"section":"replace-688"},{"section":"patch-687"},{"section":"create-686"}]}]},{"section":"daemonset-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--681","subsections":[{"section":"replace-status-684"},{"section":"read-status-683"},{"section":"patch-status-682"}]},{"section":"-strong-read-operations-strong--674","subsections":[{"section":"watch-list-all-namespaces-680"},{"section":"watch-list-679"},{"section":"watch-678"},{"section":"list-all-namespaces-677"},{"section":"list-676"},{"section":"read-675"}]},{"section":"-strong-write-operations-strong--668","subsections":[{"section":"delete-collection-673"},{"section":"delete-672"},{"section":"replace-671"},{"section":"patch-670"},{"section":"create-669"}]}]},{"section":"crossversionobjectreference-v2beta1-autoscaling","subsections":[]},{"section":"cronjob-v2alpha1-batch","subsections":[{"section":"-strong-status-operations-strong--664","subsections":[{"section":"replace-status-667"},{"section":"read-status-666"},{"section":"patch-status-665"}]},{"section":"-strong-read-operations-strong--657","subsections":[{"section":"watch-list-all-namespaces-663"},{"section":"watch-list-662"},{"section":"watch-661"},{"section":"list-all-namespaces-660"},{"section":"list-659"},{"section":"read-658"}]},{"section":"-strong-write-operations-strong--651","subsections":[{"section":"delete-collection-656"},{"section":"delete-655"},{"section":"replace-654"},{"section":"patch-653"},{"section":"create-652"}]}]},{"section":"controllerrevision-v1beta1-apps","subsections":[{"section":"-strong-read-operations-strong--644","subsections":[{"section":"watch-list-all-namespaces-650"},{"section":"watch-list-649"},{"section":"watch-648"},{"section":"list-all-namespaces-647"},{"section":"list-646"},{"section":"read-645"}]},{"section":"-strong-write-operations-strong--638","subsections":[{"section":"delete-collection-643"},{"section":"delete-642"},{"section":"replace-641"},{"section":"patch-640"},{"section":"create-639"}]}]},{"section":"controllerrevision-v1beta2-apps","subsections":[{"section":"-strong-read-operations-strong--631","subsections":[{"section":"watch-list-all-namespaces-637"},{"section":"watch-list-636"},{"section":"watch-635"},{"section":"list-all-namespaces-634"},{"section":"list-633"},{"section":"read-632"}]},{"section":"-strong-write-operations-strong--625","subsections":[{"section":"delete-collection-630"},{"section":"delete-629"},{"section":"replace-628"},{"section":"patch-627"},{"section":"create-626"}]}]},{"section":"clusterrolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--620","subsections":[{"section":"watch-list-624"},{"section":"watch-623"},{"section":"list-622"},{"section":"read-621"}]},{"section":"-strong-write-operations-strong--614","subsections":[{"section":"delete-collection-619"},{"section":"delete-618"},{"section":"replace-617"},{"section":"patch-616"},{"section":"create-615"}]}]},{"section":"clusterrolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--609","subsections":[{"section":"watch-list-613"},{"section":"watch-612"},{"section":"list-611"},{"section":"read-610"}]},{"section":"-strong-write-operations-strong--603","subsections":[{"section":"delete-collection-608"},{"section":"delete-607"},{"section":"replace-606"},{"section":"patch-605"},{"section":"create-604"}]}]},{"section":"clusterrole-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--598","subsections":[{"section":"watch-list-602"},{"section":"watch-601"},{"section":"list-600"},{"section":"read-599"}]},{"section":"-strong-write-operations-strong--592","subsections":[{"section":"delete-collection-597"},{"section":"delete-596"},{"section":"replace-595"},{"section":"patch-594"},{"section":"create-593"}]}]},{"section":"clusterrole-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--587","subsections":[{"section":"watch-list-591"},{"section":"watch-590"},{"section":"list-589"},{"section":"read-588"}]},{"section":"-strong-write-operations-strong--581","subsections":[{"section":"delete-collection-586"},{"section":"delete-585"},{"section":"replace-584"},{"section":"patch-583"},{"section":"create-582"}]}]},{"section":"aggregationrule-v1alpha1-rbac","subsections":[]},{"section":"aggregationrule-v1beta1-rbac","subsections":[]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"weightedpodaffinityterm-v1-core"},{"section":"webhookclientconfig-v1beta1-admissionregistration"},{"section":"webhook-v1beta1-admissionregistration"},{"section":"watchevent-v1-meta"},{"section":"vspherevirtualdiskvolumesource-v1-core"},{"section":"volumeprojection-v1-core"},{"section":"volumemount-v1-core"},{"section":"volumeerror-v1alpha1-storage"},{"section":"volumedevice-v1-core"},{"section":"volumeattachmentsource-v1alpha1-storage"},{"section":"volumeattachment-v1alpha1-storage"},{"section":"validatingwebhookconfiguration-v1beta1-admissionregistration"},{"section":"userinfo-v1-authentication"},{"section":"toleration-v1-core"},{"section":"time-v1-meta"},{"section":"taint-v1-core"},{"section":"tcpsocketaction-v1-core"},{"section":"supplementalgroupsstrategyoptions-v1beta1-extensions"},{"section":"subjectrulesreviewstatus-v1-authorization"},{"section":"subject-v1-rbac"},{"section":"storageosvolumesource-v1-core"},{"section":"storageospersistentvolumesource-v1-core"},{"section":"statusdetails-v1-meta"},{"section":"statuscause-v1-meta"},{"section":"status-v1-meta"},{"section":"statefulsetupdatestrategy-v1-apps"},{"section":"statefulsetcondition-v1-apps"},{"section":"statefulset-v1-apps"},{"section":"sessionaffinityconfig-v1-core"},{"section":"servicereference-v1beta1-admissionregistration"},{"section":"serviceport-v1-core"},{"section":"serveraddressbyclientcidr-v1-meta"},{"section":"securitycontext-v1-core"},{"section":"secretvolumesource-v1-core"},{"section":"secretreference-v1-core"},{"section":"secretprojection-v1-core"},{"section":"secretkeyselector-v1-core"},{"section":"secretenvsource-v1-core"},{"section":"scaleiovolumesource-v1-core"},{"section":"scaleiopersistentvolumesource-v1-core"},{"section":"scale-v1-autoscaling"},{"section":"selinuxstrategyoptions-v1beta1-extensions"},{"section":"selinuxoptions-v1-core"},{"section":"runasuserstrategyoptions-v1beta1-extensions"},{"section":"rulewithoperations-v1beta1-admissionregistration"},{"section":"rule-v1alpha1-admissionregistration"},{"section":"rollingupdatestatefulsetstrategy-v1-apps"},{"section":"rollbackconfig-v1beta1-apps"},{"section":"roleref-v1-rbac"},{"section":"resourcerule-v1-authorization"},{"section":"resourcerequirements-v1-core"},{"section":"resourcemetricstatus-v2beta1-autoscaling"},{"section":"resourcemetricsource-v2beta1-autoscaling"},{"section":"resourcefieldselector-v1-core"},{"section":"resourceattributes-v1-authorization"},{"section":"replicationcontrollercondition-v1-core"},{"section":"replicasetcondition-v1-apps"},{"section":"replicaset-v1-apps"},{"section":"rbdvolumesource-v1-core"},{"section":"rbdpersistentvolumesource-v1-core"},{"section":"quobytevolumesource-v1-core"},{"section":"quantity-resource-core"},{"section":"projectedvolumesource-v1-core"},{"section":"probe-v1-core"},{"section":"preferredschedulingterm-v1-core"},{"section":"preconditions-v1-meta"},{"section":"portworxvolumesource-v1-core"},{"section":"policyrule-v1-rbac"},{"section":"podsmetricstatus-v2beta1-autoscaling"},{"section":"podsmetricsource-v2beta1-autoscaling"},{"section":"podsecuritycontext-v1-core"},{"section":"poddnsconfigoption-v1-core"},{"section":"poddnsconfig-v1-core"},{"section":"podcondition-v1-core"},{"section":"podantiaffinity-v1-core"},{"section":"podaffinityterm-v1-core"},{"section":"podaffinity-v1-core"},{"section":"photonpersistentdiskvolumesource-v1-core"},{"section":"persistentvolumeclaimvolumesource-v1-core"},{"section":"persistentvolumeclaimcondition-v1-core"},{"section":"patch-v1-meta"},{"section":"ownerreference-v1-meta"},{"section":"objectreference-v1-core"},{"section":"objectmetricstatus-v2beta1-autoscaling"},{"section":"objectmetricsource-v2beta1-autoscaling"},{"section":"objectmeta-v1-meta"},{"section":"objectfieldselector-v1-core"},{"section":"nonresourcerule-v1-authorization"},{"section":"nonresourceattributes-v1-authorization"},{"section":"nodesysteminfo-v1-core"},{"section":"nodeselectorterm-v1-core"},{"section":"nodeselectorrequirement-v1-core"},{"section":"nodeselector-v1-core"},{"section":"nodedaemonendpoints-v1-core"},{"section":"nodeconfigsource-v1-core"},{"section":"nodecondition-v1-core"},{"section":"nodeaffinity-v1-core"},{"section":"nodeaddress-v1-core"},{"section":"networkpolicyport-v1-networking"},{"section":"networkpolicypeer-v1-networking"},{"section":"networkpolicyingressrule-v1-networking"},{"section":"networkpolicyegressrule-v1-networking"},{"section":"nfsvolumesource-v1-core"},{"section":"mutatingwebhookconfiguration-v1beta1-admissionregistration"},{"section":"microtime-v1-meta"},{"section":"metricstatus-v2beta1-autoscaling"},{"section":"metricspec-v2beta1-autoscaling"},{"section":"localvolumesource-v1-core"},{"section":"localobjectreference-v1-core"},{"section":"loadbalancerstatus-v1-core"},{"section":"loadbalanceringress-v1-core"},{"section":"listmeta-v1-meta"},{"section":"limitrangeitem-v1-core"},{"section":"lifecycle-v1-core"},{"section":"labelselectorrequirement-v1-meta"},{"section":"labelselector-v1-meta"},{"section":"keytopath-v1-core"},{"section":"jobtemplatespec-v1beta1-batch"},{"section":"jobcondition-v1-batch"},{"section":"jsonschemapropsorbool-v1beta1-apiextensions"},{"section":"jsonschemapropsorarray-v1beta1-apiextensions"},{"section":"jsonschemaprops-v1beta1-apiextensions"},{"section":"json-v1beta1-apiextensions"},{"section":"initializers-v1-meta"},{"section":"initializer-v1-meta"},{"section":"ingresstls-v1beta1-extensions"},{"section":"ingressrule-v1beta1-extensions"},{"section":"ingressbackend-v1beta1-extensions"},{"section":"iscsivolumesource-v1-core"},{"section":"iscsipersistentvolumesource-v1-core"},{"section":"ipblock-v1-networking"},{"section":"idrange-v1beta1-extensions"},{"section":"hostportrange-v1beta1-extensions"},{"section":"hostpathvolumesource-v1-core"},{"section":"hostalias-v1-core"},{"section":"horizontalpodautoscalercondition-v2beta1-autoscaling"},{"section":"handler-v1-core"},{"section":"httpingressrulevalue-v1beta1-extensions"},{"section":"httpingresspath-v1beta1-extensions"},{"section":"httpheader-v1-core"},{"section":"httpgetaction-v1-core"},{"section":"groupversionfordiscovery-v1-meta"},{"section":"glusterfsvolumesource-v1-core"},{"section":"gitrepovolumesource-v1-core"},{"section":"gcepersistentdiskvolumesource-v1-core"},{"section":"flockervolumesource-v1-core"},{"section":"flexvolumesource-v1-core"},{"section":"fsgroupstrategyoptions-v1beta1-extensions"},{"section":"fcvolumesource-v1-core"},{"section":"externaldocumentation-v1beta1-apiextensions"},{"section":"execaction-v1-core"},{"section":"eviction-v1beta1-policy"},{"section":"eventsource-v1-core"},{"section":"eventseries-v1-core"},{"section":"envvarsource-v1-core"},{"section":"envvar-v1-core"},{"section":"envfromsource-v1-core"},{"section":"endpointsubset-v1-core"},{"section":"endpointport-v1-core"},{"section":"endpointaddress-v1-core"},{"section":"emptydirvolumesource-v1-core"},{"section":"downwardapivolumesource-v1-core"},{"section":"downwardapivolumefile-v1-core"},{"section":"downwardapiprojection-v1-core"},{"section":"deploymentcondition-v1-apps"},{"section":"deployment-v1-apps"},{"section":"deleteoptions-v1-meta"},{"section":"daemonsetupdatestrategy-v1-apps"},{"section":"daemonsetcondition-v1-apps"},{"section":"daemonset-v1-apps"},{"section":"daemonendpoint-v1-core"},{"section":"customresourcevalidation-v1beta1-apiextensions"},{"section":"customresourcedefinitionnames-v1beta1-apiextensions"},{"section":"customresourcedefinitioncondition-v1beta1-apiextensions"},{"section":"crossversionobjectreference-v1-autoscaling"},{"section":"controllerrevision-v1-apps"},{"section":"containerstatewaiting-v1-core"},{"section":"containerstateterminated-v1-core"},{"section":"containerstaterunning-v1-core"},{"section":"containerstate-v1-core"},{"section":"containerport-v1-core"},{"section":"containerimage-v1-core"},{"section":"configmapvolumesource-v1-core"},{"section":"configmapprojection-v1-core"},{"section":"configmapkeyselector-v1-core"},{"section":"configmapenvsource-v1-core"},{"section":"componentcondition-v1-core"},{"section":"clientipconfig-v1-core"},{"section":"cindervolumesource-v1-core"},{"section":"certificatesigningrequestcondition-v1beta1-certificates"},{"section":"cephfsvolumesource-v1-core"},{"section":"cephfspersistentvolumesource-v1-core"},{"section":"capabilities-v1-core"},{"section":"csipersistentvolumesource-v1-core"},{"section":"azurefilevolumesource-v1-core"},{"section":"azurefilepersistentvolumesource-v1-core"},{"section":"azurediskvolumesource-v1-core"},{"section":"attachedvolume-v1-core"},{"section":"allowedhostpath-v1beta1-extensions"},{"section":"allowedflexvolume-v1beta1-extensions"},{"section":"aggregationrule-v1-rbac"},{"section":"affinity-v1-core"},{"section":"awselasticblockstorevolumesource-v1-core"},{"section":"apiversions-v1-meta"},{"section":"apiservicecondition-v1beta1-apiregistration"},{"section":"apiresource-v1-meta"},{"section":"apigroup-v1-meta"}]},{"section":"networkpolicy-v1-networking","subsections":[{"section":"-strong-read-operations-strong--574","subsections":[{"section":"watch-list-all-namespaces-580"},{"section":"watch-list-579"},{"section":"watch-578"},{"section":"list-all-namespaces-577"},{"section":"list-576"},{"section":"read-575"}]},{"section":"-strong-write-operations-strong--568","subsections":[{"section":"delete-collection-573"},{"section":"delete-572"},{"section":"replace-571"},{"section":"patch-570"},{"section":"create-569"}]}]},{"section":"tokenreview-v1-authentication","subsections":[{"section":"-strong-write-operations-strong--566","subsections":[{"section":"create-567"}]}]},{"section":"subjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--564","subsections":[{"section":"create-565"}]}]},{"section":"serviceaccount-v1-core","subsections":[{"section":"-strong-read-operations-strong--557","subsections":[{"section":"watch-list-all-namespaces-563"},{"section":"watch-list-562"},{"section":"watch-561"},{"section":"list-all-namespaces-560"},{"section":"list-559"},{"section":"read-558"}]},{"section":"-strong-write-operations-strong--551","subsections":[{"section":"delete-collection-556"},{"section":"delete-555"},{"section":"replace-554"},{"section":"patch-553"},{"section":"create-552"}]}]},{"section":"selfsubjectrulesreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--549","subsections":[{"section":"create-550"}]}]},{"section":"selfsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--547","subsections":[{"section":"create-548"}]}]},{"section":"rolebinding-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--540","subsections":[{"section":"watch-list-all-namespaces-546"},{"section":"watch-list-545"},{"section":"watch-544"},{"section":"list-all-namespaces-543"},{"section":"list-542"},{"section":"read-541"}]},{"section":"-strong-write-operations-strong--534","subsections":[{"section":"delete-collection-539"},{"section":"delete-538"},{"section":"replace-537"},{"section":"patch-536"},{"section":"create-535"}]}]},{"section":"role-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--527","subsections":[{"section":"watch-list-all-namespaces-533"},{"section":"watch-list-532"},{"section":"watch-531"},{"section":"list-all-namespaces-530"},{"section":"list-529"},{"section":"read-528"}]},{"section":"-strong-write-operations-strong--521","subsections":[{"section":"delete-collection-526"},{"section":"delete-525"},{"section":"replace-524"},{"section":"patch-523"},{"section":"create-522"}]}]},{"section":"resourcequota-v1-core","subsections":[{"section":"-strong-status-operations-strong--517","subsections":[{"section":"replace-status-520"},{"section":"read-status-519"},{"section":"patch-status-518"}]},{"section":"-strong-read-operations-strong--510","subsections":[{"section":"watch-list-all-namespaces-516"},{"section":"watch-list-515"},{"section":"watch-514"},{"section":"list-all-namespaces-513"},{"section":"list-512"},{"section":"read-511"}]},{"section":"-strong-write-operations-strong--504","subsections":[{"section":"delete-collection-509"},{"section":"delete-508"},{"section":"replace-507"},{"section":"patch-506"},{"section":"create-505"}]}]},{"section":"persistentvolume-v1-core","subsections":[{"section":"-strong-status-operations-strong--500","subsections":[{"section":"replace-status-503"},{"section":"read-status-502"},{"section":"patch-status-501"}]},{"section":"-strong-read-operations-strong--495","subsections":[{"section":"watch-list-499"},{"section":"watch-498"},{"section":"list-497"},{"section":"read-496"}]},{"section":"-strong-write-operations-strong--489","subsections":[{"section":"delete-collection-494"},{"section":"delete-493"},{"section":"replace-492"},{"section":"patch-491"},{"section":"create-490"}]}]},{"section":"node-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--470","subsections":[{"section":"replace-proxy-path-488"},{"section":"replace-proxy-487"},{"section":"replace-connect-proxy-path-486"},{"section":"replace-connect-proxy-485"},{"section":"head-connect-proxy-path-484"},{"section":"head-connect-proxy-483"},{"section":"get-proxy-path-482"},{"section":"get-proxy-481"},{"section":"get-connect-proxy-path-480"},{"section":"get-connect-proxy-479"},{"section":"delete-proxy-path-478"},{"section":"delete-proxy-477"},{"section":"delete-connect-proxy-path-476"},{"section":"delete-connect-proxy-475"},{"section":"create-proxy-path-474"},{"section":"create-proxy-473"},{"section":"create-connect-proxy-path-472"},{"section":"create-connect-proxy-471"}]},{"section":"-strong-status-operations-strong--466","subsections":[{"section":"replace-status-469"},{"section":"read-status-468"},{"section":"patch-status-467"}]},{"section":"-strong-read-operations-strong--461","subsections":[{"section":"watch-list-465"},{"section":"watch-464"},{"section":"list-463"},{"section":"read-462"}]},{"section":"-strong-write-operations-strong--455","subsections":[{"section":"delete-collection-460"},{"section":"delete-459"},{"section":"replace-458"},{"section":"patch-457"},{"section":"create-456"}]}]},{"section":"namespace-v1-core","subsections":[{"section":"-strong-status-operations-strong--451","subsections":[{"section":"replace-status-454"},{"section":"read-status-453"},{"section":"patch-status-452"}]},{"section":"-strong-read-operations-strong--446","subsections":[{"section":"watch-list-450"},{"section":"watch-449"},{"section":"list-448"},{"section":"read-447"}]},{"section":"-strong-write-operations-strong--441","subsections":[{"section":"delete-445"},{"section":"replace-444"},{"section":"patch-443"},{"section":"create-442"}]}]},{"section":"localsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--439","subsections":[{"section":"create-440"}]}]},{"section":"componentstatus-v1-core","subsections":[{"section":"-strong-read-operations-strong--436","subsections":[{"section":"list-438"},{"section":"read-437"}]}]},{"section":"clusterrolebinding-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--431","subsections":[{"section":"watch-list-435"},{"section":"watch-434"},{"section":"list-433"},{"section":"read-432"}]},{"section":"-strong-write-operations-strong--425","subsections":[{"section":"delete-collection-430"},{"section":"delete-429"},{"section":"replace-428"},{"section":"patch-427"},{"section":"create-426"}]}]},{"section":"clusterrole-v1-rbac","subsections":[{"section":"-strong-read-operations-strong--420","subsections":[{"section":"watch-list-424"},{"section":"watch-423"},{"section":"list-422"},{"section":"read-421"}]},{"section":"-strong-write-operations-strong--414","subsections":[{"section":"delete-collection-419"},{"section":"delete-418"},{"section":"replace-417"},{"section":"patch-416"},{"section":"create-415"}]}]},{"section":"certificatesigningrequest-v1beta1-certificates","subsections":[{"section":"-strong-status-operations-strong--412","subsections":[{"section":"replace-status-413"}]},{"section":"-strong-read-operations-strong--407","subsections":[{"section":"watch-list-411"},{"section":"watch-410"},{"section":"list-409"},{"section":"read-408"}]},{"section":"-strong-write-operations-strong--401","subsections":[{"section":"delete-collection-406"},{"section":"delete-405"},{"section":"replace-404"},{"section":"patch-403"},{"section":"create-402"}]}]},{"section":"binding-v1-core","subsections":[{"section":"-strong-write-operations-strong--399","subsections":[{"section":"create-400"}]}]},{"section":"apiservice-v1beta1-apiregistration","subsections":[{"section":"-strong-status-operations-strong--397","subsections":[{"section":"replace-status-398"}]},{"section":"-strong-read-operations-strong--392","subsections":[{"section":"watch-list-396"},{"section":"watch-395"},{"section":"list-394"},{"section":"read-393"}]},{"section":"-strong-write-operations-strong--386","subsections":[{"section":"delete-collection-391"},{"section":"delete-390"},{"section":"replace-389"},{"section":"patch-388"},{"section":"create-387"}]}]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"podsecuritypolicy-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--381","subsections":[{"section":"watch-list-385"},{"section":"watch-384"},{"section":"list-383"},{"section":"read-382"}]},{"section":"-strong-write-operations-strong--375","subsections":[{"section":"delete-collection-380"},{"section":"delete-379"},{"section":"replace-378"},{"section":"patch-377"},{"section":"create-376"}]}]},{"section":"podpreset-v1alpha1-settings","subsections":[{"section":"-strong-read-operations-strong--368","subsections":[{"section":"watch-list-all-namespaces-374"},{"section":"watch-list-373"},{"section":"watch-372"},{"section":"list-all-namespaces-371"},{"section":"list-370"},{"section":"read-369"}]},{"section":"-strong-write-operations-strong--362","subsections":[{"section":"delete-collection-367"},{"section":"delete-366"},{"section":"replace-365"},{"section":"patch-364"},{"section":"create-363"}]}]},{"section":"priorityclass-v1alpha1-scheduling","subsections":[{"section":"-strong-read-operations-strong--357","subsections":[{"section":"watch-list-361"},{"section":"watch-360"},{"section":"list-359"},{"section":"read-358"}]},{"section":"-strong-write-operations-strong--351","subsections":[{"section":"delete-collection-356"},{"section":"delete-355"},{"section":"replace-354"},{"section":"patch-353"},{"section":"create-352"}]}]},{"section":"poddisruptionbudget-v1beta1-policy","subsections":[{"section":"-strong-status-operations-strong--347","subsections":[{"section":"replace-status-350"},{"section":"read-status-349"},{"section":"patch-status-348"}]},{"section":"-strong-read-operations-strong--340","subsections":[{"section":"watch-list-all-namespaces-346"},{"section":"watch-list-345"},{"section":"watch-344"},{"section":"list-all-namespaces-343"},{"section":"list-342"},{"section":"read-341"}]},{"section":"-strong-write-operations-strong--334","subsections":[{"section":"delete-collection-339"},{"section":"delete-338"},{"section":"replace-337"},{"section":"patch-336"},{"section":"create-335"}]}]},{"section":"podtemplate-v1-core","subsections":[{"section":"-strong-read-operations-strong--327","subsections":[{"section":"watch-list-all-namespaces-333"},{"section":"watch-list-332"},{"section":"watch-331"},{"section":"list-all-namespaces-330"},{"section":"list-329"},{"section":"read-328"}]},{"section":"-strong-write-operations-strong--321","subsections":[{"section":"delete-collection-326"},{"section":"delete-325"},{"section":"replace-324"},{"section":"patch-323"},{"section":"create-322"}]}]},{"section":"initializerconfiguration-v1alpha1-admissionregistration","subsections":[{"section":"-strong-read-operations-strong--316","subsections":[{"section":"watch-list-320"},{"section":"watch-319"},{"section":"list-318"},{"section":"read-317"}]},{"section":"-strong-write-operations-strong--310","subsections":[{"section":"delete-collection-315"},{"section":"delete-314"},{"section":"replace-313"},{"section":"patch-312"},{"section":"create-311"}]}]},{"section":"horizontalpodautoscaler-v1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--306","subsections":[{"section":"replace-status-309"},{"section":"read-status-308"},{"section":"patch-status-307"}]},{"section":"-strong-read-operations-strong--299","subsections":[{"section":"watch-list-all-namespaces-305"},{"section":"watch-list-304"},{"section":"watch-303"},{"section":"list-all-namespaces-302"},{"section":"list-301"},{"section":"read-300"}]},{"section":"-strong-write-operations-strong--293","subsections":[{"section":"delete-collection-298"},{"section":"delete-297"},{"section":"replace-296"},{"section":"patch-295"},{"section":"create-294"}]}]},{"section":"limitrange-v1-core","subsections":[{"section":"-strong-read-operations-strong--286","subsections":[{"section":"watch-list-all-namespaces-292"},{"section":"watch-list-291"},{"section":"watch-290"},{"section":"list-all-namespaces-289"},{"section":"list-288"},{"section":"read-287"}]},{"section":"-strong-write-operations-strong--280","subsections":[{"section":"delete-collection-285"},{"section":"delete-284"},{"section":"replace-283"},{"section":"patch-282"},{"section":"create-281"}]}]},{"section":"event-v1-core","subsections":[{"section":"-strong-read-operations-strong--273","subsections":[{"section":"watch-list-all-namespaces-279"},{"section":"watch-list-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":"replace-270"},{"section":"patch-269"},{"section":"create-268"}]}]},{"section":"customresourcedefinition-v1beta1-apiextensions","subsections":[{"section":"-strong-status-operations-strong--265","subsections":[{"section":"replace-status-266"}]},{"section":"-strong-read-operations-strong--260","subsections":[{"section":"watch-list-264"},{"section":"watch-263"},{"section":"list-262"},{"section":"read-261"}]},{"section":"-strong-write-operations-strong--254","subsections":[{"section":"delete-collection-259"},{"section":"delete-258"},{"section":"replace-257"},{"section":"patch-256"},{"section":"create-255"}]}]},{"section":"controllerrevision-v1beta2-apps","subsections":[{"section":"-strong-read-operations-strong--247","subsections":[{"section":"watch-list-all-namespaces-253"},{"section":"watch-list-252"},{"section":"watch-251"},{"section":"list-all-namespaces-250"},{"section":"list-249"},{"section":"read-248"}]},{"section":"-strong-write-operations-strong--241","subsections":[{"section":"delete-collection-246"},{"section":"delete-245"},{"section":"replace-244"},{"section":"patch-243"},{"section":"create-242"}]}]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volume-v1-core","subsections":[]},{"section":"storageclass-v1-storage","subsections":[{"section":"-strong-read-operations-strong--236","subsections":[{"section":"watch-list-240"},{"section":"watch-239"},{"section":"list-238"},{"section":"read-237"}]},{"section":"-strong-write-operations-strong--230","subsections":[{"section":"delete-collection-235"},{"section":"delete-234"},{"section":"replace-233"},{"section":"patch-232"},{"section":"create-231"}]}]},{"section":"persistentvolumeclaim-v1-core","subsections":[{"section":"-strong-status-operations-strong--226","subsections":[{"section":"replace-status-229"},{"section":"read-status-228"},{"section":"patch-status-227"}]},{"section":"-strong-read-operations-strong--219","subsections":[{"section":"watch-list-all-namespaces-225"},{"section":"watch-list-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":"replace-216"},{"section":"patch-215"},{"section":"create-214"}]}]},{"section":"secret-v1-core","subsections":[{"section":"-strong-read-operations-strong--206","subsections":[{"section":"watch-list-all-namespaces-212"},{"section":"watch-list-211"},{"section":"watch-210"},{"section":"list-all-namespaces-209"},{"section":"list-208"},{"section":"read-207"}]},{"section":"-strong-write-operations-strong--200","subsections":[{"section":"delete-collection-205"},{"section":"delete-204"},{"section":"replace-203"},{"section":"patch-202"},{"section":"create-201"}]}]},{"section":"configmap-v1-core","subsections":[{"section":"-strong-read-operations-strong--193","subsections":[{"section":"watch-list-all-namespaces-199"},{"section":"watch-list-198"},{"section":"watch-197"},{"section":"list-all-namespaces-196"},{"section":"list-195"},{"section":"read-194"}]},{"section":"-strong-write-operations-strong--187","subsections":[{"section":"delete-collection-192"},{"section":"delete-191"},{"section":"replace-190"},{"section":"patch-189"},{"section":"create-188"}]}]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--168","subsections":[{"section":"replace-proxy-path-186"},{"section":"replace-proxy-185"},{"section":"replace-connect-proxy-path-184"},{"section":"replace-connect-proxy-183"},{"section":"head-connect-proxy-path-182"},{"section":"head-connect-proxy-181"},{"section":"get-proxy-path-180"},{"section":"get-proxy-179"},{"section":"get-connect-proxy-path-178"},{"section":"get-connect-proxy-177"},{"section":"delete-proxy-path-176"},{"section":"delete-proxy-175"},{"section":"delete-connect-proxy-path-174"},{"section":"delete-connect-proxy-173"},{"section":"create-proxy-path-172"},{"section":"create-proxy-171"},{"section":"create-connect-proxy-path-170"},{"section":"create-connect-proxy-169"}]},{"section":"-strong-status-operations-strong--164","subsections":[{"section":"replace-status-167"},{"section":"read-status-166"},{"section":"patch-status-165"}]},{"section":"-strong-read-operations-strong--157","subsections":[{"section":"watch-list-all-namespaces-163"},{"section":"watch-list-162"},{"section":"watch-161"},{"section":"list-all-namespaces-160"},{"section":"list-159"},{"section":"read-158"}]},{"section":"-strong-write-operations-strong--152","subsections":[{"section":"delete-156"},{"section":"replace-155"},{"section":"patch-154"},{"section":"create-153"}]}]},{"section":"ingress-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--148","subsections":[{"section":"replace-status-151"},{"section":"read-status-150"},{"section":"patch-status-149"}]},{"section":"-strong-read-operations-strong--141","subsections":[{"section":"watch-list-all-namespaces-147"},{"section":"watch-list-146"},{"section":"watch-145"},{"section":"list-all-namespaces-144"},{"section":"list-143"},{"section":"read-142"}]},{"section":"-strong-write-operations-strong--135","subsections":[{"section":"delete-collection-140"},{"section":"delete-139"},{"section":"replace-138"},{"section":"patch-137"},{"section":"create-136"}]}]},{"section":"endpoints-v1-core","subsections":[{"section":"-strong-read-operations-strong--128","subsections":[{"section":"watch-list-all-namespaces-134"},{"section":"watch-list-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":"replace-125"},{"section":"patch-124"},{"section":"create-123"}]}]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--118","subsections":[{"section":"replace-status-121"},{"section":"read-status-120"},{"section":"patch-status-119"}]},{"section":"-strong-read-operations-strong--111","subsections":[{"section":"watch-list-all-namespaces-117"},{"section":"watch-list-116"},{"section":"watch-115"},{"section":"list-all-namespaces-114"},{"section":"list-113"},{"section":"read-112"}]},{"section":"-strong-write-operations-strong--105","subsections":[{"section":"delete-collection-110"},{"section":"delete-109"},{"section":"replace-108"},{"section":"patch-107"},{"section":"create-106"}]}]},{"section":"replicationcontroller-v1-core","subsections":[{"section":"-strong-status-operations-strong--101","subsections":[{"section":"replace-status-104"},{"section":"read-status-103"},{"section":"patch-status-102"}]},{"section":"-strong-read-operations-strong--94","subsections":[{"section":"watch-list-all-namespaces-100"},{"section":"watch-list-99"},{"section":"watch-98"},{"section":"list-all-namespaces-97"},{"section":"list-96"},{"section":"read-95"}]},{"section":"-strong-write-operations-strong--88","subsections":[{"section":"delete-collection-93"},{"section":"delete-92"},{"section":"replace-91"},{"section":"patch-90"},{"section":"create-89"}]}]},{"section":"replicaset-v1beta2-apps","subsections":[{"section":"-strong-status-operations-strong--84","subsections":[{"section":"replace-status-87"},{"section":"read-status-86"},{"section":"patch-status-85"}]},{"section":"-strong-read-operations-strong--77","subsections":[{"section":"watch-list-all-namespaces-83"},{"section":"watch-list-82"},{"section":"watch-81"},{"section":"list-all-namespaces-80"},{"section":"list-79"},{"section":"read-78"}]},{"section":"-strong-write-operations-strong--71","subsections":[{"section":"delete-collection-76"},{"section":"delete-75"},{"section":"replace-74"},{"section":"patch-73"},{"section":"create-72"}]}]},{"section":"pod-v1-core","subsections":[{"section":"-strong-misc-operations-strong-","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":"replace-57"},{"section":"patch-56"},{"section":"create-55"}]}]},{"section":"job-v1-batch","subsections":[{"section":"-strong-status-operations-strong--50","subsections":[{"section":"replace-status-53"},{"section":"read-status-52"},{"section":"patch-status-51"}]},{"section":"-strong-read-operations-strong--43","subsections":[{"section":"watch-list-all-namespaces-49"},{"section":"watch-list-48"},{"section":"watch-47"},{"section":"list-all-namespaces-46"},{"section":"list-45"},{"section":"read-44"}]},{"section":"-strong-write-operations-strong--37","subsections":[{"section":"delete-collection-42"},{"section":"delete-41"},{"section":"replace-40"},{"section":"patch-39"},{"section":"create-38"}]}]},{"section":"deployment-v1beta2-apps","subsections":[{"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":"replace-23"},{"section":"patch-22"},{"section":"create-21"}]}]},{"section":"daemonset-v1beta2-apps","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":"replace-6"},{"section":"patch-5"},{"section":"create-4"}]}]},{"section":"cronjob-v1beta1-batch","subsections":[{"section":"-strong-status-operations-strong-","subsections":[{"section":"replace-status"},{"section":"read-status"},{"section":"patch-status"}]},{"section":"-strong-read-operations-strong-","subsections":[{"section":"watch-list-all-namespaces"},{"section":"watch-list"},{"section":"watch"},{"section":"list-all-namespaces"},{"section":"list"},{"section":"read-2"}]},{"section":"-strong-write-operations-strong-","subsections":[{"section":"delete-collection"},{"section":"delete-1"},{"section":"replace"},{"section":"patch"},{"section":"create"}]}]},{"section":"container-v1-core","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]},{"section":"-strong-api-overview-strong-","subsections":[{"section":"resource-operations"},{"section":"resource-objects"},{"section":"resource-categories"}]}],"flatToc":["userinfo-v1beta1-authentication","create-936","-strong-write-operations-strong--935","tokenreview-v1beta1-authentication","subjectrulesreviewstatus-v1beta1-authorization","create-934","-strong-write-operations-strong--933","subjectaccessreview-v1beta1-authorization","subject-v1alpha1-rbac","subject-v1beta1-rbac","watch-list-932","watch-931","list-930","read-929","-strong-read-operations-strong--928","delete-collection-927","delete-926","replace-925","patch-924","create-923","-strong-write-operations-strong--922","storageclass-v1beta1-storage","statefulsetupdatestrategy-v1beta1-apps","statefulsetupdatestrategy-v1beta2-apps","statefulsetcondition-v1beta1-apps","statefulsetcondition-v1beta2-apps","replace-status-921","read-status-920","patch-status-919","-strong-status-operations-strong--918","watch-list-all-namespaces-917","watch-list-916","watch-915","list-all-namespaces-914","list-913","read-912","-strong-read-operations-strong--911","delete-collection-910","delete-909","replace-908","patch-907","create-906","-strong-write-operations-strong--905","statefulset-v1beta1-apps","replace-status-904","read-status-903","patch-status-902","-strong-status-operations-strong--901","watch-list-all-namespaces-900","watch-list-899","watch-898","list-all-namespaces-897","list-896","read-895","-strong-read-operations-strong--894","delete-collection-893","delete-892","replace-891","patch-890","create-889","-strong-write-operations-strong--888","statefulset-v1beta2-apps","servicereference-v1beta1-apiregistration","create-887","-strong-write-operations-strong--886","selfsubjectrulesreview-v1beta1-authorization","create-885","-strong-write-operations-strong--884","selfsubjectaccessreview-v1beta1-authorization","scale-v1beta1-extensions","scale-v1beta1-apps","scale-v1beta2-apps","rollingupdatestatefulsetstrategy-v1beta1-apps","rollingupdatestatefulsetstrategy-v1beta2-apps","rollbackconfig-v1beta1-extensions","roleref-v1alpha1-rbac","roleref-v1beta1-rbac","watch-list-all-namespaces-883","watch-list-882","watch-881","list-all-namespaces-880","list-879","read-878","-strong-read-operations-strong--877","delete-collection-876","delete-875","replace-874","patch-873","create-872","-strong-write-operations-strong--871","rolebinding-v1alpha1-rbac","watch-list-all-namespaces-870","watch-list-869","watch-868","list-all-namespaces-867","list-866","read-865","-strong-read-operations-strong--864","delete-collection-863","delete-862","replace-861","patch-860","create-859","-strong-write-operations-strong--858","rolebinding-v1beta1-rbac","watch-list-all-namespaces-857","watch-list-856","watch-855","list-all-namespaces-854","list-853","read-852","-strong-read-operations-strong--851","delete-collection-850","delete-849","replace-848","patch-847","create-846","-strong-write-operations-strong--845","role-v1alpha1-rbac","watch-list-all-namespaces-844","watch-list-843","watch-842","list-all-namespaces-841","list-840","read-839","-strong-read-operations-strong--838","delete-collection-837","delete-836","replace-835","patch-834","create-833","-strong-write-operations-strong--832","role-v1beta1-rbac","resourcerule-v1beta1-authorization","resourceattributes-v1beta1-authorization","replicasetcondition-v1beta1-extensions","replicasetcondition-v1beta2-apps","replace-status-831","read-status-830","patch-status-829","-strong-status-operations-strong--828","watch-list-all-namespaces-827","watch-list-826","watch-825","list-all-namespaces-824","list-823","read-822","-strong-read-operations-strong--821","delete-collection-820","delete-819","replace-818","patch-817","create-816","-strong-write-operations-strong--815","replicaset-v1beta1-extensions","replace-status-814","read-status-813","patch-status-812","-strong-status-operations-strong--811","watch-list-all-namespaces-810","watch-list-809","watch-808","list-all-namespaces-807","list-806","read-805","-strong-read-operations-strong--804","delete-collection-803","delete-802","replace-801","patch-800","create-799","-strong-write-operations-strong--798","replicaset-v1beta2-apps","policyrule-v1alpha1-rbac","policyrule-v1beta1-rbac","nonresourcerule-v1beta1-authorization","nonresourceattributes-v1beta1-authorization","networkpolicyport-v1beta1-extensions","networkpolicypeer-v1beta1-extensions","networkpolicyingressrule-v1beta1-extensions","networkpolicyegressrule-v1beta1-extensions","watch-list-all-namespaces-797","watch-list-796","watch-795","list-all-namespaces-794","list-793","read-792","-strong-read-operations-strong--791","delete-collection-790","delete-789","replace-788","patch-787","create-786","-strong-write-operations-strong--785","networkpolicy-v1beta1-extensions","create-784","-strong-write-operations-strong--783","localsubjectaccessreview-v1beta1-authorization","jobtemplatespec-v2alpha1-batch","initializer-v1alpha1-admissionregistration","ipblock-v1beta1-extensions","replace-status-782","read-status-781","patch-status-780","-strong-status-operations-strong--779","watch-list-all-namespaces-778","watch-list-777","watch-776","list-all-namespaces-775","list-774","read-773","-strong-read-operations-strong--772","delete-collection-771","delete-770","replace-769","patch-768","create-767","-strong-write-operations-strong--766","horizontalpodautoscaler-v2beta1-autoscaling","eventseries-v1beta1-events","watch-list-all-namespaces-765","watch-list-764","watch-763","list-all-namespaces-762","list-761","read-760","-strong-read-operations-strong--759","delete-collection-758","delete-757","replace-756","patch-755","create-754","-strong-write-operations-strong--753","event-v1beta1-events","deploymentcondition-v1beta1-extensions","deploymentcondition-v1beta1-apps","deploymentcondition-v1beta2-apps","replace-status-752","read-status-751","patch-status-750","-strong-status-operations-strong--749","watch-list-all-namespaces-748","watch-list-747","watch-746","list-all-namespaces-745","list-744","read-743","-strong-read-operations-strong--742","delete-collection-741","delete-740","replace-739","patch-738","create-737","-strong-write-operations-strong--736","deployment-v1beta1-extensions","replace-status-735","read-status-734","patch-status-733","-strong-status-operations-strong--732","watch-list-all-namespaces-731","watch-list-730","watch-729","list-all-namespaces-728","list-727","read-726","-strong-read-operations-strong--725","delete-collection-724","delete-723","replace-722","patch-721","create-720","-strong-write-operations-strong--719","deployment-v1beta1-apps","replace-status-718","read-status-717","patch-status-716","-strong-status-operations-strong--715","watch-list-all-namespaces-714","watch-list-713","watch-712","list-all-namespaces-711","list-710","read-709","-strong-read-operations-strong--708","delete-collection-707","delete-706","replace-705","patch-704","create-703","-strong-write-operations-strong--702","deployment-v1beta2-apps","daemonsetupdatestrategy-v1beta1-extensions","daemonsetupdatestrategy-v1beta2-apps","daemonsetcondition-v1beta1-extensions","daemonsetcondition-v1beta2-apps","replace-status-701","read-status-700","patch-status-699","-strong-status-operations-strong--698","watch-list-all-namespaces-697","watch-list-696","watch-695","list-all-namespaces-694","list-693","read-692","-strong-read-operations-strong--691","delete-collection-690","delete-689","replace-688","patch-687","create-686","-strong-write-operations-strong--685","daemonset-v1beta1-extensions","replace-status-684","read-status-683","patch-status-682","-strong-status-operations-strong--681","watch-list-all-namespaces-680","watch-list-679","watch-678","list-all-namespaces-677","list-676","read-675","-strong-read-operations-strong--674","delete-collection-673","delete-672","replace-671","patch-670","create-669","-strong-write-operations-strong--668","daemonset-v1beta2-apps","crossversionobjectreference-v2beta1-autoscaling","replace-status-667","read-status-666","patch-status-665","-strong-status-operations-strong--664","watch-list-all-namespaces-663","watch-list-662","watch-661","list-all-namespaces-660","list-659","read-658","-strong-read-operations-strong--657","delete-collection-656","delete-655","replace-654","patch-653","create-652","-strong-write-operations-strong--651","cronjob-v2alpha1-batch","watch-list-all-namespaces-650","watch-list-649","watch-648","list-all-namespaces-647","list-646","read-645","-strong-read-operations-strong--644","delete-collection-643","delete-642","replace-641","patch-640","create-639","-strong-write-operations-strong--638","controllerrevision-v1beta1-apps","watch-list-all-namespaces-637","watch-list-636","watch-635","list-all-namespaces-634","list-633","read-632","-strong-read-operations-strong--631","delete-collection-630","delete-629","replace-628","patch-627","create-626","-strong-write-operations-strong--625","controllerrevision-v1beta2-apps","watch-list-624","watch-623","list-622","read-621","-strong-read-operations-strong--620","delete-collection-619","delete-618","replace-617","patch-616","create-615","-strong-write-operations-strong--614","clusterrolebinding-v1alpha1-rbac","watch-list-613","watch-612","list-611","read-610","-strong-read-operations-strong--609","delete-collection-608","delete-607","replace-606","patch-605","create-604","-strong-write-operations-strong--603","clusterrolebinding-v1beta1-rbac","watch-list-602","watch-601","list-600","read-599","-strong-read-operations-strong--598","delete-collection-597","delete-596","replace-595","patch-594","create-593","-strong-write-operations-strong--592","clusterrole-v1alpha1-rbac","watch-list-591","watch-590","list-589","read-588","-strong-read-operations-strong--587","delete-collection-586","delete-585","replace-584","patch-583","create-582","-strong-write-operations-strong--581","clusterrole-v1beta1-rbac","aggregationrule-v1alpha1-rbac","aggregationrule-v1beta1-rbac","-strong-old-api-versions-strong-","weightedpodaffinityterm-v1-core","webhookclientconfig-v1beta1-admissionregistration","webhook-v1beta1-admissionregistration","watchevent-v1-meta","vspherevirtualdiskvolumesource-v1-core","volumeprojection-v1-core","volumemount-v1-core","volumeerror-v1alpha1-storage","volumedevice-v1-core","volumeattachmentsource-v1alpha1-storage","volumeattachment-v1alpha1-storage","validatingwebhookconfiguration-v1beta1-admissionregistration","userinfo-v1-authentication","toleration-v1-core","time-v1-meta","taint-v1-core","tcpsocketaction-v1-core","supplementalgroupsstrategyoptions-v1beta1-extensions","subjectrulesreviewstatus-v1-authorization","subject-v1-rbac","storageosvolumesource-v1-core","storageospersistentvolumesource-v1-core","statusdetails-v1-meta","statuscause-v1-meta","status-v1-meta","statefulsetupdatestrategy-v1-apps","statefulsetcondition-v1-apps","statefulset-v1-apps","sessionaffinityconfig-v1-core","servicereference-v1beta1-admissionregistration","serviceport-v1-core","serveraddressbyclientcidr-v1-meta","securitycontext-v1-core","secretvolumesource-v1-core","secretreference-v1-core","secretprojection-v1-core","secretkeyselector-v1-core","secretenvsource-v1-core","scaleiovolumesource-v1-core","scaleiopersistentvolumesource-v1-core","scale-v1-autoscaling","selinuxstrategyoptions-v1beta1-extensions","selinuxoptions-v1-core","runasuserstrategyoptions-v1beta1-extensions","rulewithoperations-v1beta1-admissionregistration","rule-v1alpha1-admissionregistration","rollingupdatestatefulsetstrategy-v1-apps","rollbackconfig-v1beta1-apps","roleref-v1-rbac","resourcerule-v1-authorization","resourcerequirements-v1-core","resourcemetricstatus-v2beta1-autoscaling","resourcemetricsource-v2beta1-autoscaling","resourcefieldselector-v1-core","resourceattributes-v1-authorization","replicationcontrollercondition-v1-core","replicasetcondition-v1-apps","replicaset-v1-apps","rbdvolumesource-v1-core","rbdpersistentvolumesource-v1-core","quobytevolumesource-v1-core","quantity-resource-core","projectedvolumesource-v1-core","probe-v1-core","preferredschedulingterm-v1-core","preconditions-v1-meta","portworxvolumesource-v1-core","policyrule-v1-rbac","podsmetricstatus-v2beta1-autoscaling","podsmetricsource-v2beta1-autoscaling","podsecuritycontext-v1-core","poddnsconfigoption-v1-core","poddnsconfig-v1-core","podcondition-v1-core","podantiaffinity-v1-core","podaffinityterm-v1-core","podaffinity-v1-core","photonpersistentdiskvolumesource-v1-core","persistentvolumeclaimvolumesource-v1-core","persistentvolumeclaimcondition-v1-core","patch-v1-meta","ownerreference-v1-meta","objectreference-v1-core","objectmetricstatus-v2beta1-autoscaling","objectmetricsource-v2beta1-autoscaling","objectmeta-v1-meta","objectfieldselector-v1-core","nonresourcerule-v1-authorization","nonresourceattributes-v1-authorization","nodesysteminfo-v1-core","nodeselectorterm-v1-core","nodeselectorrequirement-v1-core","nodeselector-v1-core","nodedaemonendpoints-v1-core","nodeconfigsource-v1-core","nodecondition-v1-core","nodeaffinity-v1-core","nodeaddress-v1-core","networkpolicyport-v1-networking","networkpolicypeer-v1-networking","networkpolicyingressrule-v1-networking","networkpolicyegressrule-v1-networking","nfsvolumesource-v1-core","mutatingwebhookconfiguration-v1beta1-admissionregistration","microtime-v1-meta","metricstatus-v2beta1-autoscaling","metricspec-v2beta1-autoscaling","localvolumesource-v1-core","localobjectreference-v1-core","loadbalancerstatus-v1-core","loadbalanceringress-v1-core","listmeta-v1-meta","limitrangeitem-v1-core","lifecycle-v1-core","labelselectorrequirement-v1-meta","labelselector-v1-meta","keytopath-v1-core","jobtemplatespec-v1beta1-batch","jobcondition-v1-batch","jsonschemapropsorbool-v1beta1-apiextensions","jsonschemapropsorarray-v1beta1-apiextensions","jsonschemaprops-v1beta1-apiextensions","json-v1beta1-apiextensions","initializers-v1-meta","initializer-v1-meta","ingresstls-v1beta1-extensions","ingressrule-v1beta1-extensions","ingressbackend-v1beta1-extensions","iscsivolumesource-v1-core","iscsipersistentvolumesource-v1-core","ipblock-v1-networking","idrange-v1beta1-extensions","hostportrange-v1beta1-extensions","hostpathvolumesource-v1-core","hostalias-v1-core","horizontalpodautoscalercondition-v2beta1-autoscaling","handler-v1-core","httpingressrulevalue-v1beta1-extensions","httpingresspath-v1beta1-extensions","httpheader-v1-core","httpgetaction-v1-core","groupversionfordiscovery-v1-meta","glusterfsvolumesource-v1-core","gitrepovolumesource-v1-core","gcepersistentdiskvolumesource-v1-core","flockervolumesource-v1-core","flexvolumesource-v1-core","fsgroupstrategyoptions-v1beta1-extensions","fcvolumesource-v1-core","externaldocumentation-v1beta1-apiextensions","execaction-v1-core","eviction-v1beta1-policy","eventsource-v1-core","eventseries-v1-core","envvarsource-v1-core","envvar-v1-core","envfromsource-v1-core","endpointsubset-v1-core","endpointport-v1-core","endpointaddress-v1-core","emptydirvolumesource-v1-core","downwardapivolumesource-v1-core","downwardapivolumefile-v1-core","downwardapiprojection-v1-core","deploymentcondition-v1-apps","deployment-v1-apps","deleteoptions-v1-meta","daemonsetupdatestrategy-v1-apps","daemonsetcondition-v1-apps","daemonset-v1-apps","daemonendpoint-v1-core","customresourcevalidation-v1beta1-apiextensions","customresourcedefinitionnames-v1beta1-apiextensions","customresourcedefinitioncondition-v1beta1-apiextensions","crossversionobjectreference-v1-autoscaling","controllerrevision-v1-apps","containerstatewaiting-v1-core","containerstateterminated-v1-core","containerstaterunning-v1-core","containerstate-v1-core","containerport-v1-core","containerimage-v1-core","configmapvolumesource-v1-core","configmapprojection-v1-core","configmapkeyselector-v1-core","configmapenvsource-v1-core","componentcondition-v1-core","clientipconfig-v1-core","cindervolumesource-v1-core","certificatesigningrequestcondition-v1beta1-certificates","cephfsvolumesource-v1-core","cephfspersistentvolumesource-v1-core","capabilities-v1-core","csipersistentvolumesource-v1-core","azurefilevolumesource-v1-core","azurefilepersistentvolumesource-v1-core","azurediskvolumesource-v1-core","attachedvolume-v1-core","allowedhostpath-v1beta1-extensions","allowedflexvolume-v1beta1-extensions","aggregationrule-v1-rbac","affinity-v1-core","awselasticblockstorevolumesource-v1-core","apiversions-v1-meta","apiservicecondition-v1beta1-apiregistration","apiresource-v1-meta","apigroup-v1-meta","-strong-definitions-strong-","watch-list-all-namespaces-580","watch-list-579","watch-578","list-all-namespaces-577","list-576","read-575","-strong-read-operations-strong--574","delete-collection-573","delete-572","replace-571","patch-570","create-569","-strong-write-operations-strong--568","networkpolicy-v1-networking","create-567","-strong-write-operations-strong--566","tokenreview-v1-authentication","create-565","-strong-write-operations-strong--564","subjectaccessreview-v1-authorization","watch-list-all-namespaces-563","watch-list-562","watch-561","list-all-namespaces-560","list-559","read-558","-strong-read-operations-strong--557","delete-collection-556","delete-555","replace-554","patch-553","create-552","-strong-write-operations-strong--551","serviceaccount-v1-core","create-550","-strong-write-operations-strong--549","selfsubjectrulesreview-v1-authorization","create-548","-strong-write-operations-strong--547","selfsubjectaccessreview-v1-authorization","watch-list-all-namespaces-546","watch-list-545","watch-544","list-all-namespaces-543","list-542","read-541","-strong-read-operations-strong--540","delete-collection-539","delete-538","replace-537","patch-536","create-535","-strong-write-operations-strong--534","rolebinding-v1-rbac","watch-list-all-namespaces-533","watch-list-532","watch-531","list-all-namespaces-530","list-529","read-528","-strong-read-operations-strong--527","delete-collection-526","delete-525","replace-524","patch-523","create-522","-strong-write-operations-strong--521","role-v1-rbac","replace-status-520","read-status-519","patch-status-518","-strong-status-operations-strong--517","watch-list-all-namespaces-516","watch-list-515","watch-514","list-all-namespaces-513","list-512","read-511","-strong-read-operations-strong--510","delete-collection-509","delete-508","replace-507","patch-506","create-505","-strong-write-operations-strong--504","resourcequota-v1-core","replace-status-503","read-status-502","patch-status-501","-strong-status-operations-strong--500","watch-list-499","watch-498","list-497","read-496","-strong-read-operations-strong--495","delete-collection-494","delete-493","replace-492","patch-491","create-490","-strong-write-operations-strong--489","persistentvolume-v1-core","replace-proxy-path-488","replace-proxy-487","replace-connect-proxy-path-486","replace-connect-proxy-485","head-connect-proxy-path-484","head-connect-proxy-483","get-proxy-path-482","get-proxy-481","get-connect-proxy-path-480","get-connect-proxy-479","delete-proxy-path-478","delete-proxy-477","delete-connect-proxy-path-476","delete-connect-proxy-475","create-proxy-path-474","create-proxy-473","create-connect-proxy-path-472","create-connect-proxy-471","-strong-proxy-operations-strong--470","replace-status-469","read-status-468","patch-status-467","-strong-status-operations-strong--466","watch-list-465","watch-464","list-463","read-462","-strong-read-operations-strong--461","delete-collection-460","delete-459","replace-458","patch-457","create-456","-strong-write-operations-strong--455","node-v1-core","replace-status-454","read-status-453","patch-status-452","-strong-status-operations-strong--451","watch-list-450","watch-449","list-448","read-447","-strong-read-operations-strong--446","delete-445","replace-444","patch-443","create-442","-strong-write-operations-strong--441","namespace-v1-core","create-440","-strong-write-operations-strong--439","localsubjectaccessreview-v1-authorization","list-438","read-437","-strong-read-operations-strong--436","componentstatus-v1-core","watch-list-435","watch-434","list-433","read-432","-strong-read-operations-strong--431","delete-collection-430","delete-429","replace-428","patch-427","create-426","-strong-write-operations-strong--425","clusterrolebinding-v1-rbac","watch-list-424","watch-423","list-422","read-421","-strong-read-operations-strong--420","delete-collection-419","delete-418","replace-417","patch-416","create-415","-strong-write-operations-strong--414","clusterrole-v1-rbac","replace-status-413","-strong-status-operations-strong--412","watch-list-411","watch-410","list-409","read-408","-strong-read-operations-strong--407","delete-collection-406","delete-405","replace-404","patch-403","create-402","-strong-write-operations-strong--401","certificatesigningrequest-v1beta1-certificates","create-400","-strong-write-operations-strong--399","binding-v1-core","replace-status-398","-strong-status-operations-strong--397","watch-list-396","watch-395","list-394","read-393","-strong-read-operations-strong--392","delete-collection-391","delete-390","replace-389","patch-388","create-387","-strong-write-operations-strong--386","apiservice-v1beta1-apiregistration","-strong-cluster-strong-","watch-list-385","watch-384","list-383","read-382","-strong-read-operations-strong--381","delete-collection-380","delete-379","replace-378","patch-377","create-376","-strong-write-operations-strong--375","podsecuritypolicy-v1beta1-extensions","watch-list-all-namespaces-374","watch-list-373","watch-372","list-all-namespaces-371","list-370","read-369","-strong-read-operations-strong--368","delete-collection-367","delete-366","replace-365","patch-364","create-363","-strong-write-operations-strong--362","podpreset-v1alpha1-settings","watch-list-361","watch-360","list-359","read-358","-strong-read-operations-strong--357","delete-collection-356","delete-355","replace-354","patch-353","create-352","-strong-write-operations-strong--351","priorityclass-v1alpha1-scheduling","replace-status-350","read-status-349","patch-status-348","-strong-status-operations-strong--347","watch-list-all-namespaces-346","watch-list-345","watch-344","list-all-namespaces-343","list-342","read-341","-strong-read-operations-strong--340","delete-collection-339","delete-338","replace-337","patch-336","create-335","-strong-write-operations-strong--334","poddisruptionbudget-v1beta1-policy","watch-list-all-namespaces-333","watch-list-332","watch-331","list-all-namespaces-330","list-329","read-328","-strong-read-operations-strong--327","delete-collection-326","delete-325","replace-324","patch-323","create-322","-strong-write-operations-strong--321","podtemplate-v1-core","watch-list-320","watch-319","list-318","read-317","-strong-read-operations-strong--316","delete-collection-315","delete-314","replace-313","patch-312","create-311","-strong-write-operations-strong--310","initializerconfiguration-v1alpha1-admissionregistration","replace-status-309","read-status-308","patch-status-307","-strong-status-operations-strong--306","watch-list-all-namespaces-305","watch-list-304","watch-303","list-all-namespaces-302","list-301","read-300","-strong-read-operations-strong--299","delete-collection-298","delete-297","replace-296","patch-295","create-294","-strong-write-operations-strong--293","horizontalpodautoscaler-v1-autoscaling","watch-list-all-namespaces-292","watch-list-291","watch-290","list-all-namespaces-289","list-288","read-287","-strong-read-operations-strong--286","delete-collection-285","delete-284","replace-283","patch-282","create-281","-strong-write-operations-strong--280","limitrange-v1-core","watch-list-all-namespaces-279","watch-list-278","watch-277","list-all-namespaces-276","list-275","read-274","-strong-read-operations-strong--273","delete-collection-272","delete-271","replace-270","patch-269","create-268","-strong-write-operations-strong--267","event-v1-core","replace-status-266","-strong-status-operations-strong--265","watch-list-264","watch-263","list-262","read-261","-strong-read-operations-strong--260","delete-collection-259","delete-258","replace-257","patch-256","create-255","-strong-write-operations-strong--254","customresourcedefinition-v1beta1-apiextensions","watch-list-all-namespaces-253","watch-list-252","watch-251","list-all-namespaces-250","list-249","read-248","-strong-read-operations-strong--247","delete-collection-246","delete-245","replace-244","patch-243","create-242","-strong-write-operations-strong--241","controllerrevision-v1beta2-apps","-strong-metadata-strong-","volume-v1-core","watch-list-240","watch-239","list-238","read-237","-strong-read-operations-strong--236","delete-collection-235","delete-234","replace-233","patch-232","create-231","-strong-write-operations-strong--230","storageclass-v1-storage","replace-status-229","read-status-228","patch-status-227","-strong-status-operations-strong--226","watch-list-all-namespaces-225","watch-list-224","watch-223","list-all-namespaces-222","list-221","read-220","-strong-read-operations-strong--219","delete-collection-218","delete-217","replace-216","patch-215","create-214","-strong-write-operations-strong--213","persistentvolumeclaim-v1-core","watch-list-all-namespaces-212","watch-list-211","watch-210","list-all-namespaces-209","list-208","read-207","-strong-read-operations-strong--206","delete-collection-205","delete-204","replace-203","patch-202","create-201","-strong-write-operations-strong--200","secret-v1-core","watch-list-all-namespaces-199","watch-list-198","watch-197","list-all-namespaces-196","list-195","read-194","-strong-read-operations-strong--193","delete-collection-192","delete-191","replace-190","patch-189","create-188","-strong-write-operations-strong--187","configmap-v1-core","-strong-config-storage-strong-","replace-proxy-path-186","replace-proxy-185","replace-connect-proxy-path-184","replace-connect-proxy-183","head-connect-proxy-path-182","head-connect-proxy-181","get-proxy-path-180","get-proxy-179","get-connect-proxy-path-178","get-connect-proxy-177","delete-proxy-path-176","delete-proxy-175","delete-connect-proxy-path-174","delete-connect-proxy-173","create-proxy-path-172","create-proxy-171","create-connect-proxy-path-170","create-connect-proxy-169","-strong-proxy-operations-strong--168","replace-status-167","read-status-166","patch-status-165","-strong-status-operations-strong--164","watch-list-all-namespaces-163","watch-list-162","watch-161","list-all-namespaces-160","list-159","read-158","-strong-read-operations-strong--157","delete-156","replace-155","patch-154","create-153","-strong-write-operations-strong--152","service-v1-core","replace-status-151","read-status-150","patch-status-149","-strong-status-operations-strong--148","watch-list-all-namespaces-147","watch-list-146","watch-145","list-all-namespaces-144","list-143","read-142","-strong-read-operations-strong--141","delete-collection-140","delete-139","replace-138","patch-137","create-136","-strong-write-operations-strong--135","ingress-v1beta1-extensions","watch-list-all-namespaces-134","watch-list-133","watch-132","list-all-namespaces-131","list-130","read-129","-strong-read-operations-strong--128","delete-collection-127","delete-126","replace-125","patch-124","create-123","-strong-write-operations-strong--122","endpoints-v1-core","-strong-discovery-load-balancing-strong-","replace-status-121","read-status-120","patch-status-119","-strong-status-operations-strong--118","watch-list-all-namespaces-117","watch-list-116","watch-115","list-all-namespaces-114","list-113","read-112","-strong-read-operations-strong--111","delete-collection-110","delete-109","replace-108","patch-107","create-106","-strong-write-operations-strong--105","statefulset-v1beta2-apps","replace-status-104","read-status-103","patch-status-102","-strong-status-operations-strong--101","watch-list-all-namespaces-100","watch-list-99","watch-98","list-all-namespaces-97","list-96","read-95","-strong-read-operations-strong--94","delete-collection-93","delete-92","replace-91","patch-90","create-89","-strong-write-operations-strong--88","replicationcontroller-v1-core","replace-status-87","read-status-86","patch-status-85","-strong-status-operations-strong--84","watch-list-all-namespaces-83","watch-list-82","watch-81","list-all-namespaces-80","list-79","read-78","-strong-read-operations-strong--77","delete-collection-76","delete-75","replace-74","patch-73","create-72","-strong-write-operations-strong--71","replicaset-v1beta2-apps","read-log","-strong-misc-operations-strong-","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","replace-57","patch-56","create-55","-strong-write-operations-strong--54","pod-v1-core","replace-status-53","read-status-52","patch-status-51","-strong-status-operations-strong--50","watch-list-all-namespaces-49","watch-list-48","watch-47","list-all-namespaces-46","list-45","read-44","-strong-read-operations-strong--43","delete-collection-42","delete-41","replace-40","patch-39","create-38","-strong-write-operations-strong--37","job-v1-batch","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","replace-23","patch-22","create-21","-strong-write-operations-strong--20","deployment-v1beta2-apps","replace-status-19","read-status-18","patch-status-17","-strong-status-operations-strong--16","watch-list-all-namespaces-15","watch-list-14","watch-13","list-all-namespaces-12","list-11","read-10","-strong-read-operations-strong--9","delete-collection-8","delete-7","replace-6","patch-5","create-4","-strong-write-operations-strong--3","daemonset-v1beta2-apps","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","replace","patch","create","-strong-write-operations-strong-","cronjob-v1beta1-batch","container-v1-core","-strong-workloads-strong-","resource-operations","resource-objects","resource-categories","-strong-api-overview-strong-"]};})(); \ No newline at end of file diff --git a/docs/api-reference/v1.9/node_modules/bootstrap/dist/css/bootstrap.min.css b/docs/api-reference/v1.9/node_modules/bootstrap/dist/css/bootstrap.min.css deleted file mode 100644 index ed3905e0e0..0000000000 --- a/docs/api-reference/v1.9/node_modules/bootstrap/dist/css/bootstrap.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.css b/docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.css deleted file mode 100644 index ee906a8196..0000000000 --- a/docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.css +++ /dev/null @@ -1,2337 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ -/* FONT PATH - * -------------------------- */ -@font-face { - font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); - font-weight: normal; - font-style: normal; -} -.fa { - display: inline-block; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -/* makes the font 33% larger relative to the icon container */ -.fa-lg { - font-size: 1.33333333em; - line-height: 0.75em; - vertical-align: -15%; -} -.fa-2x { - font-size: 2em; -} -.fa-3x { - font-size: 3em; -} -.fa-4x { - font-size: 4em; -} -.fa-5x { - font-size: 5em; -} -.fa-fw { - width: 1.28571429em; - text-align: center; -} -.fa-ul { - padding-left: 0; - margin-left: 2.14285714em; - list-style-type: none; -} -.fa-ul > li { - position: relative; -} -.fa-li { - position: absolute; - left: -2.14285714em; - width: 2.14285714em; - top: 0.14285714em; - text-align: center; -} -.fa-li.fa-lg { - left: -1.85714286em; -} -.fa-border { - padding: .2em .25em .15em; - border: solid 0.08em #eeeeee; - border-radius: .1em; -} -.fa-pull-left { - float: left; -} -.fa-pull-right { - float: right; -} -.fa.fa-pull-left { - margin-right: .3em; -} -.fa.fa-pull-right { - margin-left: .3em; -} -/* Deprecated as of 4.4.0 */ -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.fa.pull-left { - margin-right: .3em; -} -.fa.pull-right { - margin-left: .3em; -} -.fa-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} -.fa-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -.fa-rotate-90 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} -.fa-rotate-180 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} -.fa-rotate-270 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); -} -.fa-flip-horizontal { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.fa-flip-vertical { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(1, -1); - -ms-transform: scale(1, -1); - transform: scale(1, -1); -} -:root .fa-rotate-90, -:root .fa-rotate-180, -:root .fa-rotate-270, -:root .fa-flip-horizontal, -:root .fa-flip-vertical { - filter: none; -} -.fa-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.fa-stack-1x, -.fa-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.fa-stack-1x { - line-height: inherit; -} -.fa-stack-2x { - font-size: 2em; -} -.fa-inverse { - color: #ffffff; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.fa-glass:before { - content: "\f000"; -} -.fa-music:before { - content: "\f001"; -} -.fa-search:before { - content: "\f002"; -} -.fa-envelope-o:before { - content: "\f003"; -} -.fa-heart:before { - content: "\f004"; -} -.fa-star:before { - content: "\f005"; -} -.fa-star-o:before { - content: "\f006"; -} -.fa-user:before { - content: "\f007"; -} -.fa-film:before { - content: "\f008"; -} -.fa-th-large:before { - content: "\f009"; -} -.fa-th:before { - content: "\f00a"; -} -.fa-th-list:before { - content: "\f00b"; -} -.fa-check:before { - content: "\f00c"; -} -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: "\f00d"; -} -.fa-search-plus:before { - content: "\f00e"; -} -.fa-search-minus:before { - content: "\f010"; -} -.fa-power-off:before { - content: "\f011"; -} -.fa-signal:before { - content: "\f012"; -} -.fa-gear:before, -.fa-cog:before { - content: "\f013"; -} -.fa-trash-o:before { - content: "\f014"; -} -.fa-home:before { - content: "\f015"; -} -.fa-file-o:before { - content: "\f016"; -} -.fa-clock-o:before { - content: "\f017"; -} -.fa-road:before { - content: "\f018"; -} -.fa-download:before { - content: "\f019"; -} -.fa-arrow-circle-o-down:before { - content: "\f01a"; -} -.fa-arrow-circle-o-up:before { - content: "\f01b"; -} -.fa-inbox:before { - content: "\f01c"; -} -.fa-play-circle-o:before { - content: "\f01d"; -} -.fa-rotate-right:before, -.fa-repeat:before { - content: "\f01e"; -} -.fa-refresh:before { - content: "\f021"; -} -.fa-list-alt:before { - content: "\f022"; -} -.fa-lock:before { - content: "\f023"; -} -.fa-flag:before { - content: "\f024"; -} -.fa-headphones:before { - content: "\f025"; -} -.fa-volume-off:before { - content: "\f026"; -} -.fa-volume-down:before { - content: "\f027"; -} -.fa-volume-up:before { - content: "\f028"; -} -.fa-qrcode:before { - content: "\f029"; -} -.fa-barcode:before { - content: "\f02a"; -} -.fa-tag:before { - content: "\f02b"; -} -.fa-tags:before { - content: "\f02c"; -} -.fa-book:before { - content: "\f02d"; -} -.fa-bookmark:before { - content: "\f02e"; -} -.fa-print:before { - content: "\f02f"; -} -.fa-camera:before { - content: "\f030"; -} -.fa-font:before { - content: "\f031"; -} -.fa-bold:before { - content: "\f032"; -} -.fa-italic:before { - content: "\f033"; -} -.fa-text-height:before { - content: "\f034"; -} -.fa-text-width:before { - content: "\f035"; -} -.fa-align-left:before { - content: "\f036"; -} -.fa-align-center:before { - content: "\f037"; -} -.fa-align-right:before { - content: "\f038"; -} -.fa-align-justify:before { - content: "\f039"; -} -.fa-list:before { - content: "\f03a"; -} -.fa-dedent:before, -.fa-outdent:before { - content: "\f03b"; -} -.fa-indent:before { - content: "\f03c"; -} -.fa-video-camera:before { - content: "\f03d"; -} -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: "\f03e"; -} -.fa-pencil:before { - content: "\f040"; -} -.fa-map-marker:before { - content: "\f041"; -} -.fa-adjust:before { - content: "\f042"; -} -.fa-tint:before { - content: "\f043"; -} -.fa-edit:before, -.fa-pencil-square-o:before { - content: "\f044"; -} -.fa-share-square-o:before { - content: "\f045"; -} -.fa-check-square-o:before { - content: "\f046"; -} -.fa-arrows:before { - content: "\f047"; -} -.fa-step-backward:before { - content: "\f048"; -} -.fa-fast-backward:before { - content: "\f049"; -} -.fa-backward:before { - content: "\f04a"; -} -.fa-play:before { - content: "\f04b"; -} -.fa-pause:before { - content: "\f04c"; -} -.fa-stop:before { - content: "\f04d"; -} -.fa-forward:before { - content: "\f04e"; -} -.fa-fast-forward:before { - content: "\f050"; -} -.fa-step-forward:before { - content: "\f051"; -} -.fa-eject:before { - content: "\f052"; -} -.fa-chevron-left:before { - content: "\f053"; -} -.fa-chevron-right:before { - content: "\f054"; -} -.fa-plus-circle:before { - content: "\f055"; -} -.fa-minus-circle:before { - content: "\f056"; -} -.fa-times-circle:before { - content: "\f057"; -} -.fa-check-circle:before { - content: "\f058"; -} -.fa-question-circle:before { - content: "\f059"; -} -.fa-info-circle:before { - content: "\f05a"; -} -.fa-crosshairs:before { - content: "\f05b"; -} -.fa-times-circle-o:before { - content: "\f05c"; -} -.fa-check-circle-o:before { - content: "\f05d"; -} -.fa-ban:before { - content: "\f05e"; -} -.fa-arrow-left:before { - content: "\f060"; -} -.fa-arrow-right:before { - content: "\f061"; -} -.fa-arrow-up:before { - content: "\f062"; -} -.fa-arrow-down:before { - content: "\f063"; -} -.fa-mail-forward:before, -.fa-share:before { - content: "\f064"; -} -.fa-expand:before { - content: "\f065"; -} -.fa-compress:before { - content: "\f066"; -} -.fa-plus:before { - content: "\f067"; -} -.fa-minus:before { - content: "\f068"; -} -.fa-asterisk:before { - content: "\f069"; -} -.fa-exclamation-circle:before { - content: "\f06a"; -} -.fa-gift:before { - content: "\f06b"; -} -.fa-leaf:before { - content: "\f06c"; -} -.fa-fire:before { - content: "\f06d"; -} -.fa-eye:before { - content: "\f06e"; -} -.fa-eye-slash:before { - content: "\f070"; -} -.fa-warning:before, -.fa-exclamation-triangle:before { - content: "\f071"; -} -.fa-plane:before { - content: "\f072"; -} -.fa-calendar:before { - content: "\f073"; -} -.fa-random:before { - content: "\f074"; -} -.fa-comment:before { - content: "\f075"; -} -.fa-magnet:before { - content: "\f076"; -} -.fa-chevron-up:before { - content: "\f077"; -} -.fa-chevron-down:before { - content: "\f078"; -} -.fa-retweet:before { - content: "\f079"; -} -.fa-shopping-cart:before { - content: "\f07a"; -} -.fa-folder:before { - content: "\f07b"; -} -.fa-folder-open:before { - content: "\f07c"; -} -.fa-arrows-v:before { - content: "\f07d"; -} -.fa-arrows-h:before { - content: "\f07e"; -} -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: "\f080"; -} -.fa-twitter-square:before { - content: "\f081"; -} -.fa-facebook-square:before { - content: "\f082"; -} -.fa-camera-retro:before { - content: "\f083"; -} -.fa-key:before { - content: "\f084"; -} -.fa-gears:before, -.fa-cogs:before { - content: "\f085"; -} -.fa-comments:before { - content: "\f086"; -} -.fa-thumbs-o-up:before { - content: "\f087"; -} -.fa-thumbs-o-down:before { - content: "\f088"; -} -.fa-star-half:before { - content: "\f089"; -} -.fa-heart-o:before { - content: "\f08a"; -} -.fa-sign-out:before { - content: "\f08b"; -} -.fa-linkedin-square:before { - content: "\f08c"; -} -.fa-thumb-tack:before { - content: "\f08d"; -} -.fa-external-link:before { - content: "\f08e"; -} -.fa-sign-in:before { - content: "\f090"; -} -.fa-trophy:before { - content: "\f091"; -} -.fa-github-square:before { - content: "\f092"; -} -.fa-upload:before { - content: "\f093"; -} -.fa-lemon-o:before { - content: "\f094"; -} -.fa-phone:before { - content: "\f095"; -} -.fa-square-o:before { - content: "\f096"; -} -.fa-bookmark-o:before { - content: "\f097"; -} -.fa-phone-square:before { - content: "\f098"; -} -.fa-twitter:before { - content: "\f099"; -} -.fa-facebook-f:before, -.fa-facebook:before { - content: "\f09a"; -} -.fa-github:before { - content: "\f09b"; -} -.fa-unlock:before { - content: "\f09c"; -} -.fa-credit-card:before { - content: "\f09d"; -} -.fa-feed:before, -.fa-rss:before { - content: "\f09e"; -} -.fa-hdd-o:before { - content: "\f0a0"; -} -.fa-bullhorn:before { - content: "\f0a1"; -} -.fa-bell:before { - content: "\f0f3"; -} -.fa-certificate:before { - content: "\f0a3"; -} -.fa-hand-o-right:before { - content: "\f0a4"; -} -.fa-hand-o-left:before { - content: "\f0a5"; -} -.fa-hand-o-up:before { - content: "\f0a6"; -} -.fa-hand-o-down:before { - content: "\f0a7"; -} -.fa-arrow-circle-left:before { - content: "\f0a8"; -} -.fa-arrow-circle-right:before { - content: "\f0a9"; -} -.fa-arrow-circle-up:before { - content: "\f0aa"; -} -.fa-arrow-circle-down:before { - content: "\f0ab"; -} -.fa-globe:before { - content: "\f0ac"; -} -.fa-wrench:before { - content: "\f0ad"; -} -.fa-tasks:before { - content: "\f0ae"; -} -.fa-filter:before { - content: "\f0b0"; -} -.fa-briefcase:before { - content: "\f0b1"; -} -.fa-arrows-alt:before { - content: "\f0b2"; -} -.fa-group:before, -.fa-users:before { - content: "\f0c0"; -} -.fa-chain:before, -.fa-link:before { - content: "\f0c1"; -} -.fa-cloud:before { - content: "\f0c2"; -} -.fa-flask:before { - content: "\f0c3"; -} -.fa-cut:before, -.fa-scissors:before { - content: "\f0c4"; -} -.fa-copy:before, -.fa-files-o:before { - content: "\f0c5"; -} -.fa-paperclip:before { - content: "\f0c6"; -} -.fa-save:before, -.fa-floppy-o:before { - content: "\f0c7"; -} -.fa-square:before { - content: "\f0c8"; -} -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: "\f0c9"; -} -.fa-list-ul:before { - content: "\f0ca"; -} -.fa-list-ol:before { - content: "\f0cb"; -} -.fa-strikethrough:before { - content: "\f0cc"; -} -.fa-underline:before { - content: "\f0cd"; -} -.fa-table:before { - content: "\f0ce"; -} -.fa-magic:before { - content: "\f0d0"; -} -.fa-truck:before { - content: "\f0d1"; -} -.fa-pinterest:before { - content: "\f0d2"; -} -.fa-pinterest-square:before { - content: "\f0d3"; -} -.fa-google-plus-square:before { - content: "\f0d4"; -} -.fa-google-plus:before { - content: "\f0d5"; -} -.fa-money:before { - content: "\f0d6"; -} -.fa-caret-down:before { - content: "\f0d7"; -} -.fa-caret-up:before { - content: "\f0d8"; -} -.fa-caret-left:before { - content: "\f0d9"; -} -.fa-caret-right:before { - content: "\f0da"; -} -.fa-columns:before { - content: "\f0db"; -} -.fa-unsorted:before, -.fa-sort:before { - content: "\f0dc"; -} -.fa-sort-down:before, -.fa-sort-desc:before { - content: "\f0dd"; -} -.fa-sort-up:before, -.fa-sort-asc:before { - content: "\f0de"; -} -.fa-envelope:before { - content: "\f0e0"; -} -.fa-linkedin:before { - content: "\f0e1"; -} -.fa-rotate-left:before, -.fa-undo:before { - content: "\f0e2"; -} -.fa-legal:before, -.fa-gavel:before { - content: "\f0e3"; -} -.fa-dashboard:before, -.fa-tachometer:before { - content: "\f0e4"; -} -.fa-comment-o:before { - content: "\f0e5"; -} -.fa-comments-o:before { - content: "\f0e6"; -} -.fa-flash:before, -.fa-bolt:before { - content: "\f0e7"; -} -.fa-sitemap:before { - content: "\f0e8"; -} -.fa-umbrella:before { - content: "\f0e9"; -} -.fa-paste:before, -.fa-clipboard:before { - content: "\f0ea"; -} -.fa-lightbulb-o:before { - content: "\f0eb"; -} -.fa-exchange:before { - content: "\f0ec"; -} -.fa-cloud-download:before { - content: "\f0ed"; -} -.fa-cloud-upload:before { - content: "\f0ee"; -} -.fa-user-md:before { - content: "\f0f0"; -} -.fa-stethoscope:before { - content: "\f0f1"; -} -.fa-suitcase:before { - content: "\f0f2"; -} -.fa-bell-o:before { - content: "\f0a2"; -} -.fa-coffee:before { - content: "\f0f4"; -} -.fa-cutlery:before { - content: "\f0f5"; -} -.fa-file-text-o:before { - content: "\f0f6"; -} -.fa-building-o:before { - content: "\f0f7"; -} -.fa-hospital-o:before { - content: "\f0f8"; -} -.fa-ambulance:before { - content: "\f0f9"; -} -.fa-medkit:before { - content: "\f0fa"; -} -.fa-fighter-jet:before { - content: "\f0fb"; -} -.fa-beer:before { - content: "\f0fc"; -} -.fa-h-square:before { - content: "\f0fd"; -} -.fa-plus-square:before { - content: "\f0fe"; -} -.fa-angle-double-left:before { - content: "\f100"; -} -.fa-angle-double-right:before { - content: "\f101"; -} -.fa-angle-double-up:before { - content: "\f102"; -} -.fa-angle-double-down:before { - content: "\f103"; -} -.fa-angle-left:before { - content: "\f104"; -} -.fa-angle-right:before { - content: "\f105"; -} -.fa-angle-up:before { - content: "\f106"; -} -.fa-angle-down:before { - content: "\f107"; -} -.fa-desktop:before { - content: "\f108"; -} -.fa-laptop:before { - content: "\f109"; -} -.fa-tablet:before { - content: "\f10a"; -} -.fa-mobile-phone:before, -.fa-mobile:before { - content: "\f10b"; -} -.fa-circle-o:before { - content: "\f10c"; -} -.fa-quote-left:before { - content: "\f10d"; -} -.fa-quote-right:before { - content: "\f10e"; -} -.fa-spinner:before { - content: "\f110"; -} -.fa-circle:before { - content: "\f111"; -} -.fa-mail-reply:before, -.fa-reply:before { - content: "\f112"; -} -.fa-github-alt:before { - content: "\f113"; -} -.fa-folder-o:before { - content: "\f114"; -} -.fa-folder-open-o:before { - content: "\f115"; -} -.fa-smile-o:before { - content: "\f118"; -} -.fa-frown-o:before { - content: "\f119"; -} -.fa-meh-o:before { - content: "\f11a"; -} -.fa-gamepad:before { - content: "\f11b"; -} -.fa-keyboard-o:before { - content: "\f11c"; -} -.fa-flag-o:before { - content: "\f11d"; -} -.fa-flag-checkered:before { - content: "\f11e"; -} -.fa-terminal:before { - content: "\f120"; -} -.fa-code:before { - content: "\f121"; -} -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: "\f122"; -} -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: "\f123"; -} -.fa-location-arrow:before { - content: "\f124"; -} -.fa-crop:before { - content: "\f125"; -} -.fa-code-fork:before { - content: "\f126"; -} -.fa-unlink:before, -.fa-chain-broken:before { - content: "\f127"; -} -.fa-question:before { - content: "\f128"; -} -.fa-info:before { - content: "\f129"; -} -.fa-exclamation:before { - content: "\f12a"; -} -.fa-superscript:before { - content: "\f12b"; -} -.fa-subscript:before { - content: "\f12c"; -} -.fa-eraser:before { - content: "\f12d"; -} -.fa-puzzle-piece:before { - content: "\f12e"; -} -.fa-microphone:before { - content: "\f130"; -} -.fa-microphone-slash:before { - content: "\f131"; -} -.fa-shield:before { - content: "\f132"; -} -.fa-calendar-o:before { - content: "\f133"; -} -.fa-fire-extinguisher:before { - content: "\f134"; -} -.fa-rocket:before { - content: "\f135"; -} -.fa-maxcdn:before { - content: "\f136"; -} -.fa-chevron-circle-left:before { - content: "\f137"; -} -.fa-chevron-circle-right:before { - content: "\f138"; -} -.fa-chevron-circle-up:before { - content: "\f139"; -} -.fa-chevron-circle-down:before { - content: "\f13a"; -} -.fa-html5:before { - content: "\f13b"; -} -.fa-css3:before { - content: "\f13c"; -} -.fa-anchor:before { - content: "\f13d"; -} -.fa-unlock-alt:before { - content: "\f13e"; -} -.fa-bullseye:before { - content: "\f140"; -} -.fa-ellipsis-h:before { - content: "\f141"; -} -.fa-ellipsis-v:before { - content: "\f142"; -} -.fa-rss-square:before { - content: "\f143"; -} -.fa-play-circle:before { - content: "\f144"; -} -.fa-ticket:before { - content: "\f145"; -} -.fa-minus-square:before { - content: "\f146"; -} -.fa-minus-square-o:before { - content: "\f147"; -} -.fa-level-up:before { - content: "\f148"; -} -.fa-level-down:before { - content: "\f149"; -} -.fa-check-square:before { - content: "\f14a"; -} -.fa-pencil-square:before { - content: "\f14b"; -} -.fa-external-link-square:before { - content: "\f14c"; -} -.fa-share-square:before { - content: "\f14d"; -} -.fa-compass:before { - content: "\f14e"; -} -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: "\f150"; -} -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: "\f151"; -} -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: "\f152"; -} -.fa-euro:before, -.fa-eur:before { - content: "\f153"; -} -.fa-gbp:before { - content: "\f154"; -} -.fa-dollar:before, -.fa-usd:before { - content: "\f155"; -} -.fa-rupee:before, -.fa-inr:before { - content: "\f156"; -} -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: "\f157"; -} -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: "\f158"; -} -.fa-won:before, -.fa-krw:before { - content: "\f159"; -} -.fa-bitcoin:before, -.fa-btc:before { - content: "\f15a"; -} -.fa-file:before { - content: "\f15b"; -} -.fa-file-text:before { - content: "\f15c"; -} -.fa-sort-alpha-asc:before { - content: "\f15d"; -} -.fa-sort-alpha-desc:before { - content: "\f15e"; -} -.fa-sort-amount-asc:before { - content: "\f160"; -} -.fa-sort-amount-desc:before { - content: "\f161"; -} -.fa-sort-numeric-asc:before { - content: "\f162"; -} -.fa-sort-numeric-desc:before { - content: "\f163"; -} -.fa-thumbs-up:before { - content: "\f164"; -} -.fa-thumbs-down:before { - content: "\f165"; -} -.fa-youtube-square:before { - content: "\f166"; -} -.fa-youtube:before { - content: "\f167"; -} -.fa-xing:before { - content: "\f168"; -} -.fa-xing-square:before { - content: "\f169"; -} -.fa-youtube-play:before { - content: "\f16a"; -} -.fa-dropbox:before { - content: "\f16b"; -} -.fa-stack-overflow:before { - content: "\f16c"; -} -.fa-instagram:before { - content: "\f16d"; -} -.fa-flickr:before { - content: "\f16e"; -} -.fa-adn:before { - content: "\f170"; -} -.fa-bitbucket:before { - content: "\f171"; -} -.fa-bitbucket-square:before { - content: "\f172"; -} -.fa-tumblr:before { - content: "\f173"; -} -.fa-tumblr-square:before { - content: "\f174"; -} -.fa-long-arrow-down:before { - content: "\f175"; -} -.fa-long-arrow-up:before { - content: "\f176"; -} -.fa-long-arrow-left:before { - content: "\f177"; -} -.fa-long-arrow-right:before { - content: "\f178"; -} -.fa-apple:before { - content: "\f179"; -} -.fa-windows:before { - content: "\f17a"; -} -.fa-android:before { - content: "\f17b"; -} -.fa-linux:before { - content: "\f17c"; -} -.fa-dribbble:before { - content: "\f17d"; -} -.fa-skype:before { - content: "\f17e"; -} -.fa-foursquare:before { - content: "\f180"; -} -.fa-trello:before { - content: "\f181"; -} -.fa-female:before { - content: "\f182"; -} -.fa-male:before { - content: "\f183"; -} -.fa-gittip:before, -.fa-gratipay:before { - content: "\f184"; -} -.fa-sun-o:before { - content: "\f185"; -} -.fa-moon-o:before { - content: "\f186"; -} -.fa-archive:before { - content: "\f187"; -} -.fa-bug:before { - content: "\f188"; -} -.fa-vk:before { - content: "\f189"; -} -.fa-weibo:before { - content: "\f18a"; -} -.fa-renren:before { - content: "\f18b"; -} -.fa-pagelines:before { - content: "\f18c"; -} -.fa-stack-exchange:before { - content: "\f18d"; -} -.fa-arrow-circle-o-right:before { - content: "\f18e"; -} -.fa-arrow-circle-o-left:before { - content: "\f190"; -} -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: "\f191"; -} -.fa-dot-circle-o:before { - content: "\f192"; -} -.fa-wheelchair:before { - content: "\f193"; -} -.fa-vimeo-square:before { - content: "\f194"; -} -.fa-turkish-lira:before, -.fa-try:before { - content: "\f195"; -} -.fa-plus-square-o:before { - content: "\f196"; -} -.fa-space-shuttle:before { - content: "\f197"; -} -.fa-slack:before { - content: "\f198"; -} -.fa-envelope-square:before { - content: "\f199"; -} -.fa-wordpress:before { - content: "\f19a"; -} -.fa-openid:before { - content: "\f19b"; -} -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: "\f19c"; -} -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: "\f19d"; -} -.fa-yahoo:before { - content: "\f19e"; -} -.fa-google:before { - content: "\f1a0"; -} -.fa-reddit:before { - content: "\f1a1"; -} -.fa-reddit-square:before { - content: "\f1a2"; -} -.fa-stumbleupon-circle:before { - content: "\f1a3"; -} -.fa-stumbleupon:before { - content: "\f1a4"; -} -.fa-delicious:before { - content: "\f1a5"; -} -.fa-digg:before { - content: "\f1a6"; -} -.fa-pied-piper-pp:before { - content: "\f1a7"; -} -.fa-pied-piper-alt:before { - content: "\f1a8"; -} -.fa-drupal:before { - content: "\f1a9"; -} -.fa-joomla:before { - content: "\f1aa"; -} -.fa-language:before { - content: "\f1ab"; -} -.fa-fax:before { - content: "\f1ac"; -} -.fa-building:before { - content: "\f1ad"; -} -.fa-child:before { - content: "\f1ae"; -} -.fa-paw:before { - content: "\f1b0"; -} -.fa-spoon:before { - content: "\f1b1"; -} -.fa-cube:before { - content: "\f1b2"; -} -.fa-cubes:before { - content: "\f1b3"; -} -.fa-behance:before { - content: "\f1b4"; -} -.fa-behance-square:before { - content: "\f1b5"; -} -.fa-steam:before { - content: "\f1b6"; -} -.fa-steam-square:before { - content: "\f1b7"; -} -.fa-recycle:before { - content: "\f1b8"; -} -.fa-automobile:before, -.fa-car:before { - content: "\f1b9"; -} -.fa-cab:before, -.fa-taxi:before { - content: "\f1ba"; -} -.fa-tree:before { - content: "\f1bb"; -} -.fa-spotify:before { - content: "\f1bc"; -} -.fa-deviantart:before { - content: "\f1bd"; -} -.fa-soundcloud:before { - content: "\f1be"; -} -.fa-database:before { - content: "\f1c0"; -} -.fa-file-pdf-o:before { - content: "\f1c1"; -} -.fa-file-word-o:before { - content: "\f1c2"; -} -.fa-file-excel-o:before { - content: "\f1c3"; -} -.fa-file-powerpoint-o:before { - content: "\f1c4"; -} -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: "\f1c5"; -} -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: "\f1c6"; -} -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: "\f1c7"; -} -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: "\f1c8"; -} -.fa-file-code-o:before { - content: "\f1c9"; -} -.fa-vine:before { - content: "\f1ca"; -} -.fa-codepen:before { - content: "\f1cb"; -} -.fa-jsfiddle:before { - content: "\f1cc"; -} -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: "\f1cd"; -} -.fa-circle-o-notch:before { - content: "\f1ce"; -} -.fa-ra:before, -.fa-resistance:before, -.fa-rebel:before { - content: "\f1d0"; -} -.fa-ge:before, -.fa-empire:before { - content: "\f1d1"; -} -.fa-git-square:before { - content: "\f1d2"; -} -.fa-git:before { - content: "\f1d3"; -} -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: "\f1d4"; -} -.fa-tencent-weibo:before { - content: "\f1d5"; -} -.fa-qq:before { - content: "\f1d6"; -} -.fa-wechat:before, -.fa-weixin:before { - content: "\f1d7"; -} -.fa-send:before, -.fa-paper-plane:before { - content: "\f1d8"; -} -.fa-send-o:before, -.fa-paper-plane-o:before { - content: "\f1d9"; -} -.fa-history:before { - content: "\f1da"; -} -.fa-circle-thin:before { - content: "\f1db"; -} -.fa-header:before { - content: "\f1dc"; -} -.fa-paragraph:before { - content: "\f1dd"; -} -.fa-sliders:before { - content: "\f1de"; -} -.fa-share-alt:before { - content: "\f1e0"; -} -.fa-share-alt-square:before { - content: "\f1e1"; -} -.fa-bomb:before { - content: "\f1e2"; -} -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: "\f1e3"; -} -.fa-tty:before { - content: "\f1e4"; -} -.fa-binoculars:before { - content: "\f1e5"; -} -.fa-plug:before { - content: "\f1e6"; -} -.fa-slideshare:before { - content: "\f1e7"; -} -.fa-twitch:before { - content: "\f1e8"; -} -.fa-yelp:before { - content: "\f1e9"; -} -.fa-newspaper-o:before { - content: "\f1ea"; -} -.fa-wifi:before { - content: "\f1eb"; -} -.fa-calculator:before { - content: "\f1ec"; -} -.fa-paypal:before { - content: "\f1ed"; -} -.fa-google-wallet:before { - content: "\f1ee"; -} -.fa-cc-visa:before { - content: "\f1f0"; -} -.fa-cc-mastercard:before { - content: "\f1f1"; -} -.fa-cc-discover:before { - content: "\f1f2"; -} -.fa-cc-amex:before { - content: "\f1f3"; -} -.fa-cc-paypal:before { - content: "\f1f4"; -} -.fa-cc-stripe:before { - content: "\f1f5"; -} -.fa-bell-slash:before { - content: "\f1f6"; -} -.fa-bell-slash-o:before { - content: "\f1f7"; -} -.fa-trash:before { - content: "\f1f8"; -} -.fa-copyright:before { - content: "\f1f9"; -} -.fa-at:before { - content: "\f1fa"; -} -.fa-eyedropper:before { - content: "\f1fb"; -} -.fa-paint-brush:before { - content: "\f1fc"; -} -.fa-birthday-cake:before { - content: "\f1fd"; -} -.fa-area-chart:before { - content: "\f1fe"; -} -.fa-pie-chart:before { - content: "\f200"; -} -.fa-line-chart:before { - content: "\f201"; -} -.fa-lastfm:before { - content: "\f202"; -} -.fa-lastfm-square:before { - content: "\f203"; -} -.fa-toggle-off:before { - content: "\f204"; -} -.fa-toggle-on:before { - content: "\f205"; -} -.fa-bicycle:before { - content: "\f206"; -} -.fa-bus:before { - content: "\f207"; -} -.fa-ioxhost:before { - content: "\f208"; -} -.fa-angellist:before { - content: "\f209"; -} -.fa-cc:before { - content: "\f20a"; -} -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: "\f20b"; -} -.fa-meanpath:before { - content: "\f20c"; -} -.fa-buysellads:before { - content: "\f20d"; -} -.fa-connectdevelop:before { - content: "\f20e"; -} -.fa-dashcube:before { - content: "\f210"; -} -.fa-forumbee:before { - content: "\f211"; -} -.fa-leanpub:before { - content: "\f212"; -} -.fa-sellsy:before { - content: "\f213"; -} -.fa-shirtsinbulk:before { - content: "\f214"; -} -.fa-simplybuilt:before { - content: "\f215"; -} -.fa-skyatlas:before { - content: "\f216"; -} -.fa-cart-plus:before { - content: "\f217"; -} -.fa-cart-arrow-down:before { - content: "\f218"; -} -.fa-diamond:before { - content: "\f219"; -} -.fa-ship:before { - content: "\f21a"; -} -.fa-user-secret:before { - content: "\f21b"; -} -.fa-motorcycle:before { - content: "\f21c"; -} -.fa-street-view:before { - content: "\f21d"; -} -.fa-heartbeat:before { - content: "\f21e"; -} -.fa-venus:before { - content: "\f221"; -} -.fa-mars:before { - content: "\f222"; -} -.fa-mercury:before { - content: "\f223"; -} -.fa-intersex:before, -.fa-transgender:before { - content: "\f224"; -} -.fa-transgender-alt:before { - content: "\f225"; -} -.fa-venus-double:before { - content: "\f226"; -} -.fa-mars-double:before { - content: "\f227"; -} -.fa-venus-mars:before { - content: "\f228"; -} -.fa-mars-stroke:before { - content: "\f229"; -} -.fa-mars-stroke-v:before { - content: "\f22a"; -} -.fa-mars-stroke-h:before { - content: "\f22b"; -} -.fa-neuter:before { - content: "\f22c"; -} -.fa-genderless:before { - content: "\f22d"; -} -.fa-facebook-official:before { - content: "\f230"; -} -.fa-pinterest-p:before { - content: "\f231"; -} -.fa-whatsapp:before { - content: "\f232"; -} -.fa-server:before { - content: "\f233"; -} -.fa-user-plus:before { - content: "\f234"; -} -.fa-user-times:before { - content: "\f235"; -} -.fa-hotel:before, -.fa-bed:before { - content: "\f236"; -} -.fa-viacoin:before { - content: "\f237"; -} -.fa-train:before { - content: "\f238"; -} -.fa-subway:before { - content: "\f239"; -} -.fa-medium:before { - content: "\f23a"; -} -.fa-yc:before, -.fa-y-combinator:before { - content: "\f23b"; -} -.fa-optin-monster:before { - content: "\f23c"; -} -.fa-opencart:before { - content: "\f23d"; -} -.fa-expeditedssl:before { - content: "\f23e"; -} -.fa-battery-4:before, -.fa-battery:before, -.fa-battery-full:before { - content: "\f240"; -} -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: "\f241"; -} -.fa-battery-2:before, -.fa-battery-half:before { - content: "\f242"; -} -.fa-battery-1:before, -.fa-battery-quarter:before { - content: "\f243"; -} -.fa-battery-0:before, -.fa-battery-empty:before { - content: "\f244"; -} -.fa-mouse-pointer:before { - content: "\f245"; -} -.fa-i-cursor:before { - content: "\f246"; -} -.fa-object-group:before { - content: "\f247"; -} -.fa-object-ungroup:before { - content: "\f248"; -} -.fa-sticky-note:before { - content: "\f249"; -} -.fa-sticky-note-o:before { - content: "\f24a"; -} -.fa-cc-jcb:before { - content: "\f24b"; -} -.fa-cc-diners-club:before { - content: "\f24c"; -} -.fa-clone:before { - content: "\f24d"; -} -.fa-balance-scale:before { - content: "\f24e"; -} -.fa-hourglass-o:before { - content: "\f250"; -} -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: "\f251"; -} -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: "\f252"; -} -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: "\f253"; -} -.fa-hourglass:before { - content: "\f254"; -} -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: "\f255"; -} -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: "\f256"; -} -.fa-hand-scissors-o:before { - content: "\f257"; -} -.fa-hand-lizard-o:before { - content: "\f258"; -} -.fa-hand-spock-o:before { - content: "\f259"; -} -.fa-hand-pointer-o:before { - content: "\f25a"; -} -.fa-hand-peace-o:before { - content: "\f25b"; -} -.fa-trademark:before { - content: "\f25c"; -} -.fa-registered:before { - content: "\f25d"; -} -.fa-creative-commons:before { - content: "\f25e"; -} -.fa-gg:before { - content: "\f260"; -} -.fa-gg-circle:before { - content: "\f261"; -} -.fa-tripadvisor:before { - content: "\f262"; -} -.fa-odnoklassniki:before { - content: "\f263"; -} -.fa-odnoklassniki-square:before { - content: "\f264"; -} -.fa-get-pocket:before { - content: "\f265"; -} -.fa-wikipedia-w:before { - content: "\f266"; -} -.fa-safari:before { - content: "\f267"; -} -.fa-chrome:before { - content: "\f268"; -} -.fa-firefox:before { - content: "\f269"; -} -.fa-opera:before { - content: "\f26a"; -} -.fa-internet-explorer:before { - content: "\f26b"; -} -.fa-tv:before, -.fa-television:before { - content: "\f26c"; -} -.fa-contao:before { - content: "\f26d"; -} -.fa-500px:before { - content: "\f26e"; -} -.fa-amazon:before { - content: "\f270"; -} -.fa-calendar-plus-o:before { - content: "\f271"; -} -.fa-calendar-minus-o:before { - content: "\f272"; -} -.fa-calendar-times-o:before { - content: "\f273"; -} -.fa-calendar-check-o:before { - content: "\f274"; -} -.fa-industry:before { - content: "\f275"; -} -.fa-map-pin:before { - content: "\f276"; -} -.fa-map-signs:before { - content: "\f277"; -} -.fa-map-o:before { - content: "\f278"; -} -.fa-map:before { - content: "\f279"; -} -.fa-commenting:before { - content: "\f27a"; -} -.fa-commenting-o:before { - content: "\f27b"; -} -.fa-houzz:before { - content: "\f27c"; -} -.fa-vimeo:before { - content: "\f27d"; -} -.fa-black-tie:before { - content: "\f27e"; -} -.fa-fonticons:before { - content: "\f280"; -} -.fa-reddit-alien:before { - content: "\f281"; -} -.fa-edge:before { - content: "\f282"; -} -.fa-credit-card-alt:before { - content: "\f283"; -} -.fa-codiepie:before { - content: "\f284"; -} -.fa-modx:before { - content: "\f285"; -} -.fa-fort-awesome:before { - content: "\f286"; -} -.fa-usb:before { - content: "\f287"; -} -.fa-product-hunt:before { - content: "\f288"; -} -.fa-mixcloud:before { - content: "\f289"; -} -.fa-scribd:before { - content: "\f28a"; -} -.fa-pause-circle:before { - content: "\f28b"; -} -.fa-pause-circle-o:before { - content: "\f28c"; -} -.fa-stop-circle:before { - content: "\f28d"; -} -.fa-stop-circle-o:before { - content: "\f28e"; -} -.fa-shopping-bag:before { - content: "\f290"; -} -.fa-shopping-basket:before { - content: "\f291"; -} -.fa-hashtag:before { - content: "\f292"; -} -.fa-bluetooth:before { - content: "\f293"; -} -.fa-bluetooth-b:before { - content: "\f294"; -} -.fa-percent:before { - content: "\f295"; -} -.fa-gitlab:before { - content: "\f296"; -} -.fa-wpbeginner:before { - content: "\f297"; -} -.fa-wpforms:before { - content: "\f298"; -} -.fa-envira:before { - content: "\f299"; -} -.fa-universal-access:before { - content: "\f29a"; -} -.fa-wheelchair-alt:before { - content: "\f29b"; -} -.fa-question-circle-o:before { - content: "\f29c"; -} -.fa-blind:before { - content: "\f29d"; -} -.fa-audio-description:before { - content: "\f29e"; -} -.fa-volume-control-phone:before { - content: "\f2a0"; -} -.fa-braille:before { - content: "\f2a1"; -} -.fa-assistive-listening-systems:before { - content: "\f2a2"; -} -.fa-asl-interpreting:before, -.fa-american-sign-language-interpreting:before { - content: "\f2a3"; -} -.fa-deafness:before, -.fa-hard-of-hearing:before, -.fa-deaf:before { - content: "\f2a4"; -} -.fa-glide:before { - content: "\f2a5"; -} -.fa-glide-g:before { - content: "\f2a6"; -} -.fa-signing:before, -.fa-sign-language:before { - content: "\f2a7"; -} -.fa-low-vision:before { - content: "\f2a8"; -} -.fa-viadeo:before { - content: "\f2a9"; -} -.fa-viadeo-square:before { - content: "\f2aa"; -} -.fa-snapchat:before { - content: "\f2ab"; -} -.fa-snapchat-ghost:before { - content: "\f2ac"; -} -.fa-snapchat-square:before { - content: "\f2ad"; -} -.fa-pied-piper:before { - content: "\f2ae"; -} -.fa-first-order:before { - content: "\f2b0"; -} -.fa-yoast:before { - content: "\f2b1"; -} -.fa-themeisle:before { - content: "\f2b2"; -} -.fa-google-plus-circle:before, -.fa-google-plus-official:before { - content: "\f2b3"; -} -.fa-fa:before, -.fa-font-awesome:before { - content: "\f2b4"; -} -.fa-handshake-o:before { - content: "\f2b5"; -} -.fa-envelope-open:before { - content: "\f2b6"; -} -.fa-envelope-open-o:before { - content: "\f2b7"; -} -.fa-linode:before { - content: "\f2b8"; -} -.fa-address-book:before { - content: "\f2b9"; -} -.fa-address-book-o:before { - content: "\f2ba"; -} -.fa-vcard:before, -.fa-address-card:before { - content: "\f2bb"; -} -.fa-vcard-o:before, -.fa-address-card-o:before { - content: "\f2bc"; -} -.fa-user-circle:before { - content: "\f2bd"; -} -.fa-user-circle-o:before { - content: "\f2be"; -} -.fa-user-o:before { - content: "\f2c0"; -} -.fa-id-badge:before { - content: "\f2c1"; -} -.fa-drivers-license:before, -.fa-id-card:before { - content: "\f2c2"; -} -.fa-drivers-license-o:before, -.fa-id-card-o:before { - content: "\f2c3"; -} -.fa-quora:before { - content: "\f2c4"; -} -.fa-free-code-camp:before { - content: "\f2c5"; -} -.fa-telegram:before { - content: "\f2c6"; -} -.fa-thermometer-4:before, -.fa-thermometer:before, -.fa-thermometer-full:before { - content: "\f2c7"; -} -.fa-thermometer-3:before, -.fa-thermometer-three-quarters:before { - content: "\f2c8"; -} -.fa-thermometer-2:before, -.fa-thermometer-half:before { - content: "\f2c9"; -} -.fa-thermometer-1:before, -.fa-thermometer-quarter:before { - content: "\f2ca"; -} -.fa-thermometer-0:before, -.fa-thermometer-empty:before { - content: "\f2cb"; -} -.fa-shower:before { - content: "\f2cc"; -} -.fa-bathtub:before, -.fa-s15:before, -.fa-bath:before { - content: "\f2cd"; -} -.fa-podcast:before { - content: "\f2ce"; -} -.fa-window-maximize:before { - content: "\f2d0"; -} -.fa-window-minimize:before { - content: "\f2d1"; -} -.fa-window-restore:before { - content: "\f2d2"; -} -.fa-times-rectangle:before, -.fa-window-close:before { - content: "\f2d3"; -} -.fa-times-rectangle-o:before, -.fa-window-close-o:before { - content: "\f2d4"; -} -.fa-bandcamp:before { - content: "\f2d5"; -} -.fa-grav:before { - content: "\f2d6"; -} -.fa-etsy:before { - content: "\f2d7"; -} -.fa-imdb:before { - content: "\f2d8"; -} -.fa-ravelry:before { - content: "\f2d9"; -} -.fa-eercast:before { - content: "\f2da"; -} -.fa-microchip:before { - content: "\f2db"; -} -.fa-snowflake-o:before { - content: "\f2dc"; -} -.fa-superpowers:before { - content: "\f2dd"; -} -.fa-wpexplorer:before { - content: "\f2de"; -} -.fa-meetup:before { - content: "\f2e0"; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} diff --git a/docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.css.map b/docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.css.map deleted file mode 100644 index 60763a8640..0000000000 --- a/docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.css.map +++ /dev/null @@ -1,7 +0,0 @@ -{ -"version": 3, -"mappings": "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", -"sources": ["../scss/_path.scss","../scss/_core.scss","../scss/_larger.scss","../scss/_fixed-width.scss","../scss/_list.scss","../scss/_variables.scss","../scss/_bordered-pulled.scss","../scss/_animated.scss","../scss/_rotated-flipped.scss","../scss/_mixins.scss","../scss/_stacked.scss","../scss/_icons.scss"], -"names": [], -"file": "font-awesome.css" -} diff --git a/docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.min.css b/docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.min.css deleted file mode 100644 index 540440ce89..0000000000 --- a/docs/api-reference/v1.9/node_modules/font-awesome/css/font-awesome.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/docs/api-reference/v1.9/node_modules/font-awesome/fonts/FontAwesome.otf b/docs/api-reference/v1.9/node_modules/font-awesome/fonts/FontAwesome.otf deleted file mode 100644 index 401ec0f36e4f73b8efa40bd6f604fe80d286db70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134808 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 diff --git a/docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.eot b/docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca953f93e35eab4108bd414bc02ddcf3928..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165742 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 G*yFsbY~cLNXLP73aA74Mq6M9f^&YV`isWW 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

    5q!RY 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 - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.ttf b/docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2fa1196aad98c2adf4378a7611dd713aa3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165548 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 z 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 d0mRO}xo^G_%I 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 SdSQM28?+M|D(2r_;{O0|uQ74} diff --git a/docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 b/docs/api-reference/v1.9/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc60404b91e398a37200c4a77b645cfd9586..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 77160 zcmV(81_!itTT%&fM`8Do zgetlXfhX-f>pHa>CezJ5a+CKJB5E?t-D3Q@I zv;Az_{%F*wqQWVk+*x^)@=9sx>ldws&U_`?fwx|)6i0%hGq@6No|Wjj+Lhc2#LbXI zik@&>S#lthOy5xS4viawbfqcF5t#22r#4c;ULsQqOn&iMQrAORQWXh`G=YxhM*4YN zTfgWxZlU6?d>wP(yNq!jqfNVxB}>Ww7cSen4lE1$g!lMN&~*PN_7ITCO&u%|6=U~^ zD`NV@*N5j%{d4(V*d&F9*Lp4o^=-wV4E$&&XJX#);dbqZ^8pUYCyEa?qdKs=!}D|N zZKGn0G1#bWFe1l-8nC}AR*a~P9;0KUBrGsNR8Um3F%kp&^sGD!?K|!B(qItgwkPpO z4nOg8&Z#<)4^Bj%sQjrANfD$Zj098^i(7$$Vl;{o&HR7r?C&hE&b-&}y`y4mHj%mu zNlfW!ecOyC;56fuZ7e6t7R&P^z1O9)e^Pe=qGENxwk%7Q3&sYU;&zJz+X!u6Ex^F$ zTu6(Z`;JIR{;Knn>IcTcKbV%&ZSxB`P>8MADLLm#sD>oQy@;IWvGh3j=*Qa5&VIQ& z#BvplZofSw5gN50lul%1ZW|#duBPzgJG1nxIGMaB*-obI9wC1%7zRoi%C^%k;Mn?+ z?pUuq3@j1^4v?E3B49cgqW>EY2?-#3jqje^;JgycOCcwp0HG~LNR*rji6bO_n_6Fl zxt$OawF6EyR#iAg$gdotjwKXO)cf75+S~gE2n>cpa0mh<1W_5Hw7c36opP+~qRPFS z?z(HcYuX#9GugKj(K=EQB_0sAfiipahu*36k{xIzyD2!y5%vK1@c|DQ3Q0^$kT!Po zBklXM?*0ZWJJ6;!hoDZHGR|mrw+{{o{_lUy{_6}+Pm!l|BNl}Q;&@bv@2Wy(0-c_O zab6Z9oUWgiKYRW)Vv0%P;3X|rT9E6xVx&Q%6AWJDG0oX-H5vJ?>5A8;PEnm%C;H~y z%@URb{E<@x+!!CGA#@@j24G?{>Gvg*2lVeVHM;^7(Pnl#tDV)(Y|gCiIh;CbXJ$WV za+~#V|9GDufDe2U{2(L>iu$ z&FbBmZ9gV+TlVF2nNyNeYL2HloUh~eKdpS)>J9Pm#Xd(4%myqFVno%qUa9n|Ua803 z8#-)?GmgDZL7HHzH4B_FHnRat`EXP62|?edFIDRb!q%9yytA|?Ib5`-)rNGqg%GbH z-}d(Uw;KH$fouQgEh;fvK+gfZPMGsl{cktu>gD1?zL z`z7_05U{qkjReFC1qI#x+jpODe!iG=?eIufIBbyAS`i6yq~pK;J!P{R?B6jf<_85Y z$&N8sKi05v?h+0-IZ#Z-(g8koZ#f{v7%?Dp!%F^s91LTw|BvSLb7Oj@878i9HK*kSp)6{%ZXlv-PQ)RD zE`x4f_xM$H9{@mn{1`uWwLbR;xgELO9FcMuRbkvnQXmT&j}ZE~*Z9?u0F(1c4Md6G z%ZpLJy?$`%3V_^=J3F{;`T31Z7#Ad=bomK731~(`S)uLTR8OErP908ueHZaDB4D$q z{GZri&j-sW%|A#W5to*SAH-ai&E<86{%v3LDwPh%=3Mm7wrS#iOV1$&8oKgshx_jMlowl4ED4$f#L1!t6C1g9p~=ODPt z5-F*yQZ*RmNQ`~4r~k{Ouxs3@+Z>Q5N}1kIzW_;y+Y`2(U+=Sj1(9)2Vkg!}$DaT~ zSw&5w0~|KUc7%a7st`^}4doR9Pl!$j8b%9FcqlQFIssg|->XC5YmQ@}VmJj+^a&GW z;TT&?6ewkE94j()E$+}^)|h0Xjx{@?P9)U!BBDsDj}WU31 zAtcV{=d|bI-bs8=m>_-=CKKcXWW_GX0~^$^=>jcb2lM)283`*Z!V{7?x-M-}_~|s` zV|lNhxg(2J)xt(s?g(|g4crMAX)o}cuastffHd9kY=i3#SX1;l!-O06F-4v5y)!_N z{n~32h};!G7bhd5ytZSkz1eQ+sUW)X74K7DJFF%9?n#Q!!7ID?F7r$p*h2z%vFq+0 z9=`hOhOu`E+Rawmf`Ea#sNtl*!}&#cW`0Ouz3DI?ydh+i=s;0>PiQfT7Zu*A>rw!Z2oWMZdTlLANQLT4}czIhYZic*axDrD;QpTldic#?)QnYZQ#V&@GPdWKu$ce zkR96D(D?F+uOEL7E{&8{@#anN+7VOiE7M#=o-3l-Qlfm(Hnj`lCvjX<;N1eImGc}P zIfq1q23S0QB<*mCfZhipyXl3dlKdo_(zgrVEctLByL0)aRMXBH-Ttp)yZ_WqYe|tF zU*@4;)#eID=!hTcSCgMs|CA-!(RT=~eyOCyMAVSk!pq$%^Rswq@*cQ(TXI^ehX9#d zQzf)Vo7@<4U`9OSg`E*=es@n8G*SbT@I9!qVekl|qYka=BE@A6$s=C?(x-c+DlyNW} z6eaQe@Drh#XmE?Ex(!VKoZcdgD?X0w=CviN3tmmjikMECbJNHMagMY-l@hQIzV7AZ zriQRf5j1k=Eh_KlCFt5{BiAK6a8T){lxWsNJ@?M~+S(158s#PwDXC&%gvLuu_&~q; zp5%18A)_>(Gy@` zHu}fy7?5gdqUqRaZ9G+VYFVjT`f3hBTtJLx%QHo4W^k7Hn4dbj+U@EPSKG&~pSs!K zvyPmU&Tyr~vom3Dulo^!F^FVgi})a%1Gn9)rTvJRN`lw2KOkz(aW}5MO~dBSW@edL zwPwp4)N=wJup1;S7@U)OkZj2gQGo~o4#o=@iYEeNjFZoLvW2r$?(LKzQYnI52$jlzP&K3-Fs?@ z8TYz{a*Ip6o|)y)qHif|*~IjRGj3tOR55>Cr^87ZMJVZQz4x-c--DZz!bJ3J`mBFt zv$MzMB*TT@cUYc?%vG%XC_t5juJ=v#VIpp<4lLvW$%%|VH?JfU3&D=q@FkudiARUh(d2N+ zWLd~2X5t4S?fb`JHk6Khs0b;)4m))>Bf>MuG>~md#IxJ@3UBxJiBI@&t;m6*b~tLF z>Y4m_C`-#PTHIv21B#D$$;E^HZ8uiYUtFhV*G%O%3~-xR^LiE@?1e}-zAdW`mbEM> zF-u5dt!0p?EOIRw9HXESaG^}g@5b$*Gd<>1m;%N!sdSMt*}PbmYdWd4wf_iOfHlC+ za|MYGa1MylQ*%_SxCI*3>pCu7wYNkflt8fcEw)9s%#j8m5R?-^jqs5&y2-XJ@J1PZ zvCEQxGD63Ll8sRsnbjBI1u1mJ!>4@OBQ%73++6qLsDSXuV7F#t5G=NzBh&|HiRm#q z*)7%le!&>OD#^0421Im4)tJOE2i~}o^A-DsEaeX+t0KZ z{sQInfSneVRDtp{f^<>g*rTZi2sAuCI!Z9Zh$ZFSky>G5VCcOA>UPbn{DxunR4-Zq z0{Rr3Vcwm`(344N37c0jkQV&${exerkPtp8!}^!LNFtPq`QzzulIshDd^c?rMzvmA z&&_^jixC$vO7ZGm0Le*_7u+*exgqHorQCbdJY~!;JgCi-!q5HtGLD2^A9dP#_`PVfh~Qf+*{6POoKUi6l2P%*Hl&QKAyfLqkaIKd`D8JY1@={Zhq*1zZjQU5-VVG9EdQhh(N}S^W*!YLJe?QZ~`l?e_yw z5+Rt%0P61dAXbLEnF=K$2o+w?V3$raPx6eS5Bi3KtXuINb~@n7ggV*iUfP^;*T3fx zK(YWg|IErMMW^{br`nI~*hvLG+;Qa(JTE9Xz2mD|`K zWkMsBLSxbz*}wwmYD`=a5~IW|zFKINTi5zYJdLXS5AlQ;aj16QewJ%pn@7XW)l@{k zKU1m8+14)_#x2y>CEb#Vl-cMv42b@BrfGab7RyPY#BuR=W2k^v0h<(f44SbZ&kQd& z1c7+0f=Eva?9UId@{fgyyLhy>XLZ>Hs_gVQ>JLK39^$?US5+# zF8FwgP0>wLKjyriCrA1t{C?ppovgaV>1c~smv@h!4uR$(`2`$DeE7c~B> zpO)wsEU7ZQ#)-uJ6()96NKJ8Y@H7-Z0#aPGy|SvlSYbSo*fbFCmK;D$X{<=pL|?w> z37bU`XR6OqiFvV2n$yv2RQ}kYO5LsvtCo2WW6I7VnMg|XEFd+Y{o1b`B?Ku6B<2+= z&U7;n*3GsPjMqSY02HvKv_gCJS?}VwnX)lP$9Q?8>7cln_TCYaRXg*#;^hb%1uH+IT+qbi5QUIEkAPwUL- zZcK{joDF?6iF-BK80ny(qch>Bj2#sVh;E9olq4i9E2BhC2h@ZuNbOcWnAb?Aj+ol{ zPjg%dw*~)|Ezvu`S2h4n_?1nG-8izHMroCi)H}Y7r8gOC^D?nEB?8ux%nux4T`W2w zjmomxy+te?pWb^_g#G~wZee%3vH68gXQ75Jt@23+IdVE`poA6wl8hR#JV_HpwK4Eu zBw$Qpa>tT{f!Cet&Rr4Zc;X#7JyIEVCMr=i=zs(;dVe1C%lLUbh~NS0gJ4a3_SBi0 zWKV|KrDg~RR0H=-#?#LMUi65trDJ==U20Be7 z%Xwpj z8rGRuVi>6*eIn2 z4sdTqnx|BWhY_zMYaCA7zUpjza))jPvt-vupa&k7+<6n*ist$5`NN|BwO~KBX%LYryjwYCD`L@BOz&Y#&6yLk zrl09#3<5$~a4xgYhziDTTr}+GvxUZ_irgNJWb6?^#5mb!Oz(fO^4&7G%H z5^GS_GXIRAC_Q6#bn~Jjo?A1S$rmQJt!U~*P6dbvJ-70Rj*C#qoAg1nM--Cz!Y317 z=u#u7#!Wgd*X$9WGk^)j?$&fleixkNGkSM;Ai$K^JD4}R=>kur91A#{$yq51$wX5{ z_^yQCFMy;I)XX=RX%FBGjUjh=$~M62v?QPtjW|Ux>QrIgjQe~*2*&>nXZq^b5AiNL zZOI)6wC_3KIl*(?NODXbHzum22a=JFGaEv41mKQ*TW=5nCK7LT+EZuu)vXw=D|?|q zMZe$WYg*z7q#{n@ie%~;HG`r$nwUvewW8XJl|HLR?P9D;g~!gQW+^ITmZnEFJoC&$ zpqK!kl`d!W6#u8;k_s8NrGXb9K``UKExyy)qZX#Ac7FthR3Nwo1`lL3ODL!o z#aVG+vZ|XXb=~EAEWJ7~DkOX|><)vPi!TI8y2~t+U`4!!=-3qTcu*UzvmX| zU;vxoFY7w$fXLF*)+alS*@;#LhY>_6%d`y63v$W)kPx*5f^bYS(x#$=iQiEsSbWTj#TRZs?$7t8|iN~L%c(PyNt zN>cc8olk|i&vOa$9mc_tq1qTUO?Q~7+#U@N=prKaG!!!T;ppICO~e}UM7l3dA&J#? zf-}{*xAKAEE{qjsE0aKYPnTB6aq63DUe`n4s;NtDuJ@l2EaI^^NCY{ITBxi%Cb)05 zg&!!x67sqr4))=f2=^B;|&U9nAtxK%O?JrH(qLN-KLYGA2ys`5Pbca_F5=9yX0 zI@KWOZ;?E|06C&Ni~*hajz+-M`jaFaJ2KXs*J`w}5c=M_?075|63ZIOft^DH#ZttH zbQl)6uo5JL99BwZ9>Hda#W}|*0Iy-0IZ%nKCgAwd#WqiGzSaX5Y^gk*)brv38S)wL zWOF?u0W-yO7LT=1Ezn{_pw#>#jSuWwImbE(F^wt}}lf1z<$?f+@!t&&enhvFSp|oAa+s9!U zHXe30?GjS`pv=ByF^BCWSWJbRy2A=eiD6-y5fj~pEXMQfgpkY{A~P+|N8}+K%cVH8 zxAHg&eBe|%Q{GUMi~=9Hw)OFF98FTLS>9sw=B0b@E4xqqW!sxF_VU+f1*fUgb*|_4 zRz3PvJ}t!oYhpH4pAwRi(5Y}*;!VBKPpDx3vfLzB=tRMJ8;%jV@j>6aqg%i<1&#b+ zk^D-3Kdxp(KRuW4k%?rmuP94I&g0b4>O%zd6?@oyO6liO1^U`$YEO(w~dfSW-)I*JFbc95RKnhH_Ueo)^V z5O<-H?_2BbD+u?V6s?hlkNW{&D{7-4R^P`fkDgL0;{mp{b)#&5Aruay{_1@GD<`i@ zS^hSgHnz=Q2J4n}WYT?K1Ba~KTmN}=+nAMVj->#wyKf}M<5@kRd1_Le5osxl7MTWO zkkpGzVMHjsSp8MXcS#7V+PhkS79{jH0@}OoIU2e8CV!dMG+M*m)+daUL`I+W-4I(& zUB!OpWEez0R`B*0QI%Jr&CRlbeRfkm!A=eXZTHE;D+5#BaqzefNU;B5|N6>RA@|Ob zujYmt7m3)_czpI-ihZS1NN z{mBusZ?O_Oo54A_*Q29z84jB*6Wst#IvTqXn1FOd0WHRQYg4!CYPDfB?VoaEw10XJ zM*G{lAl|>>gn0kjc8K>kTL8Snq(eBCBR95iHQy_>TsDaOw3GMV`td+(amo3Y-6~SVgFExhSbYQt48O)0=vGOBz@93V1J{b z%hnjMkz5Lb^ba^Q<`P+L@G)XOzkbHOO0N0Xg0Ihy$^3ajb3G!GhUm=0X6-0?ONj*> z_f3DrB8?gdNMPm0cL=p(y+ve&>N;XLt~MwFIj|UsJns<6WB+W8-IyLPg}oO15Nn;A zXX*?`q_n+^0gs7HP%P#UtYbBYu|?p@^*>8)y$gH5q(rM|2sDE3?Nr_ z6;wk|U!eBTYxBbDj4oegyx`H4PD;~E0DDx)A+w4$lWIO__?$4^47wxdhTYj)uj=EM znyJ8s%uB-ov3ip%{vp~EGl-_rGMMKEfwnp}WIi3G1!!q)Mb=!*J@7~jy3`z6D|(ulUfoM`T~yvcgH%qlR3L>cQz}3KH_#K=7el_UiNveh$%U8? z_LGuK4xOlJQHD;H94v&y2_rh?&Qj5;yNIP~_>vbFIhO?$;xT|Nf?1iDP{&TfzW|C{ zCb@Y`IIq*W&G(5WFw0|-!FC7~@WzQ;j=+kc@=CQq%FR2Z@=-e+m0g92{YkVJKEF#;crZ%nQcFJ%ER9s%lZuHyt zzJCQXZKOUpq-8^{@!U>*5UtJX?PJ5B=GmY497K(+_9#(mFzjTf_-f`njzVGrbu~ zIo%B~2+9wdNd~?$Ckbz>{gcoZ5?p1VB{W_&eWQl99s=eyg47Eg{UFjXJqPm>4W7YD z$9-*oALJ8xuo5PzsHx8)k^U}Y)`AIEyYYQx=Stt&>pC^1 z<1Ipzi|(09mqxhhS;O1DqBDH|#e6Brh?)T?##hqzUdF1q6jPRD!uP? zbWjmu@AiW4LERk~L~lO?LlBOkXS8(lwDr(C^0>rF%Uwqug_tr@MLb@WZA&whtoIbB zE8!EYJKqhOTZ^g|%QMT``HvY}F|fSBy?KOoxP^}j7bAZUs@!njJZjWwL(^eq=6+n~ z8%LxAL!~qu?!w+=bz*cNLZC~R!u8OxQEj~wJTO)h@b)gBEo@zQDyI4YXo5}-(Ea; zYM(shM=smh)qbs|w%6;$>GU<*xxL%3UDH z0vH0D^OBr9a`sG=$rh?)7@YIo7tGXb<&x^?G`z4x$kihn?Wt54!tl=`j5ks~^J>k@Dr0)P<4=`SHK z9HqZCbCIW(RVN`J;D75Pe20ytLgS&Ts0!l`bX*&cR3jPU^U~6tO^zfhGHzeRUZ*DYv5=CgnUBb27sKfkX_*_QW8g{ZJrxy%`UQ0*MHZ%`jL5C?){`F! z&C1heYOrD0xYm%Mlg`aWz|)=J6XL61(PaYmoZu*Oee#}dZ#fyd`&CdjdPpQ^urvhm z*}68VQ1kadK;l>pC^5~>n9Trx;doyON_o9|l{4Dr69cU$EWU&B<4x-^ZkyN@g+6xh zPwMoB)w72E_{3`d-x8SCuyV~Y<7PBtbGlz8b|q|+<4fOKPHB=WR`~8S-zT@E#MIz^ z=alPCn@!+HKuGW89YXG6E7SeT?x%L$Rz`6^7@OU(bxT^EXsU2P?CnJ`_xORo0LS5ZqJMxCVbRWeo-#hK z{zFi%iIA{N#Sai5nrc7MZU}T|<(}BnT?3{T;ZumX`1pI_wN=xH1(7Hxv$bO9qbFvM z=4UX|gWc*FmBdU?L8VP}WEBU@DdV#;!@A>HA=Y*PjwWDlg|GfH5>Q(U8=Ya^l!UuA z`@jrShkPR|fU*HMN(H2f3L_iHxXfRx)nrwvq&6c~8APszz?(uMOM~~;e4-k-z`+?7 zfGGlRkkAmSbZh-=1DfW@EUpy$Y!T?8>kso)AM7dJxn-C&fjmLF2(TVpFr4e2U+g#7 z+4k*TetXy?4RKO}&ah^a69N0{Pzn%X8X;zvwD}fTRfDp#XjmKaqHNo}UcvD?D4zpu zpg)quKs{n;XPMnk&6ayDlWEX8k|(r56^l4OXTtD$NJe@v5fJxV4@4v5kU@+YF81KM zB`3Ckcdb1#4>KC1$+)+jS|{?MNO*>ms=Mx+CI?BKk~GjUN$;IXX{4>cn`P*Fl-e82 z)6I{U{cqygw40B6gQ97V*DIRULB6*KLPT`CR2Q|GilRB@t|Z3gvZLw#C-?I9 zy!hb|Fjj~seB&a|1(KNJ>wxs3916gZ*He~34@x1F)sNqi(l*9MHd0)QHWXaHyE(K7 z7cKZ-J*L4?vm!Z3S1w#G4ti~Cddo)5wN>F(8-aiB*r&s{6%BN!A zfXYqSk3jA<$0DOjjri6<$##L%7TK|6qVIW0hR0*(fg#o6fLB0H$oz`;1a}}DIS=m zbyp1H(H}*@XgRD90l;D@8c^gVE|w&ON1VYZKqwZG5%G1S)>4fd>}E_8%j0} z>CWmY4@fF`)8Fw6=$}2#(#%l{FRR_s*mX%Ry$HHIkK6B%!5A!-uyP}Uc?5jE0|so# zJYf39QTYezJ;eLe`Rl1hBpc|f(m|4R>6nc&+U%5MHUVSI^MY5$rR0aBG=BCa?{*tv z8T?`Y(3M|9)vn`N-fV}=sLpm8aiki6a}XqLIP~HXQxETrC1SUhA1v?k|2gmVR&_R2s(seFN2Y%r46JqWZi{zMzO@6d9I)pcW^+TATpWS22)!K7 z{@c%I{Tj3rhq(T^vsRbu&Ze%9K%2Jx;;cHVUtnV^eewPNOqD#*TeOfPRjbx2AAHc} zt-4#2+gs(Qnd`dLr*F8*$-Dx&zg#^>Qus?OAzM6)zDVOgj)gmgIpO%m1%Wz|)Je^w zE56KO{+Rh8zqjowkH|kGk|#&d2je}T?ZiXYJha&VyO4V8#=E9bh(Tco8rT zPe-~LXJF3m-dlc?;6F}7;88&8_{fAd=8#U#frP4_L49h#jzVGc!5lN~#ic3g6~oWV zv^sIRNviD2sp=g0o*CI#Z^KCv z#FxvQ-B_rBq7Gjt0mKsW!!`BC6$k3Nbv~=i32Sh;2_&#wx~G` z(eO_m^%*b>b$6$%N#e-yrUExgrg)Xbt1_?iT*?_%W<73Jkye1Kq|hQGIg_l`b~tzn z`?hTr4-{}gX!g?+=y~FiGlIKtQ3(zuiP@z5*mQMqJp{b_?lasFliFvhEL3A?EU$@}>?(xy?0}JwQH8W)@ zgM%@G>PXH-ueM<_`@adULW)`<8U01d5R+zQxRm%!F$xyv|chrOou44}{FQ zu6YqRf~q96u+ODLO0G^H%4Fs2B8k-be>oiK3g$C0AW6*^ms%)ZC=G0PHVrTJK#p08 zLXKYE*x7xsPgH(6W4>d;@{V2knw5LvDa+k`?zu!b?IaU>6Z`Pq6UTXDmMjv=q=0+& zbV0gTGkOq6NxG|T!|+7LG~A?B1pV4nGi0U@Nzx9T^F)#<4HAstN!zTAE&*ige(75b zE&EHBUNV4MV+@np3f(yUgLS?vS?RQ1T-jfytki+QU-&E97h_7L+8iXKTrxUZSLO`W zV$?#Q?RP!b+FLOvP6MA=R(dp(9y_!AD3@k>PN&3w;8lV1W+;Df)|ucTc-JF?m*BR~ zOsPF17R8HHWkv%j8E+8z^ns8d>p9D}&pP2~Dkoz~<@M#QkC?n$ z&e?ks$b<$?W~FX=nO!(W5x+0$ryG2dx-rUj?F|2CK-5Y)v02RT)wWJ`+B%|S>gH%j ztfKJtZwjIKzq@q2O_0W5goIMejlWX#_i4d8d`{b6P$HnB{fI(9u(`CzAZ=h_p7o2O zI!*lxi_iiR31c$L#i%^U6{h{zleCsq2#-&VQv#A)oq+%)VO&84x^U<84CMIggs<|k zy=BH+=Ey;ktf{G+F3hldr`GGNcZSEmemrDYNoc|SQck^RYZ`Xo=5O44Zl=_nqJ53m z?jA^dWvppdl~<{u*c`_{q0Ag3%_vJcw7Cau9bggfCgx23cwR=Xk^w6xrQHLW>mJ6~ zoLc6EiL#W%j~X5^KVItxMGgd}D4^Y)9{5DysmOKYi5BuUui;d}nD6_L6YasFOjC}# zHczo(ZSUG->j%o24td8i_|W>9e3D++Qxe`w@T9$cDvUBrFU6PyDH+cIXb67yo5J#3 zG40794Me%jg^c&;B&HbEF_T9x&XsSefG`7I4C>qZhx=cAaV){D41BBnVE){<2L>v7 z@O+e}#wYA`9CLORgK8)rap0>`tBHC{KGDrK|BkwuzlaI=96JbeGJ_Pwi(vS%g;$GU z{Zx5S_h+a9Wo0lHhxZH-?es7(>U}TAl)Q~QXj^ng`9!-l)?P)w#v|is_sESpWZ=t+AIf!#G5rs&Syz>JIdC**R%{28T7 z3V@q>j&C4r)}lPRp4ColvW%S&W~ir4e=5v=&{fKhhgb93U!Md&2bOjoJ19Yb8HK3L zy4q61UjHC7w>>t}Ha#-tZtH%1W3Rmx2ar!UlUNLfmEdH$tN}_H)_jlNOi-NOoqi9^ zg{k`SIGQU_MC|n7T(8vT(ya@_ty9AnT&F$vRoQmT4Nc^QnjT{!Vf(8~JI_I`92Py) zsKlD7l)2VxfdNW{PJnQm=uIU-Qee^9h&$N%C=>g=hc&|xSDL-sJ+%mnhFKt;XD#Gj z2zE4q&{%)2*@^mvO4vZ|*FE@S$1}z1{Oo{4vd%e)yV|NLF_6$95=Yw_z4vQ4lC3tBMDGfINUylPM{vLdC8$PvGww3M z#7!FCN}^#}-qt^>V~yZ$FrFzti)i5lP8Wc{b)L^3ngy~Q{tIn0A4raVvcVtQ$}w_8 z{3pGv*4Hunp5VvTf00XaophUX0ZP&+jLmekkfXZY#_;M=VNVsAyL*H&%BP~bR*Q}dWg0oT^8Hb z+8?1G&z0BSPn^-$hiXOPI+G&__cnoUIy{k1=Mc@&b;oJ3rj6kk$$N!*-WU(H*D=bT zr0V|Tqw7^x$?|Od3@g!L!cOqQSF7ZW$!NRFDNm;|d2K~(*`%*Q*3~y3q@}A_QE>1T z_6D(LLad5BIEtTzyE_8L9|e!)^p^N1XG>BwZkhJX2IjpB!BjvAu5P?4wikmTJr-d# ze~F%~qM?I`uv&gYSC`RHUPM?eSZ1ec==@HA#jy~*aWwx=5(dFZKo$AuQ_>Rp!25mj zSZFWpKHMx~mgDF1I61Y+^zJP>M|=fW1(A{|-QHr~ANxVa>i9KBlioZk*_GScI>eu& z1|bw(XKH?{PY2&7|BF?JPV1t%IM>@CuK1MYhZAS<3|$8;R~lD;C|B%GHu9HNvEw0;77(X?22w1IM z%aiOB(=+-KA2<0vs~0Nfhj)MhXFr;#l`0{U>G=9ec~qi63stjc&eM9u(Mj>TmCs)n zqy~jI(kAj;bc_&x@JKEnS@BxtC^T6o>twE#!UOw>4wdD*?dko{h9uAd6M2~^-V^XtQB8iDT>SuRV5`lF@KVqR6BpM!C7IOSK==Vpw&g(pxj3)fUkzqW=b~T@qFwtEZ zW+hV>@`(tZVIO~PD)HCr*ovK<9kXxHykgqU{en1fN;#jwg4p7qn!+cTEpyI5hH}vG z>x6~8sZ_AKr9oJMqy|Y0(OfufU3-I1W($>IBOJ=s6IioUUS_%(HTTpfCmY%9#O%-* z7Wh}nGS9alcExi=;#_~8?TAqrbG4o*nahwsLFg1}QWPF4TIl>4u;pQqh|II-98+uo z(Uzi8j9bgxoMgNzDV@owyPUubP~^g*#Jxy#7^83fyfvKkIEl$Fgu-3GXv3c-G_7y!TzN53|0z0QrgQ7caCIUODsHrJxMO^Wb*kGR?`kWpC;A=J&>1(h7!{7l6brcI(kLf%V{TT2<75-6 z8&zYT427ft`=>CKA>vVv&c z>9c-_$@t1_qhpRP6z0#+ww!e6an%ezStolEC*FwaLF8jo@%>hTO&IniscS@-4Xk^{ zrtKJ5&7a4q|Ll#BJS?d+UDhcz~oPM2|KSxUs4*+p8fP(ywu!Bkt8%c6sw78 zWyNMQf4$PiP-wJBw)J zFrI&zxy$w&L>{f?;zPdE1W50pp&X*=#w>q9Fo{|y964+OygHpN!b_)=H+o!D;6hCIj zaWcvUbE@H&Wtj%YJiK-AP$vs@i<*4hd0{uunqN#iOC>hj6>gO$NE&}#blRdD+`i|#RqLfDYEs|E;WZS(Jd4JuKXL$d|7$*@si*w5&^NgZ;jfd9P&&PAfyK0 z@-#u^rMW!<3dHgDRD+nfKzz(tB&HQ<8g4F2+(~@yQiKAa_dwrJf`{u|5QPP|UW&x-B%aYvU?T(iBW85A*9V0nld}B|2ByRyeWvN&^j9@JKZ@!Qbsb8_^ zONlcJ=M0REj)N6&mU~$eu?2^f;T}P5TkRP+t4-So4XIQpAtJu020vP`T?2z@1x3Vd zvJ1qX!amg}mWG+-dq>E0of@wos@EzJey05Ent8dE>tKl|t3mre*_a~%{M0D|w-9f} zC?w+bfEz#g9_ATATsZS!`bnjtFS^eH6s zdY{~Fa>v+oy@j+DD2O^9u(yLph#W_UVr5pQccN(|L%vTj^!N}UkkH#>=UUua>^w(f zJbJADK(RUlt4b}v)x_UlVCbm>IDnyO(zDGhZ+jkL3o0&`h0 z@{No_wWBu{*EDzEFzZK`(=~~~dX2&bK`()oMNe|h|4Dlo1x#xHR(r?t-E^1H#SqLUK8XTlHbx)yx-zJV%;W zKH0>$zqd^jvt0{Zv#3t^*dDNRu~*%VWSum|q z51|7P!|^AB8yP?XE}H1sStdAo3W_XgHx(MPwWI3&GkMs-JB@+sRef+T-$|bg0qg$@ zcvks%*4}As_(r{2#p-68|I7JkSlVNUnAGeZE@BMm>Ov~4d?vr*k9=pVw`DKNYshuG z{&rknNQbtbo??Qa3K@Uo4zmWL7IK@zzE~4tS9XEc*vZt)r;Y|JJv<;-Pq|0 z%OO{|+~4Q~2Y_nK%zLWsoY`7QB;R_zdr#gJaIYRa=XjEGnV2kj4}%4b7WKja_3cjMco6HoZV~yG2pj)qF`7L zVJc{QADVF*X?0cOT;3WMsv=DOy3n*h`BatGSlLolhrUJwXZBrl<;2|=MZwM#05d?$ zzq2)~RxsboSgg_(FUIe6>$S#fx_X73LiM~S2ib$bO1gL%8=}nT-y8|%NqY0{0f5ps z`ihbDjgrz?{)Wz#?J;z;zqWa=h_}v~Uwwh0e6)CN<68v4cmhg&di-qj$o@o|*H)MN zhH~@QV{>G4ak_TpTan|pCJ~N~V4rVQwtu+3Z0kPcpe!WQvt4J6;&li^~|lB(=48NU`r2 z$5ptqRbX95wQEDI>V|^m?Dw++2AZ+`PnhjdQ-wp7;&+p8j}{AOe&HW^M>tULnR|Ok zuD>oM_4^m!6*k2o77=|29Aq>saUVY9U>1M`Y;3hvO+r$Wxlm;ShBD?sjWJS$x#CFt zalGMd2ttrizow=n(pRG;iN|8%w`f9%viT0fnpPY@C_nri9kzc)_XwUrm{EN^M?~~8 z9KsqptPf>CkY>~*A_I*VIO4tc$c;w&m!_F!^Xs=YV7%&ksTIJ23`_L&b#~lbrq5XC zwJVsP@(gweY7>RvwgO%>J>JhSGf$I)DB$V(zS=M?Nr#PQOVRaGpb^N&Z?Kz!PpG`j zY2z{z2Er-Wh6fb0NAky>3RpbR633Wj$86{78f~M+Q_WnU=k|wC%-kU%`fqsdB*QBV z7l{ai1U_VJ?Zx0LjOU$ViklGOPDxDz7Q{@2g^ zTzoYk-lO!p*rq7Q`jeoGlGu3*@oJ@Ulo@R(vh4SO=F>b}N0A8?-ZIw*>G5P#o*45` zoR=`K^ynmrr?zg-4U}@Yt^%@cxh{CkoMm5 zoPXV&&8X3vA}~MBUNYsjSVrfKEPHdn=5k+U5I|P0`W2GF@sfF;XNZy%{u&bu&Q8i- z=V|l^j+gs)0&%@NSlY-OMMQ(3T%oOEF&Z96qmn4Lq!5jYQghe9lB!h2%iZ)m8(i9n zQU3Xn0y1<|34=SAp9^4;)!bVf2iYvJ>OpJ1qf4XeVnl2s<6=0?EM1vtT&$b1{(Ngg ziP`1QcuaAAau(eR)Xs)Je2aR_jJpp)irmA=VV~$?#P>g8-w^PChhYw9GrTaM=nm53 zC<$un+#*J`K`QNg-=oW9v|YuSD_BV8lzPB(|Jl~}3*`%1sRC2!;!GV6;0|>541kSrttz3llsEV32psoEb>y#`{&)#REmCm={YP3 zkS~Izr@rF*wXZJjgaYCHsz`u-g(1b@h09>l*8)ZPyAQk=cp3W?_!Lk1+m;~P8*K!4 z0ZFiI>Zi2PkyUz~diHB7y()Zd<(bL?Dhn<@{q^^L<@~-4$mL_}__@FWXmHolKV{8X zmtDCkNPNtjG0*go`N(BIsa87)*ry2&G7*|kQC5h&l5AHtZ5%aE5u`I4Cj;AF{i3TJ zcoP!fEU41C8?#|4RP34arDaw7u5&RktJ~QYgl2R(7ZZT|fW!VA{8YQHd(t7WicG+# z(LnD{Opce;bjQ6R$qxFtUgJz5bgkxTAoiq|Uby)>LlXGRQts9Xg1wpWOPu`;5H@|AnueaE;&Yr*p!z}53qVrc-7QXPLS&p48sckL6*~l23wsvl+#eZ@qD?{k}E!>@*~j(GCw3uZe+c6>cFUF(NmvF zC7+C~{t{)_o_?MERiAN})$tgb3cTL4+0ux5*#%N=;LyJ;H-rU?%dzP961Dfy#l=2g z7sV9@3e7L;bw(0rhldkSXDLwUl}hx5Tq#%^zXWR_Rz@Q6=mT7I_Se|Ta?%1L^4NDp zU9)or6R3XU9B02{=iu1H`}AmFc}s^F;7ukNi;7i&ih z)Bjxo@;ow7%fz+n`CL9A&@#?$i4;Th0(zq zq4@P%1npcbS*gTbO0&BD8R^ft-;ju`#KWw9ySA545D}A}9Ns}CKAj7;@tFi&)#MX0 zP?>BsaJb-4lf%)F2=;+n%78RaK%c^)5i9`50Me|Ahl4GHEE$u}8Xyn}nlhj}i8BndXM!{V9@ULn(5BO=r$<`sYbb4v3~;t~tLvr= za%ox-M$LVSxQl5z$uH~snh+g~V|q}Z#dTK2Q8`78(k3U&FYF74k#^;r@~!y%rO(}G_EA+zTka?F#8vv(l>5w`m)5p>zc?}JARmg2a;0vX@8X)$ zxrGwVeI2^a3I#e75dbX2(7D|AHX2wrq@S+utY)mi8fBX&1q}yIO&OsTGH`r?G}-iU zHU*Hj0#KEWC4DbARw|3e#iG>jy*FKP&EG4~32 zmoC^Zo2~LJm+tb7QgYY%8DF{mc~wIt63q`c`uX!V5sy>UWxeE81)SF@eNm%^c75VZ*KB>B;`2 z;ddS|3p!af%~7->3c!l$pDPw;A`&Gk9-}fE0qJzh^_pOfN2QS6w51KeW;$q2Gwc>K z#ui=$hJHLy5Ccv6zghsx1S)re`Nq%I(vb2=FrXH2AtGRbP*dgt3ry$(6*dbBHmpzF z)DwFHCb+zC5sVNNXL5^sPFcLNv>-LCj}*in zB%n`#2xa~aM{dQ&bC}^Iii}(a?`ivB<3!fj+0pGkwBNo3JMsYP=y%-A>orw^cxry` zw9KZ~+_i?Pr}WmHpFW3q)2ZL~;3*u^Zz*gl-tLh|@GTvdJNwA=0|P7Be32N^D_f*juK7AWtCz#4>hE>(_0DNNN*N>a1aA&IDhdw9bkWyB#<|~n11hB zccL`+tIBq9mMF%!i3+ z7PVFGOz=o-eeG5ewfKU|_u7UZRra6A9V$XI{cMyD z6jD%T>j}|h1Ft6zzWU8PYR1716h*Dx5hTjS2M1bZcwGy(MXMlwbkF7HBmQnTJ*tKi<85{MeCN8$Q(z-qr#~Oz!UG+tI~i0b9dl{Z0yvB||xj zSfxDrQSI$sY5BX_?~8CORUpWb6c-C0RKtn(ev$1}t}+)WCwF|-FPf`DGZX;A>ao}8 z=Sm1HyL1Zb9^CP)S7%I4B=R6z$X4V04t(CenRdWvFj$>f{tW5tn$OTY+iH$z=lPtr z8Hs8z(9U~uOipdHt>#->Odj?#Q?Vpj2!j##rSZy$6MhZfhoyg#kxQPix~=gT-67Rc zMJU*dnv;ve*-$zrf0y}tug1L7tTc1QlZk~_Ofx}@Hic3R5ovZU6*mP_5IUbsu`{i( zWd@q@?zuf)s*8!Q8KT9eG|RKUGzP*?L*MCAe%z3Zg-%N_D`O-kGnP%U{MPApJUXQ! z6v^u>OgO2=!ar*yf>Yt8mk!+9#p4YSJoDfdZ?`D-Lm?uLxs_J(rRaWjcjl(l~; zK?+iH{>VLBM7RoSIUI4S@8WhIf6qhQZf^tPol8<4GKO~FDaOszF=U)$eMFfuYdkqW zz+DbI#5nz-fBL#YQYm=$%cDC;(`mGQd(AgAp3TY^G|!J)7Q_n--a2QRRtGJ8K)4{? zp&DP;fJ#t$7p1e0`iG5`SUZ;~VMI#JKc$bHToof&lELh9>6+(v@NK@y&Hh32(2g=( zsSVvd5#}~IYKcssUrw z(x6waKfH!3`oiD<_5Zy0<6z!{&xf)jL%o2P%Lo|7Lh768S0_TN!+x`?g3bM7;bIK{ z6Vm?g+BJTCVDQyJ)=e?_>fj3~(wvuFsXmya5;| z*x|VcAa9N&-KDBKX7XU7%%a%*bg{X~pGvPJ-}~dLNFV;?TIB!)5=)iC)QW?#9M5Y5 zz$*|;0d4KA6yD$OQZgQ-<*qUGEUuZslsAo76}LL=}fX=+YRK2vu_!3iu+bq88_~6K6d23g`7+NXELRGw=j@D~xdDR;< zSpN0LOT*?Y4Kwiy?nVFt`{lej7~*hC>vfK=u+_JN3zv-9agadwoS08RcK&%sH1PV6 z%ii8DEN!`?BSa!z%+aHV0XS@=QCjt-G4=C;tI$J~uAk^!t2A#)+^CG`?VgGcm8PJD z9h3cJL^kJWTc*5x8kyHj(HvdXR``B_E{4}Sw&@Ox#uCibFnTHl7##W;6`Dv`*DQd~ zzt1>$l zy`tr!xYPUpkWSf{f5Sj7i_}-tF$F}i2YMV^5W%qGTd++fR^~PAav?M(Rhe?D4Rhk4 zHzj$00OwBGN+>_2Zdq-K9wJl|`a_LPZF2iA1n!vKw0mMxPE?E?>|H7uedv-Kc3`Tc znERrYG3s7Oo#pO}({__iZ|+swhCx#{SD8=QiDe60DB8|K5d-C-&7B^FbZ;?Y&#M($ zNP_3Qd(pu4q<+gzfPGdS%Zu5$0B^FA6+DYRBgg%sZ>sR_zEnm;BJUd|H}5m9tk*8} zC_fdxX19`qisj~A-_rG9A@!WVvHZZlyfGzJ@APp@I_R9IsL!~3k_7ueI4AQLE3Wlc zsJ2%gb=#nVoiKlk3(I{VD^xFu?on>(6QJU35bBa=XfzR!b_H+p_jZ;uafnByQ$ZFzeFCn{3?&FTXjn(nbO86K)<>eWp)YTN2fr4;#I; zuOdnA*$U}^3y!5y|wZ%gt2Spw?1r~Xs#>Bj<$lV% zOegfQxuQPduw&@N;gU{38I`@@s_{4=;TOt_ihJyWm3kCn_5?TuUw8;s;?(fd+}bD} zSR!4{l&r*?O*VJ_ETm@WXJ(YsE6toKRI1fV8&wE&J`FACU3z^38-{PADv@nR2gSA@ zmNAJ_%^i$9yRo{v+qLC~{I@2mg%vs%mzhz6dhtl@;cB|QY#OF&{<%y6?i>x+MlAdP z!SMKxVdz<^A}37CtcJ<7rLtm5aC`Q=mo}}{tLCH*Xp`pAT@$~J5N)ar{YBC}t_#wB zlImumyV?Xsb{vY|>W4+UU`1DHZWeWT;5Z>iR$1piKQ~KW_7y9eTQawn-6dbFZFl6l zbHiG->gi2dKiqcWY@V}|IitB|q=-+-49|NU`Le1kvnM&LFB^Ro01Z@q<;)xF%I7xO z-d5{+!?gc)RT8;d;?ZPO9xPvV>Q>6_qvS=+D?%1Jfq3HKVUJlZOf-#h-B8Oh@*)wf zp>D75YFjB-bJh_xG>!EE+aSp_bLCUYHr>IiqVf!TnJ5J;iECG?hY&ZGs*@ zMqi^@Gv{UkUbjpVm1gT^CmIz%)EFjBH@8MGdxDJTl@dp%im_D4Ld4O|(=V?dX1LXQ zabx&hE=(>-5wdPx9=)X5(pRBtl-4Ni5NH~T-D9L7$ejA?u6*K(CD=bDz|dU%gf`t3 zQO3ZuZYsH%Fu(%jvnLp<87GR3j?-7JXvC@GpFR5k?!}!!NfITQtWVex=oEq$Qbdv_)@$k~&IuRwktnFF{qbwn&9`6Nb>Uc41%a?M zgG${LZ>@pdbjP58^&MamShIiV3+(fVYy{dbgx)RP)TyehuE7}!6jVYZ%RegiAp?{fle zrZ~A&f3U?pW+7v@D4I(fNcW2BgHx@`=twsqOz=~`E=0rvH0O&X{@H$A%i7trVZ2A_ z0-AHLX$VU&kiqv@&@*~q_hy|-?`nyJ1?Y7xt?`{TNyhP**=B8&I%%g8dVJT|pQ!OT)J~x!odB)G@6&^!F&Xx#i;#~kuQXG?@y9`0` z8jmoU@C*%0W|Oo=J$eg_#%Ba)iUY57W}7z`OL!oVThJ2as~-$ZUM^d+rqr!I^IFjX zWBVC5Xt}pViP5L?6Ps)lU5J|-On4|x5|JRH{|v!INPmIG^6cHduk;ZDTpT-w*`2b=}lq&|5&VzP9gpLxa=Pdj-IB)8~jZ0xqAXJQ<(_Q1Ei` z&6%0u5p%gQxx6o&7S&E2IIwkfqP;HDzf-DTa)fHDUASDWrJ7-OUX|n{3@uxM!@ zW_&@H(PqGBU3px^=npz&)a3oneUBfD$JMVB=SHsCO|dRb7o{ys+C!t{MTlnUx~#vf zb?xF@Q79BkjoXBvQfjTMxl;QQ$B)tPFSYPn%>=h~4pdKK4y21jI}=0Lw_^g0MZ1>0 zMaEQ9al_sGXftG#+bw$q{AO5i7R1BwHm9v<4_%_U+g77UVKY3f)!YDfnbb-^Sf=9X zzUTJMO~iU+Qp!wX1*0>fkuR76^az-TxMX^$BA58{Kh%H&A7|P+L|>&H(ZW!uzBj$C z!e7~-%Tr?&eZCc;mcswvsPxK}{4kIt`JFHVrJ!^ByWpEmM2C~*PgS#&h!5i+1eBY&9lSe`3@5A=D2})4dQ=Lbi7ELpiQ@aGf`O>dG~-{rIee z9&s}0(W>Ca(zF2gRl|+DEbGjMZCmj6<=#PJ)7>Vh$6hE6ad&nj>*K!(9`EXsj{E;E(NN#n zqq}mP(>xZHN;%~eYdXK62QEvGuyRNb#S zGVo+VAqX@L`QWZD3X+OWkpnnSEM~p>rxKihGE`|+4RwpLb$8_IQ< zXVLJ&lFU1%8B25DCl6kvrxKufD}x$0RaH-&sQW^h_|UfME3G87B~QCKWo*@@Dv{b_ zK&puaMu`OVV>T3LX9e_4RexXEelcc*rgptnyEP4o5c4fo4V&CB9gi5nAQvfLMDcsQ z^VG9qF&i0{BT;b8BYvnDRc3XEhGa-0g&L$J zwlZr`49qW!tK8Hd13py~UzBx+xJKWsC_4{hGpMNf*5q8{KjbHZJNA z^jbTY%}}r_Ptz%g(^#edwhcZ=ca_8*&Y? zl{cCt)2II&xO<)-uML|M;dle8ZJ`~f2E8$F(2}$CX@l``6R_kU5=z#}+)tXXCsrYe znIg9musw++6$%Z}mo$XJ_)Al|E9#NL$|hRc+nIxrC#2?vrCE*+;Lu*%7Pkduz6Aoz z=6?VG_kH4)EQP{&Cn9sBZ{MzDvB&+fAEV#BeS0nl=WFQ5$W%&MJ7#9;mhXj**J`Ir zR+6|Jyh86Q(e`S^+yNbNO|Dl=uOgcpW%Vze*S5RgyIE$L{fzW@ccMx4@;YnlkxA?5 zaW003$Fc~VWK36SZSMTIvt1ql$(QxQ$NOCkX3yfdDS|@b>U(Um*1NaC9boQ^vC3-J zexu%o-s!J9#DP10tv9j7EqX!0@7UK^!6&TF4s>Fljo2K6S5MV0n9Cm|0Q3e&Q!rA= znpX9Z$)8+E81nn+%5I`6XaO5-DT|>j8V0%P3hEr&E5R&YWX(0Rh&Q}B338(XS`fzLR;O0^i zd>Hn<8c&)sFK*C4k~U4@vH;Ce=+&!2e5nwaToqMrp`;65!)&i}-NFU5JrG-atd}08 zK?AM@KeF)*dP-jqQZ@nvt^QL%gXO>D3BQc`kD#^uZ_*#iOk;S?;n2L=z$7UxKT4FBS~l*jqV5r3fL zc?yV&`?|@ewX^2-Wh-^gXstuOJjO5YEOQBWd8of5@oLxDN$2purs%J=pL_ArjuQT~ z`pGQWzw#ySrGw631ydqhJG9;XUw&X4AwKL~`rM8aD$d$;T{udabsN{W56yK?!3~Mk z4%MMZK8T74XzxsGaW`k;61Y+_7WOR4s*$=FT3yC`ppYc2Lt3S*wviCb!H35qsum>>o?g+x^38-2Cux#N_m_E3sN z0tqF7xNdRLU5MqF$v(gd`g-)XXqjy=ke8ct%L6}x@&+Ke05ej2PWVuP&-WV7*Xz-^YdpaeNVp4 zS347URKFp(y4dzcf?Euw`K@p14Q!Q&zAE|}u&1=ZO9lazgiD9wRd%-AyvB^#t4>)o zn zTIh5Ujl*cs#>u;pQp2VJM{vf&6*oV2Nj_6aiBDkj?Gq;%?$-RYrP1murR10)yKlB$jpRoq* zU7O+1_k{A7X`)3)%S6uynj4a-7SL)p zY{A_GL;yC~rxz{!hK~Zb)WIvKeOgsCpI)x#cu%$6yq%wB#r)V&9!U5b6c7uI!s=B! zB1wDqDUsYUg#?XSz_9olF7?xcD{h2wDDc&ny!|Y+GD2sBK(aaW{CO3T&3Tvuj8CNjN6N2 zc^<8pBeum+YM(Y_a(^QMr^u1Bg5DHL?aMT55*qSP76$I$#wd9XhZgTn_04@GZH^3E znglJ&eDjmkh${UN9h6h?id^^6oQ?kIhlxNE{|n1N3fR(~3Up*`2 zijvce&z>hx^xV344M)^U?$&HBi@N=CsB!yR$aWt@D4j$@85l>8CgVft*s;SQ5ux&v zuRW5-qk1%jf{J!1qa-^6yn6Hp>aAVR%!xZca8VP7<010#C z&pr(kf!0j6UhAS}@7lX}z714Y-k-Mr2U6J$%r9TLNgk@iro>GrLVqrvwAd_Anl0%1 zNXlv{{r)9TfBC(>^h9tn+sIz+UU!XPOV+D_OXveoVLr~j@2jP1&!}hW_$mEMQ~cA} zyb|tYM@Csk%p{W)s+AS^SYU_@HzktNfMc>tk=jufPq`bxkAWgW)u9_gl_#s{wq6h} z>tG`AhC9kff1(D{|A5GBWz>?bPhM<^gF2Z}8KFMxG&N-#7Wf)HTQ?+ny{83(w0{iY zX}{%0@LVcF^bQm!$DPJOmJ9`JZ{7m9kmpTCW4yrK5Wa+krveuUd*Pv0edJrHe_c_J+3K;Y0fGo2K7-^3KpC?_WFK2zB=YrOQX#|1ZRY}N$ zsjg3wbQaq1zOBrX2Esqh)oYCB=NAGx(#X}&Tlw5RR8wig^q~--1elwg97Q}g_Zmel z?@kHWkas)hZA1u-uXWbPdM8_271IRIjYHLUr-uPBp=?(Ras7yfm^#HYOSK& z`wvMb^~2LMmRw~tZiUa+5rruoQg&l_>o4?H(nG{Q-Ana{or#-gdml%+`dImrvbG{( z7p&tb<2KF1iyEl$<3+|T(cr$3H{GD2`gSx^hn7h3?N z-7f#2g>parXHTO6Xp+A#C2Zuc{Zdc36GglYx@H|9PCaBM{&in*V!%HPSi-P^+!JO5 zI@rugFRTlbeLpC5i#EQCqt8&7BKWgRe%EPME#GG`?dVxT9A|p(!G9fnHgQW#ss8N_Q1c&3xd57=V@14Ul( z;Oq|aNiyHKuw+(mm2ptbABVYXT46HV*GPgdjvGBFxMN#vS0!oI8@L~%w_{iUf@6pe z!J}wU#&NgP={AWH8DsoS@;|-{eIIF4Xopg5(CA$r`Op>xj-ym(=xp)QE=7Xv{$V{4qbf+kT65`SQT( z!ZyvE*xJEVow#eKj@8VD4<6E)84uEj`&>;30OfqZbRZDZHBUS=J|IdC=Y78387%)% z9dc1B&9C;GL0lCl^(lD;dekR|9TQ7r*scadjrLb$X}myZdUYo;Torx0UU9+a&q+K6 zK4o6kXer21DjvD?6l{8}e?ow4KMQBv`LY4j_lk?k1Ir+oK{PaH?B{SH*qzj};=~S$xWpk*YrTFKJ~fRkm`kA6J*@ z(N}Xe3Y2Hsg` zd_4%nK)XGK!B0X5uzJQ&ykzsh$u(ATY$O1^q0w5^ggB79gS0qa&ySdKa40%KHcB;6 zSuzO;!>CpsnY9ilN0f=q%y4Dq;hn8qwyJ1qlNKKx4x-X>n%%9B&MK?4XR z6VrUXNWt|*BRA29)zaX!+%fR}Xm1 zh)0bC`jGnm?+!;tk`SQRu6~VKx=N|OR5wj=Uc%_QBZ4r2r{vhfwQ+~O1RC?#%j#l_ zFq%tNZ*=in4T>4nmTeIZUgv8d7i+Y-Eo94Z+TEXj|F2#QO7z`i_A{c#-IYcf6OTsE zROZjR+n1d=Z%+j1JTn zd+6vm8?`#Qp7VM|4Fn(8W8II^OkLUcMnV0%8i zr-c?L`(fwaopm_}=js0UIS}xkC!hfcsZ1Uc`D4(y%EXaKXp!_}&7Sgy>)}~Pk7k*v z0R*+iSy#a$v~R zeX^24%(kxlnZBzNfrHfi>tqOoyp%v43|w(75S}?G)apg?N;OE`O0+b$p?Yc&Fa4;>M((f(+qN5a0fa6{?2lCvuLHUtJ~ zs?$>|(7(8KG&DIi>SSt=D-4F6OKZ8(PI2i%r5OSRluhu66AmjYKYItpG80XMn@&o9 zR`GQZ{5deuBqL;2oG;ZZDUr_&L2EFS#)4iOjE8~wMjVvio6QBl+}v)l0*m+ix|BR6 zq7j@*t-zf3jCOGVB%GV-9-qnRuVe{8>Sv@<-AIjL3V*mP=gMK7dWVl_LqBz>zeAM?E0)b*m z(-tW@b|C-yqZl(%hEkVNw2uUR%ev%$PwfoW32O$$RZzsii+!`7Q&yF){S3^1cz<&M zQOa^}ud$yq9;5$y=a4dqMi8Wo()uUXucO%AZcab&9@l#!UG*^*LMtD{)wQJ!^~{{|qje>0#VA_7t-GV0Vt=7IO_^w2S|1KGCn=&7 zIiMqlKFliD13Y7lJK7x7ntg0O;-~v1`zg0pU=VC&Sr_guH7d{#*$<^ee(Eg@iS`F% zHA>;eTJ<4O1GTx+rl($J0Z@RWFJ@}K3xQP1SdkK<1Xw00W+4cO!<}9e@|b5YYCH+E zFWSfJrGrx^O4gG#;Z|M={+0UQpTC}7#2Ib8d!Ua7GQO-kqNNQmX*UEU0pJe@7AE4U zwf@t!j*X40k61-dQ|KSSc*Zpj9>=l0*@|=`jumLC5r}r@uU|vj7K7zem7BeOK_t37 zhCmC^0leiNW{O-pQ_NwEDVnA>L($P+o!;NhiVSBkC^Ts;Yr+#e1qvfIbcC$AnegCRn?NkwemQ9q{hZ80)DRKKV55>n@+ zrF_6xec$!x3-5M?t7hpcw?AKqOMFRL_1?t$qmqSty(Mj6DiAf?M7yNXV2p=OfuA`f zBa>sjholVH6rcqddf`ip%Fh>sbg|fg9}8rHx@*{h-8b_G>|28~r~`VU8QhR8o~FUQ zVm$X6d{aD^e%QJ#Rz-f)Y+bL?@#<8df815HKiz1(<-p~CrfcD+F|np^Vcxs=+ty|2{Ww#AoH6&% zo#cyzwgikJ)APFGIg@CG*hvi-ht@)l>k0=EIZLZ=Unl@u0cII6x44LJA^Z!4lKC?+ z9iBtCzQH?K4wgx1B&ErK=cc(pgvCHGS8NR*-4R`eCMk0^@ZhL4ck!fIkTYX0{Nqgm zXA54u6v#2s$LYCGvvG4HO>^;rGg?keO=~o~A8voFukYHJ1yE)-pw)>!Y}+;oIY8agmiMNa9*?C0;5E;h zHZt=0bU-%>p5aW6&N2xd_SY96bo}-0C)BUNVo1v5@6@~jh<6gp=2vF&@wdr}H$BYT z{4PCWcnu{5WIqkMf5GmJVYAB1Ad)%YW&d!Hr;EKvkJ70OOUUK-T=0;^+mHL5gr0C3 zEfR5KgQKbmo0CAPN#e)o^I~h<*%Y~*smuj4Wl)?JMmXI8iCS${OeonAC~;6QHNP2d z87I7@!9)1R!d8j3ifO>Ls+-yplcA1kmC*3XzXVu6ap`AXI@6oLTU$`DRye7g8L|tZ zpEjfb+C53hi6{uQV+PGfmYNmYK&cfMz2Hn@A#As71>D9s->gk`+WGpOc2;8bao>Iw z+|m*+q}t6T$4O})h=stm(t^*S)}vJOojv*?LbHPePzF;5I;L%%b*y%a&;$ig1fR%r z&(EdrJEy-Frq5agd~+-oM}-f|I^f1|NcM`aXW8ji6?K547g`8XK4#|3K%L?MWfbCz zu0Te^JT~LavfwTq1(Ui=feqFWFM%nOSdLj|`ofd%rjvvjgu(Vy^JZUHZQ6_h6WNlg9F`pn0bGzs>?3HLw0ZOK&|M5DU zPKimPl{Zeo*d(cX7TUPF^a~>+90YH4G8YBWFps2b{&?jK$gEYWx3(D1 z!<21adU``7ytCf#r&HikiojIc~8C+D%CNYW3!UMh+0Xdsi zJa%p$1_QS`eLF%c*M|;d-cycTNT3ng2n@+=H5Bb2YKy3*W@TT9jMnMqPRxN}#5li# ze0*p1fWUan)K^A~Y4FG;5kt>L0VD19O>3u&F_-A{u@MHIcSe0TnJmI^0V)0=rO?PJ0vAVOUPhak5s4~M34*5kF z25O02RuL8fQ>{_BoGq=8f#?NIsMkGNodk7Ylh7DoD8 zzPfI@YFNx}*sLL!U@enFT-YvoYpfdnBm?&Bf@OHevw%+U zNRBWjHA7s0U^svMzgEe2yb+DSJl{eE#<^>v`hffK8eg-Ib!p$35ZH= z5}7G;Zk%*q^70w$Uk`XiORbbdlm;NByg~_?BxhNeLBCc$A7><$B}~vTOe5~&dmARs zotTzJbPr_fT)?GJloLIi(i>qk;>rz=9}hSpoIKo}ii>mnOkQ42-`w&=W1Po!xvcF- zEnhzAm-46a){EHM_yRk8D~DsL$RUfV1i!Yw-s%fDz8_C7(k|$ygu(YpZpJvgCa5gz z5rLK^>vQvTkX<$?3u_0KNH*~diAHfFDBFo!mU)+qkEVP3!7wP3Uf{|L*1y4G*7)n! zqpZcO4g-UdfaDhx0NmOOot^!(ktSw_&U!;}Nr}%A5Eb1#&YUEYt0*XFT+&5E=|j=< z9|0W|t=$~l^XX$>=y>)o!GlGDE;{5K{rqWO_{J-W&Yzw!e;C)M$@9{JN@+AeU~GqY z5Kiw*B<7HqHp9|Xm#W1QE}fP?(CUxm4>Si|42@W%F=%{!XE;1D$fP_A?m$ZdjhZhO z$MvEw3*)8HHSKT#$bZ+I%5UrFk#v%-aEB0KAZqEQbl_q|krJE>MX7oAwZ0-PRqgo|BCn>&`IF=Y?=7?)5<=Q#D7yDqGNhr5l|ces8J$>Q}~C`goaq;?B(t0HPdZ@otlM-AqfX#@VUglq#y zWsHU;X<;Tgvt)_3&m3ev^ZX7iX$`k*O%m?D+_2dep;STdlq9yCR!B#D=dR@7LJ z85N`5m3X>xbXYH-LD6v6GPDl}URyDKQhVzb^W8M3^|hoU-b4nq-D5+^lon2;PL zp(ocvSOQQmHb;Zou95p}Tj@NO8%~3BV^2n9QToa)l4ofo^B7W2=o7O2Zy7hzS9+Qa zUv#>;B0uVSJW_+F zhC<5xXSd1N+X}5uO%?u&Sz?xr+3NE3!%pTXIOg(K;@F{1e<)9X;eFV@x8p{La*u76dWsCAC0 z;3<~x07XE$zic`7(5?15A?1C^k-R-y@)9btnLDSgvH^s3d$6>z1M4mtq?T|Iz2YM3 zA?o4=EdIQF9Ci+?4{lBwn@bE6?KU%Y0AxOc_BM={1iR09FGv=mecTfslJU`zg93YT zOo1Jo@g$P+4GQO+;4Q?&^kJcoTaNzub94*cZc~hIGLFQb;6R~&lI|MOw~CDqzYY(N zjCe>+aKWO9$K$o$5FXMp@zCQ4CIsQ>3o`==r}2dIkaDmk(QT?&E&SMTv9|S&6XJknCMcy%W2@rdP%wEgdul!cz zeevkyGTT7sO3FwDl~dss9`+PIA%681n@s6mWE&6(nC5c8(lsyV9gs(PP7hc92rczs z1*EYX;^fJiOiBZui#@5-C{m?XGQ-G^>`gnqI*TpO>_G@HJQ>KO2~5KWF-$y0DAG#q zt@IR34uMfZFui753z0sPh|B0G^vM_P~}qobEq zrQ0l5Oo}5#*R0Y-wylJR92l8TH7-l~!I80%rumsuY;$h{jKzA1WRep%|$Mtgz z>Xr+=pZTauYs&7%qXV9JSn}5Q%GN$Inb@Zcg!Jn~;z5y>%z8 z^3vmGU7;TFwL<%I6im0bLCFC%Q-^5POQUw?oOW(4%3o!?IS^&_RtF+&ldlJfLJ~Uf zM+45QzIfJS^;%d8uD;1{8XM`_dH&`30P?~}5KCuNoE&~*P6xuc7wzHzhfi8dI^1I1 zK?i^(IYS9uox^YP70QEYqMHOIy;UmhPlW)g916w1eH_QvJjhlsxs zzRRIMb@u&1a;aLGnikCh(OuI)>sTNZU)6T+O%J?}F;*Owza|+_T<_`~#Wq-@lQQe; zoozSdrLkLV(vK&*9zm(eQ8rS$3sVd2QGM&{l&w>T>}7wI?C(l~^;=Qa)VPBkGn3IpP+HR#54sm{HY` z+mRkD9%1=qq|fB0SeqliDuv(YXIAV~ZgKgK%|}d^D44=pDbsI+P4mHNj^!aETG1E; z%18w+gU}@LiOGOh`t`J+uUxQjskjx;D#*6=jSCkq50sTIXTH*TAUTuoOfr{&8gQp5 z(IZ+dDQS+uxbwB$YU{MpYSgV6Js%ppFk+MQ@*7}oqcGrMU7Tw&lSwJMSnWmIIA)e^ zM6u4dyCpc1LsKr^Z`u`$#G4rQPG{dIe`MWotu39|N|QZdx{AG7JZ#+T$Dj;p*7UX{56pUxSdX5*+lmX{xiD172Y)8r^qOtsfs`JakDoOQx94|Zfum+8Ls zezZtV@&Kz_v2H}f%*thGFWQJGGO015Xk}l@lu>S0J&{A?_VALZ`AGj98-GQO?`Ion zey1g>LZ#y|HU7rnV|vAv3w8~GK4I%wfbk`UB}`S4+3I45lSh*7q z+hO`l8Q2kJcgc&M^(|;weL5bf!FXvPPq_skm5O+LD_)Dkv9d#P0VRZg1LnA0ds|x@ z9@udrnhD%^KuibLb#T>`9o55XyXu1r3*6Q%0o~}MTRq8ti@^1h*ru{v4Dn@&i)wLO z{w41mvtC!Fhm;x_C*nwI(|N*U>hvW_IEolaZFrT!HA2U&7A(LOnqvi2eC;=E(YKM^1`El#k zQ}QEbC`U9$-j_)}w5QbIh2(D4+Jr@t1`hn$ssHzl@?M0Sl7Qxy%a@DVJVYcuZt+M* zTgMhni6_ZJ)FzV0xF>J;a#d{z1%Moi#u59?PRq~TzJGU00Y8ZnP-B1t17 zR+L{Za&t*>4R9ORsqnewx*$Ff1j%AY>`r=>#l14Jah6z<{Y3dmuGV3S_LkZwNdFL4 zgH)oe?3}!rpC6S)$#jo=`r1deGnOa~Z%=e`N^B385_1APJ3fuNIMJ8rg!Roe5xQJDC_U?_s{tY_J-Nuwi)+f zWY`BH3AvFA+bwfZXCvY)F-@=*oP4jXFR69SX!cT+vC}QbE^8!5_)9F^g)w0jJz=Z- zj9E~}LB=d`lqDe%*8d7mP6ZWuc1||eUZutZKJf0wtU>8^+)9T=@YB7`DX_^3FP)i+ z-l}ZOlBq&7M@<==uP0j=kQyv*To%6Pj9eXS-qE8CZ7~IF59R2j!o&fVtm}T)n)zyOF+NOMiR^UwBUR5fNa=fSkCVa9152N(|@>YDi4> zO%JI&l0c6qkRajwR%$ zO>Wq5=AjE(0Ms-6Kt3n-O}y}A4gOiWEJ6fSvzK+T!b$J6YU+fqO93Djd_VvMQB)SN#!#r_D+d_kI&~iIvSZzS(4M_ivYX2bq40%5HH_M* z$^tksg4Srrsj8}+r(w65Ms@aBOk-Q2Zcf*zcyvzRM4MRH#VQd_I0ORy@W$NX!*e$t z0v3rCeE9YlhRre!e~<-Idp>cWJ{Hro9peUl!p4jv$vgDAsPKfCX;7=1yl zVD}F<8`K3jl<0sMOc_Wlt(rF{w;X`k) zw9awDr~6u`W$5Pfn!R+azh&bYS84v0w}D z2dB>*Lf_-4s)9MGaRN8iK=~Q5i-NDXC$tjK?G_&6p5gi(t6M!~9vq3pNGo2^m%7E? z>R~VSM}-qMjC$2P@HQ!V(6)!=L`dX!M$6Ch;}dq}`uZ|%M!hK|!({mL?*qB+E}bdi z2o%QKl~6Wb!?$t?jpGD+s%ZDfJc>-pKeI__E~mGcjsvS!7Y zusJ3)F4{W)=5srbLX5AK{q_nHnrrs;8QkXe^_70lKB#Ib&#-wSRLkR?ylTBoRU3f< z>157=O}yQ)t+ZSJghcUYG!J_kE8*RpAE}H2p%*%;JcBuLsRFkF{z1=w6aoc*p%r%r z2~2&v#X&v7qc#&8uiKzycKF>vbrF;+Rr+85ANEn+GiKgDpXB0|8&bDimk2NgQpNxn ze+{HkULf-<_n7Ne(RYR1SE3so6@q`V?lR(FK?xt_cBx0HJUI&wlgc!1SUaIVy9165W~)bEVdWK?t&E>anro9=REA^l2S{WD}o3I-yMc) zHONyJ~x~)-!6B6-+T3?r`y=Z8V zO!akq*TxVy`3(ue*5q20roz;H@kvO+I>w7{OMSbH3d~_IE!AtI^LSQqFvJ4Fa>~ws zOhb@g;DiViL=ZM;Cg{79Q>AfzaNnr%J(?J}els|}5TWs2c#c!wp<}+N)i_mc5wZ7W zemAhVwjT7ER#jTZI`nqNuM6Z`ZRtLRzY~Bz(+$xG;BXs#^j`+y`4DGI214ERq58vL z3MK1bq-Q<%Noag7-KE5Z^8Qv1UNPj8x-bbMdy|$ohJ$T}bI>`+59*tyv-HtI;PvcI zo|H+!6L5#jX?qG?N~|F25cWDvxT>YndE_OD#dU_~)dm2+`bXvj&Hq-`fuRDm3+B=R zYXWOLZz&qidpsRa@kdJ6rJ;C3PHHnP%c>iy@9_{QpEUqGU2?+IsT<#j` zWPWZHu#qxyaxzb1yEcMbmQ;b((h5=-535UK%USd1ii`NKG-F+nKC~31jRuTxdElq! zfocYDIvNB=U9Vcu=-9|45-b$pGVH3D>%Bu-UOz|o_*Q1(?DprNv9bjF7brsO;7Mik{3{fR zIjt7%It@V#4hzHeobL+%ymqLi)X+54QbM;#AlG{5(X)B%eE)bGzOJ0squW0&_+)V&)k&ZlVcwHls)yDF-7GhRwz{SlA71SeGBHRa#K0Baw`(tc>suBaw4;>+a^8 zyE`uH>D?LzyZSD4ir1++>Pr?$R3{gKHkcZf%5688(jxLY?;7mlzHc#ftUNg=wW9_cFMZljE zbDsz__PRp@cT8%1DH*Z(;yfsZo>_26cjDdiSBqYf{YXrVEem$b+i-;W#F0P&cizO% zpK!&@xt&$|OSqT7p*}I|w}A1)Ov}EhX5s`eaEZ{)j+Yxf)L-k2@t+|J2|508##_3& z!N#qw`E-OWV_Xf@2|(3x@m;c#;6p)5w6Ac@P+@O;9(k#3PTuN~dk;p2^C~m5M$q`n zcuap(cA~Vz<#{E6V7!wZG^fW|(pzO%7JafdOZ-X&%c+Es63hSqUL!oo zoyiE#N#9>D?yfR3EkLnsvow~=`(VoKP~trS=1V3$E-C5F)tp#%Osa^*X0dPC3!RHX zM_t~ojTX`?0`iOI*n&`bxX?+CZmCva=4&l}Q;fxA(Craq{Q}ryRkxQe+Goa>C*2@1 zPKy2YtuRm_^Z*E<&aZ-pNR{oVT}WoI5}prRv|7S=%N^py1zaw|Ad%pJy(^+zUlueI zVwk2+cCQ-$f{KzOyRP=Jh{bjxf^5tLEYx^B>>5N9cu7tIEk+Z9>}4!3iCk@h-qU2X zP+3&RXfPER%PaAAh7A(j2^#CyZFwKZ=7^+l2SZ#n&oRS1XbWI3xcA+g0SYCJwuqw z0lq`Ao}SV699L>VoU*kH+D~c2?VpULl4)!(2N*|mV?75{qY12aHJv=!gz<&?Cryez zBL$AD4emjwM2Hrm!{oMw5TYsQZG$4moADV~ArKBN>X*)(VZKrxm8ycdnP08+k$ovU z%{w*|#qZFcvM7#@Z#veL{Bc8G{rSh0?Wy~%+qLPfK|PLo`5I5}2V%+zg=B<&_{zoG z+xxbS*Y0R~mu@dgewfFq#iV*u=qyTtrb;6+#jV5h5NQkH|5|=uqI+Yzj2>NY2bN+| zI`nor>!afKKV?4&bXr~3xZl;F-)GgTO=}M778E9qdU~I6vmfOp!&O69Tv^`QyJd6r zwuU!pcB145xvW~3WbX(X6cL|PsTNk|tWnHEjvORy1jLMMz-bKKceKX81rj6k=C3;s z&G^iV$q6NS%SRurI6yTzd2uPUsH}YAjI2)G=RN(j#_Yx2Le_!BUR?gEQ~5Yu2LkK$ zs$H5td%U1>SNXN_(p!Hm?71sf4;Z9z*(qK!)%f52$1TXr8%s-|6fkEriA>VG?j}$9 zvQtpJWbNProyDFlZL$@B1;;-3xZU%Bhi>e68_H36S>?2j0Ak@B;)!{tLlRM%2%FBw z`auBC8Ivgpn2$os>qKBYV3LUJnZef>v$3-91?j*3H=fA{k-H^kBBfc07Lyf?`#!dk z+0dv*UEEZC>R@OSr8JmDa98lcwx9A-gh3Sj zPVeG{tq5mo-YMS6?BXV>ie#Ap47xQ7xHPSQA2fbzEiy~0qEPxGWkKaZ_zYE#=I?FR%$ z`X}qka2xh9=8he`O2Zg!>S6}k_RZB{TkkUOvE@H&OK|}lr?Mf8h(Ik~SvfcNDxH>Z zFz|tqX~j*_Y~(%l-@5#^wC$?DrIPl(DCsw6sl2~mtKY|&#{^g9*rTM=E-w3x3XBeL z&D$R6Yov?=pRNn;BM+?e`1rwNT?Rnl`2+5kl8tc#i*K597G11%OOC*4UDHDqD;=6k zHr5L*?Jp-&qRZ%eR;uAfBX9-Argcvy;pJx@^m>V@b@JeJlB#%ROq4E)sCM3S+)ZZh z(Vsvs(E-}a6UbJ? zi)t=*-PZ9{NTKsE!OCsNmDboQGZLu0htOgNbTfdX+Q}&4&m=}8vBXe=XnIucAv-Yc~5wEt#<(A_qRo#V9!r3PQ(T_+p zvDb$fg~Kxb)%*&vb!|;U&7}tCp>S;~S<9`fi_$p`0m5Iqo$}%pN)cPc^YgkcIkeX% z^WiLVfJnG$--9^Gg`n?Y!p+vm-x-%%zfK;QZnOS8jze;IOttTF`ARb4c4HV6{^UM* z%?bRR?$#0HN*;nEb>pN5w>oZFlNOzreHv`^dcxDLwCP@1JD#@Wv3j)Xvlr8etTDh~ zH+qA1FPfNN=bV$U$_{&w&l^1_REHp7O4+=1b4=r+>{F zJz}v137f{^?qY}leL_mwIf;h)#KP2$@ky@pJwsMfjkzVxOw~oop1wSB86Z#E4XT z@RsOP5gsq4QI%Q#rAz&e71cMl|C^R(y%bQy;I z=SraX>8v=nGuK(Qwce=wMqWCe%!=cD?vBcuIAC&p;8EwnXh!KY)$5|VY9g~bYoanc zYopFCEbk`%)_U7iNk+F+dH6k@OPRtu!fW|{B~$mW6rG`^P9mMg|(`OwEA(}UJ(8eEa{%8cMe z%`O7PK5(|??Uy0VT|B4)+wy5mxdFml#Mz~8&TD!I`8A0Vy9 z_LYqv+(tyYkaA?dME-0IVQF zq6on(SOc)SW|R7tuYcQIk^a?H%$GdpFj7aqHr3b^DfUK#a1 z1%xQI+DKBV)IxZTwM^89h-xhu@a^wm+Hf4=b(#WY-J3M zntBML_NYog>eV&+tKxaMLl*~)Q9x2sae`0zr?5OP9ponQ9Z5$f0xfVrUsEr;ZEmLZ zzu3Y9W2TT=H9Pe@c?1a<8hSkmdIs)AmE+0`hl$i@S+5i(+8GNE>~;xS&2k6 z&H+5_A3=)xrPCLtkWR;}m6~bAM3wdqP9%TAHz4izE`}h|E6c!V97&vKp~gD3BR}D| zq)>H7mlts>H9RPj8PD3TEl9gcM4ub4xZqVWCTHxs&b}jAxdIp?eZ+&1i3cr|bE6eJ zNt(*JjbP4uHo}2$*i)qYnsq_zoNa9ui${ZSJP_@f-1>9)PibQ?0?M|6b-x(+1)Y?f zW*)*dZzB(^lAMws+SM-aZ(W6Kt~@AzN$b^?E6^ZY6htkSvC|S{q45O2aUJTNyWuGr z%RE(3ad~f1UNkvN9Gem&2`a(A@g-jV=Jt;wRv&hR94als=IV3Vc`+hRq#?sJ#t86S zRV2}$%8OgA%)m{3f!~o&zJGE8J(=}OEs+NbiN829N#(8n-Yby^$|$iNS!8W!ucpP2 zh@1sXVW7MuRhd+mt_t>)L-!~K4+Os2<%%7S9VZ}2CqF1Ij&~sytX# zm#$Hiq{;({!UaqYDMn3;hhD2bhQhpsaK+vjh3_!~%tE-2YOpH34hR`f@__ApPq7XR z6fA=70*d{S?l8&Uu&>Iw0?@tlh%6j+?umfI=!E>h!V0uVbN&)Fz23yK*~(I-)#@mv zhx7G~E2PjyyG+L)KSpRHeo7bg^1U$+^^}&D0vrpJw4o4iDNiEJElS7|{c#Wtn*zy$ zH^+50mDecSgrdLqtL*>omLX6;f$9i88pDAxlnMZ(CKMSbj&n1u*@uQ$EbBR0gBN_i za~iADLC8Zzc5udg%(^8Mn6m^kxHlhvlwT@%L+j=^&k8)FB8(p!Cn86|wejcDAqU;U zqr?!T=T`OWv#H>7z$QF4L@jNekHMRviw=Qwu5_My=y5gvw<2x#jIX>(>)h;pU;HRu z4!v#dCsv@do11eI-U8dSM)y7v4}B_g)>g?C(}x2VBCw{Q%=c~lx3{eZ@BI9z)fV)r zId5^Oxu?3(`Fp{XZ>*3Z3_K2^e_eM6zd&IQ@FQW2#Ob+N*I9jO!J?GJd?V6w@6ufM z2J(rQNelv%U*DODS1a4gBJGim|J+X8o`Nu!e3$2^Ij1=2*1ZZY#d&6sq__z0ZtVVZ z%b@`1Vwk_qejRWsHAN!<@&$7W%XUuQIX=*1$>iv>QAgDw>wv?W#}9!x{`}C2k$JN= zCaTH|y)81ceo_0D%K(8}^kLz-mYD0%z9}`;ALHZM>0euyk$Uf6X&&!%s^#-yDBrCf z8c(E+J?KL(`pMv&4DAlE8BjDo3=cWxRLd*^?lAzOuhp#56oxs`%_8+?z2M1E?yRO= zQ@i!sAJm+GC?7C(H2ZVUN(XadwV7^Fw|nXA{04o^3?sonr2X>u?#Yj!@t+x(RoTJ& z6TPNhzMN7k7=bS~_a_Pxq?eExi;EG+OK7L}E$!b%_;Z0ZlUV+=-j-PWd00{RGlh;?}k=%CeTjT3gH8S}klO z-cE{TlvhYs2G32%Ul`E}R@0~Cc;<7H^_E#ihG;W_N+Zn02X1Gb;|^{|d`gISN$vPb6iA3F7=ul4nrMeB6Y z*XQm7VkWpe4VXpfU+eMFaM3VIbb24aSPZAFLbS5=tS(aa?fUf!E=9uP#EzhpbuBPY zQ$oYO7;OpS+ttUSoS^aIlk6G?U3Qcf-(;O&w|~pSomd(FQ2*eZ;`*Cg4Ht~+R_;U7 zG*1wbjFGjFzxOaEddCv@3C?)J?>!L=pYD~CkOjz=7SenIVc z)*kS@Lr_avssNX67ObD=zEWqrym-PZ&h#5;d>goL@yeXy@sc>Kw{M&maZ0mb1Dq7= z{6`er;eHH;iOH33AW#bDI1sRT4|Q>Z>!P*U!U)Xz*6@&^wfdQ-jg6m~)r>vHwx1K5 zRNTV1ZZdGK61l%&K^-sQMq3SCD{x-6wMMlUo5U!}^Zmj<$*ePHX94rG_1O*t>`^JS z0mH<^inR_zOl>sxm`6LmKR7YhThXi3RMB&PllwK#Z)ue{h&rb({Q!uxKDj+GFHFA&Z ze4l{Gq>7VX%s=>geYaciqQHSuR|i%1y&m=(u>|Z?eHwv{KTOxa_W2G~&0f2}jLm%* zObOC9Xt+4r4eny%jmM5f+OPs{yf1`J0nyn(g$@MlHp=4b`?ixdO=}c9>CAOGjc+w6 zKXIuEBgQZ>Id!8!F3N3K0v4%h$g1*YXU0)~8k4uWS8wtDXRScS>lk&cJHrXdZxaa*E0_iv+lS{OF)}dP)V5I@OJP>2nDX zo-+~l_juI0*DOc3Ae~K1WW1WNb{8dL?XhpZgMSCsd;;M7t=eohrFscoVM9kddRA<> z4j_DA^}`RQ{cYf{w?(O1QEZ&*yN*Z1H?2wk-`wgXYdgN!d(4dHe{W=Gps5=uM& zs6F0!cNRdrQoq~f{&Bh)TmuqoOE7yfbaw4920bEo4KRPiPTm)k1NFRe4X;G*ZrTQe zN?$c1TWqgUorX6^!WMtQ*YhxV8~87K$A$rMu#mwxJ~l?O zz78iaDhNkh@=@Di*Caawo@j|?6aYm+*ZilMLlU}{gtskV88Cs}0V(j0gL#x&Xv&e1 z_7lIvR_c`sNHU&qLy8%+cu}=b!lm%&IhqnaCVFS#fUS=zl`Ct>yo4vk6u-(>U!;CX z`L&M0P-kEF5JOLUV)5e6%$A9xs$tc)^R`aO$RP00^a`i@enBS=l`jHG+2!qwpKr36 z_39rYrwrQMtQsmXcLJxux%04r>yAqrqfbnDi~EUbF~ChKf6IV++?TO?nIM~O&1Fiu zAuLZP_NZDiPKs>~!Vd=GI;gac+@dN+$6(;}cwKYSwj*XlT$m930rI*Pqr^r@f}Kcr z^X**{tEvE!Nela;kw3UMBNfPkRf#U~HFq`1uFg_FH~ZEXkPoipFdUIOy)&u5ZW94; zCOIbOR&{W&9kirDMstu9n~WP(V>?NGyCGbU7_L=z!W*>ZeW-*1VuHU9nR+_S&CWS_ z9^4@yQrXnl*Ur9^?vvj9smcmYKq-kZ-jI@VOCAy`-Pzor;FIKC~AnIxkg#JEFRE_du zH#B0&q+aZPUhF6-dB+q%QNXQ_XSDMmyplN_Y;5q}yR-|V~XBWrhISFaFAU8k6$!ku*yc^EJSGK*T z=KmJrv-}|W)j{&|Q29k__J?rgrdiT*(u&d(@*R>&7U2?b7&pUyR-wDvz_&Qyw99Xw zKbNE0@4L&_{_7xztJ>$S{4*m;MhQDpY&H;4L4auz-G8eDr11qq-w*6&e^fA8@^>Br z!b$u0v@3qp9<*DRuxmmcu?6CjG|@3k`KVi=D)YuWFKW~JOaVbnFj(b%KK&4}xuml7 zF64CBx^)%E!*m~Njk3gPT8+5sHpJ|qDdP~aq;(PO9%T5M_-^B_`~<+cm8-v=e?OG8 z*~-cl?h1o^ZZvONyYo0m+b^TgXw@OB-2?`GgGoNA*A^e%{NH5$Z)T`L)kW06IxI=<98b%6lU} zd;iB+CHAF5u!l=cJK>D$!T?2$D0_BP5;hA=VVhZf#%kkFlZ?@=RQAxazhDq`AhEds zgq7{P%O6U_+S`NmGG>G^_TNOB>Eo_1pG_M4=u(X_vqNHs79c<)55!(1c}OC*V*}wO z8{dE%PE)z|3zSu&W$!s?u>Xg-9gr~?|U0uB@mjb^C5Ev3=!e?GFI*zjmb|Q4D zyu~u@3=`&LVB1jIu!OhXiT)16P)2N6vDfmM}z$}e0Zi01L{OR))P zfu4}63BO`^8d`|I>r7G-zM8sey-&v|J?^%A((R=D$5wrax+(Cr*S?+LTU!C?AKFm% zThH_E@opW=^W-w@Hdz;)ORAL#zf~Aa6PkSkl2;ipB!Ak2QaYfg45d#1{WD2wx+u<) zA5zwZN{xUE@R2E}ozxcj?YE|}u?71ENSjIfgV}DJQ@1F~XP8Usa0{iV?=qWQpO2;v zZ%*CsfgO2a=)0Qsufd);lqckn+HkfGu_YUS*8xkbMMbG+PZ-5pIx5W9xDWu(4{*Ae z;MPsxlNSsOfn>me1GePI-i?ZjASVHTm#mzJl7?24ui?0DtQoTo zs!1+h#mj{W!Mq+g-|#}8Zy>e5meHZgrj4= z8?!cubAI>-pzZ=nX>G6<7U{7Tqq%Fdj{ zJ6-jjMV`da96|v>(2xaDnTc#7lvUN*e}?e2EZ#%xDgF@TCuW;Nd)!MzhF#ilBPbjN zUh&S~9u>OfdG`);J-nG1Jyp5fYHt>9{t)nNR%I0Sb;+PHh2|qcnGMo#QJl8w2aXxPeRIhTR9(X3!3R|_iCoR%=rf{e*YNuQ9J2MWPNq6ar z4!pI1Hcme~o3T7?Cn}71MA!X4BthWHg7F$S4~b?XA~449yUJQg`8$lGAYb32RT5)I zYp5d03mRD>Vh_R)3Wq#$U)jJeROYo@y{cnAjje|rbW=m_5v zdRhre4peW9JI6TY%}C1-uZa$T%TOO)MRQaN5+_TXK*8h&?#~4G3<`vF_JKn4B}QuG zWJA+`gV)!p1{Mu(u^pqXhCoacn)1(OF^k+Q143^xvVp zbL#KqOr9Ywh(R))QuiPaAe%G_qZz4~f;t^%wO@@YTXY1Mi1bq`U5>vt73?g58&5gA zGXtii)TcZ5eX>j{;)dPC|}Y;umdv*NnW%@a{bJ%bE9HM1yc^v49`?q&f!})o1m8}dVgcOqEpVx4TXOF@ru2`4y|3%+mhgT=W*RK8 z6(O@ep%JM|2AZRqIayLNy6|@Ka`{9v@5Cqi3d8uB4@&O^R@KgztCSwA@*G zejM6|)v@YSADEAE&J1%pcDX={?om(r#j7lDc9prji1zFK94xnCq5@^uO7aSZC05 zUNoyxd;YU#6dH<5$q{+ee{cxV;hLJs1^_YMsC=+b2Myj7GTY!a-XaVP@^r~n;5w-WnAY*kzmT$khfH&2ouL;on2i6_id@}sdR_6ReKn5@%}+F;L77DhvpWU# zR~PA$Lq(#_o)&Wd<$LE~$tH=!EFUNI+jRfk>=llRTR6cNap8$|?)VBVD91|dUAvex z4XE1lnX>E3xizcj@L_rUw+d)z`dP94nYb?R{>wC-2Wlp;wi=T(-|~XCVfGxN_6vh? z%O@zB3xze{mlYEogz~r)a~g_R!$qCdnJxh~9m-+< zUmHO+y#4ztJ!HJx;|xB;xnC|B?y6|d&&cRFbVA{Cxacs%4@gSJABt?8;h}6>RY)}U zb}k9K%06AjC<<$gIWC|eRg^(GEI}<5tiQ&0=7o96u#nP;%kfs=YF1SYoL;_|fqk%i zcYjn!!PA&59|J*g$S^xB^IAkIuG}MgpS-PX%t$xj)nXn}Snn`HfyZRcbwbgi^)=FD zs6EYAuv}CSJnQ6K_r6wz`$U7Gvh4EHB^h>UCRfN0>oF8QmleUAP=ENiR0;ep?5Ol1bMx<)P ztE$4zlNy*+vINO|PA7Ftq~gOIq0xAyhbD?C3aK`Ca&m7+=AbkI7Y(t#-b~w4x4H>u zZj^{xVV|S9z?36&D-|;2K51ql2!9gKrM(;xDaXF~J}@LE+sg!Tq`(lp4;Ai?l>b_^H}p9?N?P7 zRV(TIQAf_v`BC%S#^2;KEadAi;3bMhZ=9n7j^D%HhYl3gyyy<+^p#}IH+p>p4I>>- zw{&}XL?ScctP8us^h=)3WUiI)AbUe~H~o+&(hV9zDQ<)?dmhg;tZSyNkSKf!btpCc zm31j1>wLBpRv`YAS8^1dobY9?6!C7|e{PfB>sVKWPadRukA#v!b(vRHhXx<1k}NVz zA&n@DOMSSa1CaEZr1Qc9y0`qCHF0z6pl^ZoF$ia4Lg4a`fI&`~0(aoLagn+LQRlq|N5^ zAo?@Ty_40YcT(~JErnoFdR*_*r;T>$0D)ulk34{L2mpz=&?+f^;>O=4ZRfvdPTZ#M zx~)lhvVJ4yn>s?eeeZjjL=Y<9{s&aT4?=5{ZP?qoUOTkK1S_$(jNz z*h0Td6Ql>gJg;ZuO-W6E2>{ur0Ok9R5*P^K&cZ-$X5avZT%h=U!L(!^9B-Jyhlz~s zj9V8rTdqPRthzZZx1Lg6)q<1a1_o5keeHD;K_r_i!DZ5-6g0+b0Q$R*b|>%Z>HMFT zUP}nh?9$2{7&Z-IJ2+%5cq_Hl;YtTzhIJKRG7Qe5N3Q_~%5no`Jsq7tz})-WD7O9m z1A&SYcZZZ4FE5lR#{yqqy*2uG&M%%XD>_(xw_5yI*1|4wb;yuWmVlRmS0?QP++|gB zKYxLG@PAH&(tK)a1R7t+O?NXfhvdf*9}gpO7D`)n|5rxvc=^t{UL!E`&pX(Tml8^17>keUn3>qx z_9L=9pXlpN>w0}2baie1xNG~4aEF#*Qx>e4uAb8tATslC7%o9xQ!$=jE_X*CVQ(cj zt}IhkSE-cMl?pfKZDh11MfN=`+faqx>Zx1Ou+!y=nyU5fY>MsY@k@|BGrB%#I&fMy zf7hQMyJvp?-Xrgd)H@t_M6Yz)-%q=y{(RZqbke$g)YT?gIsND76uQQ)aAI{;TV0Te z@t9P)qS(&4Bf{aTRn|ste}4HEdCt|Ps-evg+l9%YLdZI~68eRYJi;uE+=( zy^}oQq7v`}YQUPoHF>1bgKy<2UAm3$u`IoWwkzme$12f8jI200yT!cXn)Vf@plwr% z-BhJX%=S6ry14`6?As!${;kAcOG{^H#qcJ>TwY;4qze*QhNm77#{DRX9CcvsvmK>v zXHOd}i_?jQ0%(1K`;y*ys0JjN1KW}kq$CXAMaKJE)9GT8$L0*PTpikq$arjiTgC9c z0MXNIIk91iyVMQ8uU zLx2A$raTpYXSZbU+t<*ba!q?oSJJLW2WS#E{5i8%_eRN_EOSx@h0EWSdPq0Yde526 zMsj0FOZ@-%8sBdjQ?B9TMqw}+!xpW2vVoOo$3vn|?*Dyxxe6SAQ39 zr}o=50!rC%N7bOy()6@2%<7C^)zpoujsV|rSO3JAl$Z*CT{W0^43YrJ_Mn~?;Q2Aj zd3Dkz=BEy?I7rBkCljCkJEYP;yF5|ucJ(;9gp94ebyloA9_F{nrbSsP7Au+WbZ)t^ ze9qsp)l0SXl?>D$-RZT}Gb)M87O3hX+x)fy_TH-_BOCf2@VMIzlF*J$*=Zt8L!(BR zTETTx2nyZ7gQhq1?GWmDTs`;EhQ85}V+55CSXm@0=3d%KPU~pyaU2D~hiJ(>hp_C2 zqSERdTekq`t%i}cCBccsRay4VLGDNNIGk-8UXIXnAFZ-=7uLeIlanMi33PpWqwGzZGc^&=nRnea|NaiXT#nC$KguRg@; zFjIWnUqNM&XRbUl%s3GJK&>n3u{D$lGy7*ta5~oM@T^4#>P+7MLU#X4uda)UYWq6k zz3wU|dWDqT;HmmB;tp0I3qB5^%}2CY9sWZ~qv}cWPqOz#awYkt zVfMKTxtqb&36J<(y-k6*{Go|<^2nP?XLx;d4Oo1rBJAW;$YLuQ?P3oWpZMX9ftu~R*EY_5 z>qxKAn}=;AoSJlH)-f#}#G4B4{I$Hh2uEFMx!joWsF~ooB)hs%I&KH;M`>RX{u zppQp9s+yUpG8&cB;`Wa`y;aBL<&N%mu$7#ct}8v{IlaZZ5 z=Zq!ATK!0?TvF(_71yry!WnJoSz3fFUExbel3UtEw-Cd>$K)?;JKtu#>kZqP{YrS_#AOR!cJRfQ$C&JWVVDMyly zLYXAKMK@e#{8`quROGJhxW@|h21{q&-^sT-qBk4wAa}2+LTLUe`D=yE%`~!&m;dQp z^Rse1!g_VVt8}YVd}~=Kb&KS0C0xZ>O05*hZ^(wj(LXfpj?Ltv2gj zo8?Ha&UZ5`5o>v?l+mGht-Qj4$}B;K*S85};;G9chJ`QG=>2rtb9JnpBl?`eIEl08 z=F8#vJ7>(744v9t$Nn5!hks;X6vl6}u0eqaY>4|9XCt>DZ~Z{tULNz&c1aGSL$$ev z65-Dm;A_w05pn{E{A-9!a0?dI)PUjhOP!6*ZEg-q_%@``%^}1Idxd&YNmfpta)EM1 z&RUkbaOAbpSEY9-TX`D!9r>%W4Jryw`9t|r#SViZe<6Rv*rQ|A?vR9|{=&j7ajm`3 z9#wZr`#owb!W-}fozU3pz0hm`9__JPUUN*ob?Iu32|rp z;kgF3`_32QV@_zB`;`4u!hd$xDOa20WWvcA?On%R#~mt3*&W9n#uA)vzN8Pqkp@@8H+}ttZw5(A?hRnQ>%D5kf1xQip0-5#VERy0HuB#4XRgf zb-G*_%N++ublNIM#GVdz$~vmkTjRb=*K(NNEugEZdHhGvZ3=6HEjCLRzdeFE0oX)7 zxkqdEzTys>VMG}2Y&qaOYTX-Em=toaod7orjI7}FYP7j3?FLS4rMtiskCPWEIKdHW zkTR6eV&dsj%fKEjVTzk`^Y7?1WFRaVrU76Cf;a{N8y;#fUq(YJxDqy{6sL(Qzgr|< zTp)2LI~YSUY(&;c()klTBjOkFI^I@rEht}`=}2MBxg?|{J$Jt&7HtMYDna2fN{boQ zP`M?VbKqnur#jT(B?*1#y6e$2szFjX?!3eW28EfE_{ z5Z5feEJ4dm=;L*?TbY`i`5n))QA#!1CwiHc51K$u)Sb^-%!#K(M9x5?C{R{pY?G{9 zI8Ny%ES#_@NnN&NtLCIm^Zw7?Sr#}eyUL#GU%Li(pajnQ?EiJ*rHbr0*CYGnEAue| zWbHU}Hi41@^`6J98-3-YuMD5!(ezb$i}Ge;kinU_E6UXSAt{Z>rnBBLo3|CdTj#P) z>#+3d*L^d`u1QC%+jU)z+jxH7UWLk(m^2EVnVWHB>E@UNxLY1Rlq`Gft}!F=UNfri zNks3P>pkmn2PCm2@}SA3!t**oDuLcZX9^2a$-%@x43$EZhDiO6m_Xzq9#n4qn-$u3 zwrt|f%dPMg*kK41v0d)X^U18T!x8iYdNmW93$@Z1@d$f*-xkI3G13H5CV-D@o?KVa zpOpJ&g7BCCl0`|`k#s4C9-;_@IFM4PRB$Q-SxuYTi}&+2B-&RZr>_BEkOW6iu0HSQT6zh@E+HVE_|mVKdIxxk8`>1o!DGj-sSrnCDQ&I zXOi=DGG0uOBRfl;Fg`o7AH&WekdqSmQ&UOR$NU5#A+Oa3NQXY4Q`HpCe7r)w&$Y$1 z9#KxO2rMM47A#8d%Paw{pLz3Pjy^%6@B;TDR0rTw=z~q2&(;o0mcIVc?FS;mN$jhL zoGYn2JEhaS=%ril>EShyttwvSo-rYb-8%qn$t^8EcVb>;nW95!=uZ`UuXQ+NQ_LD#8ldFQlyV_ z8HXb>1RRuE-_{gBurj>nfll`}UR0XDDRo=S6+Sd5ZX@FnDtDj4vPxo}(%t{AB*>(d z)E=s3(*NbiN^unI%{*&L$8QE%m_qn0VNpTH{VTY6%{GUaZg zuKcylw5TpaOh234XZoLP(=yv!^^_y0E?1bU@>yW%9UfOlfx$jY+qzNL&<0zYOH9myL{1h`)?iN&`dd|p}^n! z7iWqFt?}fCgs5W3CA=oLvS`R4-gv;)OrWhPdkYsRW^eYJf9z13NEw#vp2vP{7nYM9 z@z^+`AT4w1v@^RXAqyE^1G zVw`VIzDvSXlD}vkciQLJQ687Z7k>%5uqox8f!!zyy=j=owihOFIgy-@n4H}nMx$i+ zNr1riQ}Ca9vDMU~rRM_Hb#a>)6=&YvwCPqv(OUE-VECHS0RM1( zorRg7`C$_of#;R$EI$ml@aH&?&=3{}=9!!PONO3bm9Moo%xB_11kiGu5mzo%(E(|W*UN~m%89UW)1r-Q6OpSdONsqpjp2Ot(n^TqzQUf6`KywCiL*z>t6&C{%i zl^o^l9z^GW2ADjOt;6+-B{T(sGCl4f9rw~S+mk;$^ z{DUY6{rJd1(1Yq-c<;e!@mgz;u;U~(pzH-z+=z%j16r!JPW}TrHQZXizX1Y6<^?BO z>fEHteIFEep{Lq@NJZn`0j*X}C-YA_sZz!L7^r+oC9Dz@*r6B#%+y0JUf{XM+K%O5 z%i3qnkSH@DwvS;Aj9W0tm<|xay8t7gsAFAfq1ziNn1Nst8}HI`b4nqlDr&X`5))(f z2xedul)Z1uE9MQZ@9iBK85=uoc&NO%c>jSQwHz`$bH)`l)%uP=gGf}ueTlDLjo?s$ z$T}5ud;K1)P$#w5?b-M*wYsf7Jq>*bN=t96o0S<2VG8A`>R3+Zx-H=ZzDv3TI}~_K zKtLVAwuzKs9gFZR1mcOv5vZ!nbzL3Lx~ZL2ELrwDN$p|S%de~@7J19UTnUIAz$3Xb zBA{fs!4ZjJMc%bOP?dhKKW@dKc3pQ`#P7^m*Q^50?~bvs@PM~rDTwCYGo3SZGSKnk z?+^E_RQ~`_rlfhpY%0L9PhA9Y0^}0ZSl-pTiU5kN?3J{ed?992iu_-l6d{b!&^W!t97dh zt7nGy_wxIp0OCNv9gF-c`XYb@lTt1dK~s=an=7sdI8z6JnXxl+3Q#O@-IZ2egk}Z0 z0NvAKnfBV9U1WS~unHP@bWsc3!=yc;6FTAu1aU(z(Z1hH`ZnY_K+X}&rnLV!+k=fM zuj4ibZPja!&x;?05_)@ycKx-r#X}Mc>+MGqt@D(qX?TwE6ZjpAfQr9ybd8y6PZFl%4DfeL*&Dg(7b!f@w@i zj2)gy4>kF`dEl4hKLCM*hk<;r)>UOKhti_VXkzQIEM2{_TZJ zSRGrEJGS)UgfvCVXd%c#L9NT*Y8S5)TFE?oI%csOp`rtcAC`KWJiqwjRGUIa5yKXTRWOv{SP zW~}#b%gqQ$4{p!(NZ1vb%^hjkaaCt$>W$?o(}$)MX&&`08eyybb!p7YG%R6zo*-_% zStPKyoB2rXYf2eo)Xqu>0XRU3bTL7ad5`M*r8uKfQO+qS=MBMea{fHE!s)9gRK)+3 zGEr4UzVlRwsD~847orT*s|ud!(keteAq12X;-#2i@|3Fuxm}VlUf-fCJ;$r{s!4na zUcM4f{b6{cyC;|9iA2y;QxZ}&f_wc(a05#XI2<80k7E^_AxkZi3@j^aVRxL^>^7Ob_S6Y5u&tBC9%x@o1b>UV_z88v6zBou;Epp^(tqoxe1)JWq zLX6^&05_3NIkO?P_-9EVGV6l`X-`5QxvUGiDtpMPA-yKLM%)l{sKHaApYP%5ZFJKr zR>ta)V`zM}lFFitCJ;qEqpd{*mMenOLQ0?}Q6evK!eo)(=gmy#4Aj$-=1%U@W5BBMycfgJo z<+z#TBC6zRsx;upeL|I~S2LO4tnTCPTW>U3X1UBFiyi*b(lapwM1ODEl)b=m!Cgax zs)TUQyg_+vu%c_pH&Y-?uFYz}stxr(**^XGbNVI!@#-+!DRmLGLAoH_IsJ$&UV9oN zc=#`&-lj}j7GUBqFRhj+iQGTJs9DV^hS-~73XFG2d*ZER&16FeF|U=j+1>c<+K}2u z@Qh@I5^9OOJeK2t@fz}^Qm^YU@G50lL$OYCNhp3UmL))Y2Dz9MFs%#?Dv?0Jg6 zV$n;z&Aa&yk);Mi$il9-nupzPd` zE|_1o6$aDR|F39^B74{v`DgM++YxH6-RBhHc@PHS!WFHDJ0Vz%JBr2|gZvgl3P`Au zDrfd`Es*{@GD$nKf$(JG`c#tFSn9+j5?tM87gVhG2bG)0no@J1-);F2$1UzJERG$^ z!aG&4y;ZW?-}$i+#C9!vg{PA}m2OW7If4M4@@s$}5mm11m5`mP?&6aY9t7@-65;LE02$&Il8gBz;kB!3emQ*ocX3=7?L3q^K^<&Wvva# zUN?1o&rq%0|9-~Q#t=VNTzFlgZ$^f1XC|I^HBYD3 zZ|f{GmD{RpOjP}!*2A^j8HP@71^HEAdZ%1e7tT#@_oYT_{jk zoYC=^^mrvQin?FQ<(`=5GG{>kMZlkz$!CV7NNT&wbm>j)`wods5$ZPfMozvB+hbn3 z$_4P*vb^oB@?(+J>#Tn*O5jA)U&jS5EAgRBQEY)vkpl?AWaR*0b(6cNAG|xM;nt>A z{bKECm@DWJeNT{G=H|2U?!oXA4%&&swIR$Ie`08u3B~;4AJYaBj>ma2FZLvTEi?nZ zt&lAOf%g)qqT3vOmf#tDkbYdp&o6E1+KA7wzyu&(gd{Qpp3RivH6z^TzQ9}$flyq6 zYgn_i4vfEaculM+#+4LLYzDw7UielyW-I#?baRbryb;>S%auyJsS~XD3||t4~R3@K@<}WEJcd zjW53+n)c0Z-w?3!@hQ;xFr@qIP$O6}Klwt(hO-f=DT_4=G?taDB ziL0FtwWGmVSeAtY#6csIUoe6elBkN7YK0{o7b8l^^Eh9nyqRV$=kLVG;VsUJUdArq z)+Y*#WOc#*?BavacnB;#a{um}vLlgYv6Hr?f$}OrTFuJcg~bzFQz~l=q4l-I?6iRN z=txez1Q%4YvL*RNorE2g7WsCJL4xMUV~SGWS(G+_;s9jp%)6^u+_C|s02>sC4g&o2 z%I|?6ij7Am2mcvk1Bg81^lzS*kS5}6^LKTOy+2GyT9mVtZk&y)O({e#^HrR2*0MXl z8}__A>JJ4CkL-_(?hL%f_GccAx3dwOxZNoM%F*4Ts-LBd|GBq$4tIQBeq`Tl1Fse) z$-Y42ook7pXevXu7dHH!|z2d*cX8Ip# z{kDk+QwQJGz|@gMRJxTHo|TnN72+7l0D(^>NgMu;YJ1l~a zd+L1`ge=mW+&!(obC2F`jEOzRx=%?v_9TC*?$U7b?ZPK%CTolz+&8Y-`n^Xk?)I?~ z=KYPj58d|7bo2leFzOp}1-0l6CmpT)Vq7_cs&apk+wKi)XKGK}+AVSn-2Rem@dINL z#q5j2H)&&SE7Ktrt3;Pw)%1zZVKF_?q&0DYi);pejt{L4Z139!)uW>&5tWg&8q$&d zYQzag_heKG!Vh)=FQfGN3H690_Uw-zsl86#zSUmA40w~A>_VB_ic2YEP&jVFGdTLc!J;94=7^~+UF+< zNCIV!sC4bz6>ob|mVG2|MHFKDu|Ju^*%g7ytnQ;hp$~Z#vu4}=nz2JK&Yzrn-PW^p zH+tlfj~$O1lh9a4wsxVi)&APsEmuCjxvgJ*nQPCZl*sXqh?JD>zp8fba>$!$f+iua zDk*`p2pw`s_3YAOK;`VJmL*L!(4BLWAx@jU>pj&oXv8I8fgM#d2C|Ni^?6o&433TD zaEK2G(`zg?uGZD9id`#v6ZZ7RMb4L8z!TJ7+0z8d)&qHN+mtRU9Z`CfO;5A))xZDg z5Jc}0?%gNsRF(fzT%s_TS5+r9`;@*qnIqw7&V@l0CCWuwx5}I~Vzttos}wd(F8f|_ z=hf}gw%S2n@nfyOw5crG$6I zp%;9$_}WhPcK~EzdnHly31gpm*wJT^{Zg}@pq#})IePD)ShWX2PM&-<`Pq@P5rmcNLB753es^X2f~1W|_^o1I&Auz<&NSHfmi1H{v*L*{8t1yQ(X;9&T25C| zsAdqu9a^S%sgey+x6K}}eIAnt%=gsI9;-#y+M;z{!1t|v+YOnluowS5*1R+1u|q-Z zY(re*qbEfU&Z#NaE{kF=E&9jzM?(Cx?wr_!^6p4Md|E|^d5p`g(|Peo=iEB~4ErRF zh7%`>ScUd>AIUQ&yLs~hR#8eXxw-$ENnYvG#oGz$Cp22`|5;lZeLnoelWrEDoY?Ec z(XHkg#iMrUtNv7PXIFaLyts14F>4KdP-E~eX8OgQ>Gl%) zOhDwfUV|;&&^PdKYJ_j8vAdjd&7|=9MB=uz3vh5tbn=1119BAlk5zrjBxh|(bdW(% zgS5kTt=-EE9B30N*|O!$n=SXX{aVm=CdFh(t7?2Sw@}6oIiU0VvEDyjU4ME7cN-Yn z?gAhY0DuS@cliIKOq<~k2bjRxdd(nuz=i1^xS-IfA=UUU1uG{kdYoc7`|b#Xrw=OM zt|W`z>W0p0&W0?4wKwWwL*|76731rYZ=NsO_g%q7tY|A9x)Qe|P)@2D$T|%l(#JfX zMB-BrUsE&?I}Xm)Oh+HAu9@BMv+P!1{UJxQsW_L2%A6&z_W~WQXK`JycUZaH!W$S8 zTzU&#h(ecFu=@;$&b!xo{p?gz`F5c6Y}3l{@X8Q{hE}*MBl?Qrp`5C-G8-wq!WLcaLM{2QQ?{dvP@$dI>&A3HC%GgKa ztTc_@6Pv%q*5q>Gt1sfz4Kot5m6GO^s4?rjQ(CK~6i zdwsMs1Mz*Gz4wgQ^`ae?U{VKF1Lt|CtO#jtqE;LlZe@7ico^8PsAKnrVR7J4wd7P6D5A~O2YX{c0+BVIFD-`b~(KTMT)m)-DY;4N7F!3bYEvH=O zw8lx8O++`GPZry{(&MdiRr(Cd6gpAbgPSotJJJa)tC;IL7~y*Bulimk@o|v6LcUr{ zicv)C=*D{m(wCNa$8TjNv?_26*A5mpe6=lfJYL;+*rU*5RQ~NMZVZ*>ea_pNZ_vui zp4TYz-2v~kvV*4t*Vd0agHj&rli=;pMSiD$>gx*yz$ZS@6+m89wm$!o-B&dWfWRd) zBUp(w^adi|w&%FD=xuj@46e86BP{5DEU`oNIO&#!omY;}Pd&uD;)WR9NcS5z>*GDn zw#CdEIxEo);gg;yPUWmT&BAUXT|3#V;Y11w3M+?AeFU{xVAkgs2kg)2)5z)!Pu0FclNz#B-?$EVx zRIcV37GXCe?rjqKeH@89VZ*=wZEG&XG}9j3=QpbHwgb3Jblr=TLi>CC5Z=!p^Pag{ zJ)@C-`z!cKp%?n5;pCV1cl7<~lW$I`F0YVM@gi%kPc>+=ycJ=&y+f5tkT4rhuZsO2 zP^%<_FS~nj%XM4964t<9X6s)fE|7QRc_i#ODI#xJh&waDG+HO*@{^)RCZ4SHZ`tfM z8=&%M$gBxl3p|iOUUic2NB0~0l+0H!Ij%(Fu`Z}fizb5rLM1#qf zAN<)s3GuptNw~=3G(7BVoI@h*V86&V=lrF?-ZvJ|iz@iPDW%5_Z0mX&NDg0$dQFsz0rFIT#po}Z_E^|Zy){2{g*c?4<954(@xJKZV&hT28|^%(^pbnZIM$^O~b&S73B9a06;F7-`6OMF4A)GeU>Yu5D5g*Vf-5?5YJ1dp zePd7h?(6*{Rv@AV`yI@sDV;hD&+cZRo~S6pz4B2W>hK^O^v8hSDyhm_!_~E)lC0r= z#4TWG_`oqKI=_g+1%}d@oEW#lZVx~$$j;q?+9y6^6DYEu@$b(*ET*ZkkyS8`E>WNE zuYc~_FN~yfRVub?qTZ2GF(xKEdz?Kyq#g-T0i_nTkYvM!QWY2_q?H||u~M%Iz@)v! z;-^MHA`*$t_7w<*Gp=CAKV9D zzVQDa3?B2({|te`TO+C0$IRgnyjljg?%FTFgb+DcO-7xl+lPA+;KAHC^8OwI$eEC_ zoZ6}6^v~iOw=0STXoj=H!~b(cW+5Rj*Tvd-#@P#d+_?16J@xKqFg%GB%&8}^@X zR`WtFMQJ$6w>hlP$ud00$Wwk!2}|3l#BkFmhr@!PhX;TvkrmdQ)^}r9M&I^hryi)D zOFzO|K}rzW#=50&H`KSh^I{;;X@~gs%S%ksU|q-SXUUFmBy1^%ar_IpqQSA!jaIQj zAErZ(Dr4_}{7bKCa(aIuku&JphqfHHvwSe)-$t{F4Pf*KTAM-ynNePz_IiCHA=Rl( zkFNM~A`8D;-WgJ|j2iEez)e5x$M6q^xF8d~A2*il3*iZeWK3inNGn*=>GxD{ox8U6 zmmfQwjNiLgwa?GnGmnOAK5F`>S6!f6_XPp^(SnyzRDSpeH#xOMojjXz1(lI$@uwi6p;$ww{h(GIasiWY zPNqh$6O~Kvd^tH$Q0JKT8e(BB{eB806#|h*7H(LOfIm86E^q;6E*~BO3n9X;L*ZtK z0EFL!S`Q@o-0y(;z84DW;nv-rT-b?fwzR8_a(2>Un=$(2z(zC+3ME1y5C|W+LJeyo zy>hZF9VDmpB<#ukT!}YJm8~`2bNBOZU&IW)(JS@!v7;4swY{exitI@gyIAUmMv+dfhbcfG*UTOs)P+I(p#t@!OC)kW`bXDpV+m32 zQe6$9zg=Zq6+<8pcMx9c%DT+}@R6RcS2o_NeM~}p`RLNInW(ciG4q{L3=Oo=aBe-4 zhYTGIVi1%aK0s>*v;G!Dwo=#E#*9J?z&vE@7DUWXOP%N5XL?HOGKFn#1;5>TO>PB6 z=Y2&>N5EH<oBbrabh`Y z3qxPPeo*Rf*7fjVt(nSzz%lTYK4RCYijmXYY1Vdz|C=^58FgO>oXI<8Y90f)FEJ;1 zuo*eGL^zva(I5q_x^62LE?U6y7-n(*xjw;K4$Q;zRFIk$&Y#Y#1od+^r|Rj;8V%R( zAMK!bqgD(btUxLF!RiQs_TYCHF{ly#yR%@@XzvLFrhHm=vXG0ahWAyo|7r8L4<2Ez ze|z{{=d%7Hs+SNo3y4_vAg@jLp+s0_Y{_c^VWW_Ex60Z2C$Kp-5+SFwF}5mTn4YdOpVi8d2WxACwK?(wTJ7cuFiuCig@(&A zgEey5VNpsJ3l760&i#KYjuu+MEUHha>Cb5GPYvig`Wn_)6$d?Fr%%7;Fo?knjuhXE z92|_iS3L4g9n3qx%6nV0z8;+X9Mfem#a_2Z=g7|8tiUaM3_89h9Nd=mR-qOdPaZvV zU54|#wa3x+G{%ohMtw0+tXBb0%6Z}wKu@K9YxnV{Tkk7@xnrLZ3`btN%croh%9}h$fRAg3r~5fEUv2F?ew`DbVpE%N4HtN`|X z@7sX+?i$ArIa94w60cVPfgw-I8luvbr0HO2z`8%1FPJ@_r1J_O@NdWYBKMgZ29G*8 zg7`r;0#-}LBc_p9t{=9DpovLw^l^_%g^umqc`VVmgF0SNL3I#*-`(pn%^z zi(q7tnQSt3*xDWcb`3V2HDc2J3z^5Qt+0Vh)Ax4k{O!>ek8cZzfQqim4V`ZjqnQdx z(U7G$5Q^v!FpB8NO^p2c?FoNVf63Sv5>6lX`~{ZOCQI)--3 zMF?UJO4^h4Fp!i>B9LI@M}JzM(bsOF*+^DaN~^NI7L!8ku06qi~X2%kd{V?eTHWTz%dFj>j}T?yx{aH-F$- z!1EKCceWN;HRa}>-su}K6gHFpzSEe^>d=ybAhaqe1GDJtfb)8{M;7W+JOM67IU?ua zLt)M#dW5c{id(*Z#ZW$)lHIgp1CiKTLjR9q%rtBs5W zfodp9m9*8I8?rixaawOBIU*p86`#rCgU{hKX~5E zfLHS{O)aaXH_{p(*qNT9?nrW0s4@z-krW+C>a^}W```%c;^ru~+~&Cz2JH`=4K;On zcWOd(h0Fit9Et`(k+84Uk8c+bhV@)!8#7tqj{3DsT<*%cYiuKP|8vmGf0Pc(ugn`1 zM-vX{V*f8|=Fr4KS}>OKauv=*xoCw%*cx#;;r>_a^PkdsvqK$>9XKFBtjQAq(?b{P z1vHU_w&I-e6^br5qrz32dtawq(GY--UwtDXe0r29F*3MMhmW1F1iG{Q~9EjEcD;1^ddH6j{7%L#klChR8DOCnXZb_w0aTTWQ>@HiwDn zXiP?u3auGPPhGwKgofVdqYaHs6`kSkBHP?m?b0!yP~g=H4_grO9=VMrfBomA;m43jr2Z+86zdY~WEfX1T?JdSS5b7@3(9@(KUv&Ewa!}^=C z@YNGDZC5VIdon8r*r%-S%XE?#V(@^K#Y&xm1eRmh3j`wSy~_nT3&qaEkycKV6N+Hs-MIds`6X-C(Is)myLbJty^QX0>P7dsg$8M5?956AuVueKNd@&q@_h!q62|?-?G{EKJ8TgR<=lmw&r=_zjry990o;ft^oeJW!XNQp~8D2yN6oL*2$1klFP$Ib8h(%=6y$c^E z9SBn+mem4qOQ6W_fJ7dc+W|!Uqze1UnhX5!>KaXmIYQROG)Lhc^JPHsW{!T|yE_A6 zez#XoYYNvxOabWejv!Qq=aqb*JC@yc=qcimvtdXUlD7<&z`5{xu03pdPWlw0Q(pS( z2H$u`hv}~{7^($k-^O?$Ww-;zxGtJGm8QVrTqp_$|0r&6L1|CjK($AN!?Ap4JMQH@8Aa9@G|DGS zJp4edx_k(Wm^5C1aS43oT;+fJhE^3H;_VxsF>s&{C0oWLQ`GO^BkV@$i~8dC&)6ff zs4b>Lq)GAG% zCM>7Si{DTetjkQUS>fL#IPk!rKK9ZN(LMOWTgTRS+&l&<2}2lu&Ljd{n5CXs$yqo5 zn^z=R;gf%{tX`0uapFcLMTOSc*Fn=1R}->PsT4QLd)4sht&fTkWD3zq%%hh)4} zR8UUkko^dEVzQ6B)SQD|9+UZIf7 zZ%2H-o#7)_Duaqe{pm=d2+@aDcwKEI@7mRmkxNQV&kr<4EvuIpZ&B+*8=b1Q+A`6{ z?Xw2DGjT72RG(eFDe)Z^JT@+BcyGTid_zHArdwk|>N2V0d_f7hdvAZxF|CzLd+`P` zK^0(6t?>*SMmW2|JEzqrAij$^5(E;)fIwnW!(Hx_qsq6@aV%EaZx^3DD)5r}_-wrq zUXg+bjRt zs}9U9vKC{UYi=(3%kOp>mLxwqi|>i1f$!Xx-^IZGV#j;m6U||I1Henb!|L9nWSK{6 zc~;i8yupR1TKTWdr8>9FCt8jbb7z|_0=ofETo*4Z-)Z|UgrzlV%04Kejtf14|32~v z%XS_L+w^xmH(Y}>z8~4(--vnf`hF?c$#EG@O928G0&}Tze)2hgJfheOYYm*>w|is( zhNj=vZ~4QXJD;`3TIh|0umt8o#8Qbgr*?9~txe5=meI2L63T#{my0IyUp}>PJYifW z5ZzK1^IvhFzs+wAKv*JBT~t-xFnPb|zIGYlcC-t3*6RJGbjn@jRn?ak?P=c&hddQS z)8g@Iu6R9TF?KgOiYR9J3hYhlYxCNKI+G{bstUVF>WU1N2KQimdCmwqMD4t$@imfe zj__3uI=VwEFFrX{$3`e4Wl5BLl}jPI+TqZWlWZ`kq%$_L*>1;7N0((PHcn*?FUyP? z?bMFf#j0v*)tcjX`n0X{W%b23a(vN(kl=)r_nW*Tlp6uNXgF)(=TFq0c zLvjk%ltSZ4o3d_nhuYSDwJpsfTH{u`f4kbqcKX&G8%(mSLIE3c`KKZ|#g{dn*uy#C z9)LJj2EOXJc&rC#>R)7D%Q};Mcx_h!D4(}}tKSX!P3n1pE2SwT5+%xlwV5Av{i=nX zf_~nwz83q3(TR&HxAdg9#Y+>Tlvs{~ukSqg&(UYA`!@i5U=V=K+SYm!u*OI*l^nFs zX=_=SJu=4@7UbdY`{iy8U;Ec}|5(5NM^{$TxsHyrfmvNIOFT;MRAg=zow&GJv+d^f zN=-IE;OBDPjhq|vPWxhNzVFjS9XPdoAkD%jgERm(*b+=Y{vkc#Nu?AQb$@#5Z4R2s zkY2spNmV+O5P<2JWdDuB-HZ}p4nJWsXaX;gu*7NZdBr=}*KP(;x{3JbZy?z3kdr8j z{(-f3BUf<-_~!{pVJD6ygusKR@**+z#_9 zUupR8uaaG&#iBsBkip|rei7U`8GFp^9aXe&t^7^>*;pOdkf8-?`ozgo>6@unIy&#s zKvoo!R@uIQMiy^b`(7xJK9Pg5Ifgw}#EUkT$JQsde_T;h7pswSZdX`o zBSt(hd087`3w@5%ml>7RcLn^BBO^zV(9mOrW?HmyHMOy3adL2Lc{&>mzfYG}-gIUR zvQ(uPmV|mCv`7+D_a;#4$`4*Z79Nbok%`0Y9Sy^dOFK>k@$5R(jS-`_ET71?$G^1j z#hG8oLeZ3y!I zIr!2KKxMG`e%y50jm)j5zrxdGk|6RbETSD?hO(x>^k(_Cb8uRYT*DnIqva{A%}LW! z%?zE2exenF<@3*R@AmFSnk+t(IaEI3HZ91nt3`wm?IQ@KIu4F2GPNIFgW1w-^5Tjr zzliSakOP*e2+4~lXJqpP?xT`+QJ^t(OKNuLq7nQ`U_{~f^uX0Vf+JtzdIy!v3*TE2yxCq+3 zmx2?LZ@vO7E!oLXgADFuhj0Py?`ao@9K$>RJRZX#?8>k$SNF?|r3xP5aU*ScE6enB zWo2B_tEVq_xcR+Q;G}N9c<1B3U&`F5BT65Q(LlpRp!gFOz}T3DZOMUSZxE8V`)k*N z1pVct^9@hQl-|Lh@LZ@r5e~>B@eQk=Zv)hL&FJlozmJ^-vaz?bkE?{3W4|B?9Wl#rhXOZA@F^c##c(~_f3A^44sA8$3F=Yvq)2`RJ&I76~~@H!P<-0mJstYKMk^W z-sKgB0TZBoVR*UQdEOeOoXp@X?j7Q1#^VJ=N6~R*JeikR;1#*8w0Kj3_tfuvYGkcg zlALYL&ie#>9tu!z{eYXNOosb&YI;j2*As}Sbr*4<{#7@5yMvCd+RmfXXPZ>?LQ~cW z43IOF(h6MlNq0h_;<>zwepxd2Xo4-M9|&lgk_ExSSZyl2d&6@uXGa3mru04xOC7_2 zeTxNLP5zdtLmE+qnSt>7%*McATI{_ggapmw$ba4 z)47KnvtHpDgRN8Gd6DmD&VU@!V-#;qkolx`T~Nfvh6ST*^iw;4i!0=K2GrR(yB425 zx1z7lCDO16g5L&2!UyWzO^JT`w>I_7nVv$&xDn16db~&w(;2%dxz5GWS!@?W+l%RL z3d>o2*5&Tx_q9OdM5w!~h?hpmOUgYmi z>Vw5{pBc#t(lo#3iIUn=PL(2~eA%106>GSzBJ4=nWSQ33(9U#p+#cGAG;K6Cc${!w zp!zL!oX6YK? zPhI&O*L7gLVKK|yzjQ0m;&LnK;Ar(MF>(?R5;318I+O4Ld6FyC$%e^z+pvXz{l~9jfQxHf$)q$Ogb2+$5*WC2&13Btc zb|lHGdOF1yW+UPX`?*(dB8OU(XM|dJ_Tb4nu{2yl-EaSin=LoZjtvhQzi(aj{?xA2 z*VWyZZK&l1(=@1>ty>FcK=r+|ygG0RWE?!6kGnY(sWxIc3{F3!r2vugB~K?sq}csb z*>s$l@E7}ykdc*@i7ikw)1dHV851~GR7?paz>g7f2uen=i2HLeyl+Me;22Ebi^j89XnvHWgModvFZwFxteCyK_{Pfc`AnRn$l{Z&4W~^yrjq~P04i4Zpid?a^vu2|4`97BKQtU=SAMAT@hYg!+U8x>1a5l(k z(q}(LUBdg{{}lW_cLmPA9Z(({PJO5ffHP+-XyQbV#q3g zT;LT1k;*N|TQC}{og&qHOz}EtP5mBAdbb~5M<8m&Gg_RNN?QpvQB7oRPq!G@8=J>B z8VMwEe~f5`3lqY{!Q7CL**EZwt*40;t%UYAGeSk~8_lQ|*+?I{(Im zM6Iwe%GQCFR)G>y@jLRz)B3 zs#dSsj8h|R7nSjZdgw`zOOz|qmmt4pks!F_i1;7XUbJ0Cz(oD zbOuVKkK|Bnk6Kha)c7r81k~>!B zER=eoTxlpY+10w!Bfp91QnDKHMfQA@lk!iHeX7{aKbI{xi%wg_XiI~7R5UWI*rr`y z^!fLsU!velyQi>BR}f)mg6~7VNUHx5Cl^>S*vrI`Z<0SPWEZ9&R|YV50^yR%glz0C zj^_?F*>#p(F`47~xliY!W(4pzl_dS-b`I^$h8ZYJC?-nae8$odxYcTT=i}WQ7mjw# zgHPv--!4z-8`0NNptNVs+m^UC1z+DSj!*7;(4E`?{$HGn|LQS+j9Ru$Q0Mt>bebJj zeHFCu_jeXCcIaMY8*LR0P}}X-l=Xj{ULfjIKh&6cNM6Gwm|=tRs{v=kVXMiX@6%dx zLr+l#>wYSMIwgGbo6<<=B7&|ga_(B{^Vooo`bkYEnk}vvDj;g377=`jAcR>i8tPZAUT~)gNk>lRbaFvK3 zWD?)4LaDVe;q?lv3x8skl7JoX=$CQQ5$dnY{d+OuLt=6)#YesFT(Z!;@3W#F*j9AdR6S@TTvC6kCu--xuKO z%(~|<I@d0!?Ze^g<`QT~8HQx3YR;=bu2MQm^$aQ*E}bi|yq7K?87K)e zIOR1`-F(r=sugj$^Ap%yeFiYZEoM{$$&hb1?k`=>>__`<5w)(jrLeMxqql7GaA1fgXZW_ zjvEU2!V#?mf)!f|A`)i0DSej9*3%r)yLVD@COY^44&(BZIhx9)@DVSl!MaX4p8KKq z`fH{%V$bXHe%>x*f>;tBe-NyB%F~m+M<(j^NpfhL1uyMtySiU9cTqyg`L1$AnkFsq z6g_0PLKn?PReWp!6$rgew@b@KNcI;?fa7)yDh+sN-vlFNb@|nwtz2Jv3>5G&e8d+0 zMCAq-v8Y+|q9y(P|LB1B`C^m}GWACf5Ja1!6V(gpsp~!%B}ww!q3$(WywZyIjim!W z92<}wiR&_v5hXwOdws{{;_Mwm=RE(ty!y3{ zO7313dtvL9vSs+|`jZOodR1h8n+I1VWOEFnPHv&PBLo z|3{e!zMSRyk!UU&*;xx-4>t=TA8X}|NUNAA>}1A@a7(gcyTggq!|Xi6)&Ako=o5S2 zUXOQo-+_dk%60*Z#ar~Lti@-T#T;J`U16m?8+_%l+iLiq_V+N3ZgWJrYDjU*$!)(2 z<)_E6eG}h?MP0}LQpqIG<`=jx|K^w2m{etqeH&7+1yp3E+52@f>Ge&c|1`!taDLo< z?Ry`q?!;wX3uJcBLmiO8CU-{@6GP)Jkq67jz-m(rI6PuXlqD)Mo#Yn{ChH^3JoTrG zN{>9^GkZ2n9r(P zVNJskC(vRmgm0vq83Mq~zJPen*TUaG+-9HenJyK%_2mtJdY=h$hfPnamJ?W$iA~csmYBI6DmDi%%vn=XSWpGJ$OI5;gcSJwdPv?1Bd?m)mrlW zJ$qNanNc{sn=d;)ub>`RBE8-p5O^f22~?p-NblrO5jkR>OJA>yzx33)aJQXOhx}y% zAT(BNCoiCnwv#i}>79@jCv4(F$c?~cRDW&gndWeF8Ks&EB9o7GLV`kfQjS*W)b-~v zA{NyEK`xZS&V+yB)1>beuI_yWiYqJKXzKy?}t9UZbjUEgSe|1tF`&$~7NYRvxz?25tbyRbAe27dHI>nK= zhFZv@J7UY@v$A8IIK8!;uFzE#&-hkIK)?Oi_omncEP)ih?^`@WT&zmKMw?T?<#o4U z0E8)}taVbxW+J)BL2Gbl_xbFzAvr)iZ3VB&Fx9X_9~Bil+GY$LJS= zu(5Qq>zQjyj)t^d=5&>>cV)U2e>0aOktkZ67U0 zzaM+qMdXXE-m{SRi^~!+B(O4a@kAOIV1Yw%G8S3NUieQ{ z@`=%UqY^ok@;kyO+gKB^0@B;C*l44)wZBY-*1Qa;46fTrGvSyB$(NFN(RSU!j=aC& zs@kBXkRq>@lPtu5@(S57qR9%?Y;QP_pGFKTOPJJ*b$G#`g0o5Lpng(K7L6wc3jJYE zWA0}1YjK`yIlTiswHaa`F{!pLv7c&OHR$c#KB35I#*r8{HOF<>-pm@HUn(9)gb)Xs z#151Dy*9Tqou2zX*1y)bliHDNv75X?7#8Q}CX<=cF^MlxPJYRL z-p&K{r<)xG@b8_zZd9^98(9sDS-EqmV61Mjgy?!Lw?{N4=>gDN{UaJDAK70tZ2{p5 zlnkJmk6~^j0Q_QM{ws;j60EQ7!~I=!pN;eDmxlL9lSupqM)~O5%<^qqBZ}TU5>iqk z^EYF-dmkjr4syM-(x8IJ>>X(~z%px4wL7VW#aO*`n;mmvcfSd%z?`X+%B-wS231>v z(KrLy%EF1C)|2f*5E z35$#~9)VjnVylbnQv7s3OXUi`B}S%VL!(I9^)G_4>bz0 z;Zt4&XL26;b3-Cs&%rH#+VWH+|IFIZt6OJVs}Xt1WQ|SF3I)v=1O12#J3fXC^gMC0 zmpv6?TBJm5Yhi(*-f+Zo2%wfnq>>3@0h^QXZa=F2ow?#!WWk+S@+?L|NjKAE8<$^| zLkfCH^7vpF7x&a36OtmKKNt5TLcQHU-^bSKx7K|$sy1u`od2T$QkJv0L!HFkrb>?h=_O48fmctYHQl!rtQL>13-$W5(BbyiJ}MoRrs*1IF91XV7YsfBa{aVl2s zx57pJzH2CNk3p4**K0Gw{VaQP^R_d?eA^{SWqYY-VH)tjNX6$lns%fag+BmciwTD; z{eVqUm4Mgr3)34~grHgkOhHM1NIlmK)DJ;NPEBY=^bL5fof%EdN2GAc*tSba|5 zd%Da_mCezJ-OR#}B5eCDOYKr|h*?#syewp!p-?V6K2h15S)NpCOho4^p0%JDK5iEh zx5E`Egfd;y$Z2-YWKQw6dL`Uh+8l`BJ0L5q7U=v+RZic}Zm1hu}UNe`mO z=LptzGSdq5EKUf?`+YG^;{mRZ>MEv&WAW2kl}mE-NCVt17>JK7Wgxm{we_u2<8t}k zhE3`2yO=e>c54;}iy6mEDa~O){1F{NO2EspIQ_)1BZPC>#dQK?im_j?!XC+>TvujUx`O zrP>n6kf(ZfC;SY5DVK1NYw{0LRH(j&?q7GP^!vy~O?pd-yJBaRdj5PM2kMk9%57Lq z8{48QQJxx3-?aAE)fi{#%_G-5f|VtP;dT|evh}ysUl}sn2)6>_4#d`5)A05UZPLX1 z02wc&ab>YE*| z00wzTjq#4xcwee33dNraE!<1rf#}rrLC>Ne*Hz+OPOl;ShcE&{W3yKE(nV^p6KB=` zRMYM@Oo1fB_Fum@?w?s^yJuO8^%W-k>^AFHd7i`>XSn}I49ca z=gHReK08-Pi5@6RFtZAuUM|6SAmr9D@_T~cKyi9ccIdqOV(_+7_q`0!Q~}bIJ)p&& zW{@X%7USX^sK)VIDH$%xZw&JAFK)XGZ*H5^hV7)=SIL`3%j>^td5j9#)xL!K>sfi& z?cYH2ZOjQlvHR&piRSs_6lh@}Fy1D3bWyLXRg>DSOkm@f2&XQ#-T~XVg*Xa+Hzzm> z(gA&X*`GJTi-N~5ukS-Mho#wx7!m1QlKQ3LjFDcuw^Q0VZ0*zsb4BrpU(-i{iRjxZ z4wO`zbg%Kr_q%?k8tX1bhjnJ%E;{f`!2~Od6BuwtlWYrt-E_9gK&;Y|FbP3`P{}?M z?*aFreO^3N5_5SLsoPEJFHiDa>%XbLV$8Z*TJ?HoymC7LVZcg7WTsE-x}QtvjkteE z)emmI$xS`a4?+LBe*!!~@gDlt&DDD1dMDe?TRB)09>_d7wn* z>B%%mKS|5ch9vpQtJwXuLJjOM2Z}vQpox06_V}qN{w1Hf;cu>$RMe=8G?PF*FVnZ< zlGv3(nC%)xH(B;wJMqlj{ebX1v|JYhFlX+7n zbOM7NWBYsG`uS@hqD#v^z^BId-Y#pPr(%W@#^g(|t?qMl-|B&F%?8!`c&j(aaz0d{ zGRmQ$2!<3KgmgVe;%z+tR>_L5{q2jsae_f=KcLhRe{PNxD2qyj1QLQAg#pu3`yOas zD@2DAgAQrzZLUC)(Avl_%KNLYno*aAk#w*|2=AMjyPsokxx--ms^V$9V1_pjI3=1Y z#8SZ|$E_JsT`3M5xPrvD%0an8oi56j=9s90h3n8&sNajoTxSRe2822S-r=;hF%2DM ze8e+Kre}(!T_RZ$(U4rL|I%ZzEV~EFNNeM@N8t6~7*%c>!R!d8lVXBl zVJWn=l4EWf;4AzSakR{LSO?S*SHc4=Xh6ACdK~c8lySDg_f`pkFa*>HU#k^?Mk*9{ za)hMXOej0CYjHfP@rr~g=bzpZWd>K)z(RWS24$;J{WoGXRRr;k!7#8hjdn`O-U8}5 zo6@7Qu$vlPAwxkd&&~X!a5-rWMK9dA?DB9=jmEx5D3{D5oiT{fXLI@`D=Ux#grhuG zD^+!nEA~NcC)v7i@}e#|#_(t9O%4YG-k=tCW>)%JiM~ScnO!i>TNad-?#I#}>v((J!f2=gHwtwVc_EHLQC){JFeq7&ps>W$Ag5{AA z5%-n%)m`Uk9s6B0JIB6kaJrH3z;!O?qLioid$n=1i4lrqDOhOBjy_{)&~}-)5yfq~ zDifYQW_zyMSN{T4L=Pc#ME$CI0va)*OlfjUkgHml<^y$ie%U+w2tv?6msX5G3P$2| z#}ZAU`GSWiS?V@OD{M@e!KF@7;%AG)l_V?oK94RRx+$P-W{4>of3`BKkt$%=Cw)rH zdIYbw;3}9c=gIK<(6$4kYGoOTejN0P^d6Erc!4g3XYGDqwO^ERSQsi+-!=}GN!)X>w*ji{P1H>wZ{UH6 zX{an&UKRFSLBQ>AVwy2F&Q`XK_T!efPgBi&dArxpzkCbg)}*sMQ3d!ynYcWix z_|npYGkjM4H_VCfl1lDfoX0C$VNvA=MKO()qiafz$U5Uzd^r!`sw6gjbZ`=$i^_!5*E*mpvGd zg5%DuZ3wIxm4a&5e0xsqmgD* zYGLt_w3+$h0%!yaVq;0um3t$XEA$yK5Pw|pv!C9zSh@wc?lNT5)5EG6KfIzyluy3k zUv3{ba}*4FG$(pmR^nCj0s#eCNQ4~D zqf!&>E;YJNTW#siz8Z?A8ZLGxgC714l~`@O#>4Wd5=#=oawdMM<77yT(2db7k@4Wp zE%_OM$dm`us47x}?QgqM7)?HZM=$E)8)}u-P|8J5me;Vs-QgJLa01hjt`-GZf4WXYs8)21~d#k7r)eGs%T zoTM@mjdY}?b}Wv#jHbE*Kz`zf{tRkAt>Qc*%XqotdNs+gjp4Eba2n*ly|eRwCt$ys zh~nX>+L&#zD&EyQzPT7a-T4FSO1;b<&IKtjfrbAlppEY|+K)W=f(08x4LSchxPcZ; z&=#FTV)*|ywEy4&Mhf@OGx`^f5+SBVpmLE zI=62U*W>|>NHHU*R5SE{tCw-<<`9FC;fkJ1!6_8;hau))x%lmF$sfp7&pD(kD96H)c$SxIVbZT_~A3 zq=}nfv}2Lwr=d1$v7i?b+##9FLkXQFg^h;+o~eoUixID_yyG_rQYZ@APz*{54#pA0 zKa>pR#RSC`{ME;>CYUt;d;KKSEM)0R4s_P8I^L$4pB(rX9NTKK(#8fN{R*CJBK6fj zg$x42U%7H@19J?CBoA$x)b)Wp621#55p_mM7E4!7(moooafA6ECF-Zt^1qol{;FtA zId&y37DAx8Lw|yrU@Kx3nm!Z4dtT`gHi}vb$}j&kSBP&eGZ2SUb=dNsnEsur&WEKT z)j_QnLZ)5KOXZBcM8xs9Gw{W^CwZ=9$>@IzmDQpcEd(2W&^0pw4EE)QCw7R^@bLL; z`;jKBD-xYQQ2yd6a!O3cQ1R6Y?8$v6opn%hlyAYLdyZByBqP$wt`$?@3G?GqjI-WI zFr(&N%W-LTiVx^1Ho9CEPW9Z5AOL?Gi|-iXg08;`9bHFOX<@)jh53F(ufGo7X8;-H z0l)YvMmC@|H(*Hq)5~Lc+wpVu7B-~+C=Jcxyn+Svys26)m~PyI-+W15v=_={`XO5l zHTRU5<6Q%(;GtU{_)M$_Z@txr^r;MoqLKj!*lxsJ-o*}P>e`FX{w*=TWA)e>mkquq zR>aObeoL>tvlW0b{B)@!*Q#MRNDVE1iwYTY0jEF7nOpwz-CzpVB)}t%DHnxnklM&j z{5nE-m_I0{MuyF@X{w^ZXId;$ZzxX3PofMm&=br2L2ZV2EG&HUL-^jmzMYczD$O`Z z?tN3awcrjqUCwXxK5<+SI?>|?PR!D$t||ghxxLKVr-Z6Dw@24}CgX^Pq}kM_7!5qg z%Z*9SS}A#;Gxrf6Yzc??{fJaAfRlxa)hoqd(HC= z7O1`LmWceuZ0Io0(jzpSr>;rS>W?x`vcp>fVVJl1r4thU;2&FV>(dCwX&XK8S-%w< z9R&H4wYnRLSj%_btvh@R$#$Oo0`rfNf}|CtyFYe$!fDRQ{TCn#B2oP}ys`rt2n8pY zPr*hy=n`c2!FY)-Q6avwsaI|ld#8}B@=2^@?xy>AgA!eO(n7ietiyp6B?7 zzEjdImQZsbH{m6+$_l~!C_p?uVA-?$aetr2!i(>2oJ8*9svS$rL?LjaYe}8@!`*TQ zq#ig1wLj@;6j;-piPNt2DLzE!!*!-C3&;{_h7O&)YC#HO4{G<&N_9zob7B%}yt1NC zn%`Mm`%Yl-g?yhDxiV;rXh^>0f5my?!*A)t)TMO`3`(N+D9}1!YxNnLK)>@{8hpI5 zD`Qq^)g>Q(N6@}yx=%cj9sNvX@vp)=nn6ncK;7JEiZgd^P2j%)6VR%zgBZHuTvAw6 z>wG|E*}P>alWtK8B}_gAdu^xWy(?U(@8_IgZ{Dg_YfH_i| zcEU*ZONGosHYDv&Sy(wA_rub(!|ZW;oHgD9RV~OgubHzEy>?~?K2bePVezxt2%>;P z-?ra7<4n?x&FYaE?cEGI)-)$tD$5+muBu}U?sPHFKe+hV5?aCTUXV`J=9AHC=o-*Q zXUuT@-0>M!)m+!o+T(oHaeB!5lJUF^EcXIqSUNsvI7$4;|X#{w!e5pUJ_ zak1J+C*mxrK*L>l)}}XDmB5!T;U_ev;jCB9B2`6t)Wa`7=7pam>YPepUHy>E1}-i| zx=cTq2|P}#Ey5pcy4D8*2oic4dykynV%zxoUkQ#ZS%}$Wd?mL`_nI;G*TmEF^KJp z_vh{DE5H7`9RZOzAku0+?DJ`Ocwh zS7jB5f%YHF1(sTSKSuTtezZh?ey859@nDV}*wx8We3^(^>c;D^k{15Qf0gLJdBw#% zK4AOfnWngIHTLC=dT)#w{3rZBSpE+*HU0+;Htp>`-fzW8*#W`aU5e&a;9&m+kS-Mo diff --git a/docs/api-reference/v1.9/node_modules/highlight.js/styles/default.css b/docs/api-reference/v1.9/node_modules/highlight.js/styles/default.css deleted file mode 100644 index f1bfade31e..0000000000 --- a/docs/api-reference/v1.9/node_modules/highlight.js/styles/default.css +++ /dev/null @@ -1,99 +0,0 @@ -/* - -Original highlight.js style (c) Ivan Sagalaev - -*/ - -.hljs { - display: block; - overflow-x: auto; - padding: 0.5em; - background: #F0F0F0; -} - - -/* Base color: saturation 0; */ - -.hljs, -.hljs-subst { - color: #444; -} - -.hljs-comment { - color: #888888; -} - -.hljs-keyword, -.hljs-attribute, -.hljs-selector-tag, -.hljs-meta-keyword, -.hljs-doctag, -.hljs-name { - font-weight: bold; -} - - -/* User color: hue: 0 */ - -.hljs-type, -.hljs-string, -.hljs-number, -.hljs-selector-id, -.hljs-selector-class, -.hljs-quote, -.hljs-template-tag, -.hljs-deletion { - color: #880000; -} - -.hljs-title, -.hljs-section { - color: #880000; - font-weight: bold; -} - -.hljs-regexp, -.hljs-symbol, -.hljs-variable, -.hljs-template-variable, -.hljs-link, -.hljs-selector-attr, -.hljs-selector-pseudo { - color: #BC6060; -} - - -/* Language color: hue: 90; */ - -.hljs-literal { - color: #78A960; -} - -.hljs-built_in, -.hljs-bullet, -.hljs-code, -.hljs-addition { - color: #397300; -} - - -/* Meta color: hue: 200 */ - -.hljs-meta { - color: #1f7199; -} - -.hljs-meta-string { - color: #4d99bf; -} - - -/* Misc effects */ - -.hljs-emphasis { - font-style: italic; -} - -.hljs-strong { - font-weight: bold; -} diff --git a/docs/api-reference/v1.9/node_modules/jquery.scrollto/jquery.scrollTo.min.js b/docs/api-reference/v1.9/node_modules/jquery.scrollto/jquery.scrollTo.min.js deleted file mode 100644 index 65a020d92a..0000000000 --- a/docs/api-reference/v1.9/node_modules/jquery.scrollto/jquery.scrollTo.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2007-2015 Ariel Flesler - afleslergmailcom | http://flesler.blogspot.com - * Licensed under MIT - * @author Ariel Flesler - * @version 2.1.2 - */ -;(function(f){"use strict";"function"===typeof define&&define.amd?define(["jquery"],f):"undefined"!==typeof module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use strict";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"=== typeof d&&(b=d,d=0);"function"===typeof b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1=f[g]?0:Math.min(f[g],n));!a&&1=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext;function B(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()}var C=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,D=/^.[^:#\[\.,]*$/;function E(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):D.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(E(this,a||[],!1))},not:function(a){return this.pushStack(E(this,a||[],!0))},is:function(a){return!!E(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var F,G=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,H=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||F,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:G.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),C.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};H.prototype=r.fn,F=r(d);var I=/^(?:parents|prev(?:Until|All))/,J={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function K(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return K(a,"nextSibling")},prev:function(a){return K(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return B(a,"iframe")?a.contentDocument:(B(a,"template")&&(a=a.content||a),r.merge([],a.childNodes))}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(J[a]||r.uniqueSort(e),I.test(a)&&e.reverse()),this.pushStack(e)}});var L=/[^\x20\t\r\n\f]+/g;function M(a){var b={};return r.each(a.match(L)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?M(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=e||a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function N(a){return a}function O(a){throw a}function P(a,b,c,d){var e;try{a&&r.isFunction(e=a.promise)?e.call(a).done(b).fail(c):a&&r.isFunction(e=a.then)?e.call(a,b,c):b.apply(void 0,[a].slice(d))}catch(a){c.apply(void 0,[a])}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==O&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:N,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:N)),c[2][3].add(g(0,a,r.isFunction(d)?d:O))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(P(a,g.done(h(c)).resolve,g.reject,!b),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)P(e[c],h(c),g.reject);return g.promise()}});var Q=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&Q.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var R=r.Deferred();r.fn.ready=function(a){return R.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||R.resolveWith(d,[r]))}}),r.ready.then=R.then;function S(){d.removeEventListener("DOMContentLoaded",S), -a.removeEventListener("load",S),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",S),a.addEventListener("load",S));var T=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)T(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){X.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=W.get(a,b),c&&(!d||Array.isArray(c)?d=W.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return W.get(a,c)||W.access(a,c,{empty:r.Callbacks("once memory").add(function(){W.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,la=/^$|\/(?:java|ecma)script/i,ma={option:[1,""],thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};ma.optgroup=ma.option,ma.tbody=ma.tfoot=ma.colgroup=ma.caption=ma.thead,ma.th=ma.td;function na(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&B(a,b)?r.merge([a],c):c}function oa(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=na(l.appendChild(f),"script"),j&&oa(g),c){k=0;while(f=g[k++])la.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var ra=d.documentElement,sa=/^key/,ta=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ua=/^([^.]*)(?:\.(.+)|)/;function va(){return!0}function wa(){return!1}function xa(){try{return d.activeElement}catch(a){}}function ya(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ya(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=wa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(ra,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(L)||[""],j=b.length;while(j--)h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.hasData(a)&&W.get(a);if(q&&(i=q.events)){b=(b||"").match(L)||[""],j=b.length;while(j--)if(h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&W.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(W.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i\x20\t\r\n\f]*)[^>]*)\/>/gi,Aa=/\s*$/g;function Ea(a,b){return B(a,"table")&&B(11!==b.nodeType?b:b.firstChild,"tr")?r(">tbody",a)[0]||a:a}function Fa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Ga(a){var b=Ca.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ha(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(W.hasData(a)&&(f=W.access(a),g=W.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c1&&"string"==typeof q&&!o.checkClone&&Ba.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ja(f,b,c,d)});if(m&&(e=qa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(na(e,"script"),Fa),i=h.length;l")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=na(h),f=na(a),d=0,e=f.length;d0&&oa(g,!i&&na(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(U(c)){if(b=c[W.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[W.expando]=void 0}c[X.expando]&&(c[X.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ka(this,a,!0)},remove:function(a){return Ka(this,a)},text:function(a){return T(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.appendChild(a)}})},prepend:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(na(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return T(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!Aa.test(a)&&!ma[(ka.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c1)}});function _a(a,b,c,d,e){return new _a.prototype.init(a,b,c,d,e)}r.Tween=_a,_a.prototype={constructor:_a,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=_a.propHooks[this.prop];return a&&a.get?a.get(this):_a.propHooks._default.get(this)},run:function(a){var b,c=_a.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):_a.propHooks._default.set(this),this}},_a.prototype.init.prototype=_a.prototype,_a.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},_a.propHooks.scrollTop=_a.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=_a.prototype.init,r.fx.step={};var ab,bb,cb=/^(?:toggle|show|hide)$/,db=/queueHooks$/;function eb(){bb&&(d.hidden===!1&&a.requestAnimationFrame?a.requestAnimationFrame(eb):a.setTimeout(eb,r.fx.interval),r.fx.tick())}function fb(){return a.setTimeout(function(){ab=void 0}),ab=r.now()}function gb(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=ca[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function hb(a,b,c){for(var d,e=(kb.tweeners[b]||[]).concat(kb.tweeners["*"]),f=0,g=e.length;f1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?lb:void 0)),void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b), -null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&B(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(L);if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),lb={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=mb[b]||r.find.attr;mb[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=mb[g],mb[g]=e,e=null!=c(a,b,d)?g:null,mb[g]=f),e}});var nb=/^(?:input|select|textarea|button)$/i,ob=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return T(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):nb.test(a.nodeName)||ob.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});function pb(a){var b=a.match(L)||[];return b.join(" ")}function qb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,qb(this)))});if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,qb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,qb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(L)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=qb(this),b&&W.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":W.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+pb(qb(c))+" ").indexOf(b)>-1)return!0;return!1}});var rb=/\r/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":Array.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(rb,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:pb(r.text(a))}},select:{get:function(a){var b,c,d,e=a.options,f=a.selectedIndex,g="select-one"===a.type,h=g?null:[],i=g?f+1:e.length;for(d=f<0?i:g?f:0;d-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(Array.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var sb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!sb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,sb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(W.get(h,"events")||{})[b.type]&&W.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&U(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!U(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=W.access(d,b);e||d.addEventListener(a,c,!0),W.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=W.access(d,b)-1;e?W.access(d,b,e):(d.removeEventListener(a,c,!0),W.remove(d,b))}}});var tb=a.location,ub=r.now(),vb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var wb=/\[\]$/,xb=/\r?\n/g,yb=/^(?:submit|button|image|reset|file)$/i,zb=/^(?:input|select|textarea|keygen)/i;function Ab(a,b,c,d){var e;if(Array.isArray(b))r.each(b,function(b,e){c||wb.test(a)?d(a,e):Ab(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)Ab(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(Array.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)Ab(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&zb.test(this.nodeName)&&!yb.test(a)&&(this.checked||!ja.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:Array.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(xb,"\r\n")}}):{name:b.name,value:c.replace(xb,"\r\n")}}).get()}});var Bb=/%20/g,Cb=/#.*$/,Db=/([?&])_=[^&]*/,Eb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Fb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Gb=/^(?:GET|HEAD)$/,Hb=/^\/\//,Ib={},Jb={},Kb="*/".concat("*"),Lb=d.createElement("a");Lb.href=tb.href;function Mb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(L)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Nb(a,b,c,d){var e={},f=a===Jb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Ob(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Pb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Qb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:tb.href,type:"GET",isLocal:Fb.test(tb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Kb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Ob(Ob(a,r.ajaxSettings),b):Ob(r.ajaxSettings,a)},ajaxPrefilter:Mb(Ib),ajaxTransport:Mb(Jb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.Deferred(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Eb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||tb.href)+"").replace(Hb,tb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(L)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Lb.protocol+"//"+Lb.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Nb(Ib,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Gb.test(o.type),f=o.url.replace(Cb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(Bb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(vb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Db,"$1"),n=(vb.test(f)?"&":"?")+"_="+ub++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Kb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Nb(Jb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Pb(o,y,d)),v=Qb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Rb={0:200,1223:204},Sb=r.ajaxSettings.xhr();o.cors=!!Sb&&"withCredentials"in Sb,o.ajax=Sb=!!Sb,r.ajaxTransport(function(b){var c,d;if(o.cors||Sb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Rb[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r("