From 0e9e259a1a5208623e388a32feeda60405d7c8b4 Mon Sep 17 00:00:00 2001 From: Steve Perry Date: Tue, 3 Apr 2018 14:26:07 -0700 Subject: [PATCH] Regenerate API ref docs with full group names. (#7954) --- .../generated/kubernetes-api/v1.10/index.html | 22545 +++++++--------- .../generated/kubernetes-api/v1.10/navData.js | 2 +- .../node_modules/jquery/dist/jquery.min.js | 6 +- 3 files changed, 9502 insertions(+), 13051 deletions(-) diff --git a/docs/reference/generated/kubernetes-api/v1.10/index.html b/docs/reference/generated/kubernetes-api/v1.10/index.html index 9b745172d9..2b440ce672 100644 --- a/docs/reference/generated/kubernetes-api/v1.10/index.html +++ b/docs/reference/generated/kubernetes-api/v1.10/index.html @@ -11,7 +11,7 @@ - +
  • kubectl
  • curl

API OVERVIEW

@@ -86,7 +86,7 @@ container.



-

Container v1 core

+

Container [core/v1]

Container Config to run nginx (must be embedded in a PodSpec to run).

@@ -94,8 +94,6 @@ container.

name: nginx # Run the nginx:1.10 image image: nginx:1.10 - -

Container Config to run nginx (must be embedded in a PodSpec to run).

@@ -104,8 +102,6 @@ container.

name: nginx # Run the nginx:1.10 image image: nginx:1.10 - - @@ -117,9 +113,9 @@ container.

- - - + + +
Corev1Containercorev1Container
@@ -146,87 +142,87 @@ Appears In: -args
string array +args
string array Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell -command
string array +command
string array Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell -env
EnvVar array
patch type: merge
patch merge key: name +env
EnvVar array
patch type: merge
patch merge key: name List of environment variables to set in the container. Cannot be updated. -envFrom
EnvFromSource array +envFrom
EnvFromSource array List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. -image
string +image
string Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets. -imagePullPolicy
string +imagePullPolicy
string Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images -lifecycle
Lifecycle +lifecycle
Lifecycle Actions that the management system should take in response to container lifecycle events. Cannot be updated. -livenessProbe
Probe +livenessProbe
Probe Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes -name
string +name
string Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. -ports
ContainerPort array
patch type: merge
patch merge key: containerPort +ports
ContainerPort array
patch type: merge
patch merge key: containerPort List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. -readinessProbe
Probe +readinessProbe
Probe Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes -resources
ResourceRequirements +resources
ResourceRequirements Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources -securityContext
SecurityContext +securityContext
SecurityContext Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ -stdin
boolean +stdin
boolean Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. -stdinOnce
boolean +stdinOnce
boolean Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false -terminationMessagePath
string +terminationMessagePath
string Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated. -terminationMessagePolicy
string +terminationMessagePolicy
string Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. -tty
boolean +tty
boolean Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. -volumeDevices
VolumeDevice array
patch type: merge
patch merge key: devicePath +volumeDevices
VolumeDevice array
patch type: merge
patch merge key: devicePath volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future. -volumeMounts
VolumeMount array
patch type: merge
patch merge key: mountPath +volumeMounts
VolumeMount array
patch type: merge
patch merge key: mountPath Pod volumes to mount into the container's filesystem. Cannot be updated. -workingDir
string +workingDir
string Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. @@ -248,41 +244,41 @@ Appears In: -containerID
string +containerID
string Container's ID in the format 'docker://<container_id>'. -image
string +image
string The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images -imageID
string +imageID
string ImageID of the container's image. -lastState
ContainerState +lastState
ContainerState Details about the container's last termination condition. -name
string +name
string This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated. -ready
boolean +ready
boolean Specifies whether the container has passed its readiness probe. -restartCount
integer +restartCount
integer The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC. -state
ContainerState +state
ContainerState Details about the container's current condition.
-

CronJob v1beta1 batch

+

CronJob [batch/v1beta1]

@@ -293,9 +289,9 @@ Appears In: - - - + + +
batchv1beta1CronJobbatchv1beta1CronJob
@@ -319,23 +315,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
CronJobSpec +spec
CronJobSpec Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status -status
CronJobStatus +status
CronJobStatus Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -357,31 +353,31 @@ Appears In: -concurrencyPolicy
string +concurrencyPolicy
string Specifies how to treat concurrent executions of a Job. Valid values are: - "Allow" (default): allows CronJobs to run concurrently; - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - "Replace": cancels currently running job and replaces it with a new one -failedJobsHistoryLimit
integer +failedJobsHistoryLimit
integer The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. -jobTemplate
JobTemplateSpec +jobTemplate
JobTemplateSpec Specifies the job that will be created when executing a CronJob. -schedule
string +schedule
string The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron. -startingDeadlineSeconds
integer +startingDeadlineSeconds
integer Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones. -successfulJobsHistoryLimit
integer +successfulJobsHistoryLimit
integer The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3. -suspend
boolean +suspend
boolean This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false. @@ -403,11 +399,11 @@ Appears In: -active
ObjectReference array +active
ObjectReference array A list of pointers to currently running jobs. -lastScheduleTime
Time +lastScheduleTime
Time Information when was the last time the job was successfully scheduled. @@ -422,19 +418,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
CronJob array +items
CronJob array items is the list of CronJobs. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -447,28 +443,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a CronJob

HTTP Request

@@ -483,7 +475,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -498,7 +490,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -513,7 +505,7 @@ Appears In: -body
CronJob +body
CronJob @@ -528,10 +520,6 @@ Appears In: -202
CronJob -Accepted - - 200
CronJob OK @@ -539,6 +527,10 @@ Appears In: 201
CronJob Created + +202
CronJob +Accepted +

Patch

@@ -547,28 +539,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified CronJob

HTTP Request

@@ -583,11 +571,11 @@ Appears In: -name +name name of the CronJob -namespace +namespace object name and auth scope, such as for teams and projects @@ -602,7 +590,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -617,7 +605,7 @@ Appears In: -body
Patch +body
Patch @@ -643,28 +631,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified CronJob

HTTP Request

@@ -679,11 +663,11 @@ Appears In: -name +name name of the CronJob -namespace +namespace object name and auth scope, such as for teams and projects @@ -698,7 +682,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -713,7 +697,7 @@ Appears In: -body
CronJob +body
CronJob @@ -743,28 +727,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a CronJob

HTTP Request

@@ -779,11 +759,11 @@ Appears In: -name +name name of the CronJob -namespace +namespace object name and auth scope, such as for teams and projects @@ -798,19 +778,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -825,7 +805,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -851,28 +831,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of CronJob

HTTP Request

@@ -887,7 +863,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -902,39 +878,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -962,28 +938,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified CronJob

HTTP Request

@@ -998,11 +970,11 @@ Appears In: -name +name name of the CronJob -namespace +namespace object name and auth scope, such as for teams and projects @@ -1017,15 +989,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -1051,28 +1023,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind CronJob

HTTP Request

@@ -1087,7 +1055,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -1102,39 +1070,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -1160,28 +1128,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind CronJob

HTTP Request

@@ -1196,39 +1160,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -1254,28 +1218,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind CronJob

HTTP Request

@@ -1290,11 +1250,11 @@ Appears In: -name +name name of the CronJob -namespace +namespace object name and auth scope, such as for teams and projects @@ -1309,39 +1269,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -1367,28 +1327,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of CronJob

HTTP Request

@@ -1403,7 +1359,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -1418,39 +1374,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -1476,28 +1432,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of CronJob

HTTP Request

@@ -1512,39 +1464,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -1572,28 +1524,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified CronJob

HTTP Request

@@ -1608,11 +1556,11 @@ Appears In: -name +name name of the CronJob -namespace +namespace object name and auth scope, such as for teams and projects @@ -1627,7 +1575,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -1642,7 +1590,7 @@ Appears In: -body
Patch +body
Patch @@ -1668,28 +1616,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified CronJob

HTTP Request

@@ -1704,11 +1648,11 @@ Appears In: -name +name name of the CronJob -namespace +namespace object name and auth scope, such as for teams and projects @@ -1723,7 +1667,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -1749,28 +1693,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified CronJob

HTTP Request

@@ -1785,11 +1725,11 @@ Appears In: -name +name name of the CronJob -namespace +namespace object name and auth scope, such as for teams and projects @@ -1804,7 +1744,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -1819,7 +1759,7 @@ Appears In: -body
CronJob +body
CronJob @@ -1844,7 +1784,7 @@ Appears In:
-

DaemonSet v1 apps

+

DaemonSet [apps/v1]

DaemonSet Config to print the hostname on each Node in the cluster every 10 seconds.

@@ -1874,7 +1814,6 @@ spec: echo "DaemonSet running on $(hostname)" ; sleep 10 ; done -

DaemonSet Config to print the hostname on each Node in the cluster every 10 seconds.

@@ -1905,7 +1844,6 @@ spec: echo "DaemonSet running on $(hostname)" ; sleep 10 ; done - @@ -1917,9 +1855,9 @@ spec: - - - + + +
appsv1DaemonSetappsv1DaemonSet
@@ -1943,23 +1881,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
DaemonSetSpec +spec
DaemonSetSpec The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status -status
DaemonSetStatus +status
DaemonSetStatus The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -1981,23 +1919,23 @@ Appears In: -minReadySeconds
integer +minReadySeconds
integer The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready). -revisionHistoryLimit
integer +revisionHistoryLimit
integer The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. -selector
LabelSelector +selector
LabelSelector A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors -template
PodTemplateSpec +template
PodTemplateSpec An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template -updateStrategy
DaemonSetUpdateStrategy +updateStrategy
DaemonSetUpdateStrategy An update strategy to replace existing DaemonSet pods with new pods. @@ -2019,43 +1957,43 @@ Appears In: -collisionCount
integer +collisionCount
integer Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. -conditions
DaemonSetCondition array
patch type: merge
patch merge key: type +conditions
DaemonSetCondition array
patch type: merge
patch merge key: type Represents the latest available observations of a DaemonSet's current state. -currentNumberScheduled
integer +currentNumberScheduled
integer The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ -desiredNumberScheduled
integer +desiredNumberScheduled
integer The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ -numberAvailable
integer +numberAvailable
integer The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds) -numberMisscheduled
integer +numberMisscheduled
integer The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ -numberReady
integer +numberReady
integer The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready. -numberUnavailable
integer +numberUnavailable
integer The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds) -observedGeneration
integer +observedGeneration
integer The most recent generation observed by the daemon set controller. -updatedNumberScheduled
integer +updatedNumberScheduled
integer The total number of nodes that are running updated daemon pod @@ -2070,19 +2008,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
DaemonSet array +items
DaemonSet array A list of daemon sets. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -2104,7 +2042,7 @@ Appears In: -maxUnavailable +maxUnavailable The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update. @@ -2139,7 +2077,6 @@ spec: sleep 10 ; done ' | kubectl create -f - -

curl Command (requires kubectl proxy to be running)

@@ -2170,14 +2107,12 @@ spec: sleep 10 ; done ' http://127.0.0.1:8001/apis/apps/v1/namespaces/default/daemonsets -

Output


 daemonset "daemonset-example" created
-
 

Response Body

@@ -2241,7 +2176,6 @@ spec: "desiredNumberScheduled": 0 } } -

create a DaemonSet

HTTP Request

@@ -2256,7 +2190,7 @@ spec: -namespace +namespace object name and auth scope, such as for teams and projects @@ -2271,7 +2205,7 @@ spec: -pretty +pretty If 'true', then the output is pretty printed. @@ -2286,7 +2220,7 @@ spec: -body
DaemonSet +body
DaemonSet @@ -2301,10 +2235,6 @@ spec: -201
DaemonSet -Created - - 202
DaemonSet Accepted @@ -2312,6 +2242,10 @@ spec: 200
DaemonSet OK + +201
DaemonSet +Created +

Patch

@@ -2320,28 +2254,24 @@ spec:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified DaemonSet

HTTP Request

@@ -2356,11 +2286,11 @@ spec: -name +name name of the DaemonSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -2375,7 +2305,7 @@ spec: -pretty +pretty If 'true', then the output is pretty printed. @@ -2390,7 +2320,7 @@ spec: -body
Patch +body
Patch @@ -2416,28 +2346,24 @@ spec:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified DaemonSet

HTTP Request

@@ -2452,11 +2378,11 @@ spec: -name +name name of the DaemonSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -2471,7 +2397,7 @@ spec: -pretty +pretty If 'true', then the output is pretty printed. @@ -2486,7 +2412,7 @@ spec: -body
DaemonSet +body
DaemonSet @@ -2516,7 +2442,6 @@ spec:

 $ kubectl delete daemonset daemonset-example
-
 

curl Command (requires kubectl proxy to be running)

@@ -2526,15 +2451,13 @@ $ kubectl proxy $ curl -X DELETE -H 'Content-Type: application/yaml' --data ' gracePeriodSeconds: 0 orphanDependents: false -' 'http://127.0.0.1:8001/apis/apps/v1/namespaces/default/daemonsets/daemonset-example' - +' 'http://127.0.0.1:8001/apis/apps/v1/namespaces/default/daemonsets/daemonset-example'

Output


 daemonset "daemonset-example" deleted
-
 

Response Body

@@ -2547,8 +2470,6 @@ orphanDependents: false "status": "Success", "code": 200 } - -

delete a DaemonSet

HTTP Request

@@ -2563,11 +2484,11 @@ orphanDependents: false -name +name name of the DaemonSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -2582,19 +2503,19 @@ orphanDependents: false -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -2609,7 +2530,7 @@ orphanDependents: false -body
DeleteOptions +body
DeleteOptions @@ -2635,28 +2556,24 @@ orphanDependents: false

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of DaemonSet

HTTP Request

@@ -2671,7 +2588,7 @@ orphanDependents: false -namespace +namespace object name and auth scope, such as for teams and projects @@ -2686,39 +2603,39 @@ orphanDependents: false -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -2746,29 +2663,23 @@ orphanDependents: false

 $ kubectl get daemonset daemonset-example -o json
-
 

curl Command (requires kubectl proxy to be running)


-$ kubectl proxy
-$ curl -X GET http://127.0.0.1:8001/apis/apps/v1/namespaces/default/daemonsets/daemonset-example
-
+$ kubectl proxy
+$ curl -X GET http://127.0.0.1:8001/apis/apps/v1/namespaces/default/daemonsets/daemonset-example
 

Output


-
-
 

Response Body


-
-
 

read the specified DaemonSet

HTTP Request

@@ -2783,11 +2694,11 @@ $ kubectl get daemonset daemonset- -name +name name of the DaemonSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -2802,15 +2713,15 @@ $ kubectl get daemonset daemonset- -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -2836,28 +2747,24 @@ $ kubectl get daemonset daemonset-

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind DaemonSet

HTTP Request

@@ -2872,7 +2779,7 @@ $ kubectl get daemonset daemonset- -namespace +namespace object name and auth scope, such as for teams and projects @@ -2887,39 +2794,39 @@ $ kubectl get daemonset daemonset- -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -2945,28 +2852,24 @@ $ kubectl get daemonset daemonset-

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind DaemonSet

HTTP Request

@@ -2981,39 +2884,39 @@ $ kubectl get daemonset daemonset- -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -3039,28 +2942,24 @@ $ kubectl get daemonset daemonset-

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind DaemonSet

HTTP Request

@@ -3075,11 +2974,11 @@ $ kubectl get daemonset daemonset- -name +name name of the DaemonSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -3094,39 +2993,39 @@ $ kubectl get daemonset daemonset- -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -3152,28 +3051,24 @@ $ kubectl get daemonset daemonset-

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of DaemonSet

HTTP Request

@@ -3188,7 +3083,7 @@ $ kubectl get daemonset daemonset- -namespace +namespace object name and auth scope, such as for teams and projects @@ -3203,39 +3098,39 @@ $ kubectl get daemonset daemonset- -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -3261,28 +3156,24 @@ $ kubectl get daemonset daemonset-

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of DaemonSet

HTTP Request

@@ -3297,39 +3188,39 @@ $ kubectl get daemonset daemonset- -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -3357,28 +3248,24 @@ $ kubectl get daemonset daemonset-

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified DaemonSet

HTTP Request

@@ -3393,11 +3280,11 @@ $ kubectl get daemonset daemonset- -name +name name of the DaemonSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -3412,7 +3299,7 @@ $ kubectl get daemonset daemonset- -pretty +pretty If 'true', then the output is pretty printed. @@ -3427,7 +3314,7 @@ $ kubectl get daemonset daemonset- -body
Patch +body
Patch @@ -3453,28 +3340,24 @@ $ kubectl get daemonset daemonset-

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified DaemonSet

HTTP Request

@@ -3489,11 +3372,11 @@ $ kubectl get daemonset daemonset- -name +name name of the DaemonSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -3508,7 +3391,7 @@ $ kubectl get daemonset daemonset- -pretty +pretty If 'true', then the output is pretty printed. @@ -3534,28 +3417,24 @@ $ kubectl get daemonset daemonset-

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified DaemonSet

HTTP Request

@@ -3570,11 +3449,11 @@ $ kubectl get daemonset daemonset- -name +name name of the DaemonSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -3589,7 +3468,7 @@ $ kubectl get daemonset daemonset- -pretty +pretty If 'true', then the output is pretty printed. @@ -3604,7 +3483,7 @@ $ kubectl get daemonset daemonset- -body
DaemonSet +body
DaemonSet @@ -3629,7 +3508,7 @@ $ kubectl get daemonset daemonset-
-

Deployment v1 apps

+

Deployment [apps/v1]

Deployment Config to run 3 nginx instances (max rollback set to 10 revisions).

@@ -3653,8 +3532,6 @@ spec: - name: nginx # Run this image image: nginx:1.10 - -

Deployment Config to run 3 nginx instances (max rollback set to 10 revisions).

