diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index a94506e8c6..401f52479c 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,4 +1,8 @@
-> NOTE: Please check the “Allow edits from maintainers” box (see image below) to
+> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+> For 1.8 Features: set Milestone to `1.8` and Base Branch to `release-1.8`
+> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+>
+> NOTE: Please check the “Allow edits from maintainers” box (see image below) to
> [allow reviewers to fix problems](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/) on your patch and speed up the review process.
>
> Please delete this note before submitting the pull request.
diff --git a/OWNERS b/OWNERS
index 055a328273..f1cef0b5bb 100644
--- a/OWNERS
+++ b/OWNERS
@@ -1,4 +1,4 @@
-assignees:
+approvers:
- smarterclayton
- janetkuo
- pwittrock
diff --git a/_config.yml b/_config.yml
index fff0133fe9..f6071aef08 100644
--- a/_config.yml
+++ b/_config.yml
@@ -39,7 +39,7 @@ gems:
# disabled gems
# - jekyll-redirect-from
-include: [_redirects]
+include: [_redirects,_headers]
# SEO
logo: /images/favicon.png
diff --git a/_includes/glossary/README.md b/_includes/glossary/README.md
new file mode 100644
index 0000000000..ef30343832
--- /dev/null
+++ b/_includes/glossary/README.md
@@ -0,0 +1,3 @@
+# Instructions for Glossary snippets
+
+Markdown snippets of glossary terms to be reused throughout the documentation should be placed in this directory.
diff --git a/_redirects b/_redirects
index 70e111ece7..54281eba3b 100644
--- a/_redirects
+++ b/_redirects
@@ -220,6 +220,11 @@
/docs/whatisk8s /docs/concepts/overview/what-is-kubernetes 301
+#
+# pattern matching redirects
+#
+/docs/user-guide/kubectl/kubectl_* /docs/user-guide/kubectl/v1.7/#:splat 200
+
#
# redirects from /js/redirects.js
#
diff --git a/cn/docs/concepts/overview/what-is-kubernetes.md b/cn/docs/concepts/overview/what-is-kubernetes.md
index 39f331bf5a..47628d4f52 100644
--- a/cn/docs/concepts/overview/what-is-kubernetes.md
+++ b/cn/docs/concepts/overview/what-is-kubernetes.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- k8s-merge-robot
title: 认识 Kubernetes?
diff --git a/cn/docs/getting-started-guides/centos/centos_manual_config.md b/cn/docs/getting-started-guides/centos/centos_manual_config.md
index cfa79aa370..4ff99653ac 100644
--- a/cn/docs/getting-started-guides/centos/centos_manual_config.md
+++ b/cn/docs/getting-started-guides/centos/centos_manual_config.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- thockin
title: CentOS
---
diff --git a/cn/docs/getting-started-guides/coreos/bare_metal_offline.md b/cn/docs/getting-started-guides/coreos/bare_metal_offline.md
index 389428c439..8e9b0d9ceb 100644
--- a/cn/docs/getting-started-guides/coreos/bare_metal_offline.md
+++ b/cn/docs/getting-started-guides/coreos/bare_metal_offline.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- erictune
- thockin
title: Offline
@@ -92,11 +92,11 @@ LABEL local
LOCALBOOT 0
```
-至此,您应当已经配置好一个可用的PXELINUX环境用来运行CoreOS节点了,您可以通过在本地运行VirtualBox或者物理裸机来验证这一点。
+至此,您应当已经配置好一个可用的PXELINUX环境用来运行CoreOS节点了。您可以使用VirtualBox或者在物理裸机上对PXELINUX环境所提供的服务进行验证。
## 添加CoreOS至PXE
-本节将介绍如何在一个现有的PXELINUX环境上设置CoreOS镜像。
+本节描述在已有PXELINUX环境的前提下,如何配置CoreOS镜像与之并存。
1. 查找或者创建TFTP根目录,后续所有步骤都将基于此目录。
* 本文中我们假设`/tftpboot`是根目录。
@@ -199,13 +199,13 @@ subnet 10.20.30.0 netmask 255.255.255.0 {
1. 第一种方式是将云配置文件模版化,然后通过编程的方式为不同的集群提供不同的配置。
2. 第二种方式是运行一个服务发现协议从而可以在云环境中做服务的自动发现。
-在本demo中,我们仅简单地创建一个静态的单一`etcd`服务器来运行Kubernetes并提供`etcd`的主要服务。
+在本示例中,我们将通过静态方式创建一个etcd服务器,用于运行Kubernetes主控组件,并用作etcd主节点。
-由于我们的集群处于一个离线的环境中,所以大部分的CoreOS和Kubernetes帮助进程是受限的。为了完成部署,我们需要下载Kubernetes的各种可执行文件到本地然后再启动运行。
+由于我们的集群处于一个离线的环境中,所以大部分的CoreOS和Kubernetes帮助进程是受限的。为了完成部署,我们需要下载Kubernetes的各个可执行文件到本地然后再启动运行。
-一种简单的方案是在DHCP/TFTP主机上搭建一个简易的web服务器,从而环境中的CoreOS PXE机器可以从其上下载各种可执行文件。
+一种简单的方案是在DHCP/TFTP主机上搭建一个简易的web服务器,从而环境中的CoreOS PXE机器可以从其上下载各个可执行文件。
-为了达到这一目标,我们将启动一个`apache`服务器并提供运行Kuberetes所需要的各种可执行文件。
+为了达到这一目标,我们将启动一个`apache`服务器并提供运行Kubernetes所需要的各个可执行文件。
以下脚本运行在上文中准备好的PXE服务器上:
@@ -705,4 +705,4 @@ IaaS Provider | Config. Mgmt | OS | Networking | Docs
-------------------- | ------------ | ------ | ---------- | --------------------------------------------- | ---------| ----------------------------
Bare-metal (Offline) | CoreOS | CoreOS | flannel | [docs](/docs/getting-started-guides/coreos/bare_metal_offline) | | Community ([@jeffbean](https://github.com/jeffbean))
-有关所有解决方案的支持级别信息,请参阅[解决方案列表](/docs/getting-started-guides/#table-of-solutions)。
\ No newline at end of file
+有关所有解决方案的支持级别信息,请参阅[解决方案列表](/docs/getting-started-guides/#table-of-solutions)。
diff --git a/cn/docs/whatisk8s.md b/cn/docs/whatisk8s.md
index e4e662c152..6d5a93dc89 100644
--- a/cn/docs/whatisk8s.md
+++ b/cn/docs/whatisk8s.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- k8s-merge-robot
title: 认识 Kubernetes?
diff --git a/css/callouts.css b/css/callouts.css
index f3f34bbaee..22f73d0802 100644
--- a/css/callouts.css
+++ b/css/callouts.css
@@ -1,3 +1,4 @@
+/* Callouts */
.caution, .note, .warning {
padding: 20px;
margin: 20px 0;
@@ -17,3 +18,34 @@
.warning {
border-left-color: #d9534f;
}
+
+/* Feature States */
+
+.beta, .stable, .alpha, .deprecated {
+ margin-top: 20px;
+ padding: 15px;
+ background-color: #fafafa;
+ border: 1px solid transparent;
+ border-radius:4px;
+}
+
+.beta {
+ color: #31708f;
+ border-color: #bce8f1;
+}
+
+
+.stable {
+ color: #3c763d;
+ border-color: #d6e9c6;
+}
+
+.alpha {
+ color: #8a6d3b;
+ border-color: #faebcc;
+}
+
+.deprecated {
+ color: #a94442;
+ border-color: #ebccd1;
+}
diff --git a/docs/admin/OWNERS b/docs/admin/OWNERS
index 498d076a5f..54a149ead7 100644
--- a/docs/admin/OWNERS
+++ b/docs/admin/OWNERS
@@ -1,4 +1,4 @@
-assignees:
+approvers:
- derekwaynecarr
- mikedanese
diff --git a/docs/admin/accessing-the-api.md b/docs/admin/accessing-the-api.md
index fbdd681cb7..08c1eecd06 100644
--- a/docs/admin/accessing-the-api.md
+++ b/docs/admin/accessing-the-api.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- bgrant0607
- erictune
- lavalamp
diff --git a/docs/admin/admission-controllers.md b/docs/admin/admission-controllers.md
index 3602bd43a6..0a1b0e289d 100644
--- a/docs/admin/admission-controllers.md
+++ b/docs/admin/admission-controllers.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- bprashanth
- davidopp
- derekwaynecarr
diff --git a/docs/admin/authentication.md b/docs/admin/authentication.md
index f8ba5cb440..72353b5d72 100644
--- a/docs/admin/authentication.md
+++ b/docs/admin/authentication.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- erictune
- lavalamp
- ericchiang
diff --git a/docs/admin/authorization/abac.md b/docs/admin/authorization/abac.md
index c4c398f5a5..d06b5a1ef8 100644
--- a/docs/admin/authorization/abac.md
+++ b/docs/admin/authorization/abac.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- erictune
- lavalamp
- deads2k
@@ -45,7 +45,7 @@ properties:
- Wildcard:
- `*` matches all non-resource requests.
- `/foo/*` matches all subpaths of `/foo/`.
- - `readonly`, type boolean, when true, means that the policy only applies to get, list, and watch operations.
+ - `readonly`, type boolean, when true, means that the Resource-matching policy only applies to get, list, and watch operations, Non-resource-matching policy only applies to get operation.
**NOTES:** An unset property is the same as a property set to the zero value for its type
(e.g. empty string, 0, false). However, unset should be preferred for
@@ -152,4 +152,4 @@ file:
The apiserver will need to be restarted to pickup the new policy lines.
{% endcapture %}
-{% include templates/concept.md %}
\ No newline at end of file
+{% include templates/concept.md %}
diff --git a/docs/admin/authorization/index.md b/docs/admin/authorization/index.md
index 2d5a5bebc3..3a8015498f 100644
--- a/docs/admin/authorization/index.md
+++ b/docs/admin/authorization/index.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- erictune
- lavalamp
- deads2k
diff --git a/docs/admin/authorization/node.md b/docs/admin/authorization/node.md
index 399add80f7..12a80fc763 100644
--- a/docs/admin/authorization/node.md
+++ b/docs/admin/authorization/node.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- timstclair
- deads2k
- liggitt
diff --git a/docs/admin/authorization/rbac.md b/docs/admin/authorization/rbac.md
index 9694f9e00f..d091c6e65e 100644
--- a/docs/admin/authorization/rbac.md
+++ b/docs/admin/authorization/rbac.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- erictune
- deads2k
- liggitt
@@ -754,7 +754,7 @@ Here are two approaches for managing this transition:
Run both the RBAC and ABAC authorizers, and include the legacy ABAC policy:
```
---authorization-mode=RBAC,ABAC --authorization-policy-file=mypolicy.jsonl
+--authorization-mode=RBAC,ABAC --authorization-policy-file=mypolicy.json
```
The RBAC authorizer will attempt to authorize requests first. If it denies an API request,
diff --git a/docs/admin/authorization/webhook.md b/docs/admin/authorization/webhook.md
index 6d2adc9d6f..276c9e2e18 100644
--- a/docs/admin/authorization/webhook.md
+++ b/docs/admin/authorization/webhook.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- erictune
- lavalamp
- deads2k
diff --git a/docs/admin/bootstrap-tokens.md b/docs/admin/bootstrap-tokens.md
index 09ceaa18a1..3449b82b1c 100644
--- a/docs/admin/bootstrap-tokens.md
+++ b/docs/admin/bootstrap-tokens.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- jbeda
title: Authenticating with Bootstrap Tokens
---
@@ -127,7 +127,7 @@ commands.
In addition to authentication, the tokens can be used to sign a ConfigMap. This
is used early in a cluster bootstrap process before the client trusts the API
-server. The signed ConfigMap can be authenicated by the shared token.
+server. The signed ConfigMap can be authenticated by the shared token.
The ConfigMap that is signed is `cluster-info` in the `kube-public` namespace.
The typical flow is that a client reads this ConfigMap while unauthenticated and
diff --git a/docs/admin/cluster-large.md b/docs/admin/cluster-large.md
index e8c1dbe2c6..34f2e48870 100644
--- a/docs/admin/cluster-large.md
+++ b/docs/admin/cluster-large.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- davidopp
- lavalamp
title: Building Large Clusters
@@ -7,11 +7,11 @@ title: Building Large Clusters
## Support
-At {{page.version}}, Kubernetes supports clusters with up to 1000 nodes. More specifically, we support configurations that meet *all* of the following criteria:
+At {{page.version}}, Kubernetes supports clusters with up to 5000 nodes. More specifically, we support configurations that meet *all* of the following criteria:
-* No more than 2000 nodes
-* No more than 60000 total pods
-* No more than 120000 total containers
+* No more than 5000 nodes
+* No more than 150000 total pods
+* No more than 300000 total containers
* No more than 100 pods per node
diff --git a/docs/admin/extensible-admission-controllers.md b/docs/admin/extensible-admission-controllers.md
index 47bd8bc217..fb4ca7bfa9 100644
--- a/docs/admin/extensible-admission-controllers.md
+++ b/docs/admin/extensible-admission-controllers.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- smarterclayton
- lavalamp
- whitlockjc
diff --git a/docs/admin/federation/OWNERS b/docs/admin/federation/OWNERS
index 3ce2262d48..ea09d0e999 100644
--- a/docs/admin/federation/OWNERS
+++ b/docs/admin/federation/OWNERS
@@ -1,4 +1,4 @@
-assignees:
+approvers:
- madhusudancs
- mml
- nikhiljindal
diff --git a/docs/admin/federation/index.md b/docs/admin/federation/index.md
index 08cd32c090..b6f0243b97 100644
--- a/docs/admin/federation/index.md
+++ b/docs/admin/federation/index.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- madhusudancs
- mml
- nikhiljindal
diff --git a/docs/admin/high-availability/OWNERS b/docs/admin/high-availability/OWNERS
index 0ebc2894ee..29cfa786c8 100644
--- a/docs/admin/high-availability/OWNERS
+++ b/docs/admin/high-availability/OWNERS
@@ -1,4 +1,4 @@
-assignees:
+approvers:
- davidopp
- lavalamp
diff --git a/docs/admin/kube-apiserver.md b/docs/admin/kube-apiserver.md
index fa3b3338c9..d77b83a22d 100644
--- a/docs/admin/kube-apiserver.md
+++ b/docs/admin/kube-apiserver.md
@@ -129,7 +129,7 @@ TaintBasedEvictions=true|false (ALPHA - default=false)
--storage-media-type string The media type to use to store objects in storage. Some resources or storage backends may only support a specific media type and will ignore this setting. (default "application/vnd.kubernetes.protobuf")
--storage-versions string The per-group version to store resources in. Specified in the format "group1/version1,group2/version2,...". In the case where objects are moved from one group to the other, you may specify the format "group1=group2/v1beta1,group3/v1beta1,...". You only need to pass the groups you wish to change from the defaults. It defaults to a list of preferred versions of all registered groups, which is derived from the KUBE_API_VERSIONS environment variable. (default "admission.k8s.io/v1alpha1,admissionregistration.k8s.io/v1alpha1,apps/v1beta1,authentication.k8s.io/v1,authorization.k8s.io/v1,autoscaling/v1,batch/v1,certificates.k8s.io/v1beta1,componentconfig/v1alpha1,extensions/v1beta1,federation/v1beta1,imagepolicy.k8s.io/v1alpha1,networking.k8s.io/v1,policy/v1beta1,rbac.authorization.k8s.io/v1beta1,settings.k8s.io/v1alpha1,storage.k8s.io/v1,v1")
--target-ram-mb int Memory limit for apiserver in MB (used to configure sizes of caches, etc.)
- --tls-ca-file string If set, this certificate authority will used for secure access from Admission Controllers. This must be a valid PEM-encoded CA bundle. Altneratively, the certificate authority can be appended to the certificate provided by --tls-cert-file.
+ --tls-ca-file string If set, this certificate authority will used for secure access from Admission Controllers. This must be a valid PEM-encoded CA bundle. Alternatively, the certificate authority can be appended to the certificate provided by --tls-cert-file.
--tls-cert-file string File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert). If HTTPS serving is enabled, and --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key are generated for the public address and saved to /var/run/kubernetes.
--tls-private-key-file string File containing the default x509 private key matching --tls-cert-file.
--tls-sni-cert-key namedCertKey A pair of x509 certificate and private key file paths, optionally suffixed with a list of domain patterns which are fully qualified domain names, possibly with prefixed wildcard segments. If no domain patterns are provided, the names of the certificate are extracted. Non-wildcard matches trump over wildcard matches, explicit domain patterns trump over extracted names. For multiple key/certificate pairs, use the --tls-sni-cert-key multiple times. Examples: "example.crt,example.key" or "foo.crt,foo.key:*.foo.com,foo.com". (default [])
diff --git a/docs/admin/kube-controller-manager.md b/docs/admin/kube-controller-manager.md
index 5a62226563..5d8b9eae99 100644
--- a/docs/admin/kube-controller-manager.md
+++ b/docs/admin/kube-controller-manager.md
@@ -45,7 +45,7 @@ kube-controller-manager
--concurrent-service-syncs int32 The number of services that are allowed to sync concurrently. Larger number = more responsive service management, but more CPU (and network) load (default 1)
--concurrent-serviceaccount-token-syncs int32 The number of service account token objects that are allowed to sync concurrently. Larger number = more responsive token generation, but more CPU (and network) load (default 5)
--concurrent_rc_syncs int32 The number of replication controllers that are allowed to sync concurrently. Larger number = more responsive replica management, but more CPU (and network) load (default 5)
- --configure-cloud-routes Should CIDRs allocated by allocate-node-cidrs be configured on the cloud provider. (default true)
+ --configure-cloud-routes Should CIDRs allocated by allocate-node-cidrs be configured on the cloud provider. If using a network overlay which will handle routing independent of the cloud provider, set this to false. (default true)
--contention-profiling Enable lock contention profiling, if profiling is enabled
--controller-start-interval duration Interval between starting controller managers.
--controllers stringSlice A list of controllers to enable. '*' enables all on-by-default controllers, 'foo' enables the controller named 'foo', '-foo' disables the controller named 'foo'.
diff --git a/docs/admin/kubeadm.md b/docs/admin/kubeadm.md
index 44a4f8bf5b..90e2b9d0c7 100644
--- a/docs/admin/kubeadm.md
+++ b/docs/admin/kubeadm.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- mikedanese
- luxas
- errordeveloper
diff --git a/docs/admin/kubelet-authentication-authorization.md b/docs/admin/kubelet-authentication-authorization.md
index aa8abf85df..6d26b1c670 100644
--- a/docs/admin/kubelet-authentication-authorization.md
+++ b/docs/admin/kubelet-authentication-authorization.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- liggitt
title: Kubelet authentication/authorization
---
diff --git a/docs/admin/kubelet-tls-bootstrapping.md b/docs/admin/kubelet-tls-bootstrapping.md
index 93bde8b44c..81d91d4a94 100644
--- a/docs/admin/kubelet-tls-bootstrapping.md
+++ b/docs/admin/kubelet-tls-bootstrapping.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- ericchiang
- mikedanese
- jcbsmpsn
diff --git a/docs/admin/limitrange/OWNERS b/docs/admin/limitrange/OWNERS
index 1dac6f1017..cca389a741 100644
--- a/docs/admin/limitrange/OWNERS
+++ b/docs/admin/limitrange/OWNERS
@@ -1,4 +1,4 @@
-assignees:
+approvers:
- derekwaynecarr
- janetkuo
diff --git a/docs/admin/multiple-schedulers/OWNERS b/docs/admin/multiple-schedulers/OWNERS
index 3941099ffc..277bb74374 100644
--- a/docs/admin/multiple-schedulers/OWNERS
+++ b/docs/admin/multiple-schedulers/OWNERS
@@ -1,4 +1,4 @@
-assignees:
+approvers:
- davidopp
- madhusudancs
diff --git a/docs/admin/multiple-zones.md b/docs/admin/multiple-zones.md
index e8308a1a3a..acb5cb7061 100644
--- a/docs/admin/multiple-zones.md
+++ b/docs/admin/multiple-zones.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- jlowdermilk
- justinsb
- quinton-hoole
@@ -74,7 +74,7 @@ located in a single zone. Users that want a highly available control
plane should follow the [high availability](/docs/admin/high-availability) instructions.
-## Walkthough
+## Walkthrough
We're now going to walk through setting up and using a multi-zone
cluster on both GCE & AWS. To do so, you bring up a full cluster
diff --git a/docs/admin/namespaces/OWNERS b/docs/admin/namespaces/OWNERS
index 1dac6f1017..cca389a741 100644
--- a/docs/admin/namespaces/OWNERS
+++ b/docs/admin/namespaces/OWNERS
@@ -1,4 +1,4 @@
-assignees:
+approvers:
- derekwaynecarr
- janetkuo
diff --git a/docs/admin/node-conformance.md b/docs/admin/node-conformance.md
index 79c3e50946..5f8852749d 100644
--- a/docs/admin/node-conformance.md
+++ b/docs/admin/node-conformance.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- Random-Liu
title: Validate Node Setup
---
diff --git a/docs/admin/ovs-networking.md b/docs/admin/ovs-networking.md
index 8ae71cc186..a8cda06ecd 100644
--- a/docs/admin/ovs-networking.md
+++ b/docs/admin/ovs-networking.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- thockin
title: Kubernetes OpenVSwitch GRE/VxLAN networking
---
diff --git a/docs/admin/resourcequota/OWNERS b/docs/admin/resourcequota/OWNERS
index dc809362b2..4ada8a6a6c 100644
--- a/docs/admin/resourcequota/OWNERS
+++ b/docs/admin/resourcequota/OWNERS
@@ -1,3 +1,3 @@
-assignees:
+approvers:
- derekwaynecarr
diff --git a/docs/admin/salt.md b/docs/admin/salt.md
index b570dc8473..318899132d 100644
--- a/docs/admin/salt.md
+++ b/docs/admin/salt.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- davidopp
title: Configuring Kubernetes with Salt
---
diff --git a/docs/admin/service-accounts-admin.md b/docs/admin/service-accounts-admin.md
index 3fa6ef492f..275d5b5c71 100644
--- a/docs/admin/service-accounts-admin.md
+++ b/docs/admin/service-accounts-admin.md
@@ -1,5 +1,5 @@
---
-assignees:
+approvers:
- bprashanth
- davidopp
- lavalamp
diff --git a/docs/api-reference/v1.7/brodoc.js b/docs/api-reference/v1.7/brodoc.js
index da3507af76..63b222b516 100644
--- a/docs/api-reference/v1.7/brodoc.js
+++ b/docs/api-reference/v1.7/brodoc.js
@@ -153,7 +153,7 @@ function generateNestedNav(parent, nest) {
function generateNavJson(data) {
var navJson = JSON.stringify(data);
- navScript = `(function(){navData = ${navJson}})();`;
+ navScript = `(function(){navData = ${navJson};})();`;
fs.writeFile('./navData.js', navScript, function(err) {
if (err) {
return console.log(err);
diff --git a/docs/api-reference/v1.7/index.html b/docs/api-reference/v1.7/index.html
index 51c9ba2b92..0b82fe44fe 100644
--- a/docs/api-reference/v1.7/index.html
+++ b/docs/api-reference/v1.7/index.html
@@ -11,7 +11,7 @@
A single application container that you want to run within a pod.
+Appears In: + +securityContext SecurityContext |
-Security options the pod should run with. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ More info: https://git.k8s.io/community/contributors/design-proposals/security_context.md | +Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://git.k8s.io/community/contributors/design-proposals/security_context.md |
stdin boolean |
@@ -221,7 +225,11 @@ Appears In PodSpec
DaemonSet represents the configuration of a daemon set.
+Appears In: + +Deployment enables declarative updates for Pods and ReplicaSets.
+Appears In: + +See supported operations below...
----
kubectl
Command
-Coming Soon
-
----
curl
Command (requireskubectl proxy
to be running)
-Coming Soon
-
---Output
-
-Coming Soon
-
---Response Body
-
-Coming Soon
-
-create rollback of a DeploymentRollback
-POST /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback
Parameter | -Description | -
---|---|
name | -name of the DeploymentRollback | -
namespace | -object name and auth scope, such as for teams and projects | -
Parameter | -Description | -
---|---|
pretty | -If 'true', then the output is pretty printed. | -
Parameter | -Description | -
---|---|
body DeploymentRollback |
-- |
Code | -Description | -
---|---|
200 DeploymentRollback |
-OK | -
@@ -5926,7 +5888,11 @@ apiVersion:batch/v1
Job represents the configuration of a single job.
+Appears In: + +See supported operations below...
@@ -10988,7 +10976,11 @@ Appears In PodReplicaSet represents the configuration of a ReplicaSet.
+Appears In: + +@@ -11022,7 +11014,11 @@ Appears In ReplicaSetList
-ReplicaSetSpec v1beta1 extensions
+Appears In: + +@@ -11052,7 +11048,11 @@ Appears In ReplicaSet
ReplicaSetStatus v1beta1 extensions
+Appears In: + +@@ -11115,9 +11115,9 @@ Appears In ReplicaSet
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -11205,7 +11205,7 @@ Appears In ReplicaSet
kubectl
CommandPatch
+Patch
@@ -11297,7 +11297,7 @@ Appears In ReplicaSet
kubectl
Command
@@ -11389,7 +11389,7 @@ Appears In ReplicaSet
kubectl
Command
@@ -11493,7 +11493,7 @@ Appears In ReplicaSet
kubectl
Command
@@ -11590,9 +11590,9 @@ Appears In ReplicaSet
kubectl
Command
See supported operations below...
-@@ -11677,7 +11677,7 @@ Appears In ReplicaSet
kubectl
Command
@@ -11774,7 +11774,7 @@ Appears In ReplicaSet -
kubectl
Command
@@ -11856,7 +11856,7 @@ Appears In ReplicaSet -
kubectl
Command
@@ -11957,7 +11957,7 @@ Appears In ReplicaSet -
kubectl
Command
@@ -12054,7 +12054,7 @@ Appears In ReplicaSet -
kubectl
Command
@@ -12136,9 +12136,9 @@ Appears In ReplicaSet -
kubectl
Command
See supported operations below...
-@@ -12230,7 +12230,7 @@ Appears In ReplicaSet -
kubectl
Command
@@ -12307,7 +12307,7 @@ Appears In ReplicaSet -
kubectl
Command
@@ -12399,269 +12399,6 @@ Appears In ReplicaSet -
kubectl
Command
See supported operations below...
----
kubectl
Command
-Coming Soon
-
----
curl
Command (requireskubectl proxy
to be running)
-Coming Soon
-
---Output
-
-Coming Soon
-
---Response Body
-
-Coming Soon
-
-read scale of the specified Scale
-GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
Parameter | -Description | -
---|---|
name | -name of the Scale | -
namespace | -object name and auth scope, such as for teams and projects | -
Parameter | -Description | -
---|---|
pretty | -If 'true', then the output is pretty printed. | -
Code | -Description | -
---|---|
200 Scale |
-OK | -
---
kubectl
Command
-Coming Soon
-
----
curl
Command (requireskubectl proxy
to be running)
-Coming Soon
-
---Output
-
-Coming Soon
-
---Response Body
-
-Coming Soon
-
-replace scale of the specified Scale
-PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
Parameter | -Description | -
---|---|
name | -name of the Scale | -
namespace | -object name and auth scope, such as for teams and projects | -
Parameter | -Description | -
---|---|
pretty | -If 'true', then the output is pretty printed. | -
Parameter | -Description | -
---|---|
body Scale |
-- |
Code | -Description | -
---|---|
200 Scale |
-OK | -
---
kubectl
Command
-Coming Soon
-
----
curl
Command (requireskubectl proxy
to be running)
-Coming Soon
-
---Output
-
-Coming Soon
-
---Response Body
-
-Coming Soon
-
-partially update scale of the specified Scale
-PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
Parameter | -Description | -
---|---|
name | -name of the Scale | -
namespace | -object name and auth scope, such as for teams and projects | -
Parameter | -Description | -
---|---|
pretty | -If 'true', then the output is pretty printed. | -
Parameter | -Description | -
---|---|
body Patch |
-- |
Code | -Description | -
---|---|
200 Scale |
-OK | -
@@ -12732,7 +12469,11 @@ Appears In ReplicaSetReplicationController represents the configuration of a replication controller.
+Appears In: + +@@ -12766,7 +12507,11 @@ Appears In ReplicationControllerLis
ReplicationControllerSpec v1 core
+Appears In: + +@@ -12796,7 +12541,11 @@ Appears In ReplicationController
ReplicationControllerStatus v1 core
+Appears In: + +@@ -12859,9 +12608,9 @@ Appears In ReplicationController
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -12949,7 +12698,7 @@ Appears In ReplicationController -
kubectl
CommandPatch
+Patch
@@ -13041,7 +12790,7 @@ Appears In ReplicationController -
kubectl
CommandReplace
+Replace
@@ -13133,7 +12882,7 @@ Appears In ReplicationController -
kubectl
CommandDelete
+Delete
@@ -13237,7 +12986,7 @@ Appears In ReplicationController -
kubectl
CommandDelete Collection
+Delete Collection
@@ -13334,9 +13083,9 @@ Appears In ReplicationController -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -13421,7 +13170,7 @@ Appears In ReplicationController -
kubectl
CommandList
+List
@@ -13518,7 +13267,7 @@ Appears In ReplicationController -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -13600,7 +13349,7 @@ Appears In ReplicationController -
kubectl
CommandWatch
+Watch
@@ -13701,7 +13450,7 @@ Appears In ReplicationController -
kubectl
CommandWatch List
+Watch List
@@ -13798,7 +13547,7 @@ Appears In ReplicationController -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -13880,9 +13629,9 @@ Appears In ReplicationController -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -13974,7 +13723,7 @@ Appears In ReplicationController -
kubectl
CommandRead Status
+Read Status
@@ -14051,7 +13800,7 @@ Appears In ReplicationController -
kubectl
CommandReplace Status
+Replace Status
@@ -14168,7 +13917,11 @@ Appears In ReplicationController The StatefulSet guarantees that a given network identity will always map to the same storage identity. +Appears In: + +
kubectl
Command@@ -14202,7 +13955,11 @@ Appears In StatefulSetList
StatefulSetSpec v1beta1 apps
+Appears In: + +@@ -14248,7 +14005,11 @@ Appears In StatefulSet
StatefulSetStatus v1beta1 apps
+Appears In: + +@@ -14315,9 +14076,9 @@ Appears In StatefulSet
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -14405,7 +14166,7 @@ Appears In StatefulSet -
kubectl
CommandPatch
+Patch
@@ -14497,7 +14258,7 @@ Appears In StatefulSet -
kubectl
CommandReplace
+Replace
@@ -14589,7 +14350,7 @@ Appears In StatefulSet -
kubectl
CommandDelete
+Delete
@@ -14693,7 +14454,7 @@ Appears In StatefulSet -
kubectl
CommandDelete Collection
+Delete Collection
@@ -14790,9 +14551,9 @@ Appears In StatefulSet -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -14877,7 +14638,7 @@ Appears In StatefulSet -
kubectl
CommandList
+List
@@ -14974,7 +14735,7 @@ Appears In StatefulSet -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -15056,7 +14817,7 @@ Appears In StatefulSet -
kubectl
CommandWatch
+Watch
@@ -15157,7 +14918,7 @@ Appears In StatefulSet -
kubectl
CommandWatch List
+Watch List
@@ -15254,7 +15015,7 @@ Appears In StatefulSet -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -15336,9 +15097,9 @@ Appears In StatefulSet -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -15430,7 +15191,7 @@ Appears In StatefulSet -
kubectl
CommandRead Status
+Read Status
@@ -15507,7 +15268,7 @@ Appears In StatefulSet -
kubectl
CommandReplace Status
+Replace Status
@@ -15641,7 +15402,11 @@ Workloads can be accessed via proxy through the api master using the
kubectl
Commandkubec }, ] +Appears In: + +
@@ -15696,9 +15461,9 @@ Appears In EndpointsList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -15786,7 +15551,7 @@ Appears In EndpointsList -
kubectl
CommandPatch
+Patch
@@ -15878,7 +15643,7 @@ Appears In EndpointsList -
kubectl
CommandReplace
+Replace
@@ -15970,7 +15735,7 @@ Appears In EndpointsList -
kubectl
CommandDelete
+Delete
@@ -16074,7 +15839,7 @@ Appears In EndpointsList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -16171,9 +15936,9 @@ Appears In EndpointsList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -16258,7 +16023,7 @@ Appears In EndpointsList -
kubectl
CommandList
+List
@@ -16355,7 +16120,7 @@ Appears In EndpointsList -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -16437,7 +16202,7 @@ Appears In EndpointsList -
kubectl
CommandWatch
+Watch
@@ -16538,7 +16303,7 @@ Appears In EndpointsList -
kubectl
CommandWatch List
+Watch List
@@ -16635,7 +16400,7 @@ Appears In EndpointsList -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -16737,7 +16502,11 @@ Appears In EndpointsList
kubectl
CommandIngress 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.
+Appears In: + +@@ -16771,7 +16540,11 @@ Appears In IngressList
IngressSpec v1beta1 extensions
+Appears In: + +@@ -16797,7 +16570,11 @@ Appears In Ingress
IngressStatus v1beta1 extensions
+Appears In: + +@@ -16840,9 +16617,9 @@ Appears In Ingress
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -16930,7 +16707,7 @@ Appears In Ingress -
kubectl
CommandPatch
+Patch
@@ -17022,7 +16799,7 @@ Appears In Ingress -
kubectl
CommandReplace
+Replace
@@ -17114,7 +16891,7 @@ Appears In Ingress -
kubectl
CommandDelete
+Delete
@@ -17218,7 +16995,7 @@ Appears In Ingress -
kubectl
CommandDelete Collection
+Delete Collection
@@ -17315,9 +17092,9 @@ Appears In Ingress -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -17402,7 +17179,7 @@ Appears In Ingress -
kubectl
CommandList
+List
@@ -17499,7 +17276,7 @@ Appears In Ingress -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -17581,7 +17358,7 @@ Appears In Ingress -
kubectl
CommandWatch
+Watch
@@ -17682,7 +17459,7 @@ Appears In Ingress -
kubectl
CommandWatch List
+Watch List
@@ -17779,7 +17556,7 @@ Appears In Ingress -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -17861,9 +17638,9 @@ Appears In Ingress -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -17955,7 +17732,7 @@ Appears In Ingress -
kubectl
CommandRead Status
+Read Status
@@ -18032,7 +17809,7 @@ Appears In Ingress -
kubectl
CommandReplace Status
+Replace Status
@@ -18130,49 +17907,49 @@ Appears In Ingress
kubectl
CommandService 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
+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
+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 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.
+Appears In: + +See supported operations below...
-
kubectl
Command
-$ echo 'kind: Service
-apiVersion: v1
-metadata:
- name: service-example
-spec:
+$ echo 'kind: Service
+apiVersion: v1
+metadata:
+ name: service-example
+spec:
ports:
- - name: http
+ - name: http
port: 80
targetPort: 80
selector:
app: nginx
type: LoadBalancer
-' | kubectl create -f -
+' | kubectl create -f -
@@ -18371,8 +18160,8 @@ spec:
curl
Command (requireskubectl proxy
to be running)-Output
-service "service-example" created +
+service "service-example" created
Response Body
@@ -18474,7 +18263,7 @@ spec: -Patch
+Patch
@@ -18607,29 +18396,29 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Replace +
kubectl
CommandReplace
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 - +$ 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 -
@@ -18659,8 +18448,8 @@ spec:
curl
Command (requireskubectl proxy
to be running)-Output
-service "deployment-example" replaced +
+service "deployment-example" replaced
Response Body
@@ -18772,12 +18561,12 @@ spec: -Delete
+Delete
kubectl
Command-$ kubectl delete service deployment-example +$ kubectl delete service deployment-example
@@ -18792,8 +18581,8 @@ orphanDependents: false
curl
Command (requireskubectl proxy
to be running)-Output
-service "deployment-example" deleted +
+service "deployment-example" deleted
Response Body
@@ -18859,14 +18648,14 @@ orphanDependents: false -Read Operations
+Read Operations
See supported operations below...
-Read
+Read
kubectl
Command-$ kubectl get service deployment-example -o json +$ kubectl get service deployment-example -o json
@@ -19021,19 +18810,19 @@ $ kubectl get service deployment- -
curl
Command (requireskubectl proxy
to be running)List
+List
kubectl
Command-$ kubectl get service -o json +$ kubectl get service -o json
-
curl
Command (requireskubectl proxy
to be running)-$ kubectl proxy -$ curl -X GET 'http://127.0.0.1:8001/api/v1/namespaces/default/services' +
+$ kubectl proxy +$ curl -X GET 'http://127.0.0.1:8001/api/v1/namespaces/default/services'
Output
@@ -19117,7 +18906,7 @@ $ kubectl get service -o json -List All Namespaces
+List All Namespaces
@@ -19199,19 +18988,19 @@ $ kubectl get service -o json -
kubectl
CommandWatch
+Watch
kubectl
Command-$ kubectl get service deployment-example --watch -o json +$ kubectl get service deployment-example --watch -o json
-
curl
Command (requireskubectl proxy
to be running)-$ kubectl proxy -$ curl -X GET 'http://127.0.0.1:8001/api/v1/watch/namespaces/default/services/deployment-example' +
+$ kubectl proxy +$ curl -X GET 'http://127.0.0.1:8001/api/v1/watch/namespaces/default/services/deployment-example'
Output
@@ -19381,7 +19170,7 @@ $ kubectl get service deployment-example -Watch List
+Watch List
@@ -19478,7 +19267,7 @@ $ kubectl get service deployment-example -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -19560,9 +19349,9 @@ $ kubectl get service deployment-example -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -19654,7 +19443,7 @@ $ kubectl get service deployment-example -
kubectl
CommandRead Status
+Read Status
@@ -19731,7 +19520,7 @@ $ kubectl get service deployment-example -
kubectl
CommandReplace Status
+Replace Status
@@ -19823,9 +19612,9 @@ $ kubectl get service deployment-example -
kubectl
CommandProxy Operations
+Proxy Operations
See supported operations below...
-Create Connect Proxy
+Create Connect Proxy
@@ -19902,7 +19691,7 @@ $ kubectl get service deployment-example -
kubectl
CommandCreate Connect Proxy Path
+Create Connect Proxy Path
@@ -19983,7 +19772,7 @@ $ kubectl get service deployment-example -
kubectl
CommandCreate Proxy
+Create Proxy
@@ -20045,7 +19834,7 @@ $ kubectl get service deployment-example -
kubectl
CommandCreate Proxy Path
+Create Proxy Path
@@ -20111,7 +19900,7 @@ $ kubectl get service deployment-example -
kubectl
CommandDelete Connect Proxy
+Delete Connect Proxy
@@ -20188,7 +19977,7 @@ $ kubectl get service deployment-example -
kubectl
CommandDelete Connect Proxy Path
+Delete Connect Proxy Path
@@ -20269,7 +20058,7 @@ $ kubectl get service deployment-example -
kubectl
CommandDelete Proxy
+Delete Proxy
@@ -20331,7 +20120,7 @@ $ kubectl get service deployment-example -
kubectl
CommandDelete Proxy Path
+Delete Proxy Path
@@ -20397,7 +20186,7 @@ $ kubectl get service deployment-example -
kubectl
CommandGet Connect Proxy
+Get Connect Proxy
@@ -20474,7 +20263,7 @@ $ kubectl get service deployment-example -
kubectl
CommandGet Connect Proxy Path
+Get Connect Proxy Path
@@ -20555,7 +20344,7 @@ $ kubectl get service deployment-example -
kubectl
CommandGet Proxy
+Get Proxy
@@ -20617,7 +20406,7 @@ $ kubectl get service deployment-example -
kubectl
CommandGet Proxy Path
+Get Proxy Path
@@ -20683,7 +20472,7 @@ $ kubectl get service deployment-example -
kubectl
CommandHead Connect Proxy
+Head Connect Proxy
@@ -20760,7 +20549,7 @@ $ kubectl get service deployment-example -
kubectl
CommandHead Connect Proxy Path
+Head Connect Proxy Path
@@ -20841,7 +20630,7 @@ $ kubectl get service deployment-example -
kubectl
CommandReplace Connect Proxy
+Replace Connect Proxy
@@ -20918,7 +20707,7 @@ $ kubectl get service deployment-example -
kubectl
CommandReplace Connect Proxy Path
+Replace Connect Proxy Path
@@ -20999,7 +20788,7 @@ $ kubectl get service deployment-example -
kubectl
CommandReplace Proxy
+Replace Proxy
@@ -21061,7 +20850,7 @@ $ kubectl get service deployment-example -
kubectl
CommandReplace Proxy Path
+Replace Proxy Path
@@ -21156,7 +20945,11 @@ $ kubectl get service deployment-example
kubectl
CommandConfigMap holds configuration data for pods to consume.
+Appears In: + +@@ -21211,9 +21004,9 @@ Appears In ConfigMapList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -21301,7 +21094,7 @@ Appears In ConfigMapList -
kubectl
CommandPatch
+Patch
@@ -21393,7 +21186,7 @@ Appears In ConfigMapList -
kubectl
CommandReplace
+Replace
@@ -21485,7 +21278,7 @@ Appears In ConfigMapList -
kubectl
CommandDelete
+Delete
@@ -21589,7 +21382,7 @@ Appears In ConfigMapList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -21686,9 +21479,9 @@ Appears In ConfigMapList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -21773,7 +21566,7 @@ Appears In ConfigMapList -
kubectl
CommandList
+List
@@ -21870,7 +21663,7 @@ Appears In ConfigMapList -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -21952,7 +21745,7 @@ Appears In ConfigMapList -
kubectl
CommandWatch
+Watch
@@ -22053,7 +21846,7 @@ Appears In ConfigMapList -
kubectl
CommandWatch List
+Watch List
@@ -22150,7 +21943,7 @@ Appears In ConfigMapList -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -22252,7 +22045,11 @@ Appears In ConfigMapList
kubectl
CommandSecret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.
+Appears In: + +@@ -22315,9 +22112,9 @@ Appears In SecretList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -22405,7 +22202,7 @@ Appears In SecretList -
kubectl
CommandPatch
+Patch
@@ -22497,7 +22294,7 @@ Appears In SecretList -
kubectl
CommandReplace
+Replace
@@ -22589,7 +22386,7 @@ Appears In SecretList -
kubectl
CommandDelete
+Delete
@@ -22693,7 +22490,7 @@ Appears In SecretList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -22790,9 +22587,9 @@ Appears In SecretList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -22877,7 +22674,7 @@ Appears In SecretList -
kubectl
CommandList
+List
@@ -22974,7 +22771,7 @@ Appears In SecretList -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -23056,7 +22853,7 @@ Appears In SecretList -
kubectl
CommandWatch
+Watch
@@ -23157,7 +22954,7 @@ Appears In SecretList -
kubectl
CommandWatch List
+Watch List
@@ -23254,7 +23051,7 @@ Appears In SecretList -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -23361,7 +23158,12 @@ Appears In SecretList
kubectl
CommandPersistentVolumeClaim is a user's request for and claim to a persistent volume
+Appears In: + +@@ -23395,7 +23197,11 @@ Appears In PersistentVolumeClaimLis
PersistentVolumeClaimSpec v1 core
+Appears In: + +@@ -23429,7 +23235,11 @@ Appears In PersistentVolumeClaim
PersistentVolumeClaimStatus v1 core
+Appears In: + +@@ -23480,9 +23290,9 @@ Appears In PersistentVolumeClaim
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -23570,7 +23380,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandPatch
+Patch
@@ -23662,7 +23472,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandReplace
+Replace
@@ -23754,7 +23564,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandDelete
+Delete
@@ -23858,7 +23668,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandDelete Collection
+Delete Collection
@@ -23955,9 +23765,9 @@ Appears In PersistentVolumeClaim -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -24042,7 +23852,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandList
+List
@@ -24139,7 +23949,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -24221,7 +24031,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandWatch
+Watch
@@ -24322,7 +24132,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandWatch List
+Watch List
@@ -24419,7 +24229,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -24501,9 +24311,9 @@ Appears In PersistentVolumeClaim -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -24595,7 +24405,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandRead Status
+Read Status
@@ -24672,7 +24482,7 @@ Appears In PersistentVolumeClaim -
kubectl
CommandReplace Status
+Replace Status
@@ -24788,7 +24598,11 @@ Appears In PersistentVolumeClaim
kubectl
CommandStorageClass 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.
+Appears In: + +@@ -24847,9 +24661,9 @@ Appears In StorageClassList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -24922,7 +24736,7 @@ Appears In StorageClassList -
kubectl
CommandPatch
+Patch
@@ -25010,7 +24824,7 @@ Appears In StorageClassList -
kubectl
CommandReplace
+Replace
@@ -25098,7 +24912,7 @@ Appears In StorageClassList -
kubectl
CommandDelete
+Delete
@@ -25198,7 +25012,7 @@ Appears In StorageClassList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -25280,9 +25094,9 @@ Appears In StorageClassList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -25363,7 +25177,7 @@ Appears In StorageClassList -
kubectl
CommandList
+List
@@ -25445,7 +25259,7 @@ Appears In StorageClassList -
kubectl
CommandWatch
+Watch
@@ -25542,7 +25356,7 @@ Appears In StorageClassList -
kubectl
CommandWatch List
+Watch List
@@ -25644,7 +25458,12 @@ Appears In StorageClassList
kubectl
CommandVolume represents a named volume in a pod that may be accessed by any container in the pod.
+Appears In: + +@@ -25798,7 +25617,11 @@ Appears In PodPresetSpec
-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.
+Appears In: + +@@ -25857,9 +25680,9 @@ Appears In ControllerRevisionList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -25947,7 +25770,7 @@ Appears In ControllerRevisionList
kubectl
CommandPatch
+Patch
@@ -26039,7 +25862,7 @@ Appears In ControllerRevisionList -
kubectl
CommandReplace
+Replace
@@ -26131,7 +25954,7 @@ Appears In ControllerRevisionList -
kubectl
CommandDelete
+Delete
@@ -26235,7 +26058,7 @@ Appears In ControllerRevisionList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -26332,9 +26155,9 @@ Appears In ControllerRevisionList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -26419,7 +26242,7 @@ Appears In ControllerRevisionList -
kubectl
CommandList
+List
@@ -26516,7 +26339,7 @@ Appears In ControllerRevisionList -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -26598,7 +26421,7 @@ Appears In ControllerRevisionList -
kubectl
CommandWatch
+Watch
@@ -26699,7 +26522,7 @@ Appears In ControllerRevisionList -
kubectl
CommandWatch List
+Watch List
@@ -26796,7 +26619,7 @@ Appears In ControllerRevisionList -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -26898,7 +26721,11 @@ Appears In ControllerRevisionList
kubectl
CommandEvent is a report of an event somewhere in the cluster.
+Appears In: + +@@ -26981,9 +26808,9 @@ Appears In EventList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -27071,7 +26898,7 @@ Appears In EventList -
kubectl
CommandPatch
+Patch
@@ -27163,7 +26990,7 @@ Appears In EventList -
kubectl
CommandReplace
+Replace
@@ -27255,7 +27082,7 @@ Appears In EventList -
kubectl
CommandDelete
+Delete
@@ -27359,7 +27186,7 @@ Appears In EventList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -27456,9 +27283,9 @@ Appears In EventList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -27543,7 +27370,7 @@ Appears In EventList -
kubectl
CommandList
+List
@@ -27640,7 +27467,7 @@ Appears In EventList -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -27722,7 +27549,7 @@ Appears In EventList -
kubectl
CommandWatch
+Watch
@@ -27823,7 +27650,7 @@ Appears In EventList -
kubectl
CommandWatch List
+Watch List
@@ -27920,7 +27747,7 @@ Appears In EventList -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -28022,7 +27849,11 @@ Appears In EventList
kubectl
CommandLimitRange sets resource usage limits for each kind of resource in a Namespace.
+Appears In: + +@@ -28052,7 +27883,11 @@ Appears In LimitRangeList
LimitRangeSpec v1 core
+Appears In: + +@@ -28095,9 +27930,9 @@ Appears In LimitRange
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -28185,7 +28020,7 @@ Appears In LimitRange -
kubectl
CommandPatch
+Patch
@@ -28277,7 +28112,7 @@ Appears In LimitRange -
kubectl
CommandReplace
+Replace
@@ -28369,7 +28204,7 @@ Appears In LimitRange -
kubectl
CommandDelete
+Delete
@@ -28473,7 +28308,7 @@ Appears In LimitRange -
kubectl
CommandDelete Collection
+Delete Collection
@@ -28570,9 +28405,9 @@ Appears In LimitRange -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -28657,7 +28492,7 @@ Appears In LimitRange -
kubectl
CommandList
+List
@@ -28754,7 +28589,7 @@ Appears In LimitRange -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -28836,7 +28671,7 @@ Appears In LimitRange -
kubectl
CommandWatch
+Watch
@@ -28937,7 +28772,7 @@ Appears In LimitRange -
kubectl
CommandWatch List
+Watch List
@@ -29034,7 +28869,7 @@ Appears In LimitRange -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -29136,7 +28971,11 @@ Appears In LimitRange
kubectl
CommandExternalAdmissionHookConfiguration describes the configuration of initializers.
+Appears In: + +Patch
+Patch
@@ -30296,7 +30147,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandReplace
+Replace
@@ -30388,7 +30239,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandDelete
+Delete
@@ -30492,7 +30343,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandDelete Collection
+Delete Collection
@@ -30589,9 +30440,9 @@ Appears In HorizontalPodAutosc -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -30676,7 +30527,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandList
+List
@@ -30773,7 +30624,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -30855,7 +30706,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandWatch
+Watch
@@ -30956,7 +30807,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandWatch List
+Watch List
@@ -31053,7 +30904,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -31135,9 +30986,9 @@ Appears In HorizontalPodAutosc -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -31229,7 +31080,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandRead Status
+Read Status
@@ -31306,7 +31157,7 @@ Appears In HorizontalPodAutosc -
kubectl
CommandReplace Status
+Replace Status
@@ -31418,7 +31269,11 @@ Appears In HorizontalPodAutosc
kubectl
CommandInitializerConfiguration describes the configuration of initializers.
+Appears In: + +@@ -31473,9 +31328,9 @@ Appears In Write Operations +
-Write Operations
See supported operations below...
-Create
+Create
@@ -31548,7 +31403,7 @@ Appears In Patch +
kubectl
CommandPatch
@@ -31636,7 +31491,7 @@ Appears In Replace +
kubectl
CommandReplace
@@ -31724,7 +31579,7 @@ Appears In Delete +
kubectl
CommandDelete
@@ -31824,7 +31679,7 @@ Appears In Delete Collection +
kubectl
CommandDelete Collection
@@ -31906,9 +31761,9 @@ Appears In Read Operations +
kubectl
CommandRead Operations
See supported operations below...
-Read
+Read
@@ -31989,7 +31844,7 @@ Appears In List +
kubectl
CommandList
@@ -32071,7 +31926,7 @@ Appears In Watch +
kubectl
CommandWatch
@@ -32168,7 +32023,7 @@ Appears In Watch List +
kubectl
CommandWatch List
@@ -32270,7 +32125,11 @@ Appears In -Appears In PodTemplateList +Appears In: + +
kubectl
Command@@ -32300,7 +32159,18 @@ Appears In PodTemplateList
PodTemplateSpec v1 core
+Appears In: + ++
- DaemonSetSpec extensions/v1beta1
+- DeploymentSpec apps/v1beta1
+- DeploymentSpec extensions/v1beta1
+- JobSpec batch/v1
+- PodTemplate core/v1
+- ReplicaSetSpec extensions/v1beta1
+- ReplicationControllerSpec core/v1
+- StatefulSetSpec apps/v1beta1
+@@ -32347,9 +32217,9 @@ Appears In DaemonSetSpec
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -32437,7 +32307,7 @@ Appears In DaemonSetSpec
kubectl
CommandPatch
+Patch
@@ -32529,7 +32399,7 @@ Appears In DaemonSetSpec -
kubectl
CommandReplace
+Replace
@@ -32621,7 +32491,7 @@ Appears In DaemonSetSpec -
kubectl
CommandDelete
+Delete
@@ -32725,7 +32595,7 @@ Appears In DaemonSetSpec -
kubectl
CommandDelete Collection
+Delete Collection
@@ -32822,9 +32692,9 @@ Appears In DaemonSetSpec -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -32909,7 +32779,7 @@ Appears In DaemonSetSpec -
kubectl
CommandList
+List
@@ -33006,7 +32876,7 @@ Appears In DaemonSetSpec -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -33088,7 +32958,7 @@ Appears In DaemonSetSpec -
kubectl
CommandWatch
+Watch
@@ -33189,7 +33059,7 @@ Appears In DaemonSetSpec -
kubectl
CommandWatch List
+Watch List
@@ -33286,7 +33156,7 @@ Appears In DaemonSetSpec -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -33388,7 +33258,11 @@ Appears In DaemonSetSpec
kubectl
CommandPodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods
+Appears In: + +@@ -33422,7 +33296,11 @@ Appears In PodDisruptionBudget
PodDisruptionBudgetSpec v1beta1 policy
+Appears In: + +@@ -33448,7 +33326,11 @@ Appears In PodDisruptionBudget
PodDisruptionBudgetStatus v1beta1 policy
+Appears In: + +@@ -33511,9 +33393,9 @@ Appears In PodDisruptionBudget
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -33601,7 +33483,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandPatch
+Patch
@@ -33693,7 +33575,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandReplace
+Replace
@@ -33785,7 +33667,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandDelete
+Delete
@@ -33889,7 +33771,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandDelete Collection
+Delete Collection
@@ -33986,9 +33868,9 @@ Appears In PodDisruptionBudget -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -34073,7 +33955,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandList
+List
@@ -34170,7 +34052,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -34252,7 +34134,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandWatch
+Watch
@@ -34353,7 +34235,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandWatch List
+Watch List
@@ -34450,7 +34332,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -34532,9 +34414,9 @@ Appears In PodDisruptionBudget -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -34626,7 +34508,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandRead Status
+Read Status
@@ -34703,7 +34585,7 @@ Appears In PodDisruptionBudget -
kubectl
CommandReplace Status
+Replace Status
@@ -34815,7 +34697,11 @@ Appears In PodDisruptionBudget
kubectl
CommandA 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.
+Appears In: + +@@ -34874,9 +34760,9 @@ Appears In ThirdPartyResour
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -34949,7 +34835,7 @@ Appears In ThirdPartyResour -
kubectl
CommandPatch
+Patch
@@ -35037,7 +34923,7 @@ Appears In ThirdPartyResour -
kubectl
CommandReplace
+Replace
@@ -35125,7 +35011,7 @@ Appears In ThirdPartyResour -
kubectl
CommandDelete
+Delete
@@ -35225,7 +35111,7 @@ Appears In ThirdPartyResour -
kubectl
CommandDelete Collection
+Delete Collection
@@ -35307,9 +35193,9 @@ Appears In ThirdPartyResour -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -35390,7 +35276,7 @@ Appears In ThirdPartyResour -
kubectl
CommandList
+List
@@ -35472,7 +35358,7 @@ Appears In ThirdPartyResour -
kubectl
CommandWatch
+Watch
@@ -35569,7 +35455,7 @@ Appears In ThirdPartyResour -
kubectl
CommandWatch List
+Watch List
@@ -35677,7 +35563,11 @@ Appears In ThirdPartyResour
kubectl
CommandPodPreset is a policy resource that defines additional runtime requirements for a Pod.
+Appears In: + +@@ -35707,7 +35597,11 @@ Appears In PodPresetList
PodPresetSpec v1alpha1 settings
+Appears In: + +@@ -35766,9 +35660,9 @@ Appears In PodPreset
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -35856,7 +35750,7 @@ Appears In PodPreset -
kubectl
CommandPatch
+Patch
@@ -35948,7 +35842,7 @@ Appears In PodPreset -
kubectl
CommandReplace
+Replace
@@ -36040,7 +35934,7 @@ Appears In PodPreset -
kubectl
CommandDelete
+Delete
@@ -36144,7 +36038,7 @@ Appears In PodPreset -
kubectl
CommandDelete Collection
+Delete Collection
@@ -36241,9 +36135,9 @@ Appears In PodPreset -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -36328,7 +36222,7 @@ Appears In PodPreset -
kubectl
CommandList
+List
@@ -36425,7 +36319,7 @@ Appears In PodPreset -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -36507,7 +36401,7 @@ Appears In PodPreset -
kubectl
CommandWatch
+Watch
@@ -36608,7 +36502,7 @@ Appears In PodPreset -
kubectl
CommandWatch List
+Watch List
@@ -36705,7 +36599,7 @@ Appears In PodPreset -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -36807,7 +36701,11 @@ Appears In PodPreset
kubectl
CommandPod Security Policy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.
+Appears In: + +@@ -36837,7 +36735,11 @@ Appears In PodSecurityPolicy
PodSecurityPolicySpec v1beta1 extensions
+Appears In: + +@@ -36932,9 +36834,9 @@ Appears In PodSecurityPolicy
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -37007,7 +36909,7 @@ Appears In PodSecurityPolicy -
kubectl
CommandPatch
+Patch
@@ -37095,7 +36997,7 @@ Appears In PodSecurityPolicy -
kubectl
CommandReplace
+Replace
@@ -37183,7 +37085,7 @@ Appears In PodSecurityPolicy -
kubectl
CommandDelete
+Delete
@@ -37283,7 +37185,7 @@ Appears In PodSecurityPolicy -
kubectl
CommandDelete Collection
+Delete Collection
@@ -37365,9 +37267,9 @@ Appears In PodSecurityPolicy -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -37448,7 +37350,7 @@ Appears In PodSecurityPolicy -
kubectl
CommandList
+List
@@ -37530,7 +37432,7 @@ Appears In PodSecurityPolicy -
kubectl
CommandWatch
+Watch
@@ -37627,7 +37529,7 @@ Appears In PodSecurityPolicy -
kubectl
CommandWatch List
+Watch List
@@ -37732,7 +37634,11 @@ Appears In PodSecurityPolicy
kubectl
CommandAPIService represents a server for a particular GroupVersion. Name must be "version.group".
+Appears In: + +@@ -37766,7 +37672,11 @@ Appears In APIServiceList
APIServiceSpec v1beta1 apiregistration
+Appears In: + +@@ -37808,7 +37718,11 @@ Appears In APIService
APIServiceStatus v1beta1 apiregistration
+Appears In: + +@@ -37851,9 +37765,9 @@ Appears In APIService
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -37926,7 +37840,7 @@ Appears In APIService -
kubectl
CommandPatch
+Patch
@@ -38014,7 +37928,7 @@ Appears In APIService -
kubectl
CommandReplace
+Replace
@@ -38102,7 +38016,7 @@ Appears In APIService -
kubectl
CommandDelete
+Delete
@@ -38202,7 +38116,7 @@ Appears In APIService -
kubectl
CommandDelete Collection
+Delete Collection
@@ -38284,9 +38198,9 @@ Appears In APIService -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -38367,7 +38281,7 @@ Appears In APIService -
kubectl
CommandList
+List
@@ -38449,7 +38363,7 @@ Appears In APIService -
kubectl
CommandWatch
+Watch
@@ -38546,7 +38460,7 @@ Appears In APIService -
kubectl
CommandWatch List
+Watch List
@@ -38628,9 +38542,9 @@ Appears In APIService -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Replace Status
+Replace Status
@@ -38763,9 +38677,9 @@ Appears In APIService -
kubectl
CommandWrite Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -38873,7 +38787,11 @@ Appears In APIService
kubectl
CommandDescribes a certificate signing request
+Appears In: + +@@ -38907,7 +38825,11 @@ Appears In Certifi
CertificateSigningRequestSpec v1beta1 certificates
+Appears In: + +@@ -38945,7 +38867,11 @@ Appears In Certificate
CertificateSigningRequestStatus v1beta1 certificates
+Appears In: + +@@ -38992,9 +38918,9 @@ Appears In Certificate
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -39067,7 +38993,7 @@ Appears In Certificate -
kubectl
CommandPatch
+Patch
@@ -39155,7 +39081,7 @@ Appears In Certificate -
kubectl
CommandReplace
+Replace
@@ -39243,7 +39169,7 @@ Appears In Certificate -
kubectl
CommandDelete
+Delete
@@ -39343,7 +39269,7 @@ Appears In Certificate -
kubectl
CommandDelete Collection
+Delete Collection
@@ -39425,9 +39351,9 @@ Appears In Certificate -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -39508,7 +39434,7 @@ Appears In Certificate -
kubectl
CommandList
+List
@@ -39590,7 +39516,7 @@ Appears In Certificate -
kubectl
CommandWatch
+Watch
@@ -39687,7 +39613,7 @@ Appears In Certificate -
kubectl
CommandWatch List
+Watch List
@@ -39769,9 +39695,9 @@ Appears In Certificate -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Replace Status
+Replace Status
@@ -39882,7 +39808,11 @@ Appears In Certificate
kubectl
CommandClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
+Appears In: + +@@ -39937,9 +39867,9 @@ Appears In ClusterRoleList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -40012,7 +39942,7 @@ Appears In ClusterRoleList -
kubectl
CommandPatch
+Patch
@@ -40100,7 +40030,7 @@ Appears In ClusterRoleList -
kubectl
CommandReplace
+Replace
@@ -40188,7 +40118,7 @@ Appears In ClusterRoleList -
kubectl
CommandDelete
+Delete
@@ -40288,7 +40218,7 @@ Appears In ClusterRoleList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -40370,9 +40300,9 @@ Appears In ClusterRoleList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -40445,7 +40375,7 @@ Appears In ClusterRoleList -
kubectl
CommandList
+List
@@ -40527,7 +40457,7 @@ Appears In ClusterRoleList -
kubectl
CommandWatch
+Watch
@@ -40624,7 +40554,7 @@ Appears In ClusterRoleList -
kubectl
CommandWatch List
+Watch List
@@ -40729,7 +40659,11 @@ Appears In ClusterRoleList
kubectl
CommandClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.
+Appears In: + +@@ -40788,9 +40722,9 @@ Appears In ClusterRoleBindingList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -40863,7 +40797,7 @@ Appears In ClusterRoleBindingList -
kubectl
CommandPatch
+Patch
@@ -40951,7 +40885,7 @@ Appears In ClusterRoleBindingList -
kubectl
CommandReplace
+Replace
@@ -41039,7 +40973,7 @@ Appears In ClusterRoleBindingList -
kubectl
CommandDelete
+Delete
@@ -41139,7 +41073,7 @@ Appears In ClusterRoleBindingList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -41221,9 +41155,9 @@ Appears In ClusterRoleBindingList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -41296,7 +41230,7 @@ Appears In ClusterRoleBindingList -
kubectl
CommandList
+List
@@ -41378,7 +41312,7 @@ Appears In ClusterRoleBindingList -
kubectl
CommandWatch
+Watch
@@ -41475,7 +41409,7 @@ Appears In ClusterRoleBindingList -
kubectl
CommandWatch List
+Watch List
@@ -41577,7 +41511,11 @@ Appears In ClusterRoleBindingList
kubectl
CommandComponentStatus (and ComponentStatusList) holds the cluster validation info.
+Appears In: + +@@ -41632,9 +41570,9 @@ Appears In ComponentStatusList
-Read Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -41707,7 +41645,7 @@ Appears In ComponentStatusList -
kubectl
CommandList
+List
@@ -41841,9 +41779,9 @@ Appears In ComponentStatusList -
kubectl
CommandWrite Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -41951,7 +41889,11 @@ Appears In ComponentStatusList
kubectl
CommandNamespace provides a scope for Names. Use of multiple namespaces is optional.
+Appears In: + +@@ -41985,7 +41927,11 @@ Appears In NamespaceList
NamespaceSpec v1 core
+Appears In: + +@@ -42003,7 +41949,11 @@ Appears In Namespace
NamespaceStatus v1 core
+Appears In: + +@@ -42046,9 +41996,9 @@ Appears In Namespace
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -42121,7 +42071,7 @@ Appears In Namespace -
kubectl
CommandPatch
+Patch
@@ -42209,7 +42159,7 @@ Appears In Namespace -
kubectl
CommandReplace
+Replace
@@ -42297,7 +42247,7 @@ Appears In Namespace -
kubectl
CommandDelete
+Delete
@@ -42397,9 +42347,9 @@ Appears In Namespace -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -42480,7 +42430,7 @@ Appears In Namespace -
kubectl
CommandList
+List
@@ -42562,7 +42512,7 @@ Appears In Namespace -
kubectl
CommandWatch
+Watch
@@ -42659,7 +42609,7 @@ Appears In Namespace -
kubectl
CommandWatch List
+Watch List
@@ -42741,9 +42691,9 @@ Appears In Namespace -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -42831,7 +42781,7 @@ Appears In Namespace -
kubectl
CommandRead Status
+Read Status
@@ -42904,7 +42854,7 @@ Appears In Namespace -
kubectl
CommandReplace Status
+Replace Status
@@ -43012,7 +42962,11 @@ Appears In Namespace
kubectl
CommandNode is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).
+Appears In: + +@@ -43046,7 +43000,11 @@ Appears In NodeList
NodeSpec v1 core
+Appears In: + ++
- Node core/v1
+@@ -43080,7 +43038,11 @@ Appears In Node
NodeStatus v1 core
+Appears In: + ++
- Node core/v1
+@@ -43159,9 +43121,9 @@ Appears In Node
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -43234,7 +43196,7 @@ Appears In Node -
kubectl
CommandPatch
+Patch
@@ -43322,7 +43284,7 @@ Appears In Node -
kubectl
CommandReplace
+Replace
@@ -43410,7 +43372,7 @@ Appears In Node -
kubectl
CommandDelete
+Delete
@@ -43510,7 +43472,7 @@ Appears In Node -
kubectl
CommandDelete Collection
+Delete Collection
@@ -43592,9 +43554,9 @@ Appears In Node -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -43675,7 +43637,7 @@ Appears In Node -
kubectl
CommandList
+List
@@ -43757,7 +43719,7 @@ Appears In Node -
kubectl
CommandWatch
+Watch
@@ -43854,7 +43816,7 @@ Appears In Node -
kubectl
CommandWatch List
+Watch List
@@ -43936,9 +43898,9 @@ Appears In Node -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -44026,7 +43988,7 @@ Appears In Node -
kubectl
CommandRead Status
+Read Status
@@ -44099,7 +44061,7 @@ Appears In Node -
kubectl
CommandReplace Status
+Replace Status
@@ -44187,9 +44149,9 @@ Appears In Node -
kubectl
CommandProxy Operations
+Proxy Operations
See supported operations below...
-Create Connect Proxy
+Create Connect Proxy
@@ -44262,7 +44224,7 @@ Appears In Node -
kubectl
CommandCreate Connect Proxy Path
+Create Connect Proxy Path
@@ -44339,7 +44301,7 @@ Appears In Node -
kubectl
CommandCreate Proxy
+Create Proxy
@@ -44397,7 +44359,7 @@ Appears In Node -
kubectl
CommandCreate Proxy Path
+Create Proxy Path
@@ -44459,7 +44421,7 @@ Appears In Node -
kubectl
CommandDelete Connect Proxy
+Delete Connect Proxy
@@ -44532,7 +44494,7 @@ Appears In Node -
kubectl
CommandDelete Connect Proxy Path
+Delete Connect Proxy Path
@@ -44609,7 +44571,7 @@ Appears In Node -
kubectl
CommandDelete Proxy
+Delete Proxy
@@ -44667,7 +44629,7 @@ Appears In Node -
kubectl
CommandDelete Proxy Path
+Delete Proxy Path
@@ -44729,7 +44691,7 @@ Appears In Node -
kubectl
CommandGet Connect Proxy
+Get Connect Proxy
@@ -44802,7 +44764,7 @@ Appears In Node -
kubectl
CommandGet Connect Proxy Path
+Get Connect Proxy Path
@@ -44879,7 +44841,7 @@ Appears In Node -
kubectl
CommandGet Proxy
+Get Proxy
@@ -44937,7 +44899,7 @@ Appears In Node -
kubectl
CommandGet Proxy Path
+Get Proxy Path
@@ -44999,7 +44961,7 @@ Appears In Node -
kubectl
CommandHead Connect Proxy
+Head Connect Proxy
@@ -45072,7 +45034,7 @@ Appears In Node -
kubectl
CommandHead Connect Proxy Path
+Head Connect Proxy Path
@@ -45149,7 +45111,7 @@ Appears In Node -
kubectl
CommandReplace Connect Proxy
+Replace Connect Proxy
@@ -45222,7 +45184,7 @@ Appears In Node -
kubectl
CommandReplace Connect Proxy Path
+Replace Connect Proxy Path
@@ -45299,7 +45261,7 @@ Appears In Node -
kubectl
CommandReplace Proxy
+Replace Proxy
@@ -45357,7 +45319,7 @@ Appears In Node -
kubectl
CommandReplace Proxy Path
+Replace Proxy Path
@@ -45444,7 +45406,11 @@ Appears In Node
kubectl
CommandPersistentVolume (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
+Appears In: + +@@ -45478,7 +45444,11 @@ Appears In PersistentVolumeList
-PersistentVolumeSpec v1 core
+Appears In: + +@@ -45596,7 +45566,11 @@ Appears In PersistentVolume
PersistentVolumeStatus v1 core
+Appears In: + +@@ -45647,9 +45621,9 @@ Appears In PersistentVolume
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -45722,7 +45696,7 @@ Appears In PersistentVolume
kubectl
CommandPatch
+Patch
@@ -45810,7 +45784,7 @@ Appears In PersistentVolume -
kubectl
CommandReplace
+Replace
@@ -45898,7 +45872,7 @@ Appears In PersistentVolume -
kubectl
CommandDelete
+Delete
@@ -45998,7 +45972,7 @@ Appears In PersistentVolume -
kubectl
CommandDelete Collection
+Delete Collection
@@ -46080,9 +46054,9 @@ Appears In PersistentVolume -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -46163,7 +46137,7 @@ Appears In PersistentVolume -
kubectl
CommandList
+List
@@ -46245,7 +46219,7 @@ Appears In PersistentVolume -
kubectl
CommandWatch
+Watch
@@ -46342,7 +46316,7 @@ Appears In PersistentVolume -
kubectl
CommandWatch List
+Watch List
@@ -46424,9 +46398,9 @@ Appears In PersistentVolume -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -46514,7 +46488,7 @@ Appears In PersistentVolume -
kubectl
CommandRead Status
+Read Status
@@ -46587,7 +46561,7 @@ Appears In PersistentVolume -
kubectl
CommandReplace Status
+Replace Status
@@ -46695,7 +46669,11 @@ Appears In PersistentVolume
kubectl
CommandResourceQuota sets aggregate quota restrictions enforced per namespace
+Appears In: + +@@ -46729,7 +46707,11 @@ Appears In ResourceQuotaList
ResourceQuotaSpec v1 core
+Appears In: + +@@ -46751,7 +46733,11 @@ Appears In ResourceQuota
ResourceQuotaStatus v1 core
+Appears In: + +@@ -46798,9 +46784,9 @@ Appears In ResourceQuota
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -46888,7 +46874,7 @@ Appears In ResourceQuota -
kubectl
CommandPatch
+Patch
@@ -46980,7 +46966,7 @@ Appears In ResourceQuota -
kubectl
CommandReplace
+Replace
@@ -47072,7 +47058,7 @@ Appears In ResourceQuota -
kubectl
CommandDelete
+Delete
@@ -47176,7 +47162,7 @@ Appears In ResourceQuota -
kubectl
CommandDelete Collection
+Delete Collection
@@ -47273,9 +47259,9 @@ Appears In ResourceQuota -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -47360,7 +47346,7 @@ Appears In ResourceQuota -
kubectl
CommandList
+List
@@ -47457,7 +47443,7 @@ Appears In ResourceQuota -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -47539,7 +47525,7 @@ Appears In ResourceQuota -
kubectl
CommandWatch
+Watch
@@ -47640,7 +47626,7 @@ Appears In ResourceQuota -
kubectl
CommandWatch List
+Watch List
@@ -47737,7 +47723,7 @@ Appears In ResourceQuota -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -47819,9 +47805,9 @@ Appears In ResourceQuota -
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -47913,7 +47899,7 @@ Appears In ResourceQuota -
kubectl
CommandRead Status
+Read Status
@@ -47990,7 +47976,7 @@ Appears In ResourceQuota -
kubectl
CommandReplace Status
+Replace Status
@@ -48105,7 +48091,11 @@ Appears In ResourceQuota
kubectl
CommandRole is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
+Appears In: + +@@ -48160,9 +48150,9 @@ Appears In RoleList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -48250,7 +48240,7 @@ Appears In RoleList -
kubectl
CommandPatch
+Patch
@@ -48342,7 +48332,7 @@ Appears In RoleList -
kubectl
CommandReplace
+Replace
@@ -48434,7 +48424,7 @@ Appears In RoleList -
kubectl
CommandDelete
+Delete
@@ -48538,7 +48528,7 @@ Appears In RoleList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -48635,9 +48625,9 @@ Appears In RoleList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -48714,7 +48704,7 @@ Appears In RoleList -
kubectl
CommandList
+List
@@ -48811,7 +48801,7 @@ Appears In RoleList -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -48893,7 +48883,7 @@ Appears In RoleList -
kubectl
CommandWatch
+Watch
@@ -48994,7 +48984,7 @@ Appears In RoleList -
kubectl
CommandWatch List
+Watch List
@@ -49091,7 +49081,7 @@ Appears In RoleList -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -49196,7 +49186,11 @@ Appears In RoleList
kubectl
CommandRoleBinding 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.
+Appears In: + +@@ -49255,9 +49249,9 @@ Appears In RoleBindingList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -49345,7 +49339,7 @@ Appears In RoleBindingList -
kubectl
CommandPatch
+Patch
@@ -49437,7 +49431,7 @@ Appears In RoleBindingList -
kubectl
CommandReplace
+Replace
@@ -49529,7 +49523,7 @@ Appears In RoleBindingList -
kubectl
CommandDelete
+Delete
@@ -49633,7 +49627,7 @@ Appears In RoleBindingList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -49730,9 +49724,9 @@ Appears In RoleBindingList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -49809,7 +49803,7 @@ Appears In RoleBindingList -
kubectl
CommandList
+List
@@ -49906,7 +49900,7 @@ Appears In RoleBindingList -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -49988,7 +49982,7 @@ Appears In RoleBindingList -
kubectl
CommandWatch
+Watch
@@ -50089,7 +50083,7 @@ Appears In RoleBindingList -
kubectl
CommandWatch List
+Watch List
@@ -50186,7 +50180,7 @@ Appears In RoleBindingList -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -50322,7 +50316,11 @@ Appears In RoleBindingList
kubectl
CommandSelfSubjectAccessReviewSpec v1 authorization
+Appears In: + +@@ -50342,9 +50340,9 @@ Appears In SelfSubjectAccess
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -50437,7 +50435,11 @@ Appears In SelfSubjectAccess
kubectl
CommandServiceAccount 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
+Appears In: + +@@ -50500,9 +50502,9 @@ Appears In ServiceAccountList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -50590,7 +50592,7 @@ Appears In ServiceAccountList -
kubectl
CommandPatch
+Patch
@@ -50682,7 +50684,7 @@ Appears In ServiceAccountList -
kubectl
CommandReplace
+Replace
@@ -50774,7 +50776,7 @@ Appears In ServiceAccountList -
kubectl
CommandDelete
+Delete
@@ -50878,7 +50880,7 @@ Appears In ServiceAccountList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -50975,9 +50977,9 @@ Appears In ServiceAccountList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -51062,7 +51064,7 @@ Appears In ServiceAccountList -
kubectl
CommandList
+List
@@ -51159,7 +51161,7 @@ Appears In ServiceAccountList -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -51241,7 +51243,7 @@ Appears In ServiceAccountList -
kubectl
CommandWatch
+Watch
@@ -51342,7 +51344,7 @@ Appears In ServiceAccountList -
kubectl
CommandWatch List
+Watch List
@@ -51439,7 +51441,7 @@ Appears In ServiceAccountList -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -51575,7 +51577,12 @@ Appears In ServiceAccountList
kubectl
CommandSubjectAccessReviewSpec v1 authorization
+Appears In: + +@@ -51609,7 +51616,13 @@ Appears In LocalSubjectAcce
SubjectAccessReviewStatus v1 authorization
+Appears In: + ++
- LocalSubjectAccessReview authorization/v1
+- SelfSubjectAccessReview authorization/v1
+- SubjectAccessReview authorization/v1
+@@ -51633,9 +51646,9 @@ Appears In LocalSubjectAcce
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -51762,7 +51775,11 @@ Appears In LocalSubjectAcce
kubectl
CommandTokenReviewSpec v1 authentication
+Appears In: + +@@ -51780,7 +51797,11 @@ Appears In TokenReview
TokenReviewStatus v1 authentication
+Appears In: + +@@ -51804,9 +51825,9 @@ Appears In TokenReview
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -51902,7 +51923,11 @@ Appears In TokenReview
kubectl
CommandNetworkPolicy describes what network traffic is allowed for a set of Pods
+Appears In: + +@@ -51932,7 +51957,11 @@ Appears In NetworkPolicyList
-NetworkPolicySpec v1 networking
+Appears In: + +@@ -51979,9 +52008,9 @@ Appears In NetworkPolicy
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -52069,7 +52098,7 @@ Appears In NetworkPolicy
kubectl
CommandPatch
+Patch
@@ -52161,7 +52190,7 @@ Appears In NetworkPolicy -
kubectl
CommandReplace
+Replace
@@ -52253,7 +52282,7 @@ Appears In NetworkPolicy -
kubectl
CommandDelete
+Delete
@@ -52357,7 +52386,7 @@ Appears In NetworkPolicy -
kubectl
CommandDelete Collection
+Delete Collection
@@ -52454,9 +52483,9 @@ Appears In NetworkPolicy -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -52541,7 +52570,7 @@ Appears In NetworkPolicy -
kubectl
CommandList
+List
@@ -52638,7 +52667,7 @@ Appears In NetworkPolicy -
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -52720,7 +52749,7 @@ Appears In NetworkPolicy -
kubectl
CommandWatch
+Watch
@@ -52821,7 +52850,7 @@ Appears In NetworkPolicy -
kubectl
CommandWatch List
+Watch List
@@ -52918,7 +52947,7 @@ Appears In NetworkPolicy -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -53021,7 +53050,11 @@ Appears In NetworkPolicy
kubectl
CommandAPIGroup contains the name, the supported versions, and the preferred version of a group.
+Appears In: + +@@ -53076,7 +53109,11 @@ Appears In APIGroupList
APIResource specifies the name of a resource and whether it is namespaced.
+Appears In: + +@@ -53134,7 +53171,11 @@ Appears In APIResourceList
+Appears In: + +@@ -53185,7 +53226,11 @@ Appears In APIServiceStatus
An APIVersion represents a single concrete version of an object model.
+Appears In: + +@@ -53265,7 +53310,12 @@ Appears In ThirdPartyResource<
-Represents a Persistent Disk resource in AWS.
An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.
+Appears In: + +@@ -53312,7 +53362,11 @@ Appears In PersistentVolumeSpec
-AdmissionHookClientConfig contains the information to make a TLS connection with the webhook
+Appears In: + +@@ -53351,7 +53405,11 @@ Appears In Exte
Affinity is a group of affinity scheduling rules.
+Appears In: + +@@ -53394,7 +53452,11 @@ Appears In PodSpec
AttachedVolume describes a volume attached to a node
+Appears In: + +@@ -53433,7 +53495,12 @@ Appears In NodeStatus
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
+Appears In: + +@@ -53488,7 +53555,12 @@ Appears In PersistentVolumeSpec
-AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
+Appears In: + +@@ -53531,7 +53603,11 @@ Appears In PersistentVolumeSpec
-Adds and removes POSIX capabilities from running containers.
+Appears In: + +@@ -53570,7 +53646,12 @@ Appears In SecurityContext
Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
+Appears In: + +@@ -53624,7 +53705,11 @@ Appears In PersistentVolumeSpec
+Appears In: + +@@ -53671,7 +53756,12 @@ Appears In Cert
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.
+Appears In: + +@@ -53714,7 +53804,11 @@ Appears In PersistentVolumeSpec
-Information about the condition of a component.
+Appears In: + +@@ -53762,7 +53856,11 @@ Appears In ComponentStatus
-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.
+Appears In: + +@@ -53801,7 +53899,11 @@ Appears In EnvFromSource
Selects a key from a ConfigMap.
+Appears In: + +@@ -53845,7 +53947,11 @@ Appears In EnvVarSource
-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.
+Appears In: + +@@ -53889,7 +53995,11 @@ Appears In VolumeProjection
-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.
+Appears In: + +@@ -53936,7 +54046,11 @@ Appears In Volume
Describe a container image
+Appears In: + +@@ -53975,7 +54089,11 @@ Appears In NodeStatus
ContainerPort represents a network port in a single container.
+Appears In: + +@@ -54026,7 +54144,11 @@ Appears In Container
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.
+Appears In: + +@@ -54069,7 +54191,11 @@ Appears In ContainerStatus
ContainerStateRunning is a running state of a container.
+Appears In: + +@@ -54104,7 +54230,11 @@ Appears In ContainerState
ContainerStateTerminated is a terminated state of a container.
+Appears In: + +@@ -54163,7 +54293,11 @@ Appears In ContainerState
ContainerStateWaiting is a waiting state of a container.
+Appears In: + +@@ -54204,7 +54338,11 @@ Appears In ContainerState
-CrossVersionObjectReference contains enough information to let you identify the referred resource.
+Appears In: + +@@ -54247,7 +54385,11 @@ Appears In HorizontalPodA
DaemonEndpoint contains information about a single Daemon endpoint.
+Appears In: + +@@ -54281,7 +54423,11 @@ Appears In NodeDaemonEndpoints
+Appears In: + +@@ -54320,7 +54466,11 @@ Appears In DaemonSetSpec
-DeleteOptions may be provided when deleting an API object.
+Appears In: + +@@ -54375,7 +54525,11 @@ Appears In Eviction
DeploymentCondition describes the state of a deployment at a certain point.
+Appears In: + +@@ -54430,7 +54584,11 @@ Appears In DeploymentStatus
-Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
+Appears In: + +@@ -54465,7 +54623,12 @@ Appears In VolumeProjection
DownwardAPIVolumeFile represents information to create the file containing the pod field
+Appears In: + +@@ -54512,7 +54675,11 @@ Appears In DownwardAPIProjection
DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.
+Appears In: + +@@ -54551,7 +54718,11 @@ Appears In Volume
Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.
+Appears In: + +@@ -54590,7 +54761,11 @@ Appears In Volume
EndpointAddress is a tuple that describes single IP address.
+Appears In: + +@@ -54637,7 +54812,11 @@ Appears In EndpointSubset
EndpointPort is a tuple that describes a single port.
+Appears In: + +@@ -54687,7 +54866,11 @@ The resulting set of endpoints can be viewed as: a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], b: [ 10.10.1.1:309, 10.10.2.2:309 ] +Appears In: + +
-@@ -54730,7 +54913,12 @@ Appears In Endpoints
EnvFromSource represents the source of a set of ConfigMaps
+Appears In: + +@@ -54773,7 +54961,12 @@ Appears In Container -Appears In Container PodPresetSpec +Appears In: + +
-@@ -54816,7 +55009,11 @@ Appears In Container -Appears In EnvVar +Appears In: + +
-@@ -54863,7 +55060,11 @@ Appears In EnvVar
EventSource contains information for an event.
+Appears In: + +@@ -54946,7 +55147,12 @@ Appears In Event
ExecAction describes a "run in container" action.
+Appears In: + +@@ -54982,7 +55188,11 @@ Appears In Handler Pro
ExternalAdmissionHook describes an external admission webhook and the resources and operations it applies to.
+Appears In: + +@@ -55029,7 +55239,12 @@ Appears In -Appears In PersistentVolumeSpec Volume +Appears In: + +
-@@ -55076,7 +55291,11 @@ Appears In PersistentVolumeSpec
-FSGroupStrategyOptions defines the strategy type and options used to create the strategy.
+Appears In: + +@@ -55115,7 +55334,12 @@ Appears In PodSecurityPolic
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.
+Appears In: + +@@ -55166,7 +55390,12 @@ Appears In PersistentVolumeSpec
-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.
+Appears In: + +@@ -55206,7 +55435,12 @@ Appears In PersistentVolumeSpec 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.
+Appears In: + +@@ -55253,7 +55487,11 @@ Appears In PersistentVolumeSpec
-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.
+Appears In: + +@@ -55296,7 +55534,12 @@ Appears In Volume
Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.
+Appears In: + +@@ -55339,7 +55582,11 @@ Appears In PersistentVolumeSpec
-GroupVersion contains the "group/version" and "version" string of a version. It is made a struct to keep extensibility.
+Appears In: + +@@ -55378,7 +55625,12 @@ Appears In APIGroup
HTTPGetAction describes an action based on HTTP Get requests.
+Appears In: + +@@ -55429,7 +55681,11 @@ Appears In Handler Pro
HTTPHeader describes a custom header to be used in HTTP probes
+Appears In: + +@@ -55468,7 +55724,11 @@ Appears In HTTPGetAction
HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.
+Appears In: + +@@ -55507,7 +55767,11 @@ Appears In HTTPIngressRuleVa
HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://
+Appears In: + +/ ? -> 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 '#'. @@ -55542,7 +55806,11 @@ Appears In IngressRule
Handler defines a specific action that should be taken
+Appears In: + +@@ -55585,7 +55853,11 @@ Appears In Lifecycle
HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.
+Appears In: + +@@ -55636,7 +55908,11 @@ Appears In Horizo
HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.
+Appears In: + +@@ -55675,7 +55951,12 @@ Appears In PodSpec
Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.
+Appears In: + +@@ -55710,7 +55991,11 @@ Appears In PersistentVolumeSpec
-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.
+Appears In: + +@@ -55749,7 +56034,13 @@ Appears In PodSecurityPolic
ID Range provides a min/max of an allowed range of IDs.
+Appears In: + ++
- FSGroupStrategyOptions extensions/v1beta1
+- RunAsUserStrategyOptions extensions/v1beta1
+- SupplementalGroupsStrategyOptions extensions/v1beta1
+@@ -55788,7 +56079,12 @@ Appears In FSGroupStrategy
Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.
+Appears In: + +@@ -55859,7 +56155,12 @@ Appears In PersistentVolumeSpec
-IngressBackend describes all endpoints for a given service and port.
+Appears In: + +@@ -55898,7 +56199,11 @@ Appears In HTTPIngressPath <
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.
+Appears In: + +@@ -55937,7 +56242,11 @@ Appears In IngressSpec
IngressTLS describes the transport layer security associated with an Ingress.
+Appears In: + +@@ -55978,7 +56287,11 @@ Appears In IngressSpec
-Initializer is information about an initializer that has not yet completed.
+Appears In: + +@@ -56013,7 +56326,11 @@ Appears In Initializers
Initializers tracks the progress of initialization.
+Appears In: + +@@ -56052,7 +56369,11 @@ Appears In ObjectMeta
JobCondition describes current state of a job.
+Appears In: + +@@ -56107,7 +56428,11 @@ Appears In JobStatus
JobTemplateSpec describes the data a Job should have when created from a template
+Appears In: + +@@ -56146,7 +56471,14 @@ Appears In CronJobSpec
Maps a string key to a path within a volume.
+Appears In: + ++
- ConfigMapProjection core/v1
+- ConfigMapVolumeSource core/v1
+- SecretProjection core/v1
+- SecretVolumeSource core/v1
+@@ -56189,7 +56521,24 @@ Appears In ConfigMapProjection
-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.
+Appears In: + ++
- DaemonSetSpec extensions/v1beta1
+- DeploymentSpec apps/v1beta1
+- DeploymentSpec extensions/v1beta1
+- JobSpec batch/v1
+- NetworkPolicyPeer networking/v1
+- NetworkPolicyPeer extensions/v1beta1
+- NetworkPolicySpec networking/v1
+- NetworkPolicySpec extensions/v1beta1
+- PersistentVolumeClaimSpec core/v1
+- PodAffinityTerm core/v1
+- PodDisruptionBudgetSpec policy/v1beta1
+- PodPresetSpec settings/v1alpha1
+- ReplicaSetSpec extensions/v1beta1
+- StatefulSetSpec apps/v1beta1
+@@ -56228,7 +56577,11 @@ Appears In DaemonSetSpec
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+Appears In: + +@@ -56271,7 +56624,11 @@ Appears In LabelSelector
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.
+Appears In: + +@@ -56310,7 +56667,11 @@ Appears In Container
LimitRangeItem defines a min/max usage limit for any resource that matches on kind.
+Appears In: + +@@ -56365,7 +56726,58 @@ Appears In LimitRangeSpec
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.
+Appears In: + ++
- APIServiceList apiregistration/v1beta1
+- CertificateSigningRequestList certificates/v1beta1
+- ClusterRoleBindingList rbac/v1beta1
+- ClusterRoleBindingList rbac/v1alpha1
+- ClusterRoleList rbac/v1beta1
+- ClusterRoleList rbac/v1alpha1
+- ComponentStatusList core/v1
+- ConfigMapList core/v1
+- ControllerRevisionList apps/v1beta1
+- CronJobList batch/v2alpha1
+- DaemonSetList extensions/v1beta1
+- DeploymentList apps/v1beta1
+- DeploymentList extensions/v1beta1
+- EndpointsList core/v1
+- EventList core/v1
+- ExternalAdmissionHookConfigurationList admissionregistration/v1alpha1
+- HorizontalPodAutoscalerList autoscaling/v1
+- HorizontalPodAutoscalerList autoscaling/v2alpha1
+- IngressList extensions/v1beta1
+- InitializerConfigurationList admissionregistration/v1alpha1
+- JobList batch/v1
+- LimitRangeList core/v1
+- NamespaceList core/v1
+- NetworkPolicyList networking/v1
+- NetworkPolicyList extensions/v1beta1
+- NodeList core/v1
+- PersistentVolumeClaimList core/v1
+- PersistentVolumeList core/v1
+- PodDisruptionBudgetList policy/v1beta1
+- PodList core/v1
+- PodPresetList settings/v1alpha1
+- PodSecurityPolicyList extensions/v1beta1
+- PodTemplateList core/v1
+- ReplicaSetList extensions/v1beta1
+- ReplicationControllerList core/v1
+- ResourceQuotaList core/v1
+- RoleBindingList rbac/v1beta1
+- RoleBindingList rbac/v1alpha1
+- RoleList rbac/v1beta1
+- RoleList rbac/v1alpha1
+- SecretList core/v1
+- ServiceAccountList core/v1
+- ServiceList core/v1
+- StatefulSetList apps/v1beta1
+- Status meta/v1
+- StorageClassList storage/v1
+- StorageClassList storage/v1beta1
+- ThirdPartyResourceList extensions/v1beta1
+@@ -56404,7 +56816,11 @@ Appears In APIServiceList
LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.
+Appears In: + +@@ -56443,7 +56859,12 @@ Appears In LoadBalancerStatus
-LoadBalancerStatus represents the status of a load-balancer.
+Appears In: + +@@ -56478,7 +56899,18 @@ Appears In IngressStatus
-LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.
+Appears In: + +@@ -56513,7 +56945,11 @@ Appears In CephFSVolumeSource
-Local represents directly-attached storage with node affinity
+Appears In: + +@@ -56548,7 +56984,11 @@ Appears In PersistentVolumeSpec
-MetricSpec specifies how to scale based on a single metric (only
+Appears In: + +type
and one other matching field should be set at once).@@ -56595,7 +57035,11 @@ Appears In Horizont
MetricStatus describes the last-read state of a single metric.
+Appears In: + +@@ -56642,7 +57086,12 @@ Appears In Horizo
Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.
+Appears In: + +@@ -56687,7 +57136,11 @@ Appears In PersistentVolumeSpec 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. +Appears In: + +
-@@ -56728,7 +57181,11 @@ Appears In NetworkPolicySpec NetworkPolicyPeer describes a peer to allow traffic from. Exactly one of its fields must be specified. +Appears In: + +
-@@ -56769,7 +57226,11 @@ Appears In NetworkPolicyIngre
-NetworkPolicyPort describes a port to allow traffic on
+Appears In: + +@@ -56808,7 +57269,11 @@ Appears In NetworkPolicyIngre
NodeAddress contains information for the node's address.
+Appears In: + +@@ -56847,7 +57312,11 @@ Appears In NodeStatus
Node affinity is a group of node affinity scheduling rules.
+Appears In: + +@@ -56886,7 +57355,11 @@ Appears In Affinity
NodeCondition contains condition information for a node.
+Appears In: + +@@ -56941,7 +57414,11 @@ Appears In NodeStatus
NodeDaemonEndpoints lists ports opened by daemons running on the Node.
+Appears In: + +@@ -56976,7 +57453,11 @@ Appears In NodeStatus
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.
+Appears In: + +@@ -57011,7 +57492,11 @@ Appears In NodeAffinity
A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+Appears In: + +@@ -57054,7 +57539,12 @@ Appears In NodeSelectorTerm
A null or empty node selector term matches no objects.
+Appears In: + +@@ -57089,7 +57579,11 @@ Appears In NodeSelector -Appears In NodeStatus +Appears In: + +
-@@ -57162,7 +57656,12 @@ Appears In NodeStatus
-NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface
+Appears In: + +@@ -57201,7 +57700,12 @@ Appears In SelfSubjectA
ObjectFieldSelector selects an APIVersioned field of an object.
+Appears In: + +@@ -57240,7 +57744,72 @@ Appears In DownwardAPIVolumeFile
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
+Appears In: + ++
- APIService apiregistration/v1beta1
+- Binding core/v1
+- CertificateSigningRequest certificates/v1beta1
+- ClusterRole rbac/v1beta1
+- ClusterRole rbac/v1alpha1
+- ClusterRoleBinding rbac/v1beta1
+- ClusterRoleBinding rbac/v1alpha1
+- ComponentStatus core/v1
+- ConfigMap core/v1
+- ControllerRevision apps/v1beta1
+- CronJob batch/v2alpha1
+- DaemonSet extensions/v1beta1
+- Deployment apps/v1beta1
+- Deployment extensions/v1beta1
+- Endpoints core/v1
+- Event core/v1
+- Eviction policy/v1beta1
+- ExternalAdmissionHookConfiguration admissionregistration/v1alpha1
+- HorizontalPodAutoscaler autoscaling/v1
+- HorizontalPodAutoscaler autoscaling/v2alpha1
+- Ingress extensions/v1beta1
+- InitializerConfiguration admissionregistration/v1alpha1
+- Job batch/v1
+- JobTemplateSpec batch/v2alpha1
+- LimitRange core/v1
+- LocalSubjectAccessReview authorization/v1
+- LocalSubjectAccessReview authorization/v1beta1
+- Namespace core/v1
+- NetworkPolicy networking/v1
+- NetworkPolicy extensions/v1beta1
+- Node core/v1
+- PersistentVolume core/v1
+- PersistentVolumeClaim core/v1
+- Pod core/v1
+- PodDisruptionBudget policy/v1beta1
+- PodPreset settings/v1alpha1
+- PodSecurityPolicy extensions/v1beta1
+- PodTemplate core/v1
+- PodTemplateSpec core/v1
+- ReplicaSet extensions/v1beta1
+- ReplicationController core/v1
+- ResourceQuota core/v1
+- Role rbac/v1beta1
+- Role rbac/v1alpha1
+- RoleBinding rbac/v1beta1
+- RoleBinding rbac/v1alpha1
+- Scale autoscaling/v1
+- Scale apps/v1beta1
+- Scale extensions/v1beta1
+- Secret core/v1
+- SelfSubjectAccessReview authorization/v1
+- SelfSubjectAccessReview authorization/v1beta1
+- Service core/v1
+- ServiceAccount core/v1
+- StatefulSet apps/v1beta1
+- StorageClass storage/v1
+- StorageClass storage/v1beta1
+- SubjectAccessReview authorization/v1
+- SubjectAccessReview authorization/v1beta1
+- ThirdPartyResource extensions/v1beta1
+- TokenReview authentication/v1
+- TokenReview authentication/v1beta1
+@@ -57335,7 +57904,11 @@ Appears In APIService
-ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).
+Appears In: + +@@ -57378,7 +57951,11 @@ Appears In MetricSpec
ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).
+Appears In: + +@@ -57421,7 +57998,17 @@ Appears In MetricStatus
-ObjectReference contains enough information to let you inspect or modify the referred object.
+Appears In: + ++
- Binding core/v1
+- CronJobStatus batch/v2alpha1
+- EndpointAddress core/v1
+- Event core/v1
+- PersistentVolumeSpec core/v1
+- ServiceAccount core/v1
+- StorageOSPersistentVolumeSource core/v1
+@@ -57480,7 +58067,11 @@ Appears In Binding -Appears In ObjectMeta +Appears In: + +
-@@ -57566,7 +58157,11 @@ Appears In ObjectMeta
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).
+Appears In: + +@@ -57605,7 +58200,12 @@ Appears In Volume
Represents a Photon Controller persistent disk resource.
+Appears In: + +@@ -57644,7 +58244,11 @@ Appears In PersistentVolumeSpec
-Pod affinity is a group of inter pod affinity scheduling rules.
+Appears In: + +@@ -57683,7 +58287,13 @@ Appears In Affinity
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
+Appears In: + +tches that of any node on which a pod of the set of pods is running @@ -57726,7 +58336,11 @@ Appears In PodAffinity -Appears In Affinity +Appears In: + +
-@@ -57765,7 +58379,11 @@ Appears In Affinity
PodCondition contains details for the current condition of this pod.
+Appears In: + +@@ -57820,7 +58438,11 @@ Appears In PodStatus
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.
+Appears In: + +@@ -57871,7 +58493,11 @@ Appears In PodSpec
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.
+Appears In: + +@@ -57910,7 +58536,11 @@ Appears In MetricSpec
PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).
+Appears In: + +@@ -57951,7 +58581,12 @@ Appears In MetricStatus 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. +Appears In: + +
-@@ -58002,7 +58637,12 @@ Appears In ClusterRole -Appears In PersistentVolumeSpec Volume +Appears In: + +
-@@ -58045,7 +58685,11 @@ Appears In PersistentVolumeSpec
-Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
+Appears In: + +@@ -58080,7 +58724,11 @@ Appears In DeleteOptions
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).
+Appears In: + +@@ -58119,7 +58767,11 @@ Appears In NodeAffinity
Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
+Appears In: + +@@ -58182,7 +58834,11 @@ Appears In Container
Represents a projected volume source
+Appears In: + +@@ -58220,7 +58876,18 @@ Appears In Volume
+Appears In: + ++
- EmptyDirVolumeSource core/v1
+- ObjectMetricSource autoscaling/v2alpha1
+- ObjectMetricStatus autoscaling/v2alpha1
+- PodsMetricSource autoscaling/v2alpha1
+- PodsMetricStatus autoscaling/v2alpha1
+- ResourceFieldSelector core/v1
+- ResourceMetricSource autoscaling/v2alpha1
+- ResourceMetricStatus autoscaling/v2alpha1
+@@ -58254,7 +58921,12 @@ Appears In EmptyDirVolumeSource
-Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.
+Appears In: + +@@ -58305,7 +58977,12 @@ Appears In PersistentVolumeSpec
-Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.
+Appears In: + +@@ -58368,7 +59045,11 @@ Appears In PersistentVolumeSpec
-ReplicaSetCondition describes the state of a replica set at a certain point.
+Appears In: + +@@ -58419,7 +59100,11 @@ Appears In ReplicaSetStatus
ReplicationControllerCondition describes the state of a replication controller at a certain point.
+Appears In: + +@@ -58472,7 +59157,12 @@ Appears In ReplicationController
-ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
+Appears In: + +@@ -58531,7 +59221,12 @@ Appears In SelfSubjectA
ResourceFieldSelector represents container resources (cpu, memory) and their output format
+Appears In: + +@@ -58574,7 +59269,11 @@ Appears In DownwardAPIVolumeFile
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.
+Appears In: + +@@ -58617,7 +59316,11 @@ Appears In MetricSpec
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.
+Appears In: + +@@ -58660,7 +59363,12 @@ Appears In MetricStatus
-ResourceRequirements describes the compute resource requirements.
+Appears In: + +@@ -58701,7 +59409,12 @@ Appears In Container -Appears In ClusterRoleBinding RoleBinding +Appears In: + +
-@@ -58743,7 +59456,12 @@ Appears In ClusterRoleBinding <
+Appears In: + +@@ -58778,7 +59496,11 @@ Appears In DeploymentRollback <
RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.
+Appears In: + +@@ -58813,7 +59535,11 @@ Appears In StatefulSetUpdateS
Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended to make sure that all the tuple expansions are valid.
+Appears In: + +@@ -58856,7 +59582,11 @@ Appears In Initializer
-RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.
+Appears In: + +@@ -58903,7 +59633,11 @@ Appears In Exte
Run A sUser Strategy Options defines the strategy type and any options used to create the strategy.
+Appears In: + +@@ -58942,7 +59676,13 @@ Appears In PodSecurityPolic
SELinuxOptions are the labels to be applied to the container
+Appears In: + +@@ -58989,7 +59729,11 @@ Appears In PodSecurityContext
-SELinux Strategy Options defines the strategy type and any options used to create the strategy.
+Appears In: + +@@ -59078,7 +59822,12 @@ Appears In PodSecurityPolic
ScaleIOVolumeSource represents a persistent ScaleIO volume
+Appears In: + +@@ -59150,7 +59899,11 @@ Appears In PersistentVolumeSpec 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.
+Appears In: + +@@ -59189,7 +59942,11 @@ Appears In EnvFromSource
SecretKeySelector selects a key of a Secret.
+Appears In: + +@@ -59233,7 +59990,11 @@ Appears In EnvVarSource
-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.
+Appears In: + +@@ -59277,7 +60038,11 @@ Appears In VolumeProjection
-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.
+Appears In: + +@@ -59324,7 +60089,11 @@ Appears In Volume
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.
+Appears In: + +@@ -59379,7 +60148,12 @@ Appears In Container
ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.
+Appears In: + +@@ -59418,7 +60192,11 @@ Appears In APIGroup -Appears In ServiceSpec +Appears In: + +
-@@ -59471,7 +60249,11 @@ Appears In ServiceSpec
-ServiceReference holds a reference to Service.legacy.k8s.io
+Appears In: + +@@ -59510,7 +60292,11 @@ Appears In APIServiceSpec
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.
+Appears In: + +@@ -59549,7 +60335,11 @@ Appears In StatefulSetSpec
Status is a return value for calls that don't return other objects.
+Appears In: + +@@ -59612,7 +60402,11 @@ Appears In Initializers
StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.
+Appears In: + +@@ -59655,7 +60449,11 @@ Appears In 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.
+Appears In: + +@@ -59710,7 +60508,11 @@ Appears In Status
Represents a StorageOS persistent volume resource.
+Appears In: + +@@ -59761,7 +60563,11 @@ Appears In PersistentVolumeSpec
-Represents a StorageOS persistent volume resource.
+Appears In: + +@@ -59814,7 +60620,12 @@ Appears In Volume
-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.
+Appears In: + +@@ -59861,7 +60672,11 @@ Appears In ClusterRoleBinding <
SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.
+Appears In: + +@@ -59900,7 +60715,12 @@ Appears In PodSecurityPolic
TCPSocketAction describes an action based on opening a socket
+Appears In: + +@@ -59939,7 +60759,11 @@ Appears In Handler Pro
The node this Taint is attached to has the effect "effect" on any pod that that does not tolerate the Taint.
+Appears In: + +@@ -59985,7 +60809,30 @@ Appears In NodeSpec
+Appears In: + ++
- APIServiceCondition apiregistration/v1beta1
+- CertificateSigningRequestCondition certificates/v1beta1
+- ContainerStateRunning core/v1
+- ContainerStateTerminated core/v1
+- CronJobStatus batch/v2alpha1
+- DeploymentCondition apps/v1beta1
+- DeploymentCondition extensions/v1beta1
+- Event core/v1
+- HorizontalPodAutoscalerCondition autoscaling/v2alpha1
+- HorizontalPodAutoscalerStatus autoscaling/v1
+- HorizontalPodAutoscalerStatus autoscaling/v2alpha1
+- JobCondition batch/v1
+- JobStatus batch/v1
+- NodeCondition core/v1
+- ObjectMeta meta/v1
+- PodCondition core/v1
+- PodStatus core/v1
+- ReplicaSetCondition extensions/v1beta1
+- ReplicationControllerCondition core/v1
+- Taint core/v1
+@@ -60019,7 +60866,11 @@ Appears In APIServiceCon
The pod this Toleration is attached to tolerates any taint that matches the triple
+Appears In: + +using the matching operator . @@ -60072,7 +60923,11 @@ Appears In PodSpec
-UserInfo holds the information about the user needed to implement the user.Info interface.
+Appears In: + +@@ -60119,7 +60974,12 @@ Appears In TokenReviewStatus
VolumeMount describes a mounting of a Volume within a container.
+Appears In: + +@@ -60166,7 +61026,11 @@ Appears In Container -Appears In ProjectedVolumeSource +Appears In: + +
-@@ -60209,7 +61073,12 @@ Appears In ProjectedVolumeSource <
Represents a vSphere volume resource.
+Appears In: + +@@ -60292,7 +61161,12 @@ Appears In PersistentVolumeSpec
-The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)
+Appears In: + +@@ -60337,7 +61211,11 @@ Appears In PodAffinity -Appears In ClusterRoleList +Appears In: + +
-@@ -60392,9 +61270,9 @@ Appears In ClusterRoleList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -60467,7 +61345,7 @@ Appears In ClusterRoleList
kubectl
CommandPatch
+Patch
@@ -60555,7 +61433,7 @@ Appears In ClusterRoleList
kubectl
CommandReplace
+Replace
@@ -60643,7 +61521,7 @@ Appears In ClusterRoleList
kubectl
CommandDelete
+Delete
@@ -60743,7 +61621,7 @@ Appears In ClusterRoleList
kubectl
CommandDelete Collection
+Delete Collection
@@ -60825,9 +61703,9 @@ Appears In ClusterRoleList
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -60900,7 +61778,7 @@ Appears In ClusterRoleList
kubectl
CommandList
+List
@@ -60982,7 +61860,7 @@ Appears In ClusterRoleList
kubectl
CommandWatch
+Watch
@@ -61079,7 +61957,7 @@ Appears In ClusterRoleList
kubectl
CommandWatch List
+Watch List
@@ -61184,7 +62062,11 @@ Appears In ClusterRoleList
kubectl
CommandClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.
+Appears In: + +@@ -61243,9 +62125,9 @@ Appears In ClusterRoleBindingLis
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -61318,7 +62200,7 @@ Appears In ClusterRoleBindingLis
kubectl
CommandPatch
+Patch
@@ -61406,7 +62288,7 @@ Appears In ClusterRoleBindingLis
kubectl
CommandReplace
+Replace
@@ -61494,7 +62376,7 @@ Appears In ClusterRoleBindingLis
kubectl
CommandDelete
+Delete
@@ -61594,7 +62476,7 @@ Appears In ClusterRoleBindingLis
kubectl
CommandDelete Collection
+Delete Collection
@@ -61676,9 +62558,9 @@ Appears In ClusterRoleBindingLis
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -61751,7 +62633,7 @@ Appears In ClusterRoleBindingLis
kubectl
CommandList
+List
@@ -61833,7 +62715,7 @@ Appears In ClusterRoleBindingLis
kubectl
CommandWatch
+Watch
@@ -61930,7 +62812,7 @@ Appears In ClusterRoleBindingLis
kubectl
CommandWatch List
+Watch List
@@ -62035,7 +62917,13 @@ Appears In ClusterRoleBindingLis
kubectl
CommandCrossVersionObjectReference contains enough information to let you identify the referred resource.
+Appears In: + +@@ -62079,7 +62967,11 @@ Appears In Horizonta
Deployment enables declarative updates for Pods and ReplicaSets.
+Appears In: + +@@ -62113,7 +63005,11 @@ Appears In DeploymentList
-DeploymentSpec v1beta1 extensions
+Appears In: + +@@ -62163,7 +63059,11 @@ Appears In Deployment
DeploymentStatus v1beta1 extensions
+Appears In: + +@@ -62236,7 +63136,11 @@ Appears In Deployment
DeploymentStrategy v1beta1 extensions
+Appears In: + +@@ -62289,7 +63193,11 @@ Appears In DeploymentSpec
-RollingUpdateDeployment v1beta1 extensions
+Appears In: + +@@ -62309,9 +63217,9 @@ Appears In DeploymentStrategy
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -62496,12 +63404,12 @@ spec:
kubectl
CommandPatch
+Patch
kubectl
Command-$ kubectl patch deployment deployment-example -p \ +$ kubectl patch deployment deployment-example -p \ '{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}'
@@ -62661,7 +63569,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Replace +Replace
@@ -62855,7 +63763,7 @@ spec:
kubectl
CommandDelete
+Delete
@@ -62969,7 +63877,7 @@ orphanDependents: false
kubectl
CommandDelete Collection
+Delete Collection
@@ -63066,9 +63974,9 @@ orphanDependents: false
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -63290,19 +64198,19 @@ $ curl -X GET http://
kubectl
CommandList
+List
kubectl
Command-$ kubectl get deployment -o json +$ kubectl get deployment -o json
-
curl
Command (requireskubectl proxy
to be running)-$ kubectl proxy -$ curl -X GET 'http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/deployments' +
+$ kubectl proxy +$ curl -X GET 'http://127.0.0.1:8001/apis/extensions/v1beta1/namespaces/default/deployments'
Output
@@ -63668,7 +64576,7 @@ $ kubectl get deployment -o jsonList All Namespaces
+List All Namespaces
@@ -63750,7 +64658,7 @@ $ kubectl get deployment -o json
kubectl
CommandWatch
+Watch
@@ -63760,9 +64668,9 @@ $ kubectl get deployment deployment-example
kubectl
Command-
curl
Command (requireskubectl proxy
to be running)-$ kubectl proxy -$ curl -X GET 'http://127.0.0.1:8001/apis/extensions/v1beta1/watch/namespaces/default/deployments/deployment-example' +
+$ kubectl proxy +$ curl -X GET 'http://127.0.0.1:8001/apis/extensions/v1beta1/watch/namespaces/default/deployments/deployment-example'
Output
@@ -63998,7 +64906,7 @@ $ kubectl get deployment deployment-exampleWatch List
+Watch List
@@ -64095,7 +65003,7 @@ $ kubectl get deployment deployment-example
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -64177,9 +65085,9 @@ $ kubectl get deployment deployment-example
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -64271,7 +65179,7 @@ $ kubectl get deployment deployment-example
kubectl
CommandRead Status
+Read Status
@@ -64348,7 +65256,7 @@ $ kubectl get deployment deployment-example
kubectl
CommandReplace Status
+Replace Status
@@ -64440,361 +65348,6 @@ $ kubectl get deployment deployment-example
kubectl
CommandMisc Operations
-See supported operations below...
-Read Scale
----
kubectl
Command--Coming Soon -
---
curl
Command (requireskubectl proxy
to be running)--Coming Soon -
--Output
---Coming Soon -
--Response Body
---Coming Soon -
read scale of the specified Scale
-HTTP Request
--
GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
Path Parameters
-- -
-- - - -Parameter -Description -- -name -name of the Scale -- - -namespace -object name and auth scope, such as for teams and projects -Query Parameters
-- -
-- - - -Parameter -Description -- - -pretty -If 'true', then the output is pretty printed. -Response
-- -
-- - - -Code -Description -- - -200 -
ScaleOK -Replace Scale
----
kubectl
Command--Coming Soon -
---
curl
Command (requireskubectl proxy
to be running)--Coming Soon -
--Output
---Coming Soon -
--Response Body
---Coming Soon -
replace scale of the specified Scale
-HTTP Request
--
PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
Path Parameters
-- -
-- - - -Parameter -Description -- -name -name of the Scale -- - -namespace -object name and auth scope, such as for teams and projects -Query Parameters
-- -
-- - - -Parameter -Description -- - -pretty -If 'true', then the output is pretty printed. -Body Parameters
-- -
-- - - -Parameter -Description -- - -body -
Scale- Response
-- -
-- - - -Code -Description -- - -200 -
ScaleOK -Patch Scale
----
kubectl
Command--Coming Soon -
---
curl
Command (requireskubectl proxy
to be running)--Coming Soon -
--Output
---Coming Soon -
--Response Body
---Coming Soon -
partially update scale of the specified Scale
-HTTP Request
--
PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
Path Parameters
-- -
-- - - -Parameter -Description -- -name -name of the Scale -- - -namespace -object name and auth scope, such as for teams and projects -Query Parameters
-- -
-- - - -Parameter -Description -- - -pretty -If 'true', then the output is pretty printed. -Body Parameters
-- -
-- - - -Parameter -Description -- - -body -
Patch- Response
-- -
-- - - -Code -Description -- - -200 -
ScaleOK -Rollback
----
kubectl
Command--Coming Soon -
---
curl
Command (requireskubectl proxy
to be running)--Coming Soon -
--Output
---Coming Soon -
--Response Body
---Coming Soon -
create rollback of a DeploymentRollback
-HTTP Request
--
POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback
Path Parameters
-- -
-- - - -Parameter -Description -- -name -name of the DeploymentRollback -- - -namespace -object name and auth scope, such as for teams and projects -Query Parameters
-- -
-- - - -Parameter -Description -- - -pretty -If 'true', then the output is pretty printed. -Body Parameters
-- -
-- - - -Parameter -Description -- - -body -
DeploymentRollback- Response
-- -
- - - -Code -Description -- - -200 -
DeploymentRollbackOK -
DeploymentCondition v1beta1 extensions
@@ -64815,7 +65368,11 @@ $ kubectl get deployment deployment-example
-DeploymentCondition describes the state of a deployment at a certain point.
+Appears In: + +@@ -64874,7 +65431,11 @@ Appears In DeploymentStatus <
-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.
+Appears In: + +@@ -64908,7 +65469,11 @@ Appears In Horizonta
HorizontalPodAutoscalerSpec v2alpha1 autoscaling
+Appears In: + +@@ -64938,7 +65503,11 @@ Appears In HorizontalPod
HorizontalPodAutoscalerStatus v2alpha1 autoscaling
+Appears In: + +@@ -65001,9 +65570,9 @@ Appears In HorizontalPod
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -65091,7 +65660,7 @@ Appears In HorizontalPod
kubectl
CommandPatch
+Patch
@@ -65183,7 +65752,7 @@ Appears In HorizontalPod
kubectl
CommandReplace
+Replace
@@ -65275,7 +65844,7 @@ Appears In HorizontalPod
kubectl
CommandDelete
+Delete
@@ -65379,7 +65948,7 @@ Appears In HorizontalPod
kubectl
CommandDelete Collection
+Delete Collection
@@ -65476,9 +66045,9 @@ Appears In HorizontalPod
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -65563,7 +66132,7 @@ Appears In HorizontalPod
kubectl
CommandList
+List
@@ -65660,7 +66229,7 @@ Appears In HorizontalPod
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -65742,7 +66311,7 @@ Appears In HorizontalPod
kubectl
CommandWatch
+Watch
@@ -65843,7 +66412,7 @@ Appears In HorizontalPod
kubectl
CommandWatch List
+Watch List
@@ -65940,7 +66509,7 @@ Appears In HorizontalPod
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -66022,9 +66591,9 @@ Appears In HorizontalPod
kubectl
CommandStatus Operations
+Status Operations
See supported operations below...
-Patch Status
+Patch Status
@@ -66116,7 +66685,7 @@ Appears In HorizontalPod
kubectl
CommandRead Status
+Read Status
@@ -66193,7 +66762,7 @@ Appears In HorizontalPod
kubectl
CommandReplace Status
+Replace Status
@@ -66308,7 +66877,11 @@ Appears In HorizontalPod
kubectl
CommandInitializer describes the name and the failure policy of an initializer, and what resources it applies to.
+Appears In: + +@@ -66384,9 +66957,9 @@ Appears In In
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -66497,7 +67070,11 @@ Appears In In
kubectl
CommandNetworkPolicy describes what network traffic is allowed for a set of Pods
+Appears In: + +@@ -66527,7 +67104,11 @@ Appears In NetworkPolicyList
NetworkPolicySpec v1beta1 extensions
+Appears In: + +@@ -66574,9 +67155,9 @@ Appears In NetworkPolicy
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -66664,7 +67245,7 @@ Appears In NetworkPolicy
kubectl
CommandPatch
+Patch
@@ -66756,7 +67337,7 @@ Appears In NetworkPolicy
kubectl
CommandReplace
+Replace
@@ -66848,7 +67429,7 @@ Appears In NetworkPolicy
kubectl
CommandDelete
+Delete
@@ -66952,7 +67533,7 @@ Appears In NetworkPolicy
kubectl
CommandDelete Collection
+Delete Collection
@@ -67049,9 +67630,9 @@ Appears In NetworkPolicy
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -67136,7 +67717,7 @@ Appears In NetworkPolicy
kubectl
CommandList
+List
@@ -67233,7 +67814,7 @@ Appears In NetworkPolicy
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -67315,7 +67896,7 @@ Appears In NetworkPolicy
kubectl
CommandWatch
+Watch
@@ -67416,7 +67997,7 @@ Appears In NetworkPolicy
kubectl
CommandWatch List
+Watch List
@@ -67513,7 +68094,7 @@ Appears In NetworkPolicy
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -67618,7 +68199,11 @@ Appears In NetworkPolicy This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from. +Appears In: + +
kubectl
Command@@ -67662,7 +68247,11 @@ Appears In NetworkPolicySpec +Appears In: + +
-@@ -67706,7 +68295,11 @@ Appears In NetworkPolicyI +Appears In: + +
-@@ -67749,7 +68342,12 @@ Appears In NetworkPolicyI
-NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface
+Appears In: + +@@ -67792,7 +68390,12 @@ Appears In SelfSubj
-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.
+Appears In: + +@@ -67847,7 +68450,12 @@ Appears In ClusterRole -Appears In SelfSubjectAccessReviewSpec SubjectAccessReviewSpec +Appears In: + +
-@@ -67910,7 +68518,11 @@ Appears In SelfSubj
-Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
+Appears In: + +@@ -67965,9 +68577,9 @@ Appears In RoleList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -68055,7 +68667,7 @@ Appears In RoleList
kubectl
CommandPatch
+Patch
@@ -68147,7 +68759,7 @@ Appears In RoleList
kubectl
CommandReplace
+Replace
@@ -68239,7 +68851,7 @@ Appears In RoleList
kubectl
CommandDelete
+Delete
@@ -68343,7 +68955,7 @@ Appears In RoleList
kubectl
CommandDelete Collection
+Delete Collection
@@ -68440,9 +69052,9 @@ Appears In RoleList
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -68519,7 +69131,7 @@ Appears In RoleList
kubectl
CommandList
+List
@@ -68616,7 +69228,7 @@ Appears In RoleList
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -68698,7 +69310,7 @@ Appears In RoleList
kubectl
CommandWatch
+Watch
@@ -68799,7 +69411,7 @@ Appears In RoleList
kubectl
CommandWatch List
+Watch List
@@ -68896,7 +69508,7 @@ Appears In RoleList
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -69001,7 +69613,11 @@ Appears In RoleList
kubectl
CommandRoleBinding 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.
+Appears In: + +@@ -69060,9 +69676,9 @@ Appears In RoleBindingList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -69150,7 +69766,7 @@ Appears In RoleBindingList
kubectl
CommandPatch
+Patch
@@ -69242,7 +69858,7 @@ Appears In RoleBindingList
kubectl
CommandReplace
+Replace
@@ -69334,7 +69950,7 @@ Appears In RoleBindingList
kubectl
CommandDelete
+Delete
@@ -69438,7 +70054,7 @@ Appears In RoleBindingList
kubectl
CommandDelete Collection
+Delete Collection
@@ -69535,9 +70151,9 @@ Appears In RoleBindingList
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -69614,7 +70230,7 @@ Appears In RoleBindingList
kubectl
CommandList
+List
@@ -69711,7 +70327,7 @@ Appears In RoleBindingList
kubectl
CommandList All Namespaces
+List All Namespaces
@@ -69793,7 +70409,7 @@ Appears In RoleBindingList
kubectl
CommandWatch
+Watch
@@ -69894,7 +70510,7 @@ Appears In RoleBindingList
kubectl
CommandWatch List
+Watch List
@@ -69991,7 +70607,7 @@ Appears In RoleBindingList -
kubectl
CommandWatch List All Namespaces
+Watch List All Namespaces
@@ -70096,7 +70712,12 @@ Appears In RoleBindingList
kubectl
CommandRoleRef contains information that points to the role being used
+Appears In: + +@@ -70139,7 +70760,12 @@ Appears In ClusterRoleBinding
+Appears In: + +@@ -70209,7 +70835,11 @@ Appears In DeploymentRollback
ScaleSpec v1beta1 apps
+Appears In: + +@@ -70227,7 +70857,11 @@ Appears In Scale
ScaleStatus v1beta1 apps
+Appears In: + +@@ -70251,269 +70885,6 @@ Appears In Scale
-Misc Operations
-See supported operations below...
-Read Scale
----
kubectl
Command--Coming Soon -
---
curl
Command (requireskubectl proxy
to be running)--Coming Soon -
--Output
---Coming Soon -
--Response Body
---Coming Soon -
read scale of the specified Scale
-HTTP Request
--
GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale
Path Parameters
-- -
-- - - -Parameter -Description -- -name -name of the Scale -- - -namespace -object name and auth scope, such as for teams and projects -Query Parameters
-- -
-- - - -Parameter -Description -- - -pretty -If 'true', then the output is pretty printed. -Response
-- -
-- - - -Code -Description -- - -200 -
ScaleOK -Replace Scale
----
kubectl
Command--Coming Soon -
---
curl
Command (requireskubectl proxy
to be running)--Coming Soon -
--Output
---Coming Soon -
--Response Body
---Coming Soon -
replace scale of the specified Scale
-HTTP Request
--
PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale
Path Parameters
-- -
-- - - -Parameter -Description -- -name -name of the Scale -- - -namespace -object name and auth scope, such as for teams and projects -Query Parameters
-- -
-- - - -Parameter -Description -- - -pretty -If 'true', then the output is pretty printed. -Body Parameters
-- -
-- - - -Parameter -Description -- - -body -
Scale- Response
-- -
-- - - -Code -Description -- - -200 -
ScaleOK -Patch Scale
----
kubectl
Command--Coming Soon -
---
curl
Command (requireskubectl proxy
to be running)--Coming Soon -
--Output
---Coming Soon -
--Response Body
---Coming Soon -
partially update scale of the specified Scale
-HTTP Request
--
PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale
Path Parameters
-- -
-- - - -Parameter -Description -- -name -name of the Scale -- - -namespace -object name and auth scope, such as for teams and projects -Query Parameters
-- -
-- - - -Parameter -Description -- - -pretty -If 'true', then the output is pretty printed. -Body Parameters
-- -
-- - - -Parameter -Description -- - -body -
Patch- Response
-- -
- - - -Code -Description -- - -200 -
ScaleOK -
Scale v1beta1 extensions
@@ -70568,7 +70939,11 @@ Appears In Scale
ScaleSpec v1beta1 extensions
+Appears In: + +@@ -70586,7 +70961,11 @@ Appears In Scale
ScaleStatus v1beta1 extensions
+Appears In: + +@@ -70664,7 +71043,11 @@ Appears In Scale
SelfSubjectAccessReviewSpec v1beta1 authorization
+Appears In: + +@@ -70684,9 +71067,9 @@ Appears In SelfSubjectA
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -70782,7 +71165,11 @@ Appears In SelfSubjectA
kubectl
CommandServiceReference holds a reference to Service.legacy.k8s.io
+Appears In: + +@@ -70826,7 +71213,11 @@ Appears In A
-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.
+Appears In: + +@@ -70885,9 +71276,9 @@ Appears In StorageClassList
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -70960,7 +71351,7 @@ Appears In StorageClassList
kubectl
CommandPatch
+Patch
@@ -71048,7 +71439,7 @@ Appears In StorageClassList -
kubectl
CommandReplace
+Replace
@@ -71136,7 +71527,7 @@ Appears In StorageClassList -
kubectl
CommandDelete
+Delete
@@ -71236,7 +71627,7 @@ Appears In StorageClassList -
kubectl
CommandDelete Collection
+Delete Collection
@@ -71318,9 +71709,9 @@ Appears In StorageClassList -
kubectl
CommandRead Operations
+Read Operations
See supported operations below...
-Read
+Read
@@ -71401,7 +71792,7 @@ Appears In StorageClassList -
kubectl
CommandList
+List
@@ -71483,7 +71874,7 @@ Appears In StorageClassList -
kubectl
CommandWatch
+Watch
@@ -71580,7 +71971,7 @@ Appears In StorageClassList -
kubectl
CommandWatch List
+Watch List
@@ -71685,7 +72076,12 @@ Appears In StorageClassList 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. +Appears In: + +
kubectl
Command@@ -71767,7 +72163,12 @@ Appears In ClusterRoleBinding
SubjectAccessReviewSpec v1beta1 authorization
+Appears In: + +@@ -71801,7 +72202,13 @@ Appears In LocalSubjec
SubjectAccessReviewStatus v1beta1 authorization
+Appears In: + ++
- LocalSubjectAccessReview authorization/v1beta1
+- SelfSubjectAccessReview authorization/v1beta1
+- SubjectAccessReview authorization/v1beta1
+@@ -71825,9 +72232,9 @@ Appears In LocalSubjec
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -71954,7 +72361,11 @@ Appears In LocalSubjec
kubectl
CommandTokenReviewSpec v1beta1 authentication
+Appears In: + +@@ -71972,7 +72383,11 @@ Appears In TokenReview
TokenReviewStatus v1beta1 authentication
+Appears In: + +@@ -71996,9 +72411,9 @@ Appears In TokenReview
-Write Operations
+Write Operations
See supported operations below...
-Create
+Create
@@ -72094,7 +72509,11 @@ Appears In TokenReview UserInfo holds the information about the user needed to implement the user.Info interface. +Appears In: + +
kubectl
Command@@ -72131,4 +72550,4 @@ Appears In TokenReviewStatus -