Update api reference docs from review comments. Uses latest brodocs release.

This commit is contained in:
Phillip Wittrock
2017-01-03 08:51:38 -08:00
parent 39fe9ab8e8
commit cc12b16d99
240 changed files with 14530 additions and 9984 deletions
+3 -3
View File
@@ -3,15 +3,15 @@ abstract: "Design docs, concept definitions, and references for APIs and CLIs."
toc: toc:
- docs/reference.md - docs/reference.md
- title: Kubernetes API Reference (New Beta Docs) - title: "Kubernetes API (New Docs Style)"
section: section:
- title: Version 1.5 - title: Version 1.5
path: /docs/api-reference/1_5/ path: /docs/api-reference/1_5/
- title: Kubectl Command Reference (New Beta Docs) - title: "Kubectl Commands (New Docs Style)"
section: section:
- title: Version 1.5 - title: Version 1.5
path: /docs/user-guide/kubectl/1_5 path: /docs/user-guide/kubectl/1_5/
- title: Kubernetes API - title: Kubernetes API
section: section:
+5
View File
@@ -62,3 +62,8 @@ npm start
## License ## License
Apache License Version 2.0 Apache License Version 2.0
## FAQ
Q: Why is it named brodocs?
A: This project was born out of a collaboration with my brother to create a suitable docs app for his purposes. It was a fun name for the the two of us to use as actual brothers.
+1
View File
@@ -195,6 +195,7 @@ function generateDoc(navContent, bodyContent, codeTabContent) {
<div id="page-content-wrapper" class="body-content container-fluid">${bodyContent}</div> <div id="page-content-wrapper" class="body-content container-fluid">${bodyContent}</div>
</div> </div>
<script src="node_modules/jquery/dist/jquery.min.js"></script> <script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/jquery.scrollto/jquery.scrollTo.min.js"></script>
<script src="navData.js"></script> <script src="navData.js"></script>
<script src="scroll.js"></script> <script src="scroll.js"></script>
<!--<script src="actions.js"></script>--> <!--<script src="actions.js"></script>-->
+1 -1
View File
@@ -1,5 +1,5 @@
# <strong>CLUSTER</strong> # <strong>CLUSTER</strong>
These are responsible for defining configuration of the cluster itself, and are generally only used by cluster operators. Cluster resources are responsible for defining configuration of the cluster itself, and are generally only used by cluster operators.
------------ ------------
+1 -1
View File
@@ -1,6 +1,6 @@
# <strong>CONFIG & STORAGE</strong> # <strong>CONFIG & STORAGE</strong>
These are responsible for injecting data into your applications and persisting data externally to your container. Config and Storage resources are responsible for injecting data into your applications and persisting data externally to your container.
Common resource types: Common resource types:
@@ -1,3 +1,3 @@
# <strong>DEFINITIONS</strong> # <strong>DEFINITIONS</strong>
These are Definitions for objects used by the above APIs This section contains definitions for objects used in the Kubernetes APIs.
@@ -566,127 +566,5 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of CertificateSigningRequest
### HTTP Request
`GET /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## <strong>Status Operations</strong>
See supported operations below...
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified CertificateSigningRequest
### HTTP Request
`PUT /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
body <br /> *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* |
name | name of the CertificateSigningRequest
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | OK
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1alpha1 | CertificateSigningRequestList Certificates | v1alpha1 | CertificateSigningRequestList
@@ -28,4 +28,69 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* |
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of CertificateSigningRequest
### HTTP Request
`GET /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1alpha1 | CertificateSigningRequestList Certificates | v1alpha1 | CertificateSigningRequestList
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1alpha1 | CertificateSigningRequestStatus Certificates | v1alpha1 | CertificateSigningRequestStatus
@@ -29,4 +29,66 @@ conditions <br /> *[CertificateSigningRequestCondition](#certificatesigningreque
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified CertificateSigningRequest
### HTTP Request
`PUT /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
body <br /> *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* |
name | name of the CertificateSigningRequest
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1alpha1 | CertificateSigningRequestStatus Certificates | v1alpha1 | CertificateSigningRequestStatus
@@ -537,5 +537,65 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ClusterRole
### HTTP Request
`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -538,65 +538,5 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ClusterRoleBinding
### HTTP Request
`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1alpha1 | ClusterRoleBindingList RbacAuthorization | v1alpha1 | ClusterRoleBindingList
@@ -28,4 +28,69 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard object's metadat
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ClusterRoleBinding
### HTTP Request
`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1alpha1 | ClusterRoleBindingList RbacAuthorization | v1alpha1 | ClusterRoleBindingList
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
RbacAuthorization | v1alpha1 | ClusterRoleList Core | v1alpha1 | ClusterRoleList
@@ -28,69 +28,4 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard object's metadat
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ClusterRole
### HTTP Request
`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
RbacAuthorization | v1alpha1 | ClusterRoleList Core | v1alpha1 | ClusterRoleList
@@ -611,67 +611,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ConfigMap
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/configmaps`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | More info: http://release
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ConfigMap
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/configmaps`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -635,67 +635,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of CronJob
### HTTP Request
`GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v2alpha1 | CronJobList Batch | v2alpha1 | CronJobList
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata Mo
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of CronJob
### HTTP Request
`GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v2alpha1 | CronJobList Batch | v2alpha1 | CronJobList
@@ -933,4 +933,190 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified DaemonSet
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the DaemonSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[DaemonSet](#daemonset-v1beta1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified DaemonSet
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the DaemonSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[DaemonSet](#daemonset-v1beta1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified DaemonSet
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the DaemonSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[DaemonSet](#daemonset-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[DaemonSet](#daemonset-v1beta1)* | OK
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | DaemonSetStatus Core | v1beta1 | DaemonSetStatus
@@ -31,195 +31,4 @@ numberReady <br /> *integer* | NumberReady is the number of nodes that should b
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified DaemonSet
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the DaemonSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[DaemonSet](#daemonset-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[DaemonSet](#daemonset-v1beta1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified DaemonSet
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the DaemonSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[DaemonSet](#daemonset-v1beta1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified DaemonSet
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the DaemonSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[DaemonSet](#daemonset-v1beta1)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | DaemonSetStatus Core | v1beta1 | DaemonSetStatus
@@ -1705,192 +1705,6 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Deployment
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Deployment
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Deployment](#deployment-v1beta1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Deployment
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Deployment
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Deployment](#deployment-v1beta1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Deployment
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Deployment
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Deployment](#deployment-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Deployment](#deployment-v1beta1)* | OK
## <strong>Misc Operations</strong> ## <strong>Misc Operations</strong>
See supported operations below... See supported operations below...
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1beta1 | DeploymentStatus Extensions | v1beta1 | DeploymentStatus
@@ -33,4 +33,195 @@ updatedReplicas <br /> *integer* | Total number of non-terminated pods targeted
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Deployment
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Deployment
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Deployment](#deployment-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Deployment](#deployment-v1beta1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Deployment
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Deployment
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Deployment](#deployment-v1beta1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Deployment
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Deployment
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Deployment](#deployment-v1beta1)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1beta1 | DeploymentStatus Extensions | v1beta1 | DeploymentStatus
@@ -622,67 +622,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Endpoints
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/endpoints`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Endpoints
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/endpoints`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -618,67 +618,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Event
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/events`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Event
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/events`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -759,4 +759,190 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified HorizontalPodAutoscaler
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the HorizontalPodAutoscaler
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified HorizontalPodAutoscaler
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the HorizontalPodAutoscaler
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified HorizontalPodAutoscaler
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the HorizontalPodAutoscaler
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | HorizontalPodAutoscalerStatus Core | v1beta1 | HorizontalPodAutoscalerStatus
@@ -32,195 +32,4 @@ observedGeneration <br /> *integer* | most recent generation observed by this a
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified HorizontalPodAutoscaler
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the HorizontalPodAutoscaler
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified HorizontalPodAutoscaler
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the HorizontalPodAutoscaler
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified HorizontalPodAutoscaler
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the HorizontalPodAutoscaler
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | HorizontalPodAutoscalerStatus Core | v1beta1 | HorizontalPodAutoscalerStatus
<aside class="notice">Other api versions of this object exist: <a href="#horizontalpodautoscalerstatus-v1">v1</a> </aside> <aside class="notice">Other api versions of this object exist: <a href="#horizontalpodautoscalerstatus-v1">v1</a> </aside>
@@ -632,6 +632,67 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Ingress
### HTTP Request
`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -693,4 +754,190 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Ingress
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Ingress
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Ingress](#ingress-v1beta1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Ingress
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Ingress
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Ingress](#ingress-v1beta1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Ingress
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Ingress
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Ingress](#ingress-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Ingress](#ingress-v1beta1)* | OK
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | IngressList Core | v1beta1 | IngressList
@@ -28,70 +28,4 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard object's metadat
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Ingress
### HTTP Request
`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | IngressList Core | v1beta1 | IngressList
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | IngressStatus Core | v1beta1 | IngressStatus
@@ -28,195 +28,4 @@ loadBalancer <br /> *[LoadBalancerStatus](#loadbalancerstatus-v1)* | LoadBalanc
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Ingress
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Ingress
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Ingress](#ingress-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Ingress](#ingress-v1beta1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Ingress
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Ingress
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Ingress](#ingress-v1beta1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Ingress
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Ingress
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Ingress](#ingress-v1beta1)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | IngressStatus Core | v1beta1 | IngressStatus
@@ -1140,67 +1140,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Job
### HTTP Request
`GET /apis/batch/v1/watch/namespaces/{namespace}/jobs`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -1092,6 +1092,67 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Job
### HTTP Request
`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -1153,4 +1214,190 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Job
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v1beta1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Job
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v1beta1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Job
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Job](#job-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v1beta1)* | OK
@@ -1092,67 +1092,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Job
### HTTP Request
`GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/jobs`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -1214,190 +1153,4 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Job
### HTTP Request
`PATCH /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v2alpha1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Job
### HTTP Request
`GET /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v2alpha1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Job
### HTTP Request
`PUT /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Job](#job-v2alpha1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v2alpha1)* | OK
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1 | JobList Batch | v1 | JobList
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata Mo
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Job
### HTTP Request
`GET /apis/batch/v1/watch/namespaces/{namespace}/jobs`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1 | JobList Batch | v1 | JobList
<aside class="notice">Other api versions of this object exist: <a href="#joblist-v1beta1">v1beta1</a> <a href="#joblist-v2alpha1">v2alpha1</a> </aside> <aside class="notice">Other api versions of this object exist: <a href="#joblist-v1beta1">v1beta1</a> <a href="#joblist-v2alpha1">v2alpha1</a> </aside>
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | JobList Core | v1beta1 | JobList
@@ -28,70 +28,4 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata Mo
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Job
### HTTP Request
`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | JobList Core | v1beta1 | JobList
<aside class="notice">Other api versions of this object exist: <a href="#joblist-v1">v1</a> <a href="#joblist-v2alpha1">v2alpha1</a> </aside> <aside class="notice">Other api versions of this object exist: <a href="#joblist-v1">v1</a> <a href="#joblist-v2alpha1">v2alpha1</a> </aside>
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v2alpha1 | JobList Batch | v2alpha1 | JobList
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata Mo
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Job
### HTTP Request
`GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/jobs`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v2alpha1 | JobList Batch | v2alpha1 | JobList
<aside class="notice">Other api versions of this object exist: <a href="#joblist-v1">v1</a> <a href="#joblist-v1beta1">v1beta1</a> </aside> <aside class="notice">Other api versions of this object exist: <a href="#joblist-v1">v1</a> <a href="#joblist-v1beta1">v1beta1</a> </aside>
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | JobStatus Core | v1beta1 | JobStatus
@@ -33,195 +33,4 @@ succeeded <br /> *integer* | Succeeded is the number of pods which reached Phas
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Job
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Job](#job-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v1beta1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Job
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v1beta1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Job
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v1beta1)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | JobStatus Core | v1beta1 | JobStatus
<aside class="notice">Other api versions of this object exist: <a href="#jobstatus-v1">v1</a> <a href="#jobstatus-v2alpha1">v2alpha1</a> </aside> <aside class="notice">Other api versions of this object exist: <a href="#jobstatus-v1">v1</a> <a href="#jobstatus-v2alpha1">v2alpha1</a> </aside>
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v2alpha1 | JobStatus Batch | v2alpha1 | JobStatus
@@ -33,4 +33,195 @@ succeeded <br /> *integer* | Succeeded is the number of pods which reached Phas
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Job
### HTTP Request
`PUT /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Job](#job-v2alpha1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v2alpha1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Job
### HTTP Request
`PATCH /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v2alpha1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Job
### HTTP Request
`GET /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Job
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Job](#job-v2alpha1)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v2alpha1 | JobStatus Batch | v2alpha1 | JobStatus
<aside class="notice">Other api versions of this object exist: <a href="#jobstatus-v1">v1</a> <a href="#jobstatus-v1beta1">v1beta1</a> </aside> <aside class="notice">Other api versions of this object exist: <a href="#jobstatus-v1">v1</a> <a href="#jobstatus-v1beta1">v1beta1</a> </aside>
@@ -620,6 +620,67 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of LimitRange
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/limitranges`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -28,70 +28,4 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of LimitRange
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/limitranges`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -562,65 +562,5 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Namespace
### HTTP Request
`GET /api/v1/watch/namespaces`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -28,4 +28,69 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Namespace
### HTTP Request
`GET /api/v1/watch/namespaces`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -621,67 +621,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of NetworkPolicy
### HTTP Request
`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1beta1 | NetworkPolicyList Extensions | v1beta1 | NetworkPolicyList
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of NetworkPolicy
### HTTP Request
`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1beta1 | NetworkPolicyList Extensions | v1beta1 | NetworkPolicyList
@@ -635,189 +635,6 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Node
### HTTP Request
`PATCH /api/v1/nodes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Node
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Node](#node-v1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Node
### HTTP Request
`GET /api/v1/nodes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Node
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Node](#node-v1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Node
### HTTP Request
`PUT /api/v1/nodes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Node
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Node](#node-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Node](#node-v1)* | OK
## <strong>Proxy Operations</strong> ## <strong>Proxy Operations</strong>
See supported operations below... See supported operations below...
@@ -37,4 +37,192 @@ volumesInUse <br /> *string array* | List of attachable volumes in use (mounted
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Node
### HTTP Request
`PUT /api/v1/nodes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Node
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Node](#node-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Node](#node-v1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Node
### HTTP Request
`PATCH /api/v1/nodes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Node
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Node](#node-v1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Node
### HTTP Request
`GET /api/v1/nodes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Node
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Node](#node-v1)* | OK
@@ -567,5 +567,248 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of PersistentVolume
### HTTP Request
`GET /api/v1/watch/persistentvolumes`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified PersistentVolume
### HTTP Request
`PATCH /api/v1/persistentvolumes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the PersistentVolume
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[PersistentVolume](#persistentvolume-v1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified PersistentVolume
### HTTP Request
`GET /api/v1/persistentvolumes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the PersistentVolume
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[PersistentVolume](#persistentvolume-v1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified PersistentVolume
### HTTP Request
`PUT /api/v1/persistentvolumes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the PersistentVolume
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[PersistentVolume](#persistentvolume-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[PersistentVolume](#persistentvolume-v1)* | OK
@@ -635,67 +635,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of PersistentVolumeClaim
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of PersistentVolumeClaim
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -28,69 +28,4 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of PersistentVolume
### HTTP Request
`GET /api/v1/watch/persistentvolumes`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -30,192 +30,4 @@ reason <br /> *string* | Reason is a brief CamelCase string that describes any
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified PersistentVolume
### HTTP Request
`PUT /api/v1/persistentvolumes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the PersistentVolume
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[PersistentVolume](#persistentvolume-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[PersistentVolume](#persistentvolume-v1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified PersistentVolume
### HTTP Request
`PATCH /api/v1/persistentvolumes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the PersistentVolume
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[PersistentVolume](#persistentvolume-v1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified PersistentVolume
### HTTP Request
`GET /api/v1/persistentvolumes/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the PersistentVolume
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[PersistentVolume](#persistentvolume-v1)* | OK
@@ -1956,7 +1956,7 @@ timestamps | If true, add an RFC3339 or RFC3339Nano timestamp at the beginning
Code | Description Code | Description
------------ | ----------- ------------ | -----------
200 <br /> *[Pod](#pod-v1)* | OK 200 <br /> *string* | OK
@@ -621,67 +621,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of PodTemplate
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/podtemplates`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of PodTemplate
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/podtemplates`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -808,192 +808,6 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified ReplicaSet
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicaSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicaSet](#replicaset-v1beta1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified ReplicaSet
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicaSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicaSet](#replicaset-v1beta1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified ReplicaSet
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicaSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[ReplicaSet](#replicaset-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicaSet](#replicaset-v1beta1)* | OK
## <strong>Misc Operations</strong> ## <strong>Misc Operations</strong>
See supported operations below... See supported operations below...
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1beta1 | ReplicaSetStatus Extensions | v1beta1 | ReplicaSetStatus
@@ -33,4 +33,195 @@ replicas <br /> *integer* | Replicas is the most recently oberved number of rep
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified ReplicaSet
### HTTP Request
`PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicaSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[ReplicaSet](#replicaset-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicaSet](#replicaset-v1beta1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified ReplicaSet
### HTTP Request
`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicaSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicaSet](#replicaset-v1beta1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified ReplicaSet
### HTTP Request
`GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicaSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicaSet](#replicaset-v1beta1)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1beta1 | ReplicaSetStatus Extensions | v1beta1 | ReplicaSetStatus
@@ -686,67 +686,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ReplicationController
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -808,190 +747,4 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified ReplicationController
### HTTP Request
`PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicationController
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicationController](#replicationcontroller-v1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified ReplicationController
### HTTP Request
`GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicationController
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicationController](#replicationcontroller-v1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified ReplicationController
### HTTP Request
`PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicationController
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[ReplicationController](#replicationcontroller-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicationController](#replicationcontroller-v1)* | OK
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ReplicationController
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -33,4 +33,195 @@ replicas <br /> *integer* | Replicas is the most recently oberved number of rep
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified ReplicationController
### HTTP Request
`PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicationController
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[ReplicationController](#replicationcontroller-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicationController](#replicationcontroller-v1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified ReplicationController
### HTTP Request
`PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicationController
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicationController](#replicationcontroller-v1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified ReplicationController
### HTTP Request
`GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ReplicationController
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[ReplicationController](#replicationcontroller-v1)* | OK
@@ -632,67 +632,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ResourceQuota
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/resourcequotas`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -754,190 +693,4 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified ResourceQuota
### HTTP Request
`PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ResourceQuota
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ResourceQuota](#resourcequota-v1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified ResourceQuota
### HTTP Request
`GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ResourceQuota
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[ResourceQuota](#resourcequota-v1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified ResourceQuota
### HTTP Request
`PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ResourceQuota
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[ResourceQuota](#resourcequota-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ResourceQuota](#resourcequota-v1)* | OK
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ResourceQuota
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/resourcequotas`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -29,4 +29,195 @@ used <br /> *object* | Used is the current observed total usage of the resource
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified ResourceQuota
### HTTP Request
`PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ResourceQuota
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[ResourceQuota](#resourcequota-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ResourceQuota](#resourcequota-v1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified ResourceQuota
### HTTP Request
`PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ResourceQuota
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[ResourceQuota](#resourcequota-v1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified ResourceQuota
### HTTP Request
`GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the ResourceQuota
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[ResourceQuota](#resourcequota-v1)* | OK
@@ -605,67 +605,6 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Role
### HTTP Request
`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1alpha1 | RoleList RbacAuthorization | v1alpha1 | RoleList
@@ -28,4 +28,70 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard object's metadat
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Role
### HTTP Request
`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1alpha1 | RoleList RbacAuthorization | v1alpha1 | RoleList
@@ -958,6 +958,67 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Service
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/services`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -1019,6 +1080,192 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Service
### HTTP Request
`PATCH /api/v1/namespaces/{namespace}/services/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Service
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Service](#service-v1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Service
### HTTP Request
`GET /api/v1/namespaces/{namespace}/services/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Service
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Service](#service-v1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Service
### HTTP Request
`PUT /api/v1/namespaces/{namespace}/services/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Service
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Service](#service-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Service](#service-v1)* | OK
## <strong>Proxy Operations</strong> ## <strong>Proxy Operations</strong>
See supported operations below... See supported operations below...
@@ -612,6 +612,67 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ServiceAccount
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/serviceaccounts`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
## Watch List All Namespaces ## Watch List All Namespaces
>bdocs-tab:kubectl `kubectl` Command >bdocs-tab:kubectl `kubectl` Command
@@ -28,70 +28,4 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ServiceAccount
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/serviceaccounts`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -28,70 +28,4 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata. M
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of Service
### HTTP Request
`GET /api/v1/watch/namespaces/{namespace}/services`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -28,195 +28,4 @@ loadBalancer <br /> *[LoadBalancerStatus](#loadbalancerstatus-v1)* | LoadBalanc
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified Service
### HTTP Request
`PUT /api/v1/namespaces/{namespace}/services/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Service
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Service](#service-v1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Service](#service-v1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified Service
### HTTP Request
`PATCH /api/v1/namespaces/{namespace}/services/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Service
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[Service](#service-v1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified Service
### HTTP Request
`GET /api/v1/namespaces/{namespace}/services/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the Service
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[Service](#service-v1)* | OK
@@ -699,190 +699,4 @@ Code | Description
## <strong>Status Operations</strong>
See supported operations below...
## Patch Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified StatefulSet
### HTTP Request
`PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the StatefulSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[StatefulSet](#statefulset-v1beta1)* | OK
## Read Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified StatefulSet
### HTTP Request
`GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the StatefulSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[StatefulSet](#statefulset-v1beta1)* | OK
## Replace Status
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified StatefulSet
### HTTP Request
`PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the StatefulSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[StatefulSet](#statefulset-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[StatefulSet](#statefulset-v1beta1)* | OK
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1beta1 | StatefulSetStatus Apps | v1beta1 | StatefulSetStatus
@@ -29,4 +29,195 @@ replicas <br /> *integer* | Replicas is the number of actual replicas.
## <strong>Write Operations</strong>
See supported operations below...
## Replace
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
replace status of the specified StatefulSet
### HTTP Request
`PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the StatefulSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[StatefulSet](#statefulset-v1beta1)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[StatefulSet](#statefulset-v1beta1)* | OK
## Patch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
partially update status of the specified StatefulSet
### HTTP Request
`PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the StatefulSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Query Parameters
Parameter | Description
------------ | -----------
body <br /> *[Patch](#patch-unversioned)* |
### Response
Code | Description
------------ | -----------
200 <br /> *[StatefulSet](#statefulset-v1beta1)* | OK
## <strong>Read Operations</strong>
See supported operations below...
## Read
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
read status of the specified StatefulSet
### HTTP Request
`GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status`
### Path Parameters
Parameter | Description
------------ | -----------
name | name of the StatefulSet
namespace | object name and auth scope, such as for teams and projects
pretty | If 'true', then the output is pretty printed.
### Response
Code | Description
------------ | -----------
200 <br /> *[StatefulSet](#statefulset-v1beta1)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Core | v1beta1 | StatefulSetStatus Apps | v1beta1 | StatefulSetStatus
@@ -546,5 +546,65 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of StorageClass
### HTTP Request
`GET /apis/storage.k8s.io/v1beta1/watch/storageclasses`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Storage | v1beta1 | StorageClassList Core | v1beta1 | StorageClassList
@@ -28,69 +28,4 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata Mo
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of StorageClass
### HTTP Request
`GET /apis/storage.k8s.io/v1beta1/watch/storageclasses`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Storage | v1beta1 | StorageClassList Core | v1beta1 | StorageClassList
@@ -544,5 +544,65 @@ Code | Description
200 <br /> *[Event](#event-versioned)* | OK 200 <br /> *[Event](#event-versioned)* | OK
## Watch List
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ThirdPartyResource
### HTTP Request
`GET /apis/extensions/v1beta1/watch/thirdpartyresources`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -7,7 +7,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | ThirdPartyResourceList Core | v1beta1 | ThirdPartyResourceList
@@ -28,69 +28,4 @@ metadata <br /> *[ListMeta](#listmeta-unversioned)* | Standard list metadata.
## <strong>Read Operations</strong>
See supported operations below...
## Watch
>bdocs-tab:kubectl `kubectl` Command
```bdocs-tab:kubectl_shell
Coming Soon
```
>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*)
```bdocs-tab:curl_shell
Coming Soon
```
>bdocs-tab:kubectl Output
```bdocs-tab:kubectl_json
Coming Soon
```
>bdocs-tab:curl Response Body
```bdocs-tab:curl_json
Coming Soon
```
watch individual changes to a list of ThirdPartyResource
### HTTP Request
`GET /apis/extensions/v1beta1/watch/thirdpartyresources`
### Path Parameters
Parameter | Description
------------ | -----------
fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty | If 'true', then the output is pretty printed.
resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSeconds | Timeout for the list/watch call.
watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
### Response
Code | Description
------------ | -----------
200 <br /> *[Event](#event-versioned)* | OK
@@ -2,7 +2,7 @@
Group | Version | Kind Group | Version | Kind
------------ | ---------- | ----------- ------------ | ---------- | -----------
Extensions | v1beta1 | ThirdPartyResourceList Core | v1beta1 | ThirdPartyResourceList
+1 -1
View File
@@ -1,6 +1,6 @@
# <strong>METADATA</strong> # <strong>METADATA</strong>
These are responsible for configuring behavior of your other Resources within the Cluster. Metadata resources are responsible for configuring behavior of your other Resources within the Cluster.
Common resource types: Common resource types:
@@ -1,3 +1,3 @@
# <strong>OLD API VERSIONS</strong> # <strong>OLD API VERSIONS</strong>
These are older versions of Resources shown above. This section contains older versions of resources shown above.
@@ -1,21 +1,21 @@
# <strong>API OVERVIEW</strong> # <strong>API OVERVIEW</strong>
Welcome to the Kubernetes API. You can use our API to access Kubernetes API endpoints to read and write Kubernetes Welcome to the Kubernetes API. You can use the Kubernetes API to read
resource objects. and write Kubernetes resource objects via a Kubernetes API endpoint.
## Resource Categories ## Resource Categories
This is a highlevel overview of the basic types of resources provide by the Kubernetes API and their primary functions. This is a high-level overview of the basic types of resources provide by the Kubernetes API and their primary functions.
**Workloads** *Run your containers*: These are responsible for managing and running your containers on the cluster. **Workloads** are objects you use to manage and run your containers on the cluster.
**Discovery & LB Resources** *Access your containers*: These are responsible for stitching your workloads together into an externally accessible Loadbalanced Service. **Discovery & LB** resources are objects you use to "stitch" your workloads together into an externally accessible, load-balanced Service.
**Config & Storage Resources** *Inject initialization data into your containers*: These are responsible for injecting data into your applications and persisting data externally to your container. **Config & Storage** resources are objects you use to inject initialization data into your applications, and to persist data that is external to your container.
**Cluster Resources** *Manage your cluster*: These are responsible for defining configuration of the cluster itself, and are generally only used by cluster operators. **Cluster** resources objects define how the cluster itself is configured; these are typically used only by cluster operators.
**Metadata Resources** *Configure resource meta behavior*: These are responsible for configuring behavior of your other Resources within the Cluster. **Metadata** resources are objects you use to configure the behavior of other resources within the cluster, such as HorizontalPodAutoscaler for scaling workloads.
------------ ------------
@@ -1,6 +1,6 @@
# <strong>DISCOVERY & LOAD BALANCING</strong> # <strong>DISCOVERY & LOAD BALANCING</strong>
These are responsible for stitching your workloads together into an accessible Loadbalanced Service. By default, Discovery and Load Balancing resources are responsible for stitching your workloads together into an accessible Loadbalanced Service. By default,
[Workloads](#workloads) are only accessible within the cluster, and they must be exposed externally using a either [Workloads](#workloads) are only accessible within the cluster, and they must be exposed externally using a either
a *LoadBalancer* or *NodePort* [Service](#service-v1). For development, internally accessible a *LoadBalancer* or *NodePort* [Service](#service-v1). For development, internally accessible
Workloads can be accessed via proxy through the api master using the `kubectl proxy` command. Workloads can be accessed via proxy through the api master using the `kubectl proxy` command.

Some files were not shown because too many files have changed in this diff Show More