@@ -3679,8 +3556,6 @@ spec: - name: nginx # Run this image image: nginx:1.10 - - @@ -3692,9 +3567,9 @@ spec: - - - + + +
appsv1Deploymentappsv1Deployment
@@ -3718,23 +3593,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object metadata. -spec
DeploymentSpec +spec
DeploymentSpec Specification of the desired behavior of the Deployment. -status
DeploymentStatus +status
DeploymentStatus Most recently observed status of the Deployment. @@ -3756,35 +3631,35 @@ Appears In: -minReadySeconds
integer +minReadySeconds
integer Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) -paused
boolean +paused
boolean Indicates that the deployment is paused. -progressDeadlineSeconds
integer +progressDeadlineSeconds
integer The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s. -replicas
integer +replicas
integer Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. -revisionHistoryLimit
integer +revisionHistoryLimit
integer The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. -selector
LabelSelector +selector
LabelSelector Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels. -strategy
DeploymentStrategy +strategy
DeploymentStrategy The deployment strategy to use to replace existing pods with new ones. -template
PodTemplateSpec +template
PodTemplateSpec Template describes the pods that will be created. @@ -3806,35 +3681,35 @@ Appears In: -availableReplicas
integer +availableReplicas
integer Total number of available pods (ready for at least minReadySeconds) targeted by this deployment. -collisionCount
integer +collisionCount
integer Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet. -conditions
DeploymentCondition array
patch type: merge
patch merge key: type +conditions
DeploymentCondition array
patch type: merge
patch merge key: type Represents the latest available observations of a deployment's current state. -observedGeneration
integer +observedGeneration
integer The generation observed by the deployment controller. -readyReplicas
integer +readyReplicas
integer Total number of ready pods targeted by this deployment. -replicas
integer +replicas
integer Total number of non-terminated pods targeted by this deployment (their labels match the selector). -unavailableReplicas
integer +unavailableReplicas
integer Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created. -updatedReplicas
integer +updatedReplicas
integer Total number of non-terminated pods targeted by this deployment that have the desired template spec. @@ -3849,19 +3724,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
Deployment array +items
Deployment array Items is the list of Deployments. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. @@ -3883,11 +3758,11 @@ Appears In: -rollingUpdate
RollingUpdateDeployment +rollingUpdate
RollingUpdateDeployment Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate. -type
string +type
string Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate. @@ -3909,12 +3784,12 @@ Appears In: -maxSurge -The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods. +maxSurge +The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods. -maxUnavailable -The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. +maxUnavailable +The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. @@ -3943,7 +3818,6 @@ spec: ports: - containerPort: 80 ' | kubectl create -f - -

curl Command (requires kubectl proxy to be running)

@@ -3969,14 +3843,12 @@ spec: ports: - containerPort: 80 ' http://127.0.0.1:8001/apis/apps/v1/namespaces/default/deployments -

Output


 deployment "deployment-example" created
-
 

Response Body

@@ -4044,7 +3916,6 @@ spec: }, "status": {} } -

create a Deployment

HTTP Request

@@ -4059,7 +3930,7 @@ spec: -namespace +namespace object name and auth scope, such as for teams and projects @@ -4074,7 +3945,7 @@ spec: -pretty +pretty If 'true', then the output is pretty printed. @@ -4089,7 +3960,7 @@ spec: -body
Deployment +body
Deployment @@ -4104,6 +3975,10 @@ spec: +200
Deployment +OK + + 201
Deployment Created @@ -4111,10 +3986,6 @@ spec: 202
Deployment Accepted - -200
Deployment -OK -

Patch

@@ -4124,7 +3995,6 @@ spec:

 $ kubectl patch deployment deployment-example -p \
     '{"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}'
-
 

curl Command (requires kubectl proxy to be running)

@@ -4133,15 +4003,13 @@ $ kubectl patch deployment deployment-example $ kubectl proxy $ curl -X PATCH -H 'Content-Type: application/strategic-merge-patch+json' --data ' {"spec":{"template":{"spec":{"containers":[{"name":"nginx","image":"nginx:1.11"}]}}}}' \ - 'http://127.0.0.1:8001/apis/apps/v1/namespaces/default/deployments/deployment-example' - + 'http://127.0.0.1:8001/apis/apps/v1/namespaces/default/deployments/deployment-example'

Output


 "deployment-example" patched
-
 

Response Body

@@ -4217,8 +4085,6 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-"availableReplicas": 3 } } - -

partially update the specified Deployment

HTTP Request

@@ -4233,11 +4099,11 @@ $ curl -X PATCH -H 'Content-Type: application/strategic- -pretty +pretty If 'true', then the output is pretty printed. @@ -4267,7 +4133,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Patch +body
Patch @@ -4310,7 +4176,6 @@ spec: ports: - containerPort: 80 ' | kubectl replace -f - -

curl Command (requires kubectl proxy to be running)

@@ -4336,14 +4201,12 @@ spec: ports: - containerPort: 80 ' http://127.0.0.1:8001/apis/apps/v1/namespaces/default/deployments/deployment-example -

Output


 deployment "deployment-example" replaced
-
 

Response Body

@@ -4416,8 +4279,6 @@ spec: "availableReplicas": 3 } } - -

replace the specified Deployment

HTTP Request

@@ -4432,11 +4293,11 @@ spec: -name +name name of the Deployment -namespace +namespace object name and auth scope, such as for teams and projects @@ -4451,7 +4312,7 @@ spec: -pretty +pretty If 'true', then the output is pretty printed. @@ -4466,7 +4327,7 @@ spec: -body
Deployment +body
Deployment @@ -4481,13 +4342,13 @@ spec: -200
Deployment -OK - - 201
Deployment Created + +200
Deployment +OK +

Delete

@@ -4496,7 +4357,6 @@ spec:

 $ kubectl delete deployment deployment-example
-
 

curl Command (requires kubectl proxy to be running)

@@ -4506,15 +4366,13 @@ $ kubectl proxy $ curl -X DELETE -H 'Content-Type: application/yaml' --data ' gracePeriodSeconds: 0 orphanDependents: false -' 'http://127.0.0.1:8001/apis/apps/v1/namespaces/default/deployments/deployment-example' - +' 'http://127.0.0.1:8001/apis/apps/v1/namespaces/default/deployments/deployment-example'

Output


 deployment "deployment-example" deleted
-
 

Response Body

@@ -4527,8 +4385,6 @@ orphanDependents: false "status": "Success", "code": 200 } - -

delete a Deployment

HTTP Request

@@ -4543,11 +4399,11 @@ orphanDependents: false -name +name name of the Deployment -namespace +namespace object name and auth scope, such as for teams and projects @@ -4562,19 +4418,19 @@ orphanDependents: false -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -4589,7 +4445,7 @@ orphanDependents: false -body
DeleteOptions +body
DeleteOptions @@ -4615,28 +4471,24 @@ orphanDependents: false

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of Deployment

HTTP Request

@@ -4651,7 +4503,7 @@ orphanDependents: false -namespace +namespace object name and auth scope, such as for teams and projects @@ -4666,39 +4518,39 @@ orphanDependents: false -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -4726,15 +4578,13 @@ orphanDependents: false

 $ kubectl get deployment deployment-example -o json
-
 

curl Command (requires kubectl proxy to be running)


-$ kubectl proxy
-$ curl -X GET http://127.0.0.1:8001/apis/apps/v1/namespaces/default/deployments/deployment-example
-
+$ kubectl proxy
+$ curl -X GET http://127.0.0.1:8001/apis/apps/v1/namespaces/default/deployments/deployment-example
 

Output

@@ -4809,8 +4659,6 @@ $ kubectl get deployment deployment-"availableReplicas": 3 } } - -

Response Body

@@ -4885,8 +4733,6 @@ $ kubectl get deployment deployment-"availableReplicas": 3 } } - -

read the specified Deployment

HTTP Request

@@ -4901,11 +4747,11 @@ $ kubectl get deployment deployment- -name +name name of the Deployment -namespace +namespace object name and auth scope, such as for teams and projects @@ -4920,15 +4766,15 @@ $ kubectl get deployment deployment- -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -4954,7 +4800,6 @@ $ kubectl get deployment deployment-

 $ kubectl get deployment -o json
-
 

curl Command (requires kubectl proxy to be running)

@@ -4962,7 +4807,6 @@ $ kubectl get deployment -o json

 $ kubectl proxy
 $ curl -X GET 'http://127.0.0.1:8001/apis/apps/v1/namespaces/default/deployments'
-
 

Output

@@ -5109,8 +4953,6 @@ $ kubectl proxy } ] } - -

Response Body

@@ -5257,8 +5099,6 @@ $ kubectl proxy } ] } - -

list or watch objects of kind Deployment

HTTP Request

@@ -5273,7 +5113,7 @@ $ kubectl proxy -namespace +namespace object name and auth scope, such as for teams and projects @@ -5288,39 +5128,39 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -5346,28 +5186,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Deployment

HTTP Request

@@ -5382,39 +5218,39 @@ $ kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -5440,7 +5276,6 @@ $ kubectl proxy

 $ kubectl get deployment deployment-example --watch -o json
-
 

curl Command (requires kubectl proxy to be running)

@@ -5448,7 +5283,6 @@ $ kubectl get deployment deployment-example $ kubectl proxy $ curl -X GET 'http://127.0.0.1:8001/apis/apps/v1/watch/namespaces/default/deployments/deployment-example' -

Output

@@ -5528,7 +5362,6 @@ $ kubectl proxy } } } -

Response Body

@@ -5608,7 +5441,6 @@ $ kubectl proxy } } } -

watch changes to an object of kind Deployment

HTTP Request

@@ -5623,11 +5455,11 @@ $ kubectl proxy -name +name name of the Deployment -namespace +namespace object name and auth scope, such as for teams and projects @@ -5642,39 +5474,39 @@ $ kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -5700,28 +5532,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Deployment

HTTP Request

@@ -5736,7 +5564,7 @@ $ kubectl proxy -namespace +namespace object name and auth scope, such as for teams and projects @@ -5751,39 +5579,39 @@ $ kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -5809,28 +5637,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Deployment

HTTP Request

@@ -5845,39 +5669,39 @@ $ kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -5905,28 +5729,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified Deployment

HTTP Request

@@ -5941,11 +5761,11 @@ $ kubectl proxy -name +name name of the Deployment -namespace +namespace object name and auth scope, such as for teams and projects @@ -5960,7 +5780,7 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -5975,7 +5795,7 @@ $ kubectl proxy -body
Patch +body
Patch @@ -6001,28 +5821,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified Deployment

HTTP Request

@@ -6037,11 +5853,11 @@ $
kubectl proxy -name +name name of the Deployment -namespace +namespace object name and auth scope, such as for teams and projects @@ -6056,7 +5872,7 @@ $
kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -6082,28 +5898,24 @@ $
kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified Deployment

HTTP Request

@@ -6118,11 +5930,11 @@ $ kubectl proxy -name +name name of the Deployment -namespace +namespace object name and auth scope, such as for teams and projects @@ -6137,7 +5949,7 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -6152,7 +5964,7 @@ $ kubectl proxy -body
Deployment +body
Deployment @@ -6184,28 +5996,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read scale of the specified Deployment

HTTP Request

@@ -6220,11 +6028,11 @@ $ kubectl proxy -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -6239,7 +6047,7 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -6265,28 +6073,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace scale of the specified Deployment

HTTP Request

@@ -6301,11 +6105,11 @@ $
kubectl proxy -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -6320,7 +6124,7 @@ $
kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -6335,7 +6139,7 @@ $ kubectl proxy -body
Scale +body
Scale @@ -6350,13 +6154,13 @@ $ kubectl proxy -200
Scale -OK - - 201
Scale Created + +200
Scale +OK +

Patch Scale

@@ -6365,28 +6169,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update scale of the specified Deployment

HTTP Request

@@ -6401,11 +6201,11 @@ $ kubectl proxy -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -6420,7 +6220,7 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -6435,7 +6235,7 @@ $ kubectl proxy -body
Patch +body
Patch @@ -6456,7 +6256,7 @@ $ kubectl proxy
-

Job v1 batch

+

Job [batch/v1]

Job Config to print pi up to 2000 digits (then exit).

@@ -6478,8 +6278,6 @@ apiVersion: batch/v1 args: ["-Mbignum=bpi", "-wle", "print bpi(2000)"] # Do not restart containers after they exit restartPolicy: Never - -

Job Config to print pi up to 2000 digits (then exit).

@@ -6502,8 +6300,6 @@ apiVersion: batch/v1 args: ["-Mbignum=bpi", "-wle", "print bpi(2000)"] # Do not restart containers after they exit restartPolicy: Never - - @@ -6515,9 +6311,9 @@ apiVersion: batch/v1 - - - + + +
batchv1Jobbatchv1Job
@@ -6538,23 +6334,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
JobSpec +spec
JobSpec Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status -status
JobStatus +status
JobStatus Current status of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -6578,31 +6374,31 @@ Appears In: -activeDeadlineSeconds
integer +activeDeadlineSeconds
integer Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer -backoffLimit
integer +backoffLimit
integer Specifies the number of retries before marking this job failed. Defaults to 6 -completions
integer +completions
integer Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ -manualSelector
boolean +manualSelector
boolean manualSelector controls generation of pod labels and pod selectors. Leave manualSelector unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector -parallelism
integer +parallelism
integer Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ -selector
LabelSelector +selector
LabelSelector A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors -template
PodTemplateSpec +template
PodTemplateSpec Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ @@ -6624,27 +6420,27 @@ Appears In: -active
integer +active
integer The number of actively running pods. -completionTime
Time +completionTime
Time Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. -conditions
JobCondition array
patch type: merge
patch merge key: type +conditions
JobCondition array
patch type: merge
patch merge key: type The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ -failed
integer +failed
integer The number of pods which reached phase Failed. -startTime
Time +startTime
Time Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. -succeeded
integer +succeeded
integer The number of pods which reached phase Succeeded. @@ -6659,19 +6455,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
Job array +items
Job array items is the list of Jobs. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -6698,7 +6494,6 @@ spec: command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"] restartPolicy: Never ' | kubectl create -f - -

curl Command (requires kubectl proxy to be running)

@@ -6721,14 +6516,12 @@ spec: command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"] restartPolicy: Never ' http://127.0.0.1:8001/apis/batch/v1/namespaces/default/jobs -

Output


 job "example-job" created
-
 

Response Body

@@ -6787,7 +6580,6 @@ spec: }, "status": {} } -

create a Job

HTTP Request

@@ -6802,7 +6594,7 @@ spec: -namespace +namespace object name and auth scope, such as for teams and projects @@ -6817,7 +6609,7 @@ spec: -pretty +pretty If 'true', then the output is pretty printed. @@ -6832,7 +6624,7 @@ spec: -body
Job +body
Job @@ -6866,28 +6658,24 @@ spec:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified Job

HTTP Request

@@ -6902,11 +6690,11 @@ spec: -name +name name of the Job -namespace +namespace object name and auth scope, such as for teams and projects @@ -6921,7 +6709,7 @@ spec: -pretty +pretty If 'true', then the output is pretty printed. @@ -6936,7 +6724,7 @@ spec: -body
Patch +body
Patch @@ -6962,28 +6750,24 @@ spec:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified Job

HTTP Request

@@ -6998,11 +6782,11 @@ spec: -name +name name of the Job -namespace +namespace object name and auth scope, such as for teams and projects @@ -7017,7 +6801,7 @@ spec: -pretty +pretty If 'true', then the output is pretty printed. @@ -7032,7 +6816,7 @@ spec: -body
Job +body
Job @@ -7062,7 +6846,6 @@ spec:

 $ kubectl delete job example-job
-
 

curl Command (requires kubectl proxy to be running)

@@ -7072,15 +6855,13 @@ $ kubectl proxy $ curl -X DELETE -H 'Content-Type: application/yaml' --data ' gracePeriodSeconds: 0 orphanDependents: false -' 'http://127.0.0.1:8001/apis/batch/v1/namespaces/default/jobs/example-job' - +' 'http://127.0.0.1:8001/apis/batch/v1/namespaces/default/jobs/example-job'

Output


 job "example-job" deleted
-
 

Response Body

@@ -7093,8 +6874,6 @@ orphanDependents: false "status": "Success", "code": 200 } - -

delete a Job

HTTP Request

@@ -7109,11 +6888,11 @@ orphanDependents: false -name +name name of the Job -namespace +namespace object name and auth scope, such as for teams and projects @@ -7128,19 +6907,19 @@ orphanDependents: false -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -7155,7 +6934,7 @@ orphanDependents: false -body
DeleteOptions +body
DeleteOptions @@ -7181,28 +6960,24 @@ orphanDependents: false

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of Job

HTTP Request

@@ -7217,7 +6992,7 @@ orphanDependents: false -namespace +namespace object name and auth scope, such as for teams and projects @@ -7232,39 +7007,39 @@ orphanDependents: false -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -7291,8 +7066,7 @@ orphanDependents: false

kubectl Command


-$ kubectl get job example-job -o json
-
+$ kubectl get job example-job -o json
 

curl Command (requires kubectl proxy to be running)

@@ -7300,7 +7074,6 @@ $ kubectl get job example- $ kubectl proxy $ curl -X GET http://127.0.0.1:8001/apis/batch/v1/namespaces/default/jobs/example-job -

Output

@@ -7362,7 +7135,6 @@ $ kubectl proxy "active": 1 } } -

Response Body

@@ -7424,7 +7196,6 @@ $ kubectl proxy "active": 1 } } -

read the specified Job

HTTP Request

@@ -7439,11 +7210,11 @@ $ kubectl proxy -name +name name of the Job -namespace +namespace object name and auth scope, such as for teams and projects @@ -7458,15 +7229,15 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -7491,8 +7262,7 @@ $ kubectl proxy

kubectl Command


-$ kubectl get job -o json
-
+$ kubectl get job -o json
 

curl Command (requires kubectl proxy to be running)

@@ -7500,7 +7270,6 @@ $ kubectl get job -o $ kubectl proxy $ curl -X GET 'http://127.0.0.1:8001/apis/batch/v1/namespaces/default/jobs' -

Output

@@ -7570,7 +7339,6 @@ $ kubectl proxy } ] } -

Response Body

@@ -7640,7 +7408,6 @@ $ kubectl proxy } ] } -

list or watch objects of kind Job

HTTP Request

@@ -7655,7 +7422,7 @@ $ kubectl proxy -namespace +namespace object name and auth scope, such as for teams and projects @@ -7670,39 +7437,39 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -7728,28 +7495,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Job

HTTP Request

@@ -7764,39 +7527,39 @@ $ kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -7821,8 +7584,7 @@ $ kubectl proxy

kubectl Command


-$ kubectl get job example-job --watch -o json
-
+$ kubectl get job example-job --watch -o json
 

curl Command (requires kubectl proxy to be running)

@@ -7830,7 +7592,6 @@ $ kubectl get job example- $ kubectl proxy $ curl -X GET 'http://127.0.0.1:8001/apis/batch/v1/watch/namespaces/default/jobs/example-job' -

Output

@@ -7897,7 +7658,6 @@ $ kubectl proxy } } } -

Response Body

@@ -7964,7 +7724,6 @@ $ kubectl proxy } } } -

watch changes to an object of kind Job

HTTP Request

@@ -7979,11 +7738,11 @@ $ kubectl proxy -name +name name of the Job -namespace +namespace object name and auth scope, such as for teams and projects @@ -7998,39 +7757,39 @@ $ kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -8056,28 +7815,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Job

HTTP Request

@@ -8092,7 +7847,7 @@ $ kubectl proxy -namespace +namespace object name and auth scope, such as for teams and projects @@ -8107,39 +7862,39 @@ $ kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -8165,28 +7920,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Job

HTTP Request

@@ -8201,39 +7952,39 @@ $
kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -8261,28 +8012,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified Job

HTTP Request

@@ -8297,11 +8044,11 @@ $
kubectl proxy -name +name name of the Job -namespace +namespace object name and auth scope, such as for teams and projects @@ -8316,7 +8063,7 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -8331,7 +8078,7 @@ $ kubectl proxy -body
Patch +body
Patch @@ -8357,28 +8104,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified Job

HTTP Request

@@ -8393,11 +8136,11 @@ $ kubectl proxy -name +name name of the Job -namespace +namespace object name and auth scope, such as for teams and projects @@ -8412,7 +8155,7 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -8438,28 +8181,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified Job

HTTP Request

@@ -8474,11 +8213,11 @@ $
kubectl proxy -name +name name of the Job -namespace +namespace object name and auth scope, such as for teams and projects @@ -8493,7 +8232,7 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -8508,7 +8247,7 @@ $ kubectl proxy -body
Job +body
Job @@ -8523,17 +8262,17 @@ $ kubectl proxy -200
Job -OK - - 201
Job Created + +200
Job +OK +
-

Pod v1 core

+

Pod [core/v1]

Pod Config to print "Hello World".

@@ -8548,8 +8287,6 @@ $ kubectl proxy image: ubuntu:trusty command: ["echo"] args: ["Hello World"] - -

Pod Config to print "Hello World".

@@ -8565,8 +8302,6 @@ $ kubectl proxy image: ubuntu:trusty command: ["echo"] args: ["Hello World"] - - @@ -8578,9 +8313,9 @@ $ kubectl proxy - - - + + +
Corev1Podcorev1Pod
@@ -8607,23 +8342,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
PodSpec +spec
PodSpec Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status -status
PodStatus +status
PodStatus Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -8646,111 +8381,111 @@ Appears In: -activeDeadlineSeconds
integer +activeDeadlineSeconds
integer Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer. -affinity
Affinity +affinity
Affinity If specified, the pod's scheduling constraints -automountServiceAccountToken
boolean +automountServiceAccountToken
boolean AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. -containers
Container array
patch type: merge
patch merge key: name +containers
Container array
patch type: merge
patch merge key: name List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. -dnsConfig
PodDNSConfig +dnsConfig
PodDNSConfig Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. -dnsPolicy
string +dnsPolicy
string Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. -hostAliases
HostAlias array
patch type: merge
patch merge key: ip +hostAliases
HostAlias array
patch type: merge
patch merge key: ip HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods. -hostIPC
boolean +hostIPC
boolean Use the host's ipc namespace. Optional: Default to false. -hostNetwork
boolean +hostNetwork
boolean Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false. -hostPID
boolean +hostPID
boolean Use the host's pid namespace. Optional: Default to false. -hostname
string +hostname
string Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value. -imagePullSecrets
LocalObjectReference array
patch type: merge
patch merge key: name +imagePullSecrets
LocalObjectReference array
patch type: merge
patch merge key: name ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod -initContainers
Container array
patch type: merge
patch merge key: name +initContainers
Container array
patch type: merge
patch merge key: name List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ -nodeName
string +nodeName
string NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements. -nodeSelector
object +nodeSelector
object NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ -priority
integer +priority
integer The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. -priorityClassName
string +priorityClassName
string If specified, indicates the pod's priority. "system-node-critical" and "system-cluster-critical" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default. -restartPolicy
string +restartPolicy
string Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy -schedulerName
string +schedulerName
string If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler. -securityContext
PodSecurityContext +securityContext
PodSecurityContext SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field. -serviceAccount
string +serviceAccount
string DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead. -serviceAccountName
string +serviceAccountName
string ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ -shareProcessNamespace
boolean +shareProcessNamespace
boolean Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false. This field is alpha-level and is honored only by servers that enable the PodShareProcessNamespace feature. -subdomain
string +subdomain
string If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all. -terminationGracePeriodSeconds
integer +terminationGracePeriodSeconds
integer Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds. -tolerations
Toleration array +tolerations
Toleration array If specified, the pod's tolerations. -volumes
Volume array
patch type: merge,retainKeys
patch merge key: name +volumes
Volume array
patch type: merge,retainKeys
patch merge key: name List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes @@ -8772,47 +8507,47 @@ Appears In: -conditions
PodCondition array
patch type: merge
patch merge key: type +conditions
PodCondition array
patch type: merge
patch merge key: type Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions -containerStatuses
ContainerStatus array +containerStatuses
ContainerStatus array The list has one entry per container in the manifest. Each entry is currently the output of docker inspect. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status -hostIP
string +hostIP
string IP address of the host to which the pod is assigned. Empty if not yet scheduled. -initContainerStatuses
ContainerStatus array +initContainerStatuses
ContainerStatus array The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status -message
string +message
string A human readable message indicating details about why the pod is in this condition. -nominatedNodeName
string +nominatedNodeName
string nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled. -phase
string +phase
string Current condition of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase -podIP
string +podIP
string IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated. -qosClass
string +qosClass
string The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md -reason
string +reason
string A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted' -startTime
Time +startTime
Time RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod. @@ -8827,19 +8562,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
Pod array +items
Pod array List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -8852,28 +8587,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a Pod

HTTP Request

@@ -8888,7 +8619,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -8903,7 +8634,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -8918,7 +8649,7 @@ Appears In: -body
Pod +body
Pod @@ -8933,10 +8664,6 @@ Appears In: -200
Pod -OK - - 201
Pod Created @@ -8944,6 +8671,10 @@ Appears In: 202
Pod Accepted + +200
Pod +OK +

Create Eviction

@@ -8952,28 +8683,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create eviction of a Pod

HTTP Request

@@ -8988,11 +8715,11 @@ Appears In: -name +name name of the Eviction -namespace +namespace object name and auth scope, such as for teams and projects @@ -9007,7 +8734,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -9022,7 +8749,7 @@ Appears In: -body
Eviction +body
Eviction @@ -9056,28 +8783,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified Pod

HTTP Request

@@ -9092,11 +8815,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -9111,7 +8834,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -9126,7 +8849,7 @@ Appears In: -body
Patch +body
Patch @@ -9152,28 +8875,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified Pod

HTTP Request

@@ -9188,11 +8907,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -9207,7 +8926,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -9222,7 +8941,7 @@ Appears In: -body
Pod +body
Pod @@ -9237,13 +8956,13 @@ Appears In: -201
Pod -Created - - 200
Pod OK + +201
Pod +Created +

Delete

@@ -9252,28 +8971,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a Pod

HTTP Request

@@ -9288,11 +9003,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -9307,19 +9022,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -9334,7 +9049,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -9360,28 +9075,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of Pod

HTTP Request

@@ -9396,7 +9107,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -9411,39 +9122,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -9471,28 +9182,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified Pod

HTTP Request

@@ -9507,11 +9214,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -9526,15 +9233,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -9560,28 +9267,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Pod

HTTP Request

@@ -9596,7 +9299,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -9611,39 +9314,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -9669,28 +9372,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Pod

HTTP Request

@@ -9705,39 +9404,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -9763,28 +9462,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind Pod

HTTP Request

@@ -9799,11 +9494,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -9818,39 +9513,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -9876,28 +9571,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Pod

HTTP Request

@@ -9912,7 +9603,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -9927,39 +9618,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -9985,28 +9676,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Pod

HTTP Request

@@ -10021,39 +9708,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -10081,28 +9768,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified Pod

HTTP Request

@@ -10117,11 +9800,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -10136,7 +9819,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -10151,7 +9834,7 @@ Appears In: -body
Patch +body
Patch @@ -10177,28 +9860,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified Pod

HTTP Request

@@ -10213,11 +9892,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -10232,7 +9911,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -10258,28 +9937,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified Pod

HTTP Request

@@ -10294,11 +9969,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -10313,7 +9988,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -10328,7 +10003,7 @@ Appears In: -body
Pod +body
Pod @@ -10343,13 +10018,13 @@ Appears In: -200
Pod -OK - - 201
Pod Created + +200
Pod +OK +

Proxy Operations

@@ -10360,28 +10035,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect POST requests to portforward of Pod

HTTP Request

@@ -10396,11 +10067,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -10415,7 +10086,7 @@ Appears In: -ports +ports List of ports to forward Required when using WebSockets @@ -10441,28 +10112,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect POST requests to proxy of Pod

HTTP Request

@@ -10477,11 +10144,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -10496,7 +10163,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -10522,28 +10189,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect POST requests to proxy of Pod

HTTP Request

@@ -10558,15 +10221,15 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -10581,7 +10244,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -10607,28 +10270,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect DELETE requests to proxy of Pod

HTTP Request

@@ -10643,11 +10302,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -10662,7 +10321,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -10688,28 +10347,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect DELETE requests to proxy of Pod

HTTP Request

@@ -10724,15 +10379,15 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -10747,7 +10402,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -10773,28 +10428,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect GET requests to portforward of Pod

HTTP Request

@@ -10809,11 +10460,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -10828,7 +10479,7 @@ Appears In: -ports +ports List of ports to forward Required when using WebSockets @@ -10854,28 +10505,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect GET requests to proxy of Pod

HTTP Request

@@ -10890,11 +10537,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -10909,7 +10556,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -10935,28 +10582,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect GET requests to proxy of Pod

HTTP Request

@@ -10971,15 +10614,15 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -10994,7 +10637,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -11020,28 +10663,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect HEAD requests to proxy of Pod

HTTP Request

@@ -11056,11 +10695,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -11075,7 +10714,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -11101,28 +10740,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect HEAD requests to proxy of Pod

HTTP Request

@@ -11137,15 +10772,15 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -11160,7 +10795,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -11186,28 +10821,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect PUT requests to proxy of Pod

HTTP Request

@@ -11222,11 +10853,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -11241,7 +10872,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -11267,28 +10898,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect PUT requests to proxy of Pod

HTTP Request

@@ -11303,15 +10930,15 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -11326,7 +10953,7 @@ Appears In: -path +path Path is the URL path to use for the current proxy request to pod. @@ -11354,28 +10981,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read log of the specified Pod

HTTP Request

@@ -11390,11 +11013,11 @@ Appears In: -name +name name of the Pod -namespace +namespace object name and auth scope, such as for teams and projects @@ -11409,35 +11032,35 @@ Appears In: -container +container The container for which to stream logs. Defaults to only container if there is one container in the pod. -follow +follow Follow the log stream of the pod. Defaults to false. -limitBytes +limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. -pretty +pretty If 'true', then the output is pretty printed. -previous +previous Return previous terminated container logs. Defaults to false. -sinceSeconds +sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. -tailLines +tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime -timestamps +timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. @@ -11458,7 +11081,7 @@ Appears In:
-

ReplicaSet v1 apps

+

ReplicaSet [apps/v1]

ReplicaSet Config to run 3 nginx instances.

@@ -11480,8 +11103,6 @@ Appears In: # Run the nginx image - name: nginx image: nginx:1.10 - -

ReplicaSet Config to run 3 nginx instances.

@@ -11504,8 +11125,6 @@ Appears In: # Run the nginx image - name: nginx image: nginx:1.10 - - @@ -11517,9 +11136,9 @@ Appears In: - - - + + +
appsv1ReplicaSetappsv1ReplicaSet
@@ -11546,23 +11165,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
ReplicaSetSpec +spec
ReplicaSetSpec Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status -status
ReplicaSetStatus +status
ReplicaSetStatus Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -11584,19 +11203,19 @@ Appears In: -minReadySeconds
integer +minReadySeconds
integer Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) -replicas
integer +replicas
integer Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller -selector
LabelSelector +selector
LabelSelector Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors -template
PodTemplateSpec +template
PodTemplateSpec Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template @@ -11618,27 +11237,27 @@ Appears In: -availableReplicas
integer +availableReplicas
integer The number of available replicas (ready for at least minReadySeconds) for this replica set. -conditions
ReplicaSetCondition array
patch type: merge
patch merge key: type +conditions
ReplicaSetCondition array
patch type: merge
patch merge key: type Represents the latest available observations of a replica set's current state. -fullyLabeledReplicas
integer +fullyLabeledReplicas
integer The number of pods that have labels matching the labels of the pod template of the replicaset. -observedGeneration
integer +observedGeneration
integer ObservedGeneration reflects the generation of the most recently observed ReplicaSet. -readyReplicas
integer +readyReplicas
integer The number of ready replicas for this replica set. -replicas
integer +replicas
integer Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller @@ -11653,19 +11272,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
ReplicaSet array +items
ReplicaSet array List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -11678,28 +11297,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a ReplicaSet

HTTP Request

@@ -11714,7 +11329,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -11729,7 +11344,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -11744,7 +11359,7 @@ Appears In: -body
ReplicaSet +body
ReplicaSet @@ -11778,28 +11393,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified ReplicaSet

HTTP Request

@@ -11814,11 +11425,11 @@ Appears In: -name +name name of the ReplicaSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -11833,7 +11444,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -11848,7 +11459,7 @@ Appears In: -body
Patch +body
Patch @@ -11874,28 +11485,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified ReplicaSet

HTTP Request

@@ -11910,11 +11517,11 @@ Appears In: -name +name name of the ReplicaSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -11929,7 +11536,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -11944,7 +11551,7 @@ Appears In: -body
ReplicaSet +body
ReplicaSet @@ -11959,13 +11566,13 @@ Appears In: -200
ReplicaSet -OK - - 201
ReplicaSet Created + +200
ReplicaSet +OK +

Delete

@@ -11974,28 +11581,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a ReplicaSet

HTTP Request

@@ -12010,11 +11613,11 @@ Appears In: -name +name name of the ReplicaSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -12029,19 +11632,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -12056,7 +11659,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -12082,28 +11685,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of ReplicaSet

HTTP Request

@@ -12118,7 +11717,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -12133,39 +11732,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -12193,28 +11792,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified ReplicaSet

HTTP Request

@@ -12229,11 +11824,11 @@ Appears In: -name +name name of the ReplicaSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -12248,15 +11843,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -12282,28 +11877,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind ReplicaSet

HTTP Request

@@ -12318,7 +11909,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -12333,39 +11924,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -12391,28 +11982,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind ReplicaSet

HTTP Request

@@ -12427,39 +12014,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -12485,28 +12072,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind ReplicaSet

HTTP Request

@@ -12521,11 +12104,11 @@ Appears In: -name +name name of the ReplicaSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -12540,39 +12123,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -12598,28 +12181,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of ReplicaSet

HTTP Request

@@ -12634,7 +12213,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -12649,39 +12228,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -12707,28 +12286,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of ReplicaSet

HTTP Request

@@ -12743,39 +12318,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -12803,28 +12378,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified ReplicaSet

HTTP Request

@@ -12839,11 +12410,11 @@ Appears In: -name +name name of the ReplicaSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -12858,7 +12429,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -12873,7 +12444,7 @@ Appears In: -body
Patch +body
Patch @@ -12899,28 +12470,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified ReplicaSet

HTTP Request

@@ -12935,11 +12502,11 @@ Appears In: -name +name name of the ReplicaSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -12954,7 +12521,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -12980,28 +12547,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified ReplicaSet

HTTP Request

@@ -13016,11 +12579,11 @@ Appears In: -name +name name of the ReplicaSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -13035,7 +12598,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -13050,7 +12613,7 @@ Appears In: -body
ReplicaSet +body
ReplicaSet @@ -13082,28 +12645,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read scale of the specified ReplicaSet

HTTP Request

@@ -13118,11 +12677,11 @@ Appears In: -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -13137,7 +12696,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -13163,28 +12722,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace scale of the specified ReplicaSet

HTTP Request

@@ -13199,11 +12754,11 @@ Appears In: -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -13218,7 +12773,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -13233,7 +12788,7 @@ Appears In: -body
Scale +body
Scale @@ -13263,28 +12818,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update scale of the specified ReplicaSet

HTTP Request

@@ -13299,11 +12850,11 @@ Appears In: -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -13318,7 +12869,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -13333,7 +12884,7 @@ Appears In: -body
Patch +body
Patch @@ -13354,7 +12905,7 @@ Appears In:
-

ReplicationController v1 core

+

ReplicationController [core/v1]

ReplicationController Config to run 3 nginx instances.

@@ -13376,8 +12927,6 @@ Appears In: # Run the nginx image - name: nginx image: nginx:1.10 - -

ReplicationController Config to run 3 nginx instances.

@@ -13400,8 +12949,6 @@ Appears In: # Run the nginx image - name: nginx image: nginx:1.10 - - @@ -13413,9 +12960,9 @@ Appears In: - - - + + +
Corev1ReplicationControllercorev1ReplicationController
@@ -13442,23 +12989,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
ReplicationControllerSpec +spec
ReplicationControllerSpec Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status -status
ReplicationControllerStatus +status
ReplicationControllerStatus Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -13480,19 +13027,19 @@ Appears In: -minReadySeconds
integer +minReadySeconds
integer Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) -replicas
integer +replicas
integer Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller -selector
object +selector
object Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors -template
PodTemplateSpec +template
PodTemplateSpec Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template @@ -13514,27 +13061,27 @@ Appears In: -availableReplicas
integer +availableReplicas
integer The number of available replicas (ready for at least minReadySeconds) for this replication controller. -conditions
ReplicationControllerCondition array
patch type: merge
patch merge key: type +conditions
ReplicationControllerCondition array
patch type: merge
patch merge key: type Represents the latest available observations of a replication controller's current state. -fullyLabeledReplicas
integer +fullyLabeledReplicas
integer The number of pods that have labels matching the labels of the pod template of the replication controller. -observedGeneration
integer +observedGeneration
integer ObservedGeneration reflects the generation of the most recently observed replication controller. -readyReplicas
integer +readyReplicas
integer The number of ready replicas for this replication controller. -replicas
integer +replicas
integer Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller @@ -13549,19 +13096,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
ReplicationController array +items
ReplicationController array List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -13574,28 +13121,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a ReplicationController

HTTP Request

@@ -13610,7 +13153,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -13625,7 +13168,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -13640,7 +13183,7 @@ Appears In: -body
ReplicationController +body
ReplicationController @@ -13655,6 +13198,10 @@ Appears In: +202
ReplicationController +Accepted + + 200
ReplicationController OK @@ -13662,10 +13209,6 @@ Appears In: 201
ReplicationController Created - -202
ReplicationController -Accepted -

Patch

@@ -13674,28 +13217,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified ReplicationController

HTTP Request

@@ -13710,11 +13249,11 @@ Appears In: -name +name name of the ReplicationController -namespace +namespace object name and auth scope, such as for teams and projects @@ -13729,7 +13268,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -13744,7 +13283,7 @@ Appears In: -body
Patch +body
Patch @@ -13770,28 +13309,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified ReplicationController

HTTP Request

@@ -13806,11 +13341,11 @@ Appears In: -name +name name of the ReplicationController -namespace +namespace object name and auth scope, such as for teams and projects @@ -13825,7 +13360,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -13840,7 +13375,7 @@ Appears In: -body
ReplicationController +body
ReplicationController @@ -13870,28 +13405,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a ReplicationController

HTTP Request

@@ -13906,11 +13437,11 @@ Appears In: -name +name name of the ReplicationController -namespace +namespace object name and auth scope, such as for teams and projects @@ -13925,19 +13456,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -13952,7 +13483,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -13978,28 +13509,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of ReplicationController

HTTP Request

@@ -14014,7 +13541,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -14029,39 +13556,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -14089,28 +13616,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified ReplicationController

HTTP Request

@@ -14125,11 +13648,11 @@ Appears In: -name +name name of the ReplicationController -namespace +namespace object name and auth scope, such as for teams and projects @@ -14144,15 +13667,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -14178,28 +13701,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind ReplicationController

HTTP Request

@@ -14214,7 +13733,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -14229,39 +13748,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -14287,28 +13806,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind ReplicationController

HTTP Request

@@ -14323,39 +13838,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -14381,28 +13896,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind ReplicationController

HTTP Request

@@ -14417,11 +13928,11 @@ Appears In: -name +name name of the ReplicationController -namespace +namespace object name and auth scope, such as for teams and projects @@ -14436,39 +13947,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -14494,28 +14005,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of ReplicationController

HTTP Request

@@ -14530,7 +14037,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -14545,39 +14052,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -14603,28 +14110,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of ReplicationController

HTTP Request

@@ -14639,39 +14142,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -14699,28 +14202,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified ReplicationController

HTTP Request

@@ -14735,11 +14234,11 @@ Appears In: -name +name name of the ReplicationController -namespace +namespace object name and auth scope, such as for teams and projects @@ -14754,7 +14253,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -14769,7 +14268,7 @@ Appears In: -body
Patch +body
Patch @@ -14795,28 +14294,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified ReplicationController

HTTP Request

@@ -14831,11 +14326,11 @@ Appears In: -name +name name of the ReplicationController -namespace +namespace object name and auth scope, such as for teams and projects @@ -14850,7 +14345,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -14876,28 +14371,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified ReplicationController

HTTP Request

@@ -14912,11 +14403,11 @@ Appears In: -name +name name of the ReplicationController -namespace +namespace object name and auth scope, such as for teams and projects @@ -14931,7 +14422,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -14946,7 +14437,7 @@ Appears In: -body
ReplicationController +body
ReplicationController @@ -14978,28 +14469,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read scale of the specified ReplicationController

HTTP Request

@@ -15014,11 +14501,11 @@ Appears In: -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -15033,7 +14520,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -15059,28 +14546,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace scale of the specified ReplicationController

HTTP Request

@@ -15095,11 +14578,11 @@ Appears In: -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -15114,7 +14597,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -15129,7 +14612,7 @@ Appears In: -body
Scale +body
Scale @@ -15159,28 +14642,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update scale of the specified ReplicationController

HTTP Request

@@ -15195,11 +14674,11 @@ Appears In: -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -15214,7 +14693,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -15229,7 +14708,7 @@ Appears In: -body
Patch +body
Patch @@ -15250,7 +14729,7 @@ Appears In:
-

StatefulSet v1 apps

+

StatefulSet [apps/v1]

@@ -15261,9 +14740,9 @@ Appears In: - - - + + +
appsv1StatefulSetappsv1StatefulSet
@@ -15292,23 +14771,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta -spec
StatefulSetSpec +spec
StatefulSetSpec Spec defines the desired identities of pods in this set. -status
StatefulSetStatus +status
StatefulSetStatus Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time. @@ -15330,35 +14809,35 @@ Appears In: -podManagementPolicy
string +podManagementPolicy
string podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is OrderedReady, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is Parallel which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. -replicas
integer +replicas
integer replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1. -revisionHistoryLimit
integer +revisionHistoryLimit
integer revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10. -selector
LabelSelector +selector
LabelSelector selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors -serviceName
string +serviceName
string serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller. -template
PodTemplateSpec +template
PodTemplateSpec template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet. -updateStrategy
StatefulSetUpdateStrategy +updateStrategy
StatefulSetUpdateStrategy updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template. -volumeClaimTemplates
PersistentVolumeClaim array +volumeClaimTemplates
PersistentVolumeClaim array volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name. @@ -15380,39 +14859,39 @@ Appears In: -collisionCount
integer +collisionCount
integer collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. -conditions
StatefulSetCondition array
patch type: merge
patch merge key: type +conditions
StatefulSetCondition array
patch type: merge
patch merge key: type Represents the latest available observations of a statefulset's current state. -currentReplicas
integer +currentReplicas
integer currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision. -currentRevision
string +currentRevision
string currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas). -observedGeneration
integer +observedGeneration
integer observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server. -readyReplicas
integer +readyReplicas
integer readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition. -replicas
integer +replicas
integer replicas is the number of Pods created by the StatefulSet controller. -updateRevision
string +updateRevision
string updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas) -updatedReplicas
integer +updatedReplicas
integer updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision. @@ -15427,19 +14906,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
StatefulSet array +items
StatefulSet array -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta @@ -15452,28 +14931,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a StatefulSet

HTTP Request

@@ -15488,7 +14963,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -15503,7 +14978,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -15518,7 +14993,7 @@ Appears In: -body
StatefulSet +body
StatefulSet @@ -15533,6 +15008,10 @@ Appears In: +201
StatefulSet +Created + + 202
StatefulSet Accepted @@ -15540,10 +15019,6 @@ Appears In: 200
StatefulSet OK - -201
StatefulSet -Created -

Patch

@@ -15552,28 +15027,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified StatefulSet

HTTP Request

@@ -15588,11 +15059,11 @@ Appears In: -name +name name of the StatefulSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -15607,7 +15078,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -15622,7 +15093,7 @@ Appears In: -body
Patch +body
Patch @@ -15648,28 +15119,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified StatefulSet

HTTP Request

@@ -15684,11 +15151,11 @@ Appears In: -name +name name of the StatefulSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -15703,7 +15170,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -15718,7 +15185,7 @@ Appears In: -body
StatefulSet +body
StatefulSet @@ -15748,28 +15215,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a StatefulSet

HTTP Request

@@ -15784,11 +15247,11 @@ Appears In: -name +name name of the StatefulSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -15803,19 +15266,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -15830,7 +15293,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -15856,28 +15319,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of StatefulSet

HTTP Request

@@ -15892,7 +15351,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -15907,39 +15366,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -15967,28 +15426,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified StatefulSet

HTTP Request

@@ -16003,11 +15458,11 @@ Appears In: -name +name name of the StatefulSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -16022,15 +15477,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -16056,28 +15511,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind StatefulSet

HTTP Request

@@ -16092,7 +15543,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -16107,39 +15558,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -16165,28 +15616,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind StatefulSet

HTTP Request

@@ -16201,39 +15648,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -16259,28 +15706,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind StatefulSet

HTTP Request

@@ -16295,11 +15738,11 @@ Appears In: -name +name name of the StatefulSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -16314,39 +15757,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -16372,28 +15815,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of StatefulSet

HTTP Request

@@ -16408,7 +15847,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -16423,39 +15862,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -16481,28 +15920,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of StatefulSet

HTTP Request

@@ -16517,39 +15952,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -16577,28 +16012,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified StatefulSet

HTTP Request

@@ -16613,11 +16044,11 @@ Appears In: -name +name name of the StatefulSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -16632,7 +16063,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -16647,7 +16078,7 @@ Appears In: -body
Patch +body
Patch @@ -16673,28 +16104,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified StatefulSet

HTTP Request

@@ -16709,11 +16136,11 @@ Appears In: -name +name name of the StatefulSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -16728,7 +16155,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -16754,28 +16181,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified StatefulSet

HTTP Request

@@ -16790,11 +16213,11 @@ Appears In: -name +name name of the StatefulSet -namespace +namespace object name and auth scope, such as for teams and projects @@ -16809,7 +16232,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -16824,7 +16247,7 @@ Appears In: -body
StatefulSet +body
StatefulSet @@ -16856,28 +16279,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read scale of the specified StatefulSet

HTTP Request

@@ -16892,11 +16311,11 @@ Appears In: -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -16911,7 +16330,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -16937,28 +16356,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace scale of the specified StatefulSet

HTTP Request

@@ -16973,11 +16388,11 @@ Appears In: -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -16992,7 +16407,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -17007,7 +16422,7 @@ Appears In: -body
Scale +body
Scale @@ -17037,28 +16452,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update scale of the specified StatefulSet

HTTP Request

@@ -17073,11 +16484,11 @@ Appears In: -name +name name of the Scale -namespace +namespace object name and auth scope, such as for teams and projects @@ -17092,7 +16503,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -17107,7 +16518,7 @@ Appears In: -body
Patch +body
Patch @@ -17139,7 +16550,7 @@ Workloads can be accessed via proxy through the api master using the kubec

-

Endpoints v1 core

+

Endpoints [core/v1]

@@ -17150,9 +16561,9 @@ Workloads can be accessed via proxy through the api master using the kubec - - - + + +
Corev1Endpointscorev1Endpoints
@@ -17184,19 +16595,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -subsets
EndpointSubset array +subsets
EndpointSubset array The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service. @@ -17211,19 +16622,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
Endpoints array +items
Endpoints array List of endpoints. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -17236,28 +16647,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create Endpoints

HTTP Request

@@ -17272,7 +16679,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -17287,7 +16694,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -17302,7 +16709,7 @@ Appears In: -body
Endpoints +body
Endpoints @@ -17336,28 +16743,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified Endpoints

HTTP Request

@@ -17372,11 +16775,11 @@ Appears In: -name +name name of the Endpoints -namespace +namespace object name and auth scope, such as for teams and projects @@ -17391,7 +16794,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -17406,7 +16809,7 @@ Appears In: -body
Patch +body
Patch @@ -17432,28 +16835,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified Endpoints

HTTP Request

@@ -17468,11 +16867,11 @@ Appears In: -name +name name of the Endpoints -namespace +namespace object name and auth scope, such as for teams and projects @@ -17487,7 +16886,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -17502,7 +16901,7 @@ Appears In: -body
Endpoints +body
Endpoints @@ -17532,28 +16931,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete Endpoints

HTTP Request

@@ -17568,11 +16963,11 @@ Appears In: -name +name name of the Endpoints -namespace +namespace object name and auth scope, such as for teams and projects @@ -17587,19 +16982,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -17614,7 +17009,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -17640,28 +17035,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of Endpoints

HTTP Request

@@ -17676,7 +17067,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -17691,39 +17082,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -17751,28 +17142,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified Endpoints

HTTP Request

@@ -17787,11 +17174,11 @@ Appears In: -name +name name of the Endpoints -namespace +namespace object name and auth scope, such as for teams and projects @@ -17806,15 +17193,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -17840,28 +17227,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Endpoints

HTTP Request

@@ -17876,7 +17259,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -17891,39 +17274,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -17949,28 +17332,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Endpoints

HTTP Request

@@ -17985,39 +17364,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -18043,28 +17422,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind Endpoints

HTTP Request

@@ -18079,11 +17454,11 @@ Appears In: -name +name name of the Endpoints -namespace +namespace object name and auth scope, such as for teams and projects @@ -18098,39 +17473,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -18156,28 +17531,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Endpoints

HTTP Request

@@ -18192,7 +17563,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -18207,39 +17578,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -18265,28 +17636,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Endpoints

HTTP Request

@@ -18301,39 +17668,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -18354,7 +17721,7 @@ Appears In:
-

Ingress v1beta1 extensions

+

Ingress [extensions/v1beta1]

@@ -18365,9 +17732,9 @@ Appears In: - - - + + +
extensionsv1beta1Ingressextensionsv1beta1Ingress
@@ -18388,23 +17755,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
IngressSpec +spec
IngressSpec Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status -status
IngressStatus +status
IngressStatus Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -18426,15 +17793,15 @@ Appears In: -backend
IngressBackend +backend
IngressBackend A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default. -rules
IngressRule array +rules
IngressRule array A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. -tls
IngressTLS array +tls
IngressTLS array TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI. @@ -18456,7 +17823,7 @@ Appears In: -loadBalancer
LoadBalancerStatus +loadBalancer
LoadBalancerStatus LoadBalancer contains the current status of the load-balancer. @@ -18471,19 +17838,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
Ingress array +items
Ingress array Items is the list of Ingress. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -18496,28 +17863,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create an Ingress

HTTP Request

@@ -18532,7 +17895,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -18547,7 +17910,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -18562,7 +17925,7 @@ Appears In: -body
Ingress +body
Ingress @@ -18596,28 +17959,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified Ingress

HTTP Request

@@ -18632,11 +17991,11 @@ Appears In: -name +name name of the Ingress -namespace +namespace object name and auth scope, such as for teams and projects @@ -18651,7 +18010,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -18666,7 +18025,7 @@ Appears In: -body
Patch +body
Patch @@ -18692,28 +18051,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified Ingress

HTTP Request

@@ -18728,11 +18083,11 @@ Appears In: -name +name name of the Ingress -namespace +namespace object name and auth scope, such as for teams and projects @@ -18747,7 +18102,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -18762,7 +18117,7 @@ Appears In: -body
Ingress +body
Ingress @@ -18777,13 +18132,13 @@ Appears In: -201
Ingress -Created - - 200
Ingress OK + +201
Ingress +Created +

Delete

@@ -18792,28 +18147,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete an Ingress

HTTP Request

@@ -18828,11 +18179,11 @@ Appears In: -name +name name of the Ingress -namespace +namespace object name and auth scope, such as for teams and projects @@ -18847,19 +18198,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -18874,7 +18225,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -18900,28 +18251,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of Ingress

HTTP Request

@@ -18936,7 +18283,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -18951,39 +18298,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -19011,28 +18358,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified Ingress

HTTP Request

@@ -19047,11 +18390,11 @@ Appears In: -name +name name of the Ingress -namespace +namespace object name and auth scope, such as for teams and projects @@ -19066,15 +18409,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -19100,28 +18443,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Ingress

HTTP Request

@@ -19136,7 +18475,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -19151,39 +18490,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -19209,28 +18548,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Ingress

HTTP Request

@@ -19245,39 +18580,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -19303,28 +18638,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind Ingress

HTTP Request

@@ -19339,11 +18670,11 @@ Appears In: -name +name name of the Ingress -namespace +namespace object name and auth scope, such as for teams and projects @@ -19358,39 +18689,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -19416,28 +18747,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Ingress

HTTP Request

@@ -19452,7 +18779,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -19467,39 +18794,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -19525,28 +18852,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Ingress

HTTP Request

@@ -19561,39 +18884,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -19621,28 +18944,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified Ingress

HTTP Request

@@ -19657,11 +18976,11 @@ Appears In: -name +name name of the Ingress -namespace +namespace object name and auth scope, such as for teams and projects @@ -19676,7 +18995,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -19691,7 +19010,7 @@ Appears In: -body
Patch +body
Patch @@ -19717,28 +19036,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified Ingress

HTTP Request

@@ -19753,11 +19068,11 @@ Appears In: -name +name name of the Ingress -namespace +namespace object name and auth scope, such as for teams and projects @@ -19772,7 +19087,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -19798,28 +19113,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified Ingress

HTTP Request

@@ -19834,11 +19145,11 @@ Appears In: -name +name name of the Ingress -namespace +namespace object name and auth scope, such as for teams and projects @@ -19853,7 +19164,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -19868,7 +19179,7 @@ Appears In: -body
Ingress +body
Ingress @@ -19883,17 +19194,17 @@ Appears In: -200
Ingress -OK - - 201
Ingress Created + +200
Ingress +OK +
-

Service v1 core

+

Service [core/v1]

Service Config to load balance traffic across all Pods with the app=nginx label. Receives on and sends to port 80. Exposes an externally accessible endpoint.

@@ -19917,8 +19228,6 @@ spec: # with an External IP address - *Only supported # by some cloud providers* type: LoadBalancer - -

Service Config to load balance traffic across all Pods with the app=nginx label. Receives on and sends to port 80. Exposes an externally accessible endpoint.

@@ -19943,8 +19252,6 @@ spec: # with an External IP address - *Only supported # by some cloud providers* type: LoadBalancer - -
@@ -19956,9 +19263,9 @@ spec: - - - + + +
Corev1Servicecorev1Service
@@ -19979,23 +19286,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
ServiceSpec +spec
ServiceSpec Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status -status
ServiceStatus +status
ServiceStatus Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -20017,55 +19324,55 @@ Appears In: -clusterIP
string +clusterIP
string clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are "None", empty string (""), or a valid IP address. "None" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies -externalIPs
string array +externalIPs
string array externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. -externalName
string +externalName
string externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName. -externalTrafficPolicy
string +externalTrafficPolicy
string externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. "Local" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. "Cluster" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading. -healthCheckNodePort
integer +healthCheckNodePort
integer healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local. -loadBalancerIP
string +loadBalancerIP
string Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature. -loadBalancerSourceRanges
string array +loadBalancerSourceRanges
string array If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/ -ports
ServicePort array
patch type: merge
patch merge key: port +ports
ServicePort array
patch type: merge
patch merge key: port The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies -publishNotReadyAddresses
boolean +publishNotReadyAddresses
boolean publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery. This field will replace the service.alpha.kubernetes.io/tolerate-unready-endpoints when that annotation is deprecated and all clients have been converted to use this field. -selector
object +selector
object Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/ -sessionAffinity
string +sessionAffinity
string Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies -sessionAffinityConfig
SessionAffinityConfig +sessionAffinityConfig
SessionAffinityConfig sessionAffinityConfig contains the configurations of session affinity. -type
string +type
string type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types @@ -20087,7 +19394,7 @@ Appears In: -loadBalancer
LoadBalancerStatus +loadBalancer
LoadBalancerStatus LoadBalancer contains the current status of the load-balancer, if one is present. @@ -20102,19 +19409,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
Service array +items
Service array List of services -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -20139,7 +19446,6 @@ $ echo 'kind: Service app: nginx type: LoadBalancer ' | kubectl create -f - -

curl Command (requires kubectl proxy to be running)

@@ -20160,14 +19466,12 @@ spec: app: nginx type: LoadBalancer ' http://127.0.0.1:8001/api/v1/namespaces/default/services -

Output


 service "service-example" created
-
 

Response Body

@@ -20205,7 +19509,6 @@ service "service-example" created "loadBalancer": {} } } -

create a Service

HTTP Request

@@ -20220,7 +19523,7 @@ service "service-example" created -namespace +namespace object name and auth scope, such as for teams and projects @@ -20235,7 +19538,7 @@ service "service-example" created -pretty +pretty If 'true', then the output is pretty printed. @@ -20250,7 +19553,7 @@ service "service-example" created -body
Service +body
Service @@ -20265,10 +19568,6 @@ service "service-example" created -200
Service -OK - - 201
Service Created @@ -20276,6 +19575,10 @@ service "service-example" created 202
Service Accepted + +200
Service +OK +

Patch

@@ -20285,7 +19588,6 @@ service "service-example" created

 $ kubectl patch service  -p \
     '{"spec":{"ports":[{"name":"http","port":80,"targetPort":8080}]}}'
-
 

curl Command (requires kubectl proxy to be running)

@@ -20294,15 +19596,13 @@ $ kubectl patch servicemerge-patch+json' --data ' {"spec":{"ports":[{"name":"http","port":80,"targetPort":8080}]}}' \ - 'http://127.0.0.1:8001/api/v1/namespaces/default/services/' - + 'http://127.0.0.1:8001/api/v1/namespaces/default/services/'

Output


 "" patched
-
 

Response Body

@@ -20346,7 +19646,6 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-HTTP Request @@ -20361,11 +19660,11 @@ $ curl -X PATCH -H 'Content-Type: application/strategic- -pretty +pretty If 'true', then the output is pretty printed. @@ -20395,7 +19694,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Patch +body
Patch @@ -20438,40 +19737,37 @@ spec: sessionAffinity: None type: LoadBalancer ' | kubectl replace -f - -

curl Command (requires kubectl proxy to be running)


-$ kubectl proxy
-$ curl -X PUT -H 'Content-Type: application/yaml' --data '
+$ kubectl proxy
+$ curl -X PUT -H 'Content-Type: application/yaml' --data '
 apiVersion: v1
 kind: Service
 metadata:
   name: deployment-example
-  resourceVersion: "2205995"
+  resourceVersion: "2205995"
 spec:
-  clusterIP: 10.183.250.161
+  clusterIP: 10.183.250.161
   ports:
   - name: http
-    nodePort: 32417
-    port: 80
+    nodePort: 32417
+    port: 80
     protocol: TCP
-    targetPort: 8080
+    targetPort: 8080
   selector:
     app: nginx
   sessionAffinity: None
-  type: LoadBalancer
-' http://127.0.0.1:8001/api/v1/namespaces/default/services/deployment-example
-
+  type: LoadBalancer
+' http://127.0.0.1:8001/api/v1/namespaces/default/services/deployment-example
 

Output


 service "deployment-example" replaced
-
 

Response Body

@@ -20515,7 +19811,6 @@ service "deployment-example" replaced } } } -

replace the specified Service

HTTP Request

@@ -20530,11 +19825,11 @@ service "deployment-example" replaced -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -20549,7 +19844,7 @@ service "deployment-example" replaced -pretty +pretty If 'true', then the output is pretty printed. @@ -20564,7 +19859,7 @@ service "deployment-example" replaced -body
Service +body
Service @@ -20579,13 +19874,13 @@ service "deployment-example" replaced -200
Service -OK - - 201
Service Created + +200
Service +OK +

Delete

@@ -20594,7 +19889,6 @@ service "deployment-example" replaced

 $ kubectl delete service deployment-example
-
 

curl Command (requires kubectl proxy to be running)

@@ -20604,15 +19898,13 @@ $ kubectl proxy $ curl -X DELETE -H 'Content-Type: application/yaml' --data ' gracePeriodSeconds: 0 orphanDependents: false -' 'http://127.0.0.1:8001/api/v1/namespaces/default/services/deployment-example' - +' 'http://127.0.0.1:8001/api/v1/namespaces/default/services/deployment-example'

Output


 service "deployment-example" deleted
-
 

Response Body

@@ -20625,8 +19917,6 @@ service "deployment-example" deleted "status": "Success", "code": 200 } - -

delete a Service

HTTP Request

@@ -20641,11 +19931,11 @@ service "deployment-example" deleted -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -20660,19 +19950,19 @@ service "deployment-example" deleted -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -20687,7 +19977,7 @@ service "deployment-example" deleted -body
DeleteOptions +body
DeleteOptions @@ -20715,15 +20005,13 @@ service "deployment-example" deleted

 $ kubectl get service deployment-example -o json
-
 

curl Command (requires kubectl proxy to be running)


-$ kubectl proxy
-$ curl -X GET http://127.0.0.1:8001/api/v1/namespaces/default/services/deployment-example
-
+$ kubectl proxy
+$ curl -X GET http://127.0.0.1:8001/api/v1/namespaces/default/services/deployment-example
 

Output

@@ -20767,7 +20055,6 @@ $ curl -X GET http:// } } } -

Response Body

@@ -20811,7 +20098,6 @@ $ curl -X GET http:// } } } -

read the specified Service

HTTP Request

@@ -20826,11 +20112,11 @@ $ curl -X GET http:// -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -20845,15 +20131,15 @@ $ curl -X GET http:// -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -20879,7 +20165,6 @@ $ curl -X GET http://

 $ kubectl get service -o json
-
 

curl Command (requires kubectl proxy to be running)

@@ -20887,21 +20172,16 @@ $ kubectl get

 $ kubectl proxy
 $ curl -X GET 'http://127.0.0.1:8001/api/v1/namespaces/default/services'
-
 

Output


-
-
 

Response Body


-
-
 

list or watch objects of kind Service

HTTP Request

@@ -20916,7 +20196,7 @@ $
kubectl proxy -namespace +namespace object name and auth scope, such as for teams and projects @@ -20931,39 +20211,39 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -20989,28 +20269,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Service

HTTP Request

@@ -21025,39 +20301,39 @@ $
kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -21083,7 +20359,6 @@ $ kubectl proxy

 $ kubectl get service deployment-example --watch -o json
-
 

curl Command (requires kubectl proxy to be running)

@@ -21091,7 +20366,6 @@ $ kubectl get

 $ kubectl proxy
 $ curl -X GET 'http://127.0.0.1:8001/api/v1/watch/namespaces/default/services/deployment-example'
-
 

Output

@@ -21138,7 +20412,6 @@ $ kubectl proxy } } } -

Response Body

@@ -21185,7 +20458,6 @@ $ kubectl proxy } } } -

watch changes to an object of kind Service

HTTP Request

@@ -21200,11 +20472,11 @@ $ kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -21219,39 +20491,39 @@ $ kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -21277,28 +20549,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Service

HTTP Request

@@ -21313,7 +20581,7 @@ $ kubectl proxy -namespace +namespace object name and auth scope, such as for teams and projects @@ -21328,39 +20596,39 @@ $ kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -21386,28 +20654,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Service

HTTP Request

@@ -21422,39 +20686,39 @@ $
kubectl proxy -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -21482,28 +20746,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified Service

HTTP Request

@@ -21518,11 +20778,11 @@ $ kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -21537,7 +20797,7 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -21552,7 +20812,7 @@ $ kubectl proxy -body
Patch +body
Patch @@ -21578,28 +20838,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified Service

HTTP Request

@@ -21614,11 +20870,11 @@ $
kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -21633,7 +20889,7 @@ $
kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -21659,28 +20915,24 @@ $
kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified Service

HTTP Request

@@ -21695,11 +20947,11 @@ $ kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -21714,7 +20966,7 @@ $ kubectl proxy -pretty +pretty If 'true', then the output is pretty printed. @@ -21729,7 +20981,7 @@ $ kubectl proxy -body
Service +body
Service @@ -21761,28 +21013,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect POST requests to proxy of Service

HTTP Request

@@ -21797,11 +21045,11 @@ $ kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -21816,7 +21064,7 @@ $ kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -21842,28 +21090,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect POST requests to proxy of Service

HTTP Request

@@ -21878,15 +21122,15 @@ $ kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -21901,7 +21145,7 @@ $ kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -21927,28 +21171,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect DELETE requests to proxy of Service

HTTP Request

@@ -21963,11 +21203,11 @@ $ kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -21982,7 +21222,7 @@ $ kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -22008,28 +21248,24 @@ $ kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect DELETE requests to proxy of Service

HTTP Request

@@ -22044,15 +21280,15 @@ $
kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -22067,7 +21303,7 @@ $
kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -22093,28 +21329,24 @@ $
kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect GET requests to proxy of Service

HTTP Request

@@ -22129,11 +21361,11 @@ $
kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -22148,7 +21380,7 @@ $
kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -22174,28 +21406,24 @@ $
kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect GET requests to proxy of Service

HTTP Request

@@ -22210,15 +21438,15 @@ $
kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -22233,7 +21461,7 @@ $
kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -22259,28 +21487,24 @@ $
kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect HEAD requests to proxy of Service

HTTP Request

@@ -22295,11 +21519,11 @@ $
kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -22314,7 +21538,7 @@ $
kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -22340,28 +21564,24 @@ $
kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect HEAD requests to proxy of Service

HTTP Request

@@ -22376,15 +21596,15 @@ $
kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -22399,7 +21619,7 @@ $
kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -22425,28 +21645,24 @@ $
kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect PUT requests to proxy of Service

HTTP Request

@@ -22461,11 +21677,11 @@ $
kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects @@ -22480,7 +21696,7 @@ $
kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -22506,28 +21722,24 @@ $
kubectl proxy

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

connect PUT requests to proxy of Service

HTTP Request

@@ -22542,15 +21754,15 @@ $
kubectl proxy -name +name name of the Service -namespace +namespace object name and auth scope, such as for teams and projects -path +path path to the resource @@ -22565,7 +21777,7 @@ $
kubectl proxy -path +path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -22595,7 +21807,7 @@ $
kubectl proxy

-

ConfigMap v1 core

+

ConfigMap [core/v1]

@@ -22606,9 +21818,9 @@ $ kubectl proxy - - - + + +
Corev1ConfigMapcorev1ConfigMap
@@ -22629,23 +21841,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -binaryData
object +binaryData
object BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet. -data
object +data
object Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -22660,19 +21872,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
ConfigMap array +items
ConfigMap array Items is the list of ConfigMaps. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -22685,28 +21897,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a ConfigMap

HTTP Request

@@ -22721,7 +21929,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -22736,7 +21944,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -22751,7 +21959,7 @@ Appears In: -body
ConfigMap +body
ConfigMap @@ -22785,28 +21993,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified ConfigMap

HTTP Request

@@ -22821,11 +22025,11 @@ Appears In: -name +name name of the ConfigMap -namespace +namespace object name and auth scope, such as for teams and projects @@ -22840,7 +22044,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -22855,7 +22059,7 @@ Appears In: -body
Patch +body
Patch @@ -22881,28 +22085,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified ConfigMap

HTTP Request

@@ -22917,11 +22117,11 @@ Appears In: -name +name name of the ConfigMap -namespace +namespace object name and auth scope, such as for teams and projects @@ -22936,7 +22136,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -22951,7 +22151,7 @@ Appears In: -body
ConfigMap +body
ConfigMap @@ -22981,28 +22181,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a ConfigMap

HTTP Request

@@ -23017,11 +22213,11 @@ Appears In: -name +name name of the ConfigMap -namespace +namespace object name and auth scope, such as for teams and projects @@ -23036,19 +22232,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -23063,7 +22259,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -23089,28 +22285,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of ConfigMap

HTTP Request

@@ -23125,7 +22317,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -23140,39 +22332,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -23200,28 +22392,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified ConfigMap

HTTP Request

@@ -23236,11 +22424,11 @@ Appears In: -name +name name of the ConfigMap -namespace +namespace object name and auth scope, such as for teams and projects @@ -23255,15 +22443,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -23289,28 +22477,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind ConfigMap

HTTP Request

@@ -23325,7 +22509,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -23340,39 +22524,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -23398,28 +22582,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind ConfigMap

HTTP Request

@@ -23434,39 +22614,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -23492,28 +22672,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind ConfigMap

HTTP Request

@@ -23528,11 +22704,11 @@ Appears In: -name +name name of the ConfigMap -namespace +namespace object name and auth scope, such as for teams and projects @@ -23547,39 +22723,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -23605,28 +22781,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of ConfigMap

HTTP Request

@@ -23641,7 +22813,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -23656,39 +22828,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -23714,28 +22886,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of ConfigMap

HTTP Request

@@ -23750,39 +22918,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -23803,7 +22971,7 @@ Appears In:
-

Secret v1 core

+

Secret [core/v1]

@@ -23814,9 +22982,9 @@ Appears In: - - - + + +
Corev1Secretcorev1Secret
@@ -23837,27 +23005,27 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -data
object +data
object Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4 -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -stringData
object +stringData
object stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. -type
string +type
string Used to facilitate programmatic handling of secret data. @@ -23872,19 +23040,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
Secret array +items
Secret array Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -23897,28 +23065,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a Secret

HTTP Request

@@ -23933,7 +23097,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -23948,7 +23112,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -23963,7 +23127,7 @@ Appears In: -body
Secret +body
Secret @@ -23997,28 +23161,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified Secret

HTTP Request

@@ -24033,11 +23193,11 @@ Appears In: -name +name name of the Secret -namespace +namespace object name and auth scope, such as for teams and projects @@ -24052,7 +23212,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -24067,7 +23227,7 @@ Appears In: -body
Patch +body
Patch @@ -24093,28 +23253,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified Secret

HTTP Request

@@ -24129,11 +23285,11 @@ Appears In: -name +name name of the Secret -namespace +namespace object name and auth scope, such as for teams and projects @@ -24148,7 +23304,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -24163,7 +23319,7 @@ Appears In: -body
Secret +body
Secret @@ -24178,13 +23334,13 @@ Appears In: -200
Secret -OK - - 201
Secret Created + +200
Secret +OK +

Delete

@@ -24193,28 +23349,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a Secret

HTTP Request

@@ -24229,11 +23381,11 @@ Appears In: -name +name name of the Secret -namespace +namespace object name and auth scope, such as for teams and projects @@ -24248,19 +23400,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -24275,7 +23427,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -24301,28 +23453,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of Secret

HTTP Request

@@ -24337,7 +23485,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -24352,39 +23500,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -24412,28 +23560,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified Secret

HTTP Request

@@ -24448,11 +23592,11 @@ Appears In: -name +name name of the Secret -namespace +namespace object name and auth scope, such as for teams and projects @@ -24467,15 +23611,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -24501,28 +23645,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Secret

HTTP Request

@@ -24537,7 +23677,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -24552,39 +23692,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -24610,28 +23750,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Secret

HTTP Request

@@ -24646,39 +23782,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -24704,28 +23840,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind Secret

HTTP Request

@@ -24740,11 +23872,11 @@ Appears In: -name +name name of the Secret -namespace +namespace object name and auth scope, such as for teams and projects @@ -24759,39 +23891,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -24817,28 +23949,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Secret

HTTP Request

@@ -24853,7 +23981,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -24868,39 +23996,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -24926,28 +24054,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Secret

HTTP Request

@@ -24962,39 +24086,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -25015,7 +24139,7 @@ Appears In:
-

PersistentVolumeClaim v1 core

+

PersistentVolumeClaim [core/v1]

@@ -25026,9 +24150,9 @@ Appears In: - - - + + +
Corev1PersistentVolumeClaimcorev1PersistentVolumeClaim
@@ -25057,23 +24181,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
PersistentVolumeClaimSpec +spec
PersistentVolumeClaimSpec Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims -status
PersistentVolumeClaimStatus +status
PersistentVolumeClaimStatus Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims @@ -25095,27 +24219,27 @@ Appears In: -accessModes
string array +accessModes
string array AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 -resources
ResourceRequirements +resources
ResourceRequirements Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources -selector
LabelSelector +selector
LabelSelector A label query over volumes to consider for binding. -storageClassName
string +storageClassName
string Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 -volumeMode
string +volumeMode
string volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is an alpha feature and may change in the future. -volumeName
string +volumeName
string VolumeName is the binding reference to the PersistentVolume backing this claim. @@ -25137,19 +24261,19 @@ Appears In: -accessModes
string array +accessModes
string array AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 -capacity
object +capacity
object Represents the actual resources of the underlying volume. -conditions
PersistentVolumeClaimCondition array
patch type: merge
patch merge key: type +conditions
PersistentVolumeClaimCondition array
patch type: merge
patch merge key: type Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'. -phase
string +phase
string Phase represents the current phase of PersistentVolumeClaim. @@ -25164,19 +24288,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
PersistentVolumeClaim array +items
PersistentVolumeClaim array A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -25189,28 +24313,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a PersistentVolumeClaim

HTTP Request

@@ -25225,7 +24345,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -25240,7 +24360,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -25255,7 +24375,7 @@ Appears In: -body
PersistentVolumeClaim +body
PersistentVolumeClaim @@ -25289,28 +24409,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified PersistentVolumeClaim

HTTP Request

@@ -25325,11 +24441,11 @@ Appears In: -name +name name of the PersistentVolumeClaim -namespace +namespace object name and auth scope, such as for teams and projects @@ -25344,7 +24460,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -25359,7 +24475,7 @@ Appears In: -body
Patch +body
Patch @@ -25385,28 +24501,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified PersistentVolumeClaim

HTTP Request

@@ -25421,11 +24533,11 @@ Appears In: -name +name name of the PersistentVolumeClaim -namespace +namespace object name and auth scope, such as for teams and projects @@ -25440,7 +24552,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -25455,7 +24567,7 @@ Appears In: -body
PersistentVolumeClaim +body
PersistentVolumeClaim @@ -25470,13 +24582,13 @@ Appears In: -200
PersistentVolumeClaim -OK - - 201
PersistentVolumeClaim Created + +200
PersistentVolumeClaim +OK +

Delete

@@ -25485,28 +24597,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a PersistentVolumeClaim

HTTP Request

@@ -25521,11 +24629,11 @@ Appears In: -name +name name of the PersistentVolumeClaim -namespace +namespace object name and auth scope, such as for teams and projects @@ -25540,19 +24648,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -25567,7 +24675,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -25593,28 +24701,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of PersistentVolumeClaim

HTTP Request

@@ -25629,7 +24733,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -25644,39 +24748,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -25704,28 +24808,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified PersistentVolumeClaim

HTTP Request

@@ -25740,11 +24840,11 @@ Appears In: -name +name name of the PersistentVolumeClaim -namespace +namespace object name and auth scope, such as for teams and projects @@ -25759,15 +24859,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -25793,28 +24893,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind PersistentVolumeClaim

HTTP Request

@@ -25829,7 +24925,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -25844,39 +24940,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -25902,28 +24998,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind PersistentVolumeClaim

HTTP Request

@@ -25938,39 +25030,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -25996,28 +25088,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind PersistentVolumeClaim

HTTP Request

@@ -26032,11 +25120,11 @@ Appears In: -name +name name of the PersistentVolumeClaim -namespace +namespace object name and auth scope, such as for teams and projects @@ -26051,39 +25139,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -26109,28 +25197,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of PersistentVolumeClaim

HTTP Request

@@ -26145,7 +25229,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -26160,39 +25244,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -26218,28 +25302,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of PersistentVolumeClaim

HTTP Request

@@ -26254,39 +25334,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -26314,28 +25394,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified PersistentVolumeClaim

HTTP Request

@@ -26350,11 +25426,11 @@ Appears In: -name +name name of the PersistentVolumeClaim -namespace +namespace object name and auth scope, such as for teams and projects @@ -26369,7 +25445,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -26384,7 +25460,7 @@ Appears In: -body
Patch +body
Patch @@ -26410,28 +25486,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified PersistentVolumeClaim

HTTP Request

@@ -26446,11 +25518,11 @@ Appears In: -name +name name of the PersistentVolumeClaim -namespace +namespace object name and auth scope, such as for teams and projects @@ -26465,7 +25537,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -26491,28 +25563,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified PersistentVolumeClaim

HTTP Request

@@ -26527,11 +25595,11 @@ Appears In: -name +name name of the PersistentVolumeClaim -namespace +namespace object name and auth scope, such as for teams and projects @@ -26546,7 +25614,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -26561,7 +25629,7 @@ Appears In: -body
PersistentVolumeClaim +body
PersistentVolumeClaim @@ -26576,17 +25644,17 @@ Appears In: -201
PersistentVolumeClaim -Created - - 200
PersistentVolumeClaim OK + +201
PersistentVolumeClaim +Created +
-

StorageClass v1 storage

+

StorageClass [storage.k8s.io/v1]

@@ -26597,9 +25665,9 @@ Appears In: - - - + + +
storagev1StorageClassstorage.k8s.iov1StorageClass
@@ -26624,39 +25692,39 @@ Appears In: -allowVolumeExpansion
boolean +allowVolumeExpansion
boolean AllowVolumeExpansion shows whether the storage class allow volume expand -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -mountOptions
string array +mountOptions
string array Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid. -parameters
object +parameters
object Parameters holds the parameters for the provisioner that should create volumes of this storage class. -provisioner
string +provisioner
string Provisioner indicates the type of the provisioner. -reclaimPolicy
string +reclaimPolicy
string Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete. -volumeBindingMode
string +volumeBindingMode
string VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is alpha-level and is only honored by servers that enable the VolumeScheduling feature. @@ -26671,19 +25739,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
StorageClass array +items
StorageClass array Items is the list of StorageClasses -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -26696,28 +25764,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a StorageClass

HTTP Request

@@ -26732,7 +25796,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -26747,7 +25811,7 @@ Appears In: -body
StorageClass +body
StorageClass @@ -26781,28 +25845,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified StorageClass

HTTP Request

@@ -26817,7 +25877,7 @@ Appears In: -name +name name of the StorageClass @@ -26832,7 +25892,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -26847,7 +25907,7 @@ Appears In: -body
Patch +body
Patch @@ -26873,28 +25933,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified StorageClass

HTTP Request

@@ -26909,7 +25965,7 @@ Appears In: -name +name name of the StorageClass @@ -26924,7 +25980,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -26939,7 +25995,7 @@ Appears In: -body
StorageClass +body
StorageClass @@ -26969,28 +26025,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a StorageClass

HTTP Request

@@ -27005,7 +26057,7 @@ Appears In: -name +name name of the StorageClass @@ -27020,19 +26072,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -27047,7 +26099,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -27073,28 +26125,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of StorageClass

HTTP Request

@@ -27109,39 +26157,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -27169,28 +26217,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified StorageClass

HTTP Request

@@ -27205,7 +26249,7 @@ Appears In: -name +name name of the StorageClass @@ -27220,15 +26264,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -27254,28 +26298,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind StorageClass

HTTP Request

@@ -27290,39 +26330,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -27348,28 +26388,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind StorageClass

HTTP Request

@@ -27384,7 +26420,7 @@ Appears In: -name +name name of the StorageClass @@ -27399,39 +26435,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -27457,28 +26493,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of StorageClass

HTTP Request

@@ -27493,39 +26525,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -27546,7 +26578,7 @@ Appears In:
-

Volume v1 core

+

Volume [core/v1]

@@ -27557,9 +26589,9 @@ Appears In: - - - + + +
Corev1Volumecorev1Volume
@@ -27581,121 +26613,121 @@ Appears In: -awsElasticBlockStore
AWSElasticBlockStoreVolumeSource +awsElasticBlockStore
AWSElasticBlockStoreVolumeSource AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore -azureDisk
AzureDiskVolumeSource +azureDisk
AzureDiskVolumeSource AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. -azureFile
AzureFileVolumeSource +azureFile
AzureFileVolumeSource AzureFile represents an Azure File Service mount on the host and bind mount to the pod. -cephfs
CephFSVolumeSource +cephfs
CephFSVolumeSource CephFS represents a Ceph FS mount on the host that shares a pod's lifetime -cinder
CinderVolumeSource +cinder
CinderVolumeSource Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md -configMap
ConfigMapVolumeSource +configMap
ConfigMapVolumeSource ConfigMap represents a configMap that should populate this volume -downwardAPI
DownwardAPIVolumeSource +downwardAPI
DownwardAPIVolumeSource DownwardAPI represents downward API about the pod that should populate this volume -emptyDir
EmptyDirVolumeSource +emptyDir
EmptyDirVolumeSource EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir -fc
FCVolumeSource +fc
FCVolumeSource FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. -flexVolume
FlexVolumeSource +flexVolume
FlexVolumeSource FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. -flocker
FlockerVolumeSource +flocker
FlockerVolumeSource Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running -gcePersistentDisk
GCEPersistentDiskVolumeSource +gcePersistentDisk
GCEPersistentDiskVolumeSource GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk -gitRepo
GitRepoVolumeSource +gitRepo
GitRepoVolumeSource GitRepo represents a git repository at a particular revision. -glusterfs
GlusterfsVolumeSource +glusterfs
GlusterfsVolumeSource Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md -hostPath
HostPathVolumeSource +hostPath
HostPathVolumeSource HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath -iscsi
ISCSIVolumeSource +iscsi
ISCSIVolumeSource ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md -name
string +name
string Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names -nfs
NFSVolumeSource +nfs
NFSVolumeSource NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs -persistentVolumeClaim
PersistentVolumeClaimVolumeSource +persistentVolumeClaim
PersistentVolumeClaimVolumeSource PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims -photonPersistentDisk
PhotonPersistentDiskVolumeSource +photonPersistentDisk
PhotonPersistentDiskVolumeSource PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine -portworxVolume
PortworxVolumeSource +portworxVolume
PortworxVolumeSource PortworxVolume represents a portworx volume attached and mounted on kubelets host machine -projected
ProjectedVolumeSource +projected
ProjectedVolumeSource Items for all in one resources secrets, configmaps, and downward API -quobyte
QuobyteVolumeSource +quobyte
QuobyteVolumeSource Quobyte represents a Quobyte mount on the host that shares a pod's lifetime -rbd
RBDVolumeSource +rbd
RBDVolumeSource RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md -scaleIO
ScaleIOVolumeSource +scaleIO
ScaleIOVolumeSource ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. -secret
SecretVolumeSource +secret
SecretVolumeSource Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret -storageos
StorageOSVolumeSource +storageos
StorageOSVolumeSource StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. -vsphereVolume
VsphereVirtualDiskVolumeSource +vsphereVolume
VsphereVirtualDiskVolumeSource VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
-

VolumeAttachment v1alpha1 storage

+

VolumeAttachment [storage.k8s.io/v1alpha1]

@@ -27706,9 +26738,9 @@ Appears In: - - - + + +
storagev1alpha1VolumeAttachmentstorage.k8s.iov1alpha1VolumeAttachment
@@ -27733,23 +26765,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
VolumeAttachmentSpec +spec
VolumeAttachmentSpec Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system. -status
VolumeAttachmentStatus +status
VolumeAttachmentStatus Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher. @@ -27771,15 +26803,15 @@ Appears In: -attacher
string +attacher
string Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName(). -nodeName
string +nodeName
string The node that the volume should be attached to. -source
VolumeAttachmentSource +source
VolumeAttachmentSource Source represents the volume that should be attached. @@ -27801,19 +26833,19 @@ Appears In: -attachError
VolumeError +attachError
VolumeError The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. -attached
boolean +attached
boolean Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. -attachmentMetadata
object +attachmentMetadata
object Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. -detachError
VolumeError +detachError
VolumeError The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher. @@ -27828,19 +26860,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
VolumeAttachment array +items
VolumeAttachment array Items is the list of VolumeAttachments -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -27853,28 +26885,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a VolumeAttachment

HTTP Request

@@ -27889,7 +26917,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -27904,7 +26932,7 @@ Appears In: -body
VolumeAttachment +body
VolumeAttachment @@ -27938,28 +26966,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified VolumeAttachment

HTTP Request

@@ -27974,7 +26998,7 @@ Appears In: -name +name name of the VolumeAttachment @@ -27989,7 +27013,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -28004,7 +27028,7 @@ Appears In: -body
Patch +body
Patch @@ -28030,28 +27054,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified VolumeAttachment

HTTP Request

@@ -28066,7 +27086,7 @@ Appears In: -name +name name of the VolumeAttachment @@ -28081,7 +27101,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -28096,7 +27116,7 @@ Appears In: -body
VolumeAttachment +body
VolumeAttachment @@ -28126,28 +27146,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a VolumeAttachment

HTTP Request

@@ -28162,7 +27178,7 @@ Appears In: -name +name name of the VolumeAttachment @@ -28177,19 +27193,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -28204,7 +27220,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -28230,28 +27246,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of VolumeAttachment

HTTP Request

@@ -28266,39 +27278,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -28326,28 +27338,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified VolumeAttachment

HTTP Request

@@ -28362,7 +27370,7 @@ Appears In: -name +name name of the VolumeAttachment @@ -28377,15 +27385,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -28411,28 +27419,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind VolumeAttachment

HTTP Request

@@ -28447,39 +27451,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -28505,28 +27509,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind VolumeAttachment

HTTP Request

@@ -28541,7 +27541,7 @@ Appears In: -name +name name of the VolumeAttachment @@ -28556,39 +27556,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -28614,28 +27614,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of VolumeAttachment

HTTP Request

@@ -28650,39 +27646,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -28713,7 +27709,7 @@ Appears In:

-

ControllerRevision v1 apps

+

ControllerRevision [apps/v1]

@@ -28724,9 +27720,9 @@ Appears In: - - - + + +
appsv1ControllerRevisionappsv1ControllerRevision
@@ -28750,23 +27746,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -data +data Data is the serialized representation of the state. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -revision
integer +revision
integer Revision indicates the revision of the state represented by Data. @@ -28781,19 +27777,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
ControllerRevision array +items
ControllerRevision array Items is the list of ControllerRevisions -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -28806,28 +27802,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a ControllerRevision

HTTP Request

@@ -28842,7 +27834,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -28857,7 +27849,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -28872,7 +27864,7 @@ Appears In: -body
ControllerRevision +body
ControllerRevision @@ -28906,28 +27898,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified ControllerRevision

HTTP Request

@@ -28942,11 +27930,11 @@ Appears In: -name +name name of the ControllerRevision -namespace +namespace object name and auth scope, such as for teams and projects @@ -28961,7 +27949,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -28976,7 +27964,7 @@ Appears In: -body
Patch +body
Patch @@ -29002,28 +27990,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified ControllerRevision

HTTP Request

@@ -29038,11 +28022,11 @@ Appears In: -name +name name of the ControllerRevision -namespace +namespace object name and auth scope, such as for teams and projects @@ -29057,7 +28041,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -29072,7 +28056,7 @@ Appears In: -body
ControllerRevision +body
ControllerRevision @@ -29102,28 +28086,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a ControllerRevision

HTTP Request

@@ -29138,11 +28118,11 @@ Appears In: -name +name name of the ControllerRevision -namespace +namespace object name and auth scope, such as for teams and projects @@ -29157,19 +28137,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -29184,7 +28164,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -29210,28 +28190,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of ControllerRevision

HTTP Request

@@ -29246,7 +28222,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -29261,39 +28237,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -29321,28 +28297,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified ControllerRevision

HTTP Request

@@ -29357,11 +28329,11 @@ Appears In: -name +name name of the ControllerRevision -namespace +namespace object name and auth scope, such as for teams and projects @@ -29376,15 +28348,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -29410,28 +28382,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind ControllerRevision

HTTP Request

@@ -29446,7 +28414,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -29461,39 +28429,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -29519,28 +28487,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind ControllerRevision

HTTP Request

@@ -29555,39 +28519,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -29613,28 +28577,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind ControllerRevision

HTTP Request

@@ -29649,11 +28609,11 @@ Appears In: -name +name name of the ControllerRevision -namespace +namespace object name and auth scope, such as for teams and projects @@ -29668,39 +28628,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -29726,28 +28686,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of ControllerRevision

HTTP Request

@@ -29762,7 +28718,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -29777,39 +28733,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -29835,28 +28791,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of ControllerRevision

HTTP Request

@@ -29871,39 +28823,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -29924,7 +28876,7 @@ Appears In:
-

CustomResourceDefinition v1beta1 apiextensions

+

CustomResourceDefinition [apiextensions.k8s.io/v1beta1]

@@ -29935,9 +28887,9 @@ Appears In: - - - + + +
apiextensionsv1beta1CustomResourceDefinitionapiextensions.k8s.iov1beta1CustomResourceDefinition
@@ -29958,23 +28910,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta -spec
CustomResourceDefinitionSpec +spec
CustomResourceDefinitionSpec Spec describes how the user wants the resources to appear -status
CustomResourceDefinitionStatus +status
CustomResourceDefinitionStatus Status indicates the actual state of the CustomResourceDefinition @@ -29996,27 +28948,27 @@ Appears In: -group
string +group
string Group is the group this resource belongs in -names
CustomResourceDefinitionNames +names
CustomResourceDefinitionNames Names are the names used to describe this custom resource -scope
string +scope
string Scope indicates whether this resource is cluster or namespace scoped. Default is namespaced -subresources
CustomResourceSubresources +subresources
CustomResourceSubresources Subresources describes the subresources for CustomResources This field is alpha-level and should only be sent to servers that enable subresources via the CustomResourceSubresources feature gate. -validation
CustomResourceValidation +validation
CustomResourceValidation Validation describes the validation methods for CustomResources -version
string +version
string Version is the version this resource belongs in @@ -30038,11 +28990,11 @@ Appears In: -acceptedNames
CustomResourceDefinitionNames +acceptedNames
CustomResourceDefinitionNames AcceptedNames are the names that are actually being used to serve discovery They may be different than the names in spec. -conditions
CustomResourceDefinitionCondition array +conditions
CustomResourceDefinitionCondition array Conditions indicate state for particular aspects of a CustomResourceDefinition @@ -30057,19 +29009,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
CustomResourceDefinition array +items
CustomResourceDefinition array Items individual CustomResourceDefinitions -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta @@ -30082,28 +29034,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a CustomResourceDefinition

HTTP Request

@@ -30118,7 +29066,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -30133,7 +29081,7 @@ Appears In: -body
CustomResourceDefinition +body
CustomResourceDefinition @@ -30148,6 +29096,10 @@ Appears In: +202
CustomResourceDefinition +Accepted + + 200
CustomResourceDefinition OK @@ -30155,10 +29107,6 @@ Appears In: 201
CustomResourceDefinition Created - -202
CustomResourceDefinition -Accepted -

Patch

@@ -30167,28 +29115,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified CustomResourceDefinition

HTTP Request

@@ -30203,7 +29147,7 @@ Appears In: -name +name name of the CustomResourceDefinition @@ -30218,7 +29162,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -30233,7 +29177,7 @@ Appears In: -body
Patch +body
Patch @@ -30259,28 +29203,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified CustomResourceDefinition

HTTP Request

@@ -30295,7 +29235,7 @@ Appears In: -name +name name of the CustomResourceDefinition @@ -30310,7 +29250,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -30325,7 +29265,7 @@ Appears In: -body
CustomResourceDefinition +body
CustomResourceDefinition @@ -30340,13 +29280,13 @@ Appears In: -201
CustomResourceDefinition -Created - - 200
CustomResourceDefinition OK + +201
CustomResourceDefinition +Created +

Delete

@@ -30355,28 +29295,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a CustomResourceDefinition

HTTP Request

@@ -30391,7 +29327,7 @@ Appears In: -name +name name of the CustomResourceDefinition @@ -30406,19 +29342,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -30433,7 +29369,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -30459,28 +29395,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of CustomResourceDefinition

HTTP Request

@@ -30495,39 +29427,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -30555,28 +29487,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified CustomResourceDefinition

HTTP Request

@@ -30591,7 +29519,7 @@ Appears In: -name +name name of the CustomResourceDefinition @@ -30606,15 +29534,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -30640,28 +29568,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind CustomResourceDefinition

HTTP Request

@@ -30676,39 +29600,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -30734,28 +29658,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind CustomResourceDefinition

HTTP Request

@@ -30770,7 +29690,7 @@ Appears In: -name +name name of the CustomResourceDefinition @@ -30785,39 +29705,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -30843,28 +29763,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of CustomResourceDefinition

HTTP Request

@@ -30879,39 +29795,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -30939,28 +29855,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified CustomResourceDefinition

HTTP Request

@@ -30975,7 +29887,7 @@ Appears In: -name +name name of the CustomResourceDefinition @@ -30990,7 +29902,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -31005,7 +29917,7 @@ Appears In: -body
CustomResourceDefinition +body
CustomResourceDefinition @@ -31030,7 +29942,7 @@ Appears In:
-

Event v1 core

+

Event [core/v1]

@@ -31041,9 +29953,9 @@ Appears In: - - - + + +
Corev1Eventcorev1Event
@@ -31067,71 +29979,71 @@ Appears In: -action
string +action
string What action was taken/failed regarding to the Regarding object. -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -count
integer +count
integer The number of times this event has occurred. -eventTime
MicroTime +eventTime
MicroTime Time when this Event was first observed. -firstTimestamp
Time +firstTimestamp
Time The time at which the event was first recorded. (Time of server receipt is in TypeMeta.) -involvedObject
ObjectReference +involvedObject
ObjectReference The object that this event is about. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -lastTimestamp
Time +lastTimestamp
Time The time at which the most recent occurrence of this event was recorded. -message
string +message
string A human-readable description of the status of this operation. -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -reason
string +reason
string This should be a short, machine understandable string that gives the reason for the transition into the object's current status. -related
ObjectReference +related
ObjectReference Optional secondary object for more complex actions. -reportingComponent
string +reportingComponent
string Name of the controller that emitted this Event, e.g. kubernetes.io/kubelet. -reportingInstance
string +reportingInstance
string ID of the controller instance, e.g. kubelet-xyzf. -series
EventSeries +series
EventSeries Data about the Event series this event represents or nil if it's a singleton Event. -source
EventSource +source
EventSource The component reporting this event. Should be a short machine understandable string. -type
string +type
string Type of this event (Normal, Warning), new types could be added in the future @@ -31146,19 +30058,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
Event array +items
Event array List of events -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -31171,28 +30083,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create an Event

HTTP Request

@@ -31207,7 +30115,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -31222,7 +30130,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -31237,7 +30145,7 @@ Appears In: -body
Event +body
Event @@ -31271,28 +30179,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified Event

HTTP Request

@@ -31307,11 +30211,11 @@ Appears In: -name +name name of the Event -namespace +namespace object name and auth scope, such as for teams and projects @@ -31326,7 +30230,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -31341,7 +30245,7 @@ Appears In: -body
Patch +body
Patch @@ -31367,28 +30271,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified Event

HTTP Request

@@ -31403,11 +30303,11 @@ Appears In: -name +name name of the Event -namespace +namespace object name and auth scope, such as for teams and projects @@ -31422,7 +30322,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -31437,7 +30337,7 @@ Appears In: -body
Event +body
Event @@ -31467,28 +30367,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete an Event

HTTP Request

@@ -31503,11 +30399,11 @@ Appears In: -name +name name of the Event -namespace +namespace object name and auth scope, such as for teams and projects @@ -31522,19 +30418,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -31549,7 +30445,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -31575,28 +30471,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of Event

HTTP Request

@@ -31611,7 +30503,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -31626,39 +30518,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -31686,28 +30578,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified Event

HTTP Request

@@ -31722,11 +30610,11 @@ Appears In: -name +name name of the Event -namespace +namespace object name and auth scope, such as for teams and projects @@ -31741,15 +30629,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -31775,28 +30663,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Event

HTTP Request

@@ -31811,7 +30695,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -31826,39 +30710,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -31884,28 +30768,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind Event

HTTP Request

@@ -31920,39 +30800,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -31978,28 +30858,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind Event

HTTP Request

@@ -32014,11 +30890,11 @@ Appears In: -name +name name of the Event -namespace +namespace object name and auth scope, such as for teams and projects @@ -32033,39 +30909,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -32091,28 +30967,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Event

HTTP Request

@@ -32127,7 +30999,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -32142,39 +31014,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -32200,28 +31072,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of Event

HTTP Request

@@ -32236,39 +31104,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -32289,7 +31157,7 @@ Appears In:
-

LimitRange v1 core

+

LimitRange [core/v1]

@@ -32300,9 +31168,9 @@ Appears In: - - - + + +
Corev1LimitRangecorev1LimitRange
@@ -32323,19 +31191,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
LimitRangeSpec +spec
LimitRangeSpec Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -32357,7 +31225,7 @@ Appears In: -limits
LimitRangeItem array +limits
LimitRangeItem array Limits is the list of LimitRangeItem objects that are enforced. @@ -32372,19 +31240,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
LimitRange array +items
LimitRange array Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -32397,28 +31265,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a LimitRange

HTTP Request

@@ -32433,7 +31297,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -32448,7 +31312,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -32463,7 +31327,7 @@ Appears In: -body
LimitRange +body
LimitRange @@ -32497,28 +31361,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified LimitRange

HTTP Request

@@ -32533,11 +31393,11 @@ Appears In: -name +name name of the LimitRange -namespace +namespace object name and auth scope, such as for teams and projects @@ -32552,7 +31412,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -32567,7 +31427,7 @@ Appears In: -body
Patch +body
Patch @@ -32593,28 +31453,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified LimitRange

HTTP Request

@@ -32629,11 +31485,11 @@ Appears In: -name +name name of the LimitRange -namespace +namespace object name and auth scope, such as for teams and projects @@ -32648,7 +31504,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -32663,7 +31519,7 @@ Appears In: -body
LimitRange +body
LimitRange @@ -32693,28 +31549,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a LimitRange

HTTP Request

@@ -32729,11 +31581,11 @@ Appears In: -name +name name of the LimitRange -namespace +namespace object name and auth scope, such as for teams and projects @@ -32748,19 +31600,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -32775,7 +31627,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -32801,28 +31653,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of LimitRange

HTTP Request

@@ -32837,7 +31685,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -32852,39 +31700,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -32912,28 +31760,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified LimitRange

HTTP Request

@@ -32948,11 +31792,11 @@ Appears In: -name +name name of the LimitRange -namespace +namespace object name and auth scope, such as for teams and projects @@ -32967,15 +31811,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -33001,28 +31845,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind LimitRange

HTTP Request

@@ -33037,7 +31877,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -33052,39 +31892,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -33110,28 +31950,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind LimitRange

HTTP Request

@@ -33146,39 +31982,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -33204,28 +32040,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind LimitRange

HTTP Request

@@ -33240,11 +32072,11 @@ Appears In: -name +name name of the LimitRange -namespace +namespace object name and auth scope, such as for teams and projects @@ -33259,39 +32091,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -33317,28 +32149,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of LimitRange

HTTP Request

@@ -33353,7 +32181,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -33368,39 +32196,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -33426,28 +32254,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of LimitRange

HTTP Request

@@ -33462,39 +32286,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -33515,7 +32339,7 @@ Appears In:
-

HorizontalPodAutoscaler v1 autoscaling

+

HorizontalPodAutoscaler [autoscaling/v1]

@@ -33526,9 +32350,9 @@ Appears In: - - - + + +
autoscalingv1HorizontalPodAutoscalerautoscalingv1HorizontalPodAutoscaler
@@ -33552,23 +32376,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
HorizontalPodAutoscalerSpec +spec
HorizontalPodAutoscalerSpec behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. -status
HorizontalPodAutoscalerStatus +status
HorizontalPodAutoscalerStatus current information about the autoscaler. @@ -33590,19 +32414,19 @@ Appears In: -maxReplicas
integer +maxReplicas
integer upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas. -minReplicas
integer +minReplicas
integer lower limit for the number of pods that can be set by the autoscaler, default 1. -scaleTargetRef
CrossVersionObjectReference +scaleTargetRef
CrossVersionObjectReference reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource. -targetCPUUtilizationPercentage
integer +targetCPUUtilizationPercentage
integer target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used. @@ -33624,23 +32448,23 @@ Appears In: -currentCPUUtilizationPercentage
integer +currentCPUUtilizationPercentage
integer current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU. -currentReplicas
integer +currentReplicas
integer current number of replicas of pods managed by this autoscaler. -desiredReplicas
integer +desiredReplicas
integer desired number of replicas of pods managed by this autoscaler. -lastScaleTime
Time +lastScaleTime
Time last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed. -observedGeneration
integer +observedGeneration
integer most recent generation observed by this autoscaler. @@ -33655,19 +32479,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
HorizontalPodAutoscaler array +items
HorizontalPodAutoscaler array list of horizontal pod autoscaler objects. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. @@ -33680,28 +32504,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a HorizontalPodAutoscaler

HTTP Request

@@ -33716,7 +32536,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -33731,7 +32551,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -33746,7 +32566,7 @@ Appears In: -body
HorizontalPodAutoscaler +body
HorizontalPodAutoscaler @@ -33780,28 +32600,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified HorizontalPodAutoscaler

HTTP Request

@@ -33816,11 +32632,11 @@ Appears In: -name +name name of the HorizontalPodAutoscaler -namespace +namespace object name and auth scope, such as for teams and projects @@ -33835,7 +32651,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -33850,7 +32666,7 @@ Appears In: -body
Patch +body
Patch @@ -33876,28 +32692,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified HorizontalPodAutoscaler

HTTP Request

@@ -33912,11 +32724,11 @@ Appears In: -name +name name of the HorizontalPodAutoscaler -namespace +namespace object name and auth scope, such as for teams and projects @@ -33931,7 +32743,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -33946,7 +32758,7 @@ Appears In: -body
HorizontalPodAutoscaler +body
HorizontalPodAutoscaler @@ -33976,28 +32788,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a HorizontalPodAutoscaler

HTTP Request

@@ -34012,11 +32820,11 @@ Appears In: -name +name name of the HorizontalPodAutoscaler -namespace +namespace object name and auth scope, such as for teams and projects @@ -34031,19 +32839,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -34058,7 +32866,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -34084,28 +32892,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of HorizontalPodAutoscaler

HTTP Request

@@ -34120,7 +32924,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -34135,39 +32939,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -34195,28 +32999,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified HorizontalPodAutoscaler

HTTP Request

@@ -34231,11 +33031,11 @@ Appears In: -name +name name of the HorizontalPodAutoscaler -namespace +namespace object name and auth scope, such as for teams and projects @@ -34250,15 +33050,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -34284,28 +33084,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind HorizontalPodAutoscaler

HTTP Request

@@ -34320,7 +33116,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -34335,39 +33131,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -34393,28 +33189,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind HorizontalPodAutoscaler

HTTP Request

@@ -34429,39 +33221,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -34487,28 +33279,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind HorizontalPodAutoscaler

HTTP Request

@@ -34523,11 +33311,11 @@ Appears In: -name +name name of the HorizontalPodAutoscaler -namespace +namespace object name and auth scope, such as for teams and projects @@ -34542,39 +33330,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -34600,28 +33388,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of HorizontalPodAutoscaler

HTTP Request

@@ -34636,7 +33420,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -34651,39 +33435,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -34709,28 +33493,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of HorizontalPodAutoscaler

HTTP Request

@@ -34745,39 +33525,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -34805,28 +33585,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified HorizontalPodAutoscaler

HTTP Request

@@ -34841,11 +33617,11 @@ Appears In: -name +name name of the HorizontalPodAutoscaler -namespace +namespace object name and auth scope, such as for teams and projects @@ -34860,7 +33636,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -34875,7 +33651,7 @@ Appears In: -body
Patch +body
Patch @@ -34901,28 +33677,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified HorizontalPodAutoscaler

HTTP Request

@@ -34937,11 +33709,11 @@ Appears In: -name +name name of the HorizontalPodAutoscaler -namespace +namespace object name and auth scope, such as for teams and projects @@ -34956,7 +33728,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -34982,28 +33754,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified HorizontalPodAutoscaler

HTTP Request

@@ -35018,11 +33786,11 @@ Appears In: -name +name name of the HorizontalPodAutoscaler -namespace +namespace object name and auth scope, such as for teams and projects @@ -35037,7 +33805,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -35052,7 +33820,7 @@ Appears In: -body
HorizontalPodAutoscaler +body
HorizontalPodAutoscaler @@ -35077,7 +33845,7 @@ Appears In:
-

InitializerConfiguration v1alpha1 admissionregistration

+

InitializerConfiguration [admissionregistration.k8s.io/v1alpha1]

@@ -35088,9 +33856,9 @@ Appears In: - - - + + +
admissionregistrationv1alpha1InitializerConfigurationadmissionregistration.k8s.iov1alpha1InitializerConfiguration
@@ -35111,19 +33879,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -initializers
Initializer array
patch type: merge
patch merge key: name +initializers
Initializer array
patch type: merge
patch merge key: name Initializers is a list of resources and their default initializers Order-sensitive. When merging multiple InitializerConfigurations, we sort the initializers from different InitializerConfigurations by the name of the InitializerConfigurations; the order of the initializers from the same InitializerConfiguration is preserved. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata. @@ -35138,19 +33906,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
InitializerConfiguration array +items
InitializerConfiguration array List of InitializerConfiguration. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -35163,28 +33931,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create an InitializerConfiguration

HTTP Request

@@ -35199,7 +33963,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -35214,7 +33978,7 @@ Appears In: -body
InitializerConfiguration +body
InitializerConfiguration @@ -35229,10 +33993,6 @@ Appears In: -202
InitializerConfiguration -Accepted - - 200
InitializerConfiguration OK @@ -35240,6 +34000,10 @@ Appears In: 201
InitializerConfiguration Created + +202
InitializerConfiguration +Accepted +

Patch

@@ -35248,28 +34012,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified InitializerConfiguration

HTTP Request

@@ -35284,7 +34044,7 @@ Appears In: -name +name name of the InitializerConfiguration @@ -35299,7 +34059,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -35314,7 +34074,7 @@ Appears In: -body
Patch +body
Patch @@ -35340,28 +34100,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified InitializerConfiguration

HTTP Request

@@ -35376,7 +34132,7 @@ Appears In: -name +name name of the InitializerConfiguration @@ -35391,7 +34147,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -35406,7 +34162,7 @@ Appears In: -body
InitializerConfiguration +body
InitializerConfiguration @@ -35436,28 +34192,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete an InitializerConfiguration

HTTP Request

@@ -35472,7 +34224,7 @@ Appears In: -name +name name of the InitializerConfiguration @@ -35487,19 +34239,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -35514,7 +34266,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -35540,28 +34292,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of InitializerConfiguration

HTTP Request

@@ -35576,39 +34324,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -35636,28 +34384,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified InitializerConfiguration

HTTP Request

@@ -35672,7 +34416,7 @@ Appears In: -name +name name of the InitializerConfiguration @@ -35687,15 +34431,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -35721,28 +34465,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind InitializerConfiguration

HTTP Request

@@ -35757,39 +34497,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -35815,28 +34555,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind InitializerConfiguration

HTTP Request

@@ -35851,7 +34587,7 @@ Appears In: -name +name name of the InitializerConfiguration @@ -35866,39 +34602,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -35924,28 +34660,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of InitializerConfiguration

HTTP Request

@@ -35960,39 +34692,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -36013,7 +34745,7 @@ Appears In:
-

MutatingWebhookConfiguration v1beta1 admissionregistration

+

MutatingWebhookConfiguration [admissionregistration.k8s.io/v1beta1]

@@ -36024,9 +34756,9 @@ Appears In: - - - + + +
admissionregistrationv1beta1MutatingWebhookConfigurationadmissionregistration.k8s.iov1beta1MutatingWebhookConfiguration
@@ -36047,19 +34779,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata. -webhooks
Webhook array
patch type: merge
patch merge key: name +webhooks
Webhook array
patch type: merge
patch merge key: name Webhooks is a list of webhooks and the affected resources and operations. @@ -36074,19 +34806,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
MutatingWebhookConfiguration array +items
MutatingWebhookConfiguration array List of MutatingWebhookConfiguration. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -36099,28 +34831,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a MutatingWebhookConfiguration

HTTP Request

@@ -36135,7 +34863,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -36150,7 +34878,7 @@ Appears In: -body
MutatingWebhookConfiguration +body
MutatingWebhookConfiguration @@ -36165,6 +34893,10 @@ Appears In: +202
MutatingWebhookConfiguration +Accepted + + 200
MutatingWebhookConfiguration OK @@ -36172,10 +34904,6 @@ Appears In: 201
MutatingWebhookConfiguration Created - -202
MutatingWebhookConfiguration -Accepted -

Patch

@@ -36184,28 +34912,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified MutatingWebhookConfiguration

HTTP Request

@@ -36220,7 +34944,7 @@ Appears In: -name +name name of the MutatingWebhookConfiguration @@ -36235,7 +34959,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -36250,7 +34974,7 @@ Appears In: -body
Patch +body
Patch @@ -36276,28 +35000,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified MutatingWebhookConfiguration

HTTP Request

@@ -36312,7 +35032,7 @@ Appears In: -name +name name of the MutatingWebhookConfiguration @@ -36327,7 +35047,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -36342,7 +35062,7 @@ Appears In: -body
MutatingWebhookConfiguration +body
MutatingWebhookConfiguration @@ -36357,13 +35077,13 @@ Appears In: -200
MutatingWebhookConfiguration -OK - - 201
MutatingWebhookConfiguration Created + +200
MutatingWebhookConfiguration +OK +

Delete

@@ -36372,28 +35092,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a MutatingWebhookConfiguration

HTTP Request

@@ -36408,7 +35124,7 @@ Appears In: -name +name name of the MutatingWebhookConfiguration @@ -36423,19 +35139,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -36450,7 +35166,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -36476,28 +35192,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of MutatingWebhookConfiguration

HTTP Request

@@ -36512,39 +35224,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -36572,28 +35284,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified MutatingWebhookConfiguration

HTTP Request

@@ -36608,7 +35316,7 @@ Appears In: -name +name name of the MutatingWebhookConfiguration @@ -36623,15 +35331,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -36657,28 +35365,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind MutatingWebhookConfiguration

HTTP Request

@@ -36693,39 +35397,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -36751,28 +35455,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind MutatingWebhookConfiguration

HTTP Request

@@ -36787,7 +35487,7 @@ Appears In: -name +name name of the MutatingWebhookConfiguration @@ -36802,39 +35502,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -36860,28 +35560,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of MutatingWebhookConfiguration

HTTP Request

@@ -36896,39 +35592,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -36949,7 +35645,7 @@ Appears In:
-

ValidatingWebhookConfiguration v1beta1 admissionregistration

+

ValidatingWebhookConfiguration [admissionregistration.k8s.io/v1beta1]

@@ -36960,9 +35656,9 @@ Appears In: - - - + + +
admissionregistrationv1beta1ValidatingWebhookConfigurationadmissionregistration.k8s.iov1beta1ValidatingWebhookConfiguration
@@ -36983,19 +35679,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata. -webhooks
Webhook array
patch type: merge
patch merge key: name +webhooks
Webhook array
patch type: merge
patch merge key: name Webhooks is a list of webhooks and the affected resources and operations. @@ -37010,19 +35706,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
ValidatingWebhookConfiguration array +items
ValidatingWebhookConfiguration array List of ValidatingWebhookConfiguration. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -37035,28 +35731,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a ValidatingWebhookConfiguration

HTTP Request

@@ -37071,7 +35763,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -37086,7 +35778,7 @@ Appears In: -body
ValidatingWebhookConfiguration +body
ValidatingWebhookConfiguration @@ -37101,6 +35793,10 @@ Appears In: +202
ValidatingWebhookConfiguration +Accepted + + 200
ValidatingWebhookConfiguration OK @@ -37108,10 +35804,6 @@ Appears In: 201
ValidatingWebhookConfiguration Created - -202
ValidatingWebhookConfiguration -Accepted -

Patch

@@ -37120,28 +35812,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified ValidatingWebhookConfiguration

HTTP Request

@@ -37156,7 +35844,7 @@ Appears In: -name +name name of the ValidatingWebhookConfiguration @@ -37171,7 +35859,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -37186,7 +35874,7 @@ Appears In: -body
Patch +body
Patch @@ -37212,28 +35900,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified ValidatingWebhookConfiguration

HTTP Request

@@ -37248,7 +35932,7 @@ Appears In: -name +name name of the ValidatingWebhookConfiguration @@ -37263,7 +35947,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -37278,7 +35962,7 @@ Appears In: -body
ValidatingWebhookConfiguration +body
ValidatingWebhookConfiguration @@ -37308,28 +35992,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a ValidatingWebhookConfiguration

HTTP Request

@@ -37344,7 +36024,7 @@ Appears In: -name +name name of the ValidatingWebhookConfiguration @@ -37359,19 +36039,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -37386,7 +36066,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -37412,28 +36092,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of ValidatingWebhookConfiguration

HTTP Request

@@ -37448,39 +36124,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -37508,28 +36184,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified ValidatingWebhookConfiguration

HTTP Request

@@ -37544,7 +36216,7 @@ Appears In: -name +name name of the ValidatingWebhookConfiguration @@ -37559,15 +36231,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -37593,28 +36265,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind ValidatingWebhookConfiguration

HTTP Request

@@ -37629,39 +36297,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -37687,28 +36355,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind ValidatingWebhookConfiguration

HTTP Request

@@ -37723,7 +36387,7 @@ Appears In: -name +name name of the ValidatingWebhookConfiguration @@ -37738,39 +36402,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -37796,28 +36460,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of ValidatingWebhookConfiguration

HTTP Request

@@ -37832,39 +36492,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -37885,7 +36545,7 @@ Appears In:
-

PodTemplate v1 core

+

PodTemplate [core/v1]

@@ -37896,9 +36556,9 @@ Appears In: - - - + + +
Corev1PodTemplatecorev1PodTemplate
@@ -37919,19 +36579,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -template
PodTemplateSpec +template
PodTemplateSpec Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -37968,11 +36628,11 @@ Appears In: -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -spec
PodSpec +spec
PodSpec Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status @@ -37987,19 +36647,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
PodTemplate array +items
PodTemplate array List of pod templates -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds @@ -38012,28 +36672,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a PodTemplate

HTTP Request

@@ -38048,7 +36704,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -38063,7 +36719,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -38078,7 +36734,7 @@ Appears In: -body
PodTemplate +body
PodTemplate @@ -38093,10 +36749,6 @@ Appears In: -202
PodTemplate -Accepted - - 200
PodTemplate OK @@ -38104,6 +36756,10 @@ Appears In: 201
PodTemplate Created + +202
PodTemplate +Accepted +

Patch

@@ -38112,28 +36768,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified PodTemplate

HTTP Request

@@ -38148,11 +36800,11 @@ Appears In: -name +name name of the PodTemplate -namespace +namespace object name and auth scope, such as for teams and projects @@ -38167,7 +36819,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -38182,7 +36834,7 @@ Appears In: -body
Patch +body
Patch @@ -38208,28 +36860,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified PodTemplate

HTTP Request

@@ -38244,11 +36892,11 @@ Appears In: -name +name name of the PodTemplate -namespace +namespace object name and auth scope, such as for teams and projects @@ -38263,7 +36911,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -38278,7 +36926,7 @@ Appears In: -body
PodTemplate +body
PodTemplate @@ -38308,28 +36956,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a PodTemplate

HTTP Request

@@ -38344,11 +36988,11 @@ Appears In: -name +name name of the PodTemplate -namespace +namespace object name and auth scope, such as for teams and projects @@ -38363,19 +37007,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -38390,7 +37034,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -38416,28 +37060,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of PodTemplate

HTTP Request

@@ -38452,7 +37092,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -38467,39 +37107,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -38527,28 +37167,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified PodTemplate

HTTP Request

@@ -38563,11 +37199,11 @@ Appears In: -name +name name of the PodTemplate -namespace +namespace object name and auth scope, such as for teams and projects @@ -38582,15 +37218,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -38616,28 +37252,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind PodTemplate

HTTP Request

@@ -38652,7 +37284,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -38667,39 +37299,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -38725,28 +37357,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind PodTemplate

HTTP Request

@@ -38761,39 +37389,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -38819,28 +37447,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind PodTemplate

HTTP Request

@@ -38855,11 +37479,11 @@ Appears In: -name +name name of the PodTemplate -namespace +namespace object name and auth scope, such as for teams and projects @@ -38874,39 +37498,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -38932,28 +37556,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of PodTemplate

HTTP Request

@@ -38968,7 +37588,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -38983,39 +37603,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -39041,28 +37661,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of PodTemplate

HTTP Request

@@ -39077,39 +37693,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -39130,7 +37746,7 @@ Appears In:
-

PodDisruptionBudget v1beta1 policy

+

PodDisruptionBudget [policy/v1beta1]

@@ -39141,9 +37757,9 @@ Appears In: - - - + + +
policyv1beta1PodDisruptionBudgetpolicyv1beta1PodDisruptionBudget
@@ -39164,23 +37780,23 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta -spec
PodDisruptionBudgetSpec +spec
PodDisruptionBudgetSpec Specification of the desired behavior of the PodDisruptionBudget. -status
PodDisruptionBudgetStatus +status
PodDisruptionBudgetStatus Most recently observed status of the PodDisruptionBudget. @@ -39202,15 +37818,15 @@ Appears In: -maxUnavailable +maxUnavailable An eviction is allowed if at most "maxUnavailable" pods selected by "selector" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with "minAvailable". -minAvailable +minAvailable An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%". -selector
LabelSelector +selector
LabelSelector Label query over pods whose evictions are managed by the disruption budget. @@ -39232,27 +37848,27 @@ Appears In: -currentHealthy
integer +currentHealthy
integer current number of healthy pods -desiredHealthy
integer +desiredHealthy
integer minimum desired number of healthy pods -disruptedPods
object +disruptedPods
object DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions. -disruptionsAllowed
integer +disruptionsAllowed
integer Number of pod disruptions that are currently allowed. -expectedPods
integer +expectedPods
integer total number of pods counted by this disruption budget -observedGeneration
integer +observedGeneration
integer Most recent generation observed when updating this PDB status. PodDisruptionsAllowed and other status informatio is valid only if observedGeneration equals to PDB's object generation. @@ -39267,19 +37883,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
PodDisruptionBudget array +items
PodDisruptionBudget array -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta @@ -39292,28 +37908,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a PodDisruptionBudget

HTTP Request

@@ -39328,7 +37940,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -39343,7 +37955,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -39358,7 +37970,7 @@ Appears In: -body
PodDisruptionBudget +body
PodDisruptionBudget @@ -39373,6 +37985,10 @@ Appears In: +200
PodDisruptionBudget +OK + + 201
PodDisruptionBudget Created @@ -39380,10 +37996,6 @@ Appears In: 202
PodDisruptionBudget Accepted - -200
PodDisruptionBudget -OK -

Patch

@@ -39392,28 +38004,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified PodDisruptionBudget

HTTP Request

@@ -39428,11 +38036,11 @@ Appears In: -name +name name of the PodDisruptionBudget -namespace +namespace object name and auth scope, such as for teams and projects @@ -39447,7 +38055,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -39462,7 +38070,7 @@ Appears In: -body
Patch +body
Patch @@ -39488,28 +38096,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified PodDisruptionBudget

HTTP Request

@@ -39524,11 +38128,11 @@ Appears In: -name +name name of the PodDisruptionBudget -namespace +namespace object name and auth scope, such as for teams and projects @@ -39543,7 +38147,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -39558,7 +38162,7 @@ Appears In: -body
PodDisruptionBudget +body
PodDisruptionBudget @@ -39573,13 +38177,13 @@ Appears In: -201
PodDisruptionBudget -Created - - 200
PodDisruptionBudget OK + +201
PodDisruptionBudget +Created +

Delete

@@ -39588,28 +38192,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a PodDisruptionBudget

HTTP Request

@@ -39624,11 +38224,11 @@ Appears In: -name +name name of the PodDisruptionBudget -namespace +namespace object name and auth scope, such as for teams and projects @@ -39643,19 +38243,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -39670,7 +38270,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -39696,28 +38296,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of PodDisruptionBudget

HTTP Request

@@ -39732,7 +38328,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -39747,39 +38343,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -39807,28 +38403,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified PodDisruptionBudget

HTTP Request

@@ -39843,11 +38435,11 @@ Appears In: -name +name name of the PodDisruptionBudget -namespace +namespace object name and auth scope, such as for teams and projects @@ -39862,15 +38454,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -39896,28 +38488,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind PodDisruptionBudget

HTTP Request

@@ -39932,7 +38520,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -39947,39 +38535,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -40005,28 +38593,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind PodDisruptionBudget

HTTP Request

@@ -40041,39 +38625,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -40099,28 +38683,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind PodDisruptionBudget

HTTP Request

@@ -40135,11 +38715,11 @@ Appears In: -name +name name of the PodDisruptionBudget -namespace +namespace object name and auth scope, such as for teams and projects @@ -40154,39 +38734,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -40212,28 +38792,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of PodDisruptionBudget

HTTP Request

@@ -40248,7 +38824,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -40263,39 +38839,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -40321,28 +38897,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of PodDisruptionBudget

HTTP Request

@@ -40357,39 +38929,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -40417,28 +38989,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update status of the specified PodDisruptionBudget

HTTP Request

@@ -40453,11 +39021,11 @@ Appears In: -name +name name of the PodDisruptionBudget -namespace +namespace object name and auth scope, such as for teams and projects @@ -40472,7 +39040,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -40487,7 +39055,7 @@ Appears In: -body
Patch +body
Patch @@ -40513,28 +39081,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read status of the specified PodDisruptionBudget

HTTP Request

@@ -40549,11 +39113,11 @@ Appears In: -name +name name of the PodDisruptionBudget -namespace +namespace object name and auth scope, such as for teams and projects @@ -40568,7 +39132,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -40594,28 +39158,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace status of the specified PodDisruptionBudget

HTTP Request

@@ -40630,11 +39190,11 @@ Appears In: -name +name name of the PodDisruptionBudget -namespace +namespace object name and auth scope, such as for teams and projects @@ -40649,7 +39209,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -40664,7 +39224,7 @@ Appears In: -body
PodDisruptionBudget +body
PodDisruptionBudget @@ -40689,7 +39249,7 @@ Appears In:
-

PriorityClass v1alpha1 scheduling

+

PriorityClass [scheduling.k8s.io/v1alpha1]

@@ -40700,9 +39260,9 @@ Appears In: - - - + + +
schedulingv1alpha1PriorityClassscheduling.k8s.iov1alpha1PriorityClass
@@ -40729,27 +39289,27 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -description
string +description
string description is an arbitrary string that usually provides guidelines on when this priority class should be used. -globalDefault
boolean +globalDefault
boolean globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as globalDefault. However, if more than one PriorityClasses exists with their globalDefault field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata -value
integer +value
integer The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec. @@ -40764,19 +39324,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
PriorityClass array +items
PriorityClass array items is the list of PriorityClasses -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -40789,28 +39349,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a PriorityClass

HTTP Request

@@ -40825,7 +39381,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -40840,7 +39396,7 @@ Appears In: -body
PriorityClass +body
PriorityClass @@ -40855,6 +39411,10 @@ Appears In: +202
PriorityClass +Accepted + + 200
PriorityClass OK @@ -40862,10 +39422,6 @@ Appears In: 201
PriorityClass Created - -202
PriorityClass -Accepted -

Patch

@@ -40874,28 +39430,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified PriorityClass

HTTP Request

@@ -40910,7 +39462,7 @@ Appears In: -name +name name of the PriorityClass @@ -40925,7 +39477,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -40940,7 +39492,7 @@ Appears In: -body
Patch +body
Patch @@ -40966,28 +39518,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified PriorityClass

HTTP Request

@@ -41002,7 +39550,7 @@ Appears In: -name +name name of the PriorityClass @@ -41017,7 +39565,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -41032,7 +39580,7 @@ Appears In: -body
PriorityClass +body
PriorityClass @@ -41062,28 +39610,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a PriorityClass

HTTP Request

@@ -41098,7 +39642,7 @@ Appears In: -name +name name of the PriorityClass @@ -41113,19 +39657,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -41140,7 +39684,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -41166,28 +39710,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of PriorityClass

HTTP Request

@@ -41202,39 +39742,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -41262,28 +39802,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified PriorityClass

HTTP Request

@@ -41298,7 +39834,7 @@ Appears In: -name +name name of the PriorityClass @@ -41313,15 +39849,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -41347,28 +39883,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind PriorityClass

HTTP Request

@@ -41383,39 +39915,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -41441,28 +39973,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind PriorityClass

HTTP Request

@@ -41477,7 +40005,7 @@ Appears In: -name +name name of the PriorityClass @@ -41492,39 +40020,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -41550,28 +40078,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of PriorityClass

HTTP Request

@@ -41586,39 +40110,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -41639,7 +40163,7 @@ Appears In:
-

PodPreset v1alpha1 settings

+

PodPreset [settings.k8s.io/v1alpha1]

@@ -41650,9 +40174,9 @@ Appears In: - - - + + +
settingsv1alpha1PodPresetsettings.k8s.iov1alpha1PodPreset
@@ -41679,19 +40203,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ObjectMeta +metadata
ObjectMeta -spec
PodPresetSpec +spec
PodPresetSpec @@ -41713,23 +40237,23 @@ Appears In: -env
EnvVar array +env
EnvVar array Env defines the collection of EnvVar to inject into containers. -envFrom
EnvFromSource array +envFrom
EnvFromSource array EnvFrom defines the collection of EnvFromSource to inject into containers. -selector
LabelSelector +selector
LabelSelector Selector is a label query over a set of resources, in this case pods. Required. -volumeMounts
VolumeMount array +volumeMounts
VolumeMount array VolumeMounts defines the collection of VolumeMount to inject into containers. -volumes
Volume array +volumes
Volume array Volumes defines the collection of Volume to inject into the pod. @@ -41744,19 +40268,19 @@ Appears In: -apiVersion
string +apiVersion
string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources -items
PodPreset array +items
PodPreset array Items is a list of schema objects. -kind
string +kind
string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds -metadata
ListMeta +metadata
ListMeta Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata @@ -41769,28 +40293,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

create a PodPreset

HTTP Request

@@ -41805,7 +40325,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -41820,7 +40340,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -41835,7 +40355,7 @@ Appears In: -body
PodPreset +body
PodPreset @@ -41869,28 +40389,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

partially update the specified PodPreset

HTTP Request

@@ -41905,11 +40421,11 @@ Appears In: -name +name name of the PodPreset -namespace +namespace object name and auth scope, such as for teams and projects @@ -41924,7 +40440,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -41939,7 +40455,7 @@ Appears In: -body
Patch +body
Patch @@ -41965,28 +40481,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

replace the specified PodPreset

HTTP Request

@@ -42001,11 +40513,11 @@ Appears In: -name +name name of the PodPreset -namespace +namespace object name and auth scope, such as for teams and projects @@ -42020,7 +40532,7 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. @@ -42035,7 +40547,7 @@ Appears In: -body
PodPreset +body
PodPreset @@ -42065,28 +40577,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete a PodPreset

HTTP Request

@@ -42101,11 +40609,11 @@ Appears In: -name +name name of the PodPreset -namespace +namespace object name and auth scope, such as for teams and projects @@ -42120,19 +40628,19 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -gracePeriodSeconds +gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents +orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. -propagationPolicy +propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. @@ -42147,7 +40655,7 @@ Appears In: -body
DeleteOptions +body
DeleteOptions @@ -42173,28 +40681,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

delete collection of PodPreset

HTTP Request

@@ -42209,7 +40713,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -42224,39 +40728,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -42284,28 +40788,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

read the specified PodPreset

HTTP Request

@@ -42320,11 +40820,11 @@ Appears In: -name +name name of the PodPreset -namespace +namespace object name and auth scope, such as for teams and projects @@ -42339,15 +40839,15 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -exact +exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. -export +export Should this value be exported. Export strips fields that a user can not specify. @@ -42373,28 +40873,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind PodPreset

HTTP Request

@@ -42409,7 +40905,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -42424,39 +40920,39 @@ Appears In: -pretty +pretty If 'true', then the output is pretty printed. -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -42482,28 +40978,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

list or watch objects of kind PodPreset

HTTP Request

@@ -42518,39 +41010,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -42576,28 +41068,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch changes to an object of kind PodPreset

HTTP Request

@@ -42612,11 +41100,11 @@ Appears In: -name +name name of the PodPreset -namespace +namespace object name and auth scope, such as for teams and projects @@ -42631,39 +41119,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -42689,28 +41177,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of PodPreset

HTTP Request

@@ -42725,7 +41209,7 @@ Appears In: -namespace +namespace object name and auth scope, such as for teams and projects @@ -42740,39 +41224,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -42798,28 +41282,24 @@ Appears In:

 Coming Soon
-
 

curl Command (requires kubectl proxy to be running)


 Coming Soon
-
 

Output


 Coming Soon
-
 

Response Body


 Coming Soon
-
 

watch individual changes to a list of PodPreset

HTTP Request

@@ -42834,39 +41314,39 @@ Appears In: -continue +continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. -fieldSelector +fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. -includeUninitialized +includeUninitialized If true, partially initialized resources are included in the response. -labelSelector +labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. -limit +limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. -pretty +pretty If 'true', then the output is pretty printed. -resourceVersion +resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. -timeoutSeconds +timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. -watch +watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. @@ -42887,7 +41367,7 @@ Appears In:
-

PodSecurityPolicy v1beta1 extensions

+

PodSecurityPolicy [extensions/v1beta1]

@@ -42898,13 +41378,13 @@ Appears In: - - - + + +
extensionsv1beta1PodSecurityPolicyextensionsv1beta1PodSecurityPolicy
-

Pod Security Policy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.

+

PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. Deprecated: use PodSecurityPolicy from policy API Group instead.