From 5827f5177967f0ecba65610f51bd17736ca8a646 Mon Sep 17 00:00:00 2001 From: ymqytw Date: Tue, 11 Jul 2017 13:24:57 -0700 Subject: [PATCH] sync imported docs --- docs/admin/federation-apiserver.md | 41 +- docs/admin/federation-controller-manager.md | 3 +- docs/admin/kube-apiserver.md | 48 +- docs/admin/kube-controller-manager.md | 23 +- docs/admin/kube-proxy.md | 21 +- docs/admin/kube-scheduler.md | 49 +- docs/admin/kubelet.md | 92 +- .../apps/v1beta1/definitions.html | 142 +- docs/api-reference/batch/v1/definitions.html | 138 +- .../extensions/v1beta1/definitions.html | 232 +- .../labels-annotations-taints.md | 2 +- .../extensions/v1beta1/definitions.html | 1807 +++++--- .../extensions/v1beta1/operations.html | 812 +++- .../{ => federation}/v1beta1/definitions.html | 971 +++-- .../{ => federation}/v1beta1/operations.html | 434 +- docs/reference/federation/index.md | 9 +- docs/reference/federation/v1/definitions.html | 686 ++- docs/reference/federation/v1/operations.html | 3801 +++++++++-------- 18 files changed, 6216 insertions(+), 3095 deletions(-) rename docs/reference/federation/{ => federation}/v1beta1/definitions.html (60%) rename docs/reference/federation/{ => federation}/v1beta1/operations.html (61%) diff --git a/docs/admin/federation-apiserver.md b/docs/admin/federation-apiserver.md index 14c144449c..e834005250 100644 --- a/docs/admin/federation-apiserver.md +++ b/docs/admin/federation-apiserver.md @@ -21,24 +21,27 @@ federation-apiserver ### Options ``` - --admission-control string Ordered list of plug-ins to do admission control of resources into cluster. Comma-delimited list of: AlwaysAdmit, AlwaysDeny, NamespaceLifecycle, OwnerReferencesPermissionEnforcement. (default "AlwaysAdmit") + --admission-control stringSlice Ordered list of plug-ins to do admission control of resources into cluster. Comma-delimited list of: NamespaceLifecycle. (default [AlwaysAdmit]) --admission-control-config-file string File with admission control configuration. --advertise-address ip The IP address on which to advertise the apiserver to members of the cluster. This address must be reachable by the rest of the cluster. If blank, the --bind-address will be used. If --bind-address is unspecified, the host's default interface will be used. --anonymous-auth Enables anonymous requests to the secure port of the API server. Requests that are not rejected by another authentication method are treated as anonymous requests. Anonymous requests have a username of system:anonymous, and a group name of system:unauthenticated. (default true) --audit-log-maxage int The maximum number of days to retain old audit log files based on the timestamp encoded in their filename. --audit-log-maxbackup int The maximum number of old audit log files to retain. - --audit-log-maxsize int The maximum size in megabytes of the audit log file before it gets rotated. Defaults to 100MB. - --audit-log-path string If set, all requests coming to the apiserver will be logged to this file. - --authentication-token-webhook-cache-ttl duration The duration to cache responses from the webhook token authenticator. Default is 2m. (default 2m0s) + --audit-log-maxsize int The maximum size in megabytes of the audit log file before it gets rotated. + --audit-log-path string If set, all requests coming to the apiserver will be logged to this file. '-' means standard out. + --audit-policy-file string Path to the file that defines the audit policy configuration. Requires the 'AdvancedAuditing' feature gate. With AdvancedAuditing, a profile is required to enable auditing. + --audit-webhook-config-file string Path to a kubeconfig formatted file that defines the audit webhook configuration. Requires the 'AdvancedAuditing' feature gate. + --audit-webhook-mode string Strategy for sending audit events. Blocking indicates sending events should block server responses. Batch causes the webhook to buffer and send events asynchronously. Known modes are batch,blocking. (default "batch") + --authentication-token-webhook-cache-ttl duration The duration to cache responses from the webhook token authenticator. (default 2m0s) --authentication-token-webhook-config-file string File with webhook configuration for token authentication in kubeconfig format. The API server will query the remote service to determine authentication for bearer tokens. - --authorization-mode string Ordered list of plug-ins to do authorization on secure port. Comma-delimited list of: AlwaysAllow,AlwaysDeny,ABAC,Webhook,RBAC. (default "AlwaysAllow") + --authorization-mode string Ordered list of plug-ins to do authorization on secure port. Comma-delimited list of: AlwaysAllow,AlwaysDeny,ABAC,Webhook,RBAC,Node. (default "AlwaysAllow") --authorization-policy-file string File with authorization policy in csv format, used with --authorization-mode=ABAC, on the secure port. - --authorization-webhook-cache-authorized-ttl duration The duration to cache 'authorized' responses from the webhook authorizer. Default is 5m. (default 5m0s) - --authorization-webhook-cache-unauthorized-ttl duration The duration to cache 'unauthorized' responses from the webhook authorizer. Default is 30s. (default 30s) + --authorization-webhook-cache-authorized-ttl duration The duration to cache 'authorized' responses from the webhook authorizer. (default 5m0s) + --authorization-webhook-cache-unauthorized-ttl duration The duration to cache 'unauthorized' responses from the webhook authorizer. (default 30s) --authorization-webhook-config-file string File with webhook configuration in kubeconfig format, used with --authorization-mode=Webhook. The API server will query the remote service to determine access on the API server's secure port. --basic-auth-file string If set, the file that will be used to admit requests to the secure port of the API server via http basic authentication. --bind-address ip The IP address on which to listen for the --secure-port port. The associated interface(s) must be reachable by the rest of the cluster, and by CLI/web clients. If blank, all interfaces will be used (0.0.0.0). (default 0.0.0.0) - --cert-dir string The directory where the TLS certs are located (by default /var/run/kubernetes). If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored. (default "/var/run/kubernetes") + --cert-dir string The directory where the TLS certs are located. If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored. (default "/var/run/kubernetes") --client-ca-file string If set, any request presenting a client certificate signed by one of the authorities in the client-ca-file is authenticated with an identity corresponding to the CommonName of the client certificate. --cloud-config string The path to the cloud provider configuration file. Empty string for no configuration file. --cloud-provider string The provider for cloud services. Empty string for no provider. @@ -55,26 +58,32 @@ federation-apiserver --etcd-quorum-read If true, enable quorum read. --etcd-servers stringSlice List of etcd servers to connect with (scheme://ip:port), comma separated. --etcd-servers-overrides stringSlice Per-resource etcd servers overrides, comma separated. The individual override format: group/resource#servers, where servers are http://ip:port, semicolon separated. - --event-ttl duration Amount of time to retain events. Default is 1h. (default 1h0m0s) + --event-ttl duration Amount of time to retain events. (default 1h0m0s) --experimental-bootstrap-token-auth Enable to allow secrets of type 'bootstrap.kubernetes.io/token' in the 'kube-system' namespace to be used for TLS bootstrapping authentication. + --experimental-encryption-provider-config string The file containing configuration for encryption providers to be used for storing secrets in etcd --experimental-keystone-ca-file string If set, the Keystone server's certificate will be verified by one of the authorities in the experimental-keystone-ca-file, otherwise the host's root CA set will be used. --experimental-keystone-url string If passed, activates the keystone authentication plugin. --external-hostname string The hostname to use when generating externalized URLs for this master (e.g. Swagger API Docs). --feature-gates mapStringBool A set of key=value pairs that describe feature gates for alpha/experimental features. Options are: Accelerators=true|false (ALPHA - default=false) +AdvancedAuditing=true|false (ALPHA - default=false) AffinityInAnnotations=true|false (ALPHA - default=false) AllAlpha=true|false (ALPHA - default=false) -AllowExtTrafficLocalEndpoints=true|false (BETA - default=true) +AllowExtTrafficLocalEndpoints=true|false (default=true) AppArmor=true|false (BETA - default=true) DynamicKubeletConfig=true|false (ALPHA - default=false) DynamicVolumeProvisioning=true|false (ALPHA - default=true) ExperimentalCriticalPodAnnotation=true|false (ALPHA - default=false) ExperimentalHostUserNamespaceDefaulting=true|false (BETA - default=false) +LocalStorageCapacityIsolation=true|false (ALPHA - default=false) +PersistentLocalVolumes=true|false (ALPHA - default=false) +RotateKubeletClientCertificate=true|false (ALPHA - default=false) +RotateKubeletServerCertificate=true|false (ALPHA - default=false) StreamingProxyRedirects=true|false (BETA - default=true) TaintBasedEvictions=true|false (ALPHA - default=false) --insecure-allow-any-token username/group1,group2 If set, your server will be INSECURE. Any token will be allowed and user information will be parsed from the token as username/group1,group2 - --insecure-bind-address ip The IP address on which to serve the --insecure-port (set to 0.0.0.0 for all interfaces). Defaults to localhost. (default 127.0.0.1) - --insecure-port int The port on which to serve unsecured, unauthenticated access. Default 8080. It is assumed that firewall rules are set up such that this port is not reachable from outside of the cluster and that port 443 on the cluster's public address is proxied to this port. This is performed by nginx in the default setup. (default 8080) + --insecure-bind-address ip The IP address on which to serve the --insecure-port (set to 0.0.0.0 for all interfaces). (default 127.0.0.1) + --insecure-port int The port on which to serve unsecured, unauthenticated access. It is assumed that firewall rules are set up such that this port is not reachable from outside of the cluster and that port 443 on the cluster's public address is proxied to this port. This is performed by nginx in the default setup. (default 8080) --master-service-namespace string DEPRECATED: the namespace from which the kubernetes master services should be injected into pods. (default "default") --max-mutating-requests-inflight int The maximum number of mutating requests in flight at a given time. When the server exceeds this, it rejects requests. Zero for no limit. (default 200) --max-requests-inflight int The maximum number of non-mutating requests in flight at a given time. When the server exceeds this, it rejects requests. Zero for no limit. (default 400) @@ -93,18 +102,18 @@ TaintBasedEvictions=true|false (ALPHA - default=false) --runtime-config mapStringString A set of key=value pairs that describe runtime configuration that may be passed to apiserver. apis/ key can be used to turn on/off specific api versions. apis// can be used to turn on/off specific resources. api/all and api/legacy are special keys to control all and legacy api versions respectively. --secure-port int The port on which to serve HTTPS with authentication and authorization. If 0, don't serve HTTPS at all. (default 6443) --service-account-key-file stringArray File containing PEM-encoded x509 RSA or ECDSA private or public keys, used to verify ServiceAccount tokens. If unspecified, --tls-private-key-file is used. The specified file can contain multiple keys, and the flag can be specified multiple times with different files. - --service-account-lookup If true, validate ServiceAccount tokens exist in etcd as part of authentication. + --service-account-lookup If true, validate ServiceAccount tokens exist in etcd as part of authentication. (default true) --storage-backend string The storage backend for persistence. Options: 'etcd3' (default), 'etcd2'. --storage-media-type string The media type to use to store objects in storage. Some resources or storage backends may only support a specific media type and will ignore this setting. (default "application/vnd.kubernetes.protobuf") - --storage-versions string The per-group version to store resources in. Specified in the format "group1/version1,group2/version2,...". In the case where objects are moved from one group to the other, you may specify the format "group1=group2/v1beta1,group3/v1beta1,...". You only need to pass the groups you wish to change from the defaults. It defaults to a list of preferred versions of all registered groups, which is derived from the KUBE_API_VERSIONS environment variable. (default "apps/v1beta1,authentication.k8s.io/v1,authorization.k8s.io/v1,autoscaling/v1,batch/v1,certificates.k8s.io/v1beta1,componentconfig/v1alpha1,extensions/v1beta1,federation/v1beta1,policy/v1beta1,rbac.authorization.k8s.io/v1beta1,settings.k8s.io/v1alpha1,storage.k8s.io/v1beta1,v1") + --storage-versions string The per-group version to store resources in. Specified in the format "group1/version1,group2/version2,...". In the case where objects are moved from one group to the other, you may specify the format "group1=group2/v1beta1,group3/v1beta1,...". You only need to pass the groups you wish to change from the defaults. It defaults to a list of preferred versions of all registered groups, which is derived from the KUBE_API_VERSIONS environment variable. (default "admissionregistration.k8s.io/v1alpha1,apps/v1beta1,authentication.k8s.io/v1,authorization.k8s.io/v1,autoscaling/v1,batch/v1,certificates.k8s.io/v1beta1,componentconfig/v1alpha1,extensions/v1beta1,federation/v1beta1,networking.k8s.io/v1,policy/v1beta1,rbac.authorization.k8s.io/v1beta1,settings.k8s.io/v1alpha1,storage.k8s.io/v1,v1") --target-ram-mb int Memory limit for apiserver in MB (used to configure sizes of caches, etc.) --tls-ca-file string If set, this certificate authority will used for secure access from Admission Controllers. This must be a valid PEM-encoded CA bundle. Altneratively, the certificate authority can be appended to the certificate provided by --tls-cert-file. --tls-cert-file string File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert). If HTTPS serving is enabled, and --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key are generated for the public address and saved to /var/run/kubernetes. --tls-private-key-file string File containing the default x509 private key matching --tls-cert-file. - --tls-sni-cert-key namedCertKey A pair of x509 certificate and private key file paths, optionally suffixed with a list of domain patterns which are fully qualified domain names, possibly with prefixed wildcard segments. If no domain patterns are provided, the names of the certificate are extracted. Non-wildcard matches trump over wildcard matches, explicit domain patterns trump over extracted names. For multiple key/certificate pairs, use the --tls-sni-cert-key multiple times. Examples: "example.key,example.crt" or "*.foo.com,foo.com:foo.key,foo.crt". (default []) + --tls-sni-cert-key namedCertKey A pair of x509 certificate and private key file paths, optionally suffixed with a list of domain patterns which are fully qualified domain names, possibly with prefixed wildcard segments. If no domain patterns are provided, the names of the certificate are extracted. Non-wildcard matches trump over wildcard matches, explicit domain patterns trump over extracted names. For multiple key/certificate pairs, use the --tls-sni-cert-key multiple times. Examples: "example.crt,example.key" or "foo.crt,foo.key:*.foo.com,foo.com". (default []) --token-auth-file string If set, the file that will be used to secure the secure port of the API server via token authentication. --watch-cache Enable watch caching in the apiserver (default true) --watch-cache-sizes stringSlice List of watch cache sizes for every resource (pods, nodes, etc.), comma separated. The individual override format: resource#size, where size is a number. It takes effect when watch-cache is enabled. ``` -###### Auto generated by spf13/cobra on 21-Mar-2017 +###### Auto generated by spf13/cobra on 11-Jul-2017 diff --git a/docs/admin/federation-controller-manager.md b/docs/admin/federation-controller-manager.md index a22e37e086..53e578661f 100644 --- a/docs/admin/federation-controller-manager.md +++ b/docs/admin/federation-controller-manager.md @@ -40,6 +40,7 @@ federation-controller-manager --leader-elect Start a leader election client and gain leadership before executing the main loop. Enable this when running replicated components for high availability. --leader-elect-lease-duration duration The duration that non-leader candidates will wait after observing a leadership renewal until attempting to acquire leadership of a led but unrenewed leader slot. This is effectively the maximum duration that a leader can be stopped before it is replaced by another candidate. This is only applicable if leader election is enabled. (default 15s) --leader-elect-renew-deadline duration The interval between attempts by the acting master to renew a leadership slot before it stops leading. This must be less than or equal to the lease duration. This is only applicable if leader election is enabled. (default 10s) + --leader-elect-resource-lock endpoints The type of resource resource object that is used for locking duringleader election. Supported options are endpoints (default) and `configmap`. (default "endpoints") --leader-elect-retry-period duration The duration the clients should wait between attempting acquisition and renewal of a leadership. This is only applicable if leader election is enabled. (default 2s) --master string The address of the federation API server (overrides any value in kubeconfig) --port int The port that the controller-manager's http service runs on (default 10253) @@ -49,4 +50,4 @@ federation-controller-manager --zone-name string Zone name, like example.com. ``` -###### Auto generated by spf13/cobra on 21-Mar-2017 +###### Auto generated by spf13/cobra on 11-Jul-2017 diff --git a/docs/admin/kube-apiserver.md b/docs/admin/kube-apiserver.md index 53b51eaf1c..fa3b3338c9 100644 --- a/docs/admin/kube-apiserver.md +++ b/docs/admin/kube-apiserver.md @@ -21,7 +21,7 @@ kube-apiserver ### Options ``` - --admission-control string Ordered list of plug-ins to do admission control of resources into cluster. Comma-delimited list of: AlwaysAdmit, AlwaysDeny, AlwaysPullImages, DefaultStorageClass, DefaultTolerationSeconds, DenyEscalatingExec, DenyExecOnPrivileged, ImagePolicyWebhook, InitialResources, LimitPodHardAntiAffinityTopology, LimitRanger, NamespaceAutoProvision, NamespaceExists, NamespaceLifecycle, OwnerReferencesPermissionEnforcement, PersistentVolumeLabel, PodNodeSelector, PodPreset, PodSecurityPolicy, ResourceQuota, SecurityContextDeny, ServiceAccount. (default "AlwaysAdmit") + --admission-control stringSlice Ordered list of plug-ins to do admission control of resources into cluster. Comma-delimited list of: NamespaceLifecycle. (default [AlwaysAdmit]) --admission-control-config-file string File with admission control configuration. --advertise-address ip The IP address on which to advertise the apiserver to members of the cluster. This address must be reachable by the rest of the cluster. If blank, the --bind-address will be used. If --bind-address is unspecified, the host's default interface will be used. --allow-privileged If true, allow privileged containers. @@ -29,19 +29,22 @@ kube-apiserver --apiserver-count int The number of apiservers running in the cluster, must be a positive number. (default 1) --audit-log-maxage int The maximum number of days to retain old audit log files based on the timestamp encoded in their filename. --audit-log-maxbackup int The maximum number of old audit log files to retain. - --audit-log-maxsize int The maximum size in megabytes of the audit log file before it gets rotated. Defaults to 100MB. - --audit-log-path string If set, all requests coming to the apiserver will be logged to this file. - --authentication-token-webhook-cache-ttl duration The duration to cache responses from the webhook token authenticator. Default is 2m. (default 2m0s) + --audit-log-maxsize int The maximum size in megabytes of the audit log file before it gets rotated. + --audit-log-path string If set, all requests coming to the apiserver will be logged to this file. '-' means standard out. + --audit-policy-file string Path to the file that defines the audit policy configuration. Requires the 'AdvancedAuditing' feature gate. With AdvancedAuditing, a profile is required to enable auditing. + --audit-webhook-config-file string Path to a kubeconfig formatted file that defines the audit webhook configuration. Requires the 'AdvancedAuditing' feature gate. + --audit-webhook-mode string Strategy for sending audit events. Blocking indicates sending events should block server responses. Batch causes the webhook to buffer and send events asynchronously. Known modes are batch,blocking. (default "batch") + --authentication-token-webhook-cache-ttl duration The duration to cache responses from the webhook token authenticator. (default 2m0s) --authentication-token-webhook-config-file string File with webhook configuration for token authentication in kubeconfig format. The API server will query the remote service to determine authentication for bearer tokens. - --authorization-mode string Ordered list of plug-ins to do authorization on secure port. Comma-delimited list of: AlwaysAllow,AlwaysDeny,ABAC,Webhook,RBAC. (default "AlwaysAllow") + --authorization-mode string Ordered list of plug-ins to do authorization on secure port. Comma-delimited list of: AlwaysAllow,AlwaysDeny,ABAC,Webhook,RBAC,Node. (default "AlwaysAllow") --authorization-policy-file string File with authorization policy in csv format, used with --authorization-mode=ABAC, on the secure port. - --authorization-webhook-cache-authorized-ttl duration The duration to cache 'authorized' responses from the webhook authorizer. Default is 5m. (default 5m0s) - --authorization-webhook-cache-unauthorized-ttl duration The duration to cache 'unauthorized' responses from the webhook authorizer. Default is 30s. (default 30s) + --authorization-webhook-cache-authorized-ttl duration The duration to cache 'authorized' responses from the webhook authorizer. (default 5m0s) + --authorization-webhook-cache-unauthorized-ttl duration The duration to cache 'unauthorized' responses from the webhook authorizer. (default 30s) --authorization-webhook-config-file string File with webhook configuration in kubeconfig format, used with --authorization-mode=Webhook. The API server will query the remote service to determine access on the API server's secure port. --azure-container-registry-config string Path to the file container Azure container registry configuration information. --basic-auth-file string If set, the file that will be used to admit requests to the secure port of the API server via http basic authentication. --bind-address ip The IP address on which to listen for the --secure-port port. The associated interface(s) must be reachable by the rest of the cluster, and by CLI/web clients. If blank, all interfaces will be used (0.0.0.0). (default 0.0.0.0) - --cert-dir string The directory where the TLS certs are located (by default /var/run/kubernetes). If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored. (default "/var/run/kubernetes") + --cert-dir string The directory where the TLS certs are located. If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored. (default "/var/run/kubernetes") --client-ca-file string If set, any request presenting a client certificate signed by one of the authorities in the client-ca-file is authenticated with an identity corresponding to the CommonName of the client certificate. --cloud-config string The path to the cloud provider configuration file. Empty string for no configuration file. --cloud-provider string The provider for cloud services. Empty string for no provider. @@ -49,7 +52,9 @@ kube-apiserver --cors-allowed-origins stringSlice List of allowed origins for CORS, comma separated. An allowed origin can be a regular expression to support subdomain matching. If this list is empty CORS will not be enabled. --delete-collection-workers int Number of workers spawned for DeleteCollection call. These are used to speed up namespace cleanup. (default 1) --deserialization-cache-size int Number of deserialized json objects to cache in memory. + --enable-aggregator-routing Turns on aggregator routing requests to endoints IP rather than cluster IP. --enable-garbage-collector Enables the generic garbage collector. MUST be synced with the corresponding flag of the kube-controller-manager. (default true) + --enable-logs-handler If true, install a /logs handler for the apiserver logs. (default true) --enable-swagger-ui Enables swagger ui on the apiserver at /swagger-ui --etcd-cafile string SSL Certificate Authority file used to secure etcd communication. --etcd-certfile string SSL certification file used to secure etcd communication. @@ -58,32 +63,38 @@ kube-apiserver --etcd-quorum-read If true, enable quorum read. --etcd-servers stringSlice List of etcd servers to connect with (scheme://ip:port), comma separated. --etcd-servers-overrides stringSlice Per-resource etcd servers overrides, comma separated. The individual override format: group/resource#servers, where servers are http://ip:port, semicolon separated. - --event-ttl duration Amount of time to retain events. Default is 1h. (default 1h0m0s) + --event-ttl duration Amount of time to retain events. (default 1h0m0s) --experimental-bootstrap-token-auth Enable to allow secrets of type 'bootstrap.kubernetes.io/token' in the 'kube-system' namespace to be used for TLS bootstrapping authentication. + --experimental-encryption-provider-config string The file containing configuration for encryption providers to be used for storing secrets in etcd --experimental-keystone-ca-file string If set, the Keystone server's certificate will be verified by one of the authorities in the experimental-keystone-ca-file, otherwise the host's root CA set will be used. --experimental-keystone-url string If passed, activates the keystone authentication plugin. --external-hostname string The hostname to use when generating externalized URLs for this master (e.g. Swagger API Docs). --feature-gates mapStringBool A set of key=value pairs that describe feature gates for alpha/experimental features. Options are: Accelerators=true|false (ALPHA - default=false) +AdvancedAuditing=true|false (ALPHA - default=false) AffinityInAnnotations=true|false (ALPHA - default=false) AllAlpha=true|false (ALPHA - default=false) -AllowExtTrafficLocalEndpoints=true|false (BETA - default=true) +AllowExtTrafficLocalEndpoints=true|false (default=true) AppArmor=true|false (BETA - default=true) DynamicKubeletConfig=true|false (ALPHA - default=false) DynamicVolumeProvisioning=true|false (ALPHA - default=true) ExperimentalCriticalPodAnnotation=true|false (ALPHA - default=false) ExperimentalHostUserNamespaceDefaulting=true|false (BETA - default=false) +LocalStorageCapacityIsolation=true|false (ALPHA - default=false) +PersistentLocalVolumes=true|false (ALPHA - default=false) +RotateKubeletClientCertificate=true|false (ALPHA - default=false) +RotateKubeletServerCertificate=true|false (ALPHA - default=false) StreamingProxyRedirects=true|false (BETA - default=true) TaintBasedEvictions=true|false (ALPHA - default=false) --google-json-key string The Google Cloud Platform Service Account JSON Key to use for authentication. --insecure-allow-any-token username/group1,group2 If set, your server will be INSECURE. Any token will be allowed and user information will be parsed from the token as username/group1,group2 - --insecure-bind-address ip The IP address on which to serve the --insecure-port (set to 0.0.0.0 for all interfaces). Defaults to localhost. (default 127.0.0.1) - --insecure-port int The port on which to serve unsecured, unauthenticated access. Default 8080. It is assumed that firewall rules are set up such that this port is not reachable from outside of the cluster and that port 443 on the cluster's public address is proxied to this port. This is performed by nginx in the default setup. (default 8080) + --insecure-bind-address ip The IP address on which to serve the --insecure-port (set to 0.0.0.0 for all interfaces). (default 127.0.0.1) + --insecure-port int The port on which to serve unsecured, unauthenticated access. It is assumed that firewall rules are set up such that this port is not reachable from outside of the cluster and that port 443 on the cluster's public address is proxied to this port. This is performed by nginx in the default setup. (default 8080) --kubelet-certificate-authority string Path to a cert file for the certificate authority. --kubelet-client-certificate string Path to a client cert file for TLS. --kubelet-client-key string Path to a client key file for TLS. --kubelet-https Use https for kubelet connections. (default true) - --kubelet-preferred-address-types stringSlice List of the preferred NodeAddressTypes to use for kubelet connections. (default [Hostname,InternalDNS,InternalIP,ExternalDNS,ExternalIP,LegacyHostIP]) + --kubelet-preferred-address-types stringSlice List of the preferred NodeAddressTypes to use for kubelet connections. (default [Hostname,InternalDNS,InternalIP,ExternalDNS,ExternalIP]) --kubelet-read-only-port uint DEPRECATED: kubelet port. (default 10255) --kubelet-timeout duration Timeout for kubelet operations. (default 5s) --kubernetes-service-node-port int If non-zero, the Kubernetes master service (which apiserver creates/maintains) will be of type NodePort, using this as the value of the port. If zero, the Kubernetes master service will be of type ClusterIP. @@ -98,6 +109,8 @@ TaintBasedEvictions=true|false (ALPHA - default=false) --oidc-issuer-url string The URL of the OpenID issuer, only HTTPS scheme will be accepted. If set, it will be used to verify the OIDC JSON Web Token (JWT). --oidc-username-claim string The OpenID claim to use as the user name. Note that claims other than the default ('sub') is not guaranteed to be unique and immutable. This flag is experimental, please see the authentication documentation for further details. (default "sub") --profiling Enable profiling via web interface host:port/debug/pprof/ (default true) + --proxy-client-cert-file string Client certificate used to prove the identity of the aggregator or kube-apiserver when it must call out during a request. This includes proxying requests to a user api-server and calling out to webhook admission plugins. It is expected that this cert includes a signature from the CA in the --requestheader-client-ca-file flag. That CA is published in the 'extension-apiserver-authentication' configmap in the kube-system namespace. Components recieving calls from kube-aggregator should use that CA to perform their half of the mutual TLS verification. + --proxy-client-key-file string Private key for the client certificate used to prove the identity of the aggregator or kube-apiserver when it must call out during a request. This includes proxying requests to a user api-server and calling out to webhook admission plugins. --repair-malformed-updates If true, server will do its best to fix the update request to pass the validation, e.g., setting empty UID in update request to its existing value. This flag can be turned off after we fix all the clients that send malformed updates. (default true) --requestheader-allowed-names stringSlice List of client certificate common names to allow to provide usernames in headers specified by --requestheader-username-headers. If empty, any client certificate validated by the authorities in --requestheader-client-ca-file is allowed. --requestheader-client-ca-file string Root certificate bundle to use to verify client certificates on incoming requests before trusting usernames in headers specified by --requestheader-username-headers @@ -107,22 +120,23 @@ TaintBasedEvictions=true|false (ALPHA - default=false) --runtime-config mapStringString A set of key=value pairs that describe runtime configuration that may be passed to apiserver. apis/ key can be used to turn on/off specific api versions. apis// can be used to turn on/off specific resources. api/all and api/legacy are special keys to control all and legacy api versions respectively. --secure-port int The port on which to serve HTTPS with authentication and authorization. If 0, don't serve HTTPS at all. (default 6443) --service-account-key-file stringArray File containing PEM-encoded x509 RSA or ECDSA private or public keys, used to verify ServiceAccount tokens. If unspecified, --tls-private-key-file is used. The specified file can contain multiple keys, and the flag can be specified multiple times with different files. - --service-account-lookup If true, validate ServiceAccount tokens exist in etcd as part of authentication. + --service-account-lookup If true, validate ServiceAccount tokens exist in etcd as part of authentication. (default true) --service-cluster-ip-range ipNet A CIDR notation IP range from which to assign service cluster IPs. This must not overlap with any IP ranges assigned to nodes for pods. --service-node-port-range portRange A port range to reserve for services with NodePort visibility. Example: '30000-32767'. Inclusive at both ends of the range. (default 30000-32767) --ssh-keyfile string If non-empty, use secure SSH proxy to the nodes, using this user keyfile --ssh-user string If non-empty, use secure SSH proxy to the nodes, using this user name --storage-backend string The storage backend for persistence. Options: 'etcd3' (default), 'etcd2'. --storage-media-type string The media type to use to store objects in storage. Some resources or storage backends may only support a specific media type and will ignore this setting. (default "application/vnd.kubernetes.protobuf") - --storage-versions string The per-group version to store resources in. Specified in the format "group1/version1,group2/version2,...". In the case where objects are moved from one group to the other, you may specify the format "group1=group2/v1beta1,group3/v1beta1,...". You only need to pass the groups you wish to change from the defaults. It defaults to a list of preferred versions of all registered groups, which is derived from the KUBE_API_VERSIONS environment variable. (default "apps/v1beta1,authentication.k8s.io/v1,authorization.k8s.io/v1,autoscaling/v1,batch/v1,certificates.k8s.io/v1beta1,componentconfig/v1alpha1,extensions/v1beta1,imagepolicy.k8s.io/v1alpha1,policy/v1beta1,rbac.authorization.k8s.io/v1beta1,settings.k8s.io/v1alpha1,storage.k8s.io/v1beta1,v1") + --storage-versions string The per-group version to store resources in. Specified in the format "group1/version1,group2/version2,...". In the case where objects are moved from one group to the other, you may specify the format "group1=group2/v1beta1,group3/v1beta1,...". You only need to pass the groups you wish to change from the defaults. It defaults to a list of preferred versions of all registered groups, which is derived from the KUBE_API_VERSIONS environment variable. (default "admission.k8s.io/v1alpha1,admissionregistration.k8s.io/v1alpha1,apps/v1beta1,authentication.k8s.io/v1,authorization.k8s.io/v1,autoscaling/v1,batch/v1,certificates.k8s.io/v1beta1,componentconfig/v1alpha1,extensions/v1beta1,federation/v1beta1,imagepolicy.k8s.io/v1alpha1,networking.k8s.io/v1,policy/v1beta1,rbac.authorization.k8s.io/v1beta1,settings.k8s.io/v1alpha1,storage.k8s.io/v1,v1") --target-ram-mb int Memory limit for apiserver in MB (used to configure sizes of caches, etc.) --tls-ca-file string If set, this certificate authority will used for secure access from Admission Controllers. This must be a valid PEM-encoded CA bundle. Altneratively, the certificate authority can be appended to the certificate provided by --tls-cert-file. --tls-cert-file string File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert). If HTTPS serving is enabled, and --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key are generated for the public address and saved to /var/run/kubernetes. --tls-private-key-file string File containing the default x509 private key matching --tls-cert-file. - --tls-sni-cert-key namedCertKey A pair of x509 certificate and private key file paths, optionally suffixed with a list of domain patterns which are fully qualified domain names, possibly with prefixed wildcard segments. If no domain patterns are provided, the names of the certificate are extracted. Non-wildcard matches trump over wildcard matches, explicit domain patterns trump over extracted names. For multiple key/certificate pairs, use the --tls-sni-cert-key multiple times. Examples: "example.key,example.crt" or "*.foo.com,foo.com:foo.key,foo.crt". (default []) + --tls-sni-cert-key namedCertKey A pair of x509 certificate and private key file paths, optionally suffixed with a list of domain patterns which are fully qualified domain names, possibly with prefixed wildcard segments. If no domain patterns are provided, the names of the certificate are extracted. Non-wildcard matches trump over wildcard matches, explicit domain patterns trump over extracted names. For multiple key/certificate pairs, use the --tls-sni-cert-key multiple times. Examples: "example.crt,example.key" or "foo.crt,foo.key:*.foo.com,foo.com". (default []) --token-auth-file string If set, the file that will be used to secure the secure port of the API server via token authentication. + --version version[=true] Print version information and quit --watch-cache Enable watch caching in the apiserver (default true) --watch-cache-sizes stringSlice List of watch cache sizes for every resource (pods, nodes, etc.), comma separated. The individual override format: resource#size, where size is a number. It takes effect when watch-cache is enabled. ``` -###### Auto generated by spf13/cobra on 21-Mar-2017 +###### Auto generated by spf13/cobra on 11-Jul-2017 diff --git a/docs/admin/kube-controller-manager.md b/docs/admin/kube-controller-manager.md index eb814e1e2d..5a62226563 100644 --- a/docs/admin/kube-controller-manager.md +++ b/docs/admin/kube-controller-manager.md @@ -29,6 +29,7 @@ kube-controller-manager --allocate-node-cidrs Should CIDRs for Pods be allocated and set on the cloud provider. --attach-detach-reconcile-sync-period duration The reconciler sync wait time between volume attach detach. This duration must be larger than one second, and increasing this value from the default may allow for volumes to be mismatched with pods. (default 1m0s) --azure-container-registry-config string Path to the file container Azure container registry configuration information. + --cidr-allocator-type string Type of CIDR allocator to use (default "RangeAllocator") --cloud-config string The path to the cloud provider configuration file. Empty string for no configuration file. --cloud-provider string The provider for cloud services. Empty string for no provider. --cluster-cidr string CIDR Range for Pods in cluster. @@ -38,7 +39,7 @@ kube-controller-manager --concurrent-deployment-syncs int32 The number of deployment objects that are allowed to sync concurrently. Larger number = more responsive deployments, but more CPU (and network) load (default 5) --concurrent-endpoint-syncs int32 The number of endpoint syncing operations that will be done concurrently. Larger number = faster endpoint updating, but more CPU (and network) load (default 5) --concurrent-gc-syncs int32 The number of garbage collector workers that are allowed to sync concurrently. (default 20) - --concurrent-namespace-syncs int32 The number of namespace objects that are allowed to sync concurrently. Larger number = more responsive namespace termination, but more CPU (and network) load (default 2) + --concurrent-namespace-syncs int32 The number of namespace objects that are allowed to sync concurrently. Larger number = more responsive namespace termination, but more CPU (and network) load (default 10) --concurrent-replicaset-syncs int32 The number of replica sets that are allowed to sync concurrently. Larger number = more responsive replica management, but more CPU (and network) load (default 5) --concurrent-resource-quota-syncs int32 The number of resource quotas that are allowed to sync concurrently. Larger number = more responsive quota management, but more CPU (and network) load (default 5) --concurrent-service-syncs int32 The number of services that are allowed to sync concurrently. Larger number = more responsive service management, but more CPU (and network) load (default 1) @@ -48,31 +49,39 @@ kube-controller-manager --contention-profiling Enable lock contention profiling, if profiling is enabled --controller-start-interval duration Interval between starting controller managers. --controllers stringSlice A list of controllers to enable. '*' enables all on-by-default controllers, 'foo' enables the controller named 'foo', '-foo' disables the controller named 'foo'. -All controllers: attachdetach, bootstrapsigner, certificatesigningrequests, cronjob, daemonset, deployment, disruption, endpoint, garbagecollector, horizontalpodautoscaling, job, namespace, node, persistentvolume-binder, podgc, replicaset, replicationcontroller, resourcequota, route, service, serviceaccount, serviceaccount-token, statefuleset, tokencleaner, ttl +All controllers: attachdetach, bootstrapsigner, cronjob, csrapproving, csrsigning, daemonset, deployment, disruption, endpoint, garbagecollector, horizontalpodautoscaling, job, namespace, node, persistentvolume-binder, podgc, replicaset, replicationcontroller, resourcequota, route, service, serviceaccount, serviceaccount-token, statefulset, tokencleaner, ttl Disabled-by-default controllers: bootstrapsigner, tokencleaner (default [*]) --deployment-controller-sync-period duration Period for syncing the deployments. (default 30s) --disable-attach-detach-reconcile-sync Disable volume attach detach reconciler sync. Disabling this may cause volumes to be mismatched with pods. Use wisely. --enable-dynamic-provisioning Enable dynamic provisioning for environments that support it. (default true) --enable-garbage-collector Enables the generic garbage collector. MUST be synced with the corresponding flag of the kube-apiserver. (default true) --enable-hostpath-provisioner Enable HostPath PV provisioning when running without a cloud provider. This allows testing and development of provisioning features. HostPath provisioning is not supported in any way, won't work in a multi-node cluster, and should not be used for anything other than testing or development. - --enable-taint-manager WARNING: Beta feature. If set to true, enables NoExecute Taints and will evict all not-tolerating Pods running on Nodes tainted with these kinds of Taints. (default true) + --enable-taint-manager WARNING: Beta feature. If set to true enables NoExecute Taints and will evict all not-tolerating Pod running on Nodes tainted with this kind of Taints. (default true) + --experimental-cluster-signing-duration duration The length of duration signed certificates will be given. (default 8760h0m0s) --feature-gates mapStringBool A set of key=value pairs that describe feature gates for alpha/experimental features. Options are: Accelerators=true|false (ALPHA - default=false) +AdvancedAuditing=true|false (ALPHA - default=false) AffinityInAnnotations=true|false (ALPHA - default=false) AllAlpha=true|false (ALPHA - default=false) -AllowExtTrafficLocalEndpoints=true|false (BETA - default=true) +AllowExtTrafficLocalEndpoints=true|false (default=true) AppArmor=true|false (BETA - default=true) DynamicKubeletConfig=true|false (ALPHA - default=false) DynamicVolumeProvisioning=true|false (ALPHA - default=true) ExperimentalCriticalPodAnnotation=true|false (ALPHA - default=false) ExperimentalHostUserNamespaceDefaulting=true|false (BETA - default=false) +LocalStorageCapacityIsolation=true|false (ALPHA - default=false) +PersistentLocalVolumes=true|false (ALPHA - default=false) +RotateKubeletClientCertificate=true|false (ALPHA - default=false) +RotateKubeletServerCertificate=true|false (ALPHA - default=false) StreamingProxyRedirects=true|false (BETA - default=true) TaintBasedEvictions=true|false (ALPHA - default=false) --flex-volume-plugin-dir string Full path of the directory in which the flex volume plugin should search for additional third party volume plugins. (default "/usr/libexec/kubernetes/kubelet-plugins/volume/exec/") --google-json-key string The Google Cloud Platform Service Account JSON Key to use for authentication. + --horizontal-pod-autoscaler-downscale-delay duration The period since last downscale, before another downscale can be performed in horizontal pod autoscaler. (default 5m0s) --horizontal-pod-autoscaler-sync-period duration The period for syncing the number of pods in horizontal pod autoscaler. (default 30s) + --horizontal-pod-autoscaler-upscale-delay duration The period since last upscale, before another upscale can be performed in horizontal pod autoscaler. (default 3m0s) --horizontal-pod-autoscaler-use-rest-clients WARNING: alpha feature. If set to true, causes the horizontal pod autoscaler controller to use REST clients through the kube-aggregator, instead of using the legacy metrics client through the API server proxy. This is required for custom metrics support in the horizonal pod autoscaler. - --insecure-experimental-approve-all-kubelet-csrs-for-group string The group for which the controller-manager will auto approve all CSRs for kubelet client certificates. + --insecure-experimental-approve-all-kubelet-csrs-for-group string This flag does nothing. --kube-api-burst int32 Burst to use while talking with kubernetes apiserver (default 30) --kube-api-content-type string Content type of requests sent to apiserver. (default "application/vnd.kubernetes.protobuf") --kube-api-qps float32 QPS to use while talking with kubernetes apiserver (default 20) @@ -81,6 +90,7 @@ TaintBasedEvictions=true|false (ALPHA - default=false) --leader-elect Start a leader election client and gain leadership before executing the main loop. Enable this when running replicated components for high availability. (default true) --leader-elect-lease-duration duration The duration that non-leader candidates will wait after observing a leadership renewal until attempting to acquire leadership of a led but unrenewed leader slot. This is effectively the maximum duration that a leader can be stopped before it is replaced by another candidate. This is only applicable if leader election is enabled. (default 15s) --leader-elect-renew-deadline duration The interval between attempts by the acting master to renew a leadership slot before it stops leading. This must be less than or equal to the lease duration. This is only applicable if leader election is enabled. (default 10s) + --leader-elect-resource-lock endpoints The type of resource resource object that is used for locking duringleader election. Supported options are endpoints (default) and `configmap`. (default "endpoints") --leader-elect-retry-period duration The duration the clients should wait between attempting acquisition and renewal of a leadership. This is only applicable if leader election is enabled. (default 2s) --master string The address of the Kubernetes API server (overrides any value in kubeconfig) --min-resync-period duration The resync period in reflectors will be random between MinResyncPeriod and 2*MinResyncPeriod (default 12h0m0s) @@ -110,6 +120,7 @@ TaintBasedEvictions=true|false (ALPHA - default=false) --terminated-pod-gc-threshold int32 Number of terminated pods that can exist before the terminated pod garbage collector starts deleting terminated pods. If <= 0, the terminated pod garbage collector is disabled. (default 12500) --unhealthy-zone-threshold float32 Fraction of Nodes in a zone which needs to be not Ready (minimum 3) for zone to be treated as unhealthy. (default 0.55) --use-service-account-credentials If true, use individual service account credentials for each controller. + --version version[=true] Print version information and quit ``` -###### Auto generated by spf13/cobra on 21-Mar-2017 +###### Auto generated by spf13/cobra on 11-Jul-2017 diff --git a/docs/admin/kube-proxy.md b/docs/admin/kube-proxy.md index 4772c0ae37..4c8b62d67f 100644 --- a/docs/admin/kube-proxy.md +++ b/docs/admin/kube-proxy.md @@ -28,6 +28,7 @@ kube-proxy --bind-address ip The IP address for the proxy server to serve on (set to 0.0.0.0 for all interfaces) (default 0.0.0.0) --cleanup-iptables If true cleanup iptables rules and exit. --cluster-cidr string The CIDR range of pods in the cluster. It is used to bridge traffic coming from outside of the cluster. If not provided, no off-cluster bridging will be performed. + --config string The path to the configuration file. --config-sync-period duration How often configuration from the apiserver is refreshed. Must be greater than 0. (default 15m0s) --conntrack-max-per-core int32 Maximum number of NAT connections to track per CPU core (0 to leave the limit as-is and ignore conntrack-min). (default 32768) --conntrack-min int32 Minimum number of conntrack entries to allocate, regardless of conntrack-max-per-core (set conntrack-max-per-core=0 to leave the limit as-is). (default 131072) @@ -35,33 +36,41 @@ kube-proxy --conntrack-tcp-timeout-established duration Idle timeout for established TCP connections (0 to leave as-is) (default 24h0m0s) --feature-gates mapStringBool A set of key=value pairs that describe feature gates for alpha/experimental features. Options are: Accelerators=true|false (ALPHA - default=false) +AdvancedAuditing=true|false (ALPHA - default=false) AffinityInAnnotations=true|false (ALPHA - default=false) AllAlpha=true|false (ALPHA - default=false) -AllowExtTrafficLocalEndpoints=true|false (BETA - default=true) +AllowExtTrafficLocalEndpoints=true|false (default=true) AppArmor=true|false (BETA - default=true) DynamicKubeletConfig=true|false (ALPHA - default=false) DynamicVolumeProvisioning=true|false (ALPHA - default=true) ExperimentalCriticalPodAnnotation=true|false (ALPHA - default=false) ExperimentalHostUserNamespaceDefaulting=true|false (BETA - default=false) +LocalStorageCapacityIsolation=true|false (ALPHA - default=false) +PersistentLocalVolumes=true|false (ALPHA - default=false) +RotateKubeletClientCertificate=true|false (ALPHA - default=false) +RotateKubeletServerCertificate=true|false (ALPHA - default=false) StreamingProxyRedirects=true|false (BETA - default=true) TaintBasedEvictions=true|false (ALPHA - default=false) --google-json-key string The Google Cloud Platform Service Account JSON Key to use for authentication. - --healthz-bind-address ip The IP address for the health check server to serve on, defaulting to 127.0.0.1 (set to 0.0.0.0 for all interfaces) (default 127.0.0.1) - --healthz-port int32 The port to bind the health check server. Use 0 to disable. (default 10249) + --healthz-bind-address ip The IP address and port for the health check server to serve on (set to 0.0.0.0 for all interfaces) (default 0.0.0.0:10256) + --healthz-port int32 The port to bind the health check server. Use 0 to disable. (default 10256) --hostname-override string If non-empty, will use this string as identification instead of the actual hostname. --iptables-masquerade-bit int32 If using the pure iptables proxy, the bit of the fwmark space to mark packets requiring SNAT with. Must be within the range [0, 31]. (default 14) --iptables-min-sync-period duration The minimum interval of how often the iptables rules can be refreshed as endpoints and services change (e.g. '5s', '1m', '2h22m'). --iptables-sync-period duration The maximum interval of how often iptables rules are refreshed (e.g. '5s', '1m', '2h22m'). Must be greater than 0. (default 30s) - --kube-api-burst int32 Burst to use while talking with kubernetes apiserver (default 10) + --kube-api-burst int Burst to use while talking with kubernetes apiserver (default 10) --kube-api-content-type string Content type of requests sent to apiserver. (default "application/vnd.kubernetes.protobuf") --kube-api-qps float32 QPS to use while talking with kubernetes apiserver (default 5) --kubeconfig string Path to kubeconfig file with authorization information (the master location is set by the master flag). - --masquerade-all If using the pure iptables proxy, SNAT everything + --masquerade-all If using the pure iptables proxy, SNAT everything (this not commonly needed) --master string The address of the Kubernetes API server (overrides any value in kubeconfig) --oom-score-adj int32 The oom-score-adj value for kube-proxy process. Values must be within the range [-1000, 1000] (default -999) + --profiling If true enables profiling via web interface on /debug/pprof handler. --proxy-mode ProxyMode Which proxy mode to use: 'userspace' (older) or 'iptables' (faster). If blank, use the best-available proxy (currently iptables). If the iptables proxy is selected, regardless of how, but the system's kernel or iptables versions are insufficient, this always falls back to the userspace proxy. --proxy-port-range port-range Range of host ports (beginPort-endPort, inclusive) that may be consumed in order to proxy service traffic. If unspecified (0-0) then ports will be randomly chosen. --udp-timeout duration How long an idle UDP connection will be kept open (e.g. '250ms', '2s'). Must be greater than 0. Only applicable for proxy-mode=userspace (default 250ms) + --version version[=true] Print version information and quit + --write-config-to string If set, write the default configuration values to this file and exit. ``` -###### Auto generated by spf13/cobra on 21-Mar-2017 +###### Auto generated by spf13/cobra on 11-Jul-2017 diff --git a/docs/admin/kube-scheduler.md b/docs/admin/kube-scheduler.md index 9e8472bc80..75f5d3eeb9 100644 --- a/docs/admin/kube-scheduler.md +++ b/docs/admin/kube-scheduler.md @@ -26,38 +26,47 @@ kube-scheduler ``` --address string The IP address to serve on (set to 0.0.0.0 for all interfaces) (default "0.0.0.0") - --algorithm-provider string The scheduling algorithm provider to use, one of: DefaultProvider | ClusterAutoscalerProvider (default "DefaultProvider") - --failure-domains string Indicate the "all topologies" set for an empty topologyKey when it's used for PreferredDuringScheduling pod anti-affinity. (default "kubernetes.io/hostname,failure-domain.beta.kubernetes.io/zone,failure-domain.beta.kubernetes.io/region") - --feature-gates value A set of key=value pairs that describe feature gates for alpha/experimental features. Options are: + --algorithm-provider string The scheduling algorithm provider to use, one of: ClusterAutoscalerProvider | DefaultProvider (default "DefaultProvider") + --azure-container-registry-config string Path to the file container Azure container registry configuration information. + --contention-profiling Enable lock contention profiling, if profiling is enabled + --feature-gates mapStringBool A set of key=value pairs that describe feature gates for alpha/experimental features. Options are: +Accelerators=true|false (ALPHA - default=false) +AdvancedAuditing=true|false (ALPHA - default=false) +AffinityInAnnotations=true|false (ALPHA - default=false) AllAlpha=true|false (ALPHA - default=false) -AllowExtTrafficLocalEndpoints=true|false (ALPHA - default=false) +AllowExtTrafficLocalEndpoints=true|false (default=true) AppArmor=true|false (BETA - default=true) DynamicKubeletConfig=true|false (ALPHA - default=false) DynamicVolumeProvisioning=true|false (ALPHA - default=true) +ExperimentalCriticalPodAnnotation=true|false (ALPHA - default=false) +ExperimentalHostUserNamespaceDefaulting=true|false (BETA - default=false) +LocalStorageCapacityIsolation=true|false (ALPHA - default=false) +PersistentLocalVolumes=true|false (ALPHA - default=false) +RotateKubeletClientCertificate=true|false (ALPHA - default=false) +RotateKubeletServerCertificate=true|false (ALPHA - default=false) +StreamingProxyRedirects=true|false (BETA - default=true) +TaintBasedEvictions=true|false (ALPHA - default=false) --google-json-key string The Google Cloud Platform Service Account JSON Key to use for authentication. - --hard-pod-affinity-symmetric-weight int RequiredDuringScheduling affinity is not symmetric, but there is an implicit PreferredDuringScheduling affinity rule corresponding to every RequiredDuringScheduling affinity rule. --hard-pod-affinity-symmetric-weight represents the weight of implicit PreferredDuringScheduling affinity rule. (default 1) - --kube-api-burst value Burst to use while talking with kubernetes apiserver (default 100) + --kube-api-burst int32 Burst to use while talking with kubernetes apiserver (default 100) --kube-api-content-type string Content type of requests sent to apiserver. (default "application/vnd.kubernetes.protobuf") - --kube-api-qps value QPS to use while talking with kubernetes apiserver (default 50) + --kube-api-qps float32 QPS to use while talking with kubernetes apiserver (default 50) --kubeconfig string Path to kubeconfig file with authorization and master location information. --leader-elect Start a leader election client and gain leadership before executing the main loop. Enable this when running replicated components for high availability. (default true) --leader-elect-lease-duration duration The duration that non-leader candidates will wait after observing a leadership renewal until attempting to acquire leadership of a led but unrenewed leader slot. This is effectively the maximum duration that a leader can be stopped before it is replaced by another candidate. This is only applicable if leader election is enabled. (default 15s) --leader-elect-renew-deadline duration The interval between attempts by the acting master to renew a leadership slot before it stops leading. This must be less than or equal to the lease duration. This is only applicable if leader election is enabled. (default 10s) + --leader-elect-resource-lock endpoints The type of resource resource object that is used for locking duringleader election. Supported options are endpoints (default) and `configmap`. (default "endpoints") --leader-elect-retry-period duration The duration the clients should wait between attempting acquisition and renewal of a leadership. This is only applicable if leader election is enabled. (default 2s) + --lock-object-name string Define the name of the lock object. (default "kube-scheduler") + --lock-object-namespace string Define the namespace of the lock object. (default "kube-system") --master string The address of the Kubernetes API server (overrides any value in kubeconfig) - --policy-config-file string File with scheduler policy configuration - --port value The port that the scheduler's http service runs on (default 10251) + --policy-config-file string File with scheduler policy configuration. This file is used if policy ConfigMap is not provided or --use-legacy-policy-config==true + --policy-configmap string Name of the ConfigMap object that contains scheduler's policy configuration. It must exist in the system namespace before scheduler initialization if --use-legacy-policy-config==false. The config must be provided as the value of an element in 'Data' map with the key='policy.cfg' + --policy-configmap-namespace string The namespace where policy ConfigMap is located. The system namespace will be used if this is not provided or is empty. (default "kube-system") + --port int32 The port that the scheduler's http service runs on (default 10251) --profiling Enable profiling via web interface host:port/debug/pprof/ (default true) - --scheduler-name string Name of the scheduler, used to select which pods will be processed by this scheduler, based on pod's annotation with key 'scheduler.alpha.kubernetes.io/name' (default "default-scheduler") + --scheduler-name string Name of the scheduler, used to select which pods will be processed by this scheduler, based on pod's "spec.SchedulerName". (default "default-scheduler") + --use-legacy-policy-config When set to true, scheduler will ignore policy ConfigMap and uses policy config file + --version version[=true] Print version information and quit ``` -###### Auto generated by spf13/cobra on 24-Oct-2016 - - - - - - - -[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/admin/kube-scheduler.md?pixel)]() - +###### Auto generated by spf13/cobra on 11-Jul-2017 diff --git a/docs/admin/kubelet.md b/docs/admin/kubelet.md index 486ceab71b..d4cff05478 100644 --- a/docs/admin/kubelet.md +++ b/docs/admin/kubelet.md @@ -16,16 +16,18 @@ various mechanisms (primarily through the apiserver) and ensures that the contai described in those PodSpecs are running and healthy. The kubelet doesn't manage containers which were not created by Kubernetes. -Other than from a PodSpec, there are three ways that a container -manifest can be provided to the Kubelet from the apiserver. +Other than from an PodSpec from the apiserver, there are three ways that a container +manifest can be provided to the Kubelet. -File: Path passed as a flag on the command line. This file is rechecked every 20 -seconds (configurable with a flag). +File: Path passed as a flag on the command line. Files under this path will be monitored +periodically for updates. The monitoring period is 20s by default and is configurable +via a flag. HTTP endpoint: HTTP endpoint passed as a parameter on the command line. This endpoint is checked every 20 seconds (also configurable with a flag). -HTTP server: The kubelet can also listen for HTTP requests and respond to a simple API call to submit a new manifest. +HTTP server: The kubelet can also listen for HTTP and respond to a simple API +(underspec'd currently) to submit a new manifest. ``` kubelet @@ -35,7 +37,7 @@ kubelet ``` --address ip The IP address for the Kubelet to serve on (set to 0.0.0.0 for all interfaces) (default 0.0.0.0) - --allow-privileged If true, allow containers to request privileged mode. [default=false] + --allow-privileged If true, allow containers to request privileged mode. --anonymous-auth Enables anonymous requests to the Kubelet server. Requests that are not rejected by another authentication method are treated as anonymous requests. Anonymous requests have a username of system:anonymous, and a group name of system:unauthenticated. (default true) --authentication-token-webhook Use the TokenReview API to determine authentication for bearer tokens. --authentication-token-webhook-cache-ttl duration The duration to cache responses from the webhook token authenticator. (default 2m0s) @@ -43,33 +45,35 @@ kubelet --authorization-webhook-cache-authorized-ttl duration The duration to cache 'authorized' responses from the webhook authorizer. (default 5m0s) --authorization-webhook-cache-unauthorized-ttl duration The duration to cache 'unauthorized' responses from the webhook authorizer. (default 30s) --azure-container-registry-config string Path to the file container Azure container registry configuration information. + --bootstrap-kubeconfig string Path to a kubeconfig file that will be used to get client certificate for kubelet. If the file specified by --kubeconfig does not exist, the bootstrap kubeconfig is used to request a client certificate from the API server. On success, a kubeconfig file referencing the generated client certificate and key is written to the path specified by --kubeconfig. The client certificate and key file will be stored in the directory pointed by --cert-dir. --cadvisor-port int32 The port of the localhost cAdvisor endpoint (default 4194) - --cert-dir string The directory where the TLS certs are located (by default /var/run/kubernetes). If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored. (default "/var/run/kubernetes") + --cert-dir string The directory where the TLS certs are located. If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored. (default "/var/run/kubernetes") --cgroup-driver string Driver that the kubelet uses to manipulate cgroups on the host. Possible values: 'cgroupfs', 'systemd' (default "cgroupfs") --cgroup-root string Optional root cgroup to use for pods. This is handled by the container runtime on a best effort basis. Default: '', which means use the container runtime default. - --cgroups-per-qos Enable creation of QoS cgroup hierarchy, if true top level QoS and pod cgroups are created. [default: true] (default true) - --chaos-chance float If > 0.0, introduce random client errors and latency. Intended for testing. [default=0.0] + --cgroups-per-qos Enable creation of QoS cgroup hierarchy, if true top level QoS and pod cgroups are created. (default true) + --chaos-chance float If > 0.0, introduce random client errors and latency. Intended for testing. --client-ca-file string If set, any request presenting a client certificate signed by one of the authorities in the client-ca-file is authenticated with an identity corresponding to the CommonName of the client certificate. --cloud-config string The path to the cloud provider configuration file. Empty string for no configuration file. - --cloud-provider string The provider for cloud services. By default, kubelet will attempt to auto-detect the cloud provider. Specify empty string for running with no cloud provider. [default=auto-detect] (default "auto-detect") + --cloud-provider string The provider for cloud services. By default, kubelet will attempt to auto-detect the cloud provider. Specify empty string for running with no cloud provider. (default "auto-detect") --cluster-dns stringSlice Comma-separated list of DNS server IP address. This value is used for containers DNS server in case of Pods with "dnsPolicy=ClusterFirst". Note: all DNS servers appearing in the list MUST serve the same set of records otherwise name resolution within the cluster may not work correctly. There is no guarantee as to which DNS server may be contacted for name resolution. --cluster-domain string Domain for this cluster. If set, kubelet will configure all containers to search this domain in addition to the host's search domains --cni-bin-dir string The full path of the directory in which to search for CNI plugin binaries. Default: /opt/cni/bin --cni-conf-dir string The full path of the directory in which to search for CNI config files. Default: /etc/cni/net.d - --container-runtime string The container runtime to use. Possible values: 'docker', 'rkt'. Default: 'docker'. (default "docker") - --container-runtime-endpoint string [Experimental] The unix socket endpoint of remote runtime service. The endpoint is used only when CRI integration is enabled (--enable-cri) - --containerized Experimental support for running kubelet in a container. Intended for testing. [default=false] + --container-runtime string The container runtime to use. Possible values: 'docker', 'rkt'. (default "docker") + --container-runtime-endpoint string [Experimental] The endpoint of remote runtime service. Currently unix socket is supported on Linux, and tcp is supported on windows. Examples:'unix:///var/run/dockershim.sock', 'tcp://localhost:3735' (default "unix:///var/run/dockershim.sock") + --containerized Experimental support for running kubelet in a container. Intended for testing. --contention-profiling Enable lock contention profiling, if profiling is enabled --cpu-cfs-quota Enable CPU CFS quota enforcement for containers that specify CPU limits (default true) + --docker-disable-shared-pid The Container Runtime Interface (CRI) defaults to using a shared PID namespace for containers in a pod when running with Docker 1.13.1 or higher. Setting this flag reverts to the previous behavior of isolated PID namespaces. This ability will be removed in a future Kubernetes release. --docker-endpoint string Use this for the docker endpoint to communicate with (default "unix:///var/run/docker.sock") --enable-controller-attach-detach Enables the Attach/Detach controller to manage attachment/detachment of volumes scheduled to this node, and disables kubelet from executing any attach/detach operations (default true) --enable-custom-metrics Support for gathering custom metrics. --enable-debugging-handlers Enables server endpoints for log collection and local running of containers and commands (default true) --enable-server Enable the Kubelet's server (default true) - --enforce-node-allocatable stringSlice A comma separated list of levels of node allocatable enforcement to be enforced by kubelet. Acceptible options are 'pods', 'system-reserved' & 'kube-reserved'. If the latter two options are specified, '--system-reserved-cgroup' & '--kube-reserved-cgroup' must also be set respectively. See https://git.k8s.io/community/contributors/design-proposals/node-allocatable.md for more details. [default='pods'] (default [pods]) + --enforce-node-allocatable stringSlice A comma separated list of levels of node allocatable enforcement to be enforced by kubelet. Acceptible options are 'pods', 'system-reserved' & 'kube-reserved'. If the latter two options are specified, '--system-reserved-cgroup' & '--kube-reserved-cgroup' must also be set respectively. See https://git.k8s.io/community/contributors/design-proposals/node-allocatable.md for more details. (default [pods]) --event-burst int32 Maximum size of a bursty event records, temporarily allows event records to burst to this number, while still not exceeding event-qps. Only used if --event-qps > 0 (default 10) --event-qps int32 If > 0, limit event creations per second to this value. If 0, unlimited. (default 5) - --eviction-hard string A set of eviction thresholds (e.g. memory.available<1Gi) that if met would trigger a pod eviction. (default "memory.available<100Mi") + --eviction-hard string A set of eviction thresholds (e.g. memory.available<1Gi) that if met would trigger a pod eviction. (default "memory.available<100Mi,nodefs.available<10%,nodefs.inodesFree<5%") --eviction-max-pod-grace-period int32 Maximum allowed grace period (in seconds) to use when terminating pods in response to a soft eviction threshold being met. If negative, defer to pod specified value. --eviction-minimum-reclaim string A set of minimum reclaims (e.g. imagefs.available=2Gi) that describes the minimum amount of resource the kubelet will reclaim when performing a pod eviction if that resource is under pressure. --eviction-pressure-transition-period duration Duration for which the kubelet has to wait before transitioning out of an eviction pressure condition. (default 5m0s) @@ -78,7 +82,7 @@ kubelet --exit-on-lock-contention Whether kubelet should exit upon lock-file contention. --experimental-allocatable-ignore-eviction When set to 'true', Hard Eviction Thresholds will be ignored while calculating Node Allocatable. See https://git.k8s.io/community/contributors/design-proposals/node-allocatable.md for more details. [default=false] --experimental-allowed-unsafe-sysctls stringSlice Comma-separated whitelist of unsafe sysctls or unsafe sysctl patterns (ending in *). Use these at your own risk. - --experimental-bootstrap-kubeconfig string Path to a kubeconfig file that will be used to get client certificate for kubelet. If the file specified by --kubeconfig does not exist, the bootstrap kubeconfig is used to request a client certificate from the API server. On success, a kubeconfig file referencing the generated key and obtained certificate is written to the path specified by --kubeconfig. The certificate and key file will be stored in the directory pointed by --cert-dir. + --experimental-bootstrap-kubeconfig string deprecated: use --bootstrap-kubeconfig --experimental-check-node-capabilities-before-mount [Experimental] if set true, the kubelet will check the underlying node for required componenets (binaries, etc.) before performing the mount --experimental-fail-swap-on Makes the Kubelet fail to start if swap is enabled on the node. This is a temporary opton to maintain legacy behavior, failing due to swap enabled will happen by default in v1.6. --experimental-kernel-memcg-notification If enabled, the kubelet will integrate with the kernel memcg notification to determine if memory eviction thresholds are crossed rather than polling. @@ -86,37 +90,42 @@ kubelet --experimental-qos-reserved mapStringString A set of ResourceName=Percentage (e.g. memory=50%) pairs that describe how pod resource requests are reserved at the QoS level. Currently only memory is supported. [default=none] --feature-gates string A set of key=value pairs that describe feature gates for alpha/experimental features. Options are: Accelerators=true|false (ALPHA - default=false) +AdvancedAuditing=true|false (ALPHA - default=false) AffinityInAnnotations=true|false (ALPHA - default=false) AllAlpha=true|false (ALPHA - default=false) -AllowExtTrafficLocalEndpoints=true|false (BETA - default=true) +AllowExtTrafficLocalEndpoints=true|false (default=true) AppArmor=true|false (BETA - default=true) DynamicKubeletConfig=true|false (ALPHA - default=false) DynamicVolumeProvisioning=true|false (ALPHA - default=true) ExperimentalCriticalPodAnnotation=true|false (ALPHA - default=false) ExperimentalHostUserNamespaceDefaulting=true|false (BETA - default=false) +LocalStorageCapacityIsolation=true|false (ALPHA - default=false) +PersistentLocalVolumes=true|false (ALPHA - default=false) +RotateKubeletClientCertificate=true|false (ALPHA - default=false) +RotateKubeletServerCertificate=true|false (ALPHA - default=false) StreamingProxyRedirects=true|false (BETA - default=true) TaintBasedEvictions=true|false (ALPHA - default=false) --file-check-frequency duration Duration between checking config files for new data (default 20s) --google-json-key string The Google Cloud Platform Service Account JSON Key to use for authentication. --hairpin-mode string How should the kubelet setup hairpin NAT. This allows endpoints of a Service to loadbalance back to themselves if they should try to access their own Service. Valid values are "promiscuous-bridge", "hairpin-veth" and "none". (default "promiscuous-bridge") - --healthz-bind-address ip The IP address for the healthz server to serve on, defaulting to 127.0.0.1 (set to 0.0.0.0 for all interfaces) (default 127.0.0.1) + --healthz-bind-address ip The IP address for the healthz server to serve on. (set to 0.0.0.0 for all interfaces) (default 127.0.0.1) --healthz-port int32 The port of the localhost healthz endpoint (default 10248) - --host-ipc-sources stringSlice Comma-separated list of sources from which the Kubelet allows pods to use the host ipc namespace. [default="*"] (default [*]) - --host-network-sources stringSlice Comma-separated list of sources from which the Kubelet allows pods to use of host network. [default="*"] (default [*]) - --host-pid-sources stringSlice Comma-separated list of sources from which the Kubelet allows pods to use the host pid namespace. [default="*"] (default [*]) + --host-ipc-sources stringSlice Comma-separated list of sources from which the Kubelet allows pods to use the host ipc namespace. (default [*]) + --host-network-sources stringSlice Comma-separated list of sources from which the Kubelet allows pods to use of host network. (default [*]) + --host-pid-sources stringSlice Comma-separated list of sources from which the Kubelet allows pods to use the host pid namespace. (default [*]) --hostname-override string If non-empty, will use this string as identification instead of the actual hostname. --http-check-frequency duration Duration between checking http for new data (default 20s) - --image-gc-high-threshold int32 The percent of disk usage after which image garbage collection is always run. Default: 90% (default 90) - --image-gc-low-threshold int32 The percent of disk usage before which image garbage collection is never run. Lowest disk usage to garbage collect to. Default: 80% (default 80) - --image-pull-progress-deadline duration If no pulling progress is made before this deadline, the image pulling will be cancelled. Default: 1m0s. (default 1m0s) - --image-service-endpoint string [Experimental] The unix socket endpoint of remote image service. If not specified, it will be the same with container-runtime-endpoint by default. The endpoint is used only when CRI integration is enabled (--enable-cri) + --image-gc-high-threshold int32 The percent of disk usage after which image garbage collection is always run. (default 85) + --image-gc-low-threshold int32 The percent of disk usage before which image garbage collection is never run. Lowest disk usage to garbage collect to. (default 80) + --image-pull-progress-deadline duration If no pulling progress is made before this deadline, the image pulling will be cancelled. (default 1m0s) + --image-service-endpoint string [Experimental] The endpoint of remote image service. If not specified, it will be the same with container-runtime-endpoint by default. Currently unix socket is supported on Linux, and tcp is supported on windows. Examples:'unix:///var/run/dockershim.sock', 'tcp://localhost:3735' --iptables-drop-bit int32 The bit of the fwmark space to mark packets for dropping. Must be within the range [0, 31]. (default 15) --iptables-masquerade-bit int32 The bit of the fwmark space to mark packets for SNAT. Must be within the range [0, 31]. Please match this parameter with corresponding parameter in kube-proxy. (default 14) --keep-terminated-pod-volumes Keep terminated pod volumes mounted to the node after the pod terminates. Can be useful for debugging volume related issues. --kube-api-burst int32 Burst to use while talking with kubernetes apiserver (default 10) --kube-api-content-type string Content type of requests sent to apiserver. (default "application/vnd.kubernetes.protobuf") --kube-api-qps int32 QPS to use while talking with kubernetes apiserver (default 5) - --kube-reserved mapStringString A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G) pairs that describe resources reserved for kubernetes system components. Currently only cpu and memory are supported. See http://kubernetes.io/docs/user-guide/compute-resources for more detail. [default=none] + --kube-reserved mapStringString A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=500Mi, storage=1Gi) pairs that describe resources reserved for kubernetes system components. Currently cpu, memory and local storage for root file system are supported. See http://kubernetes.io/docs/user-guide/compute-resources for more detail. [default=none] --kube-reserved-cgroup string Absolute name of the top level cgroup that is used to manage kubernetes components for which compute resources were reserved via '--kube-reserved' flag. Ex. '/kube-reserved'. [default=''] --kubeconfig string Path to a kubeconfig file, specifying how to connect to the API server. --api-servers will be used for the location unless --require-kubeconfig is set. (default "/var/lib/kubelet/kubeconfig") --kubelet-cgroups string Optional absolute name of cgroups to create and run the Kubelet in. @@ -124,17 +133,14 @@ TaintBasedEvictions=true|false (ALPHA - default=false) --make-iptables-util-chains If true, kubelet will ensure iptables utility rules are present on host. (default true) --manifest-url string URL for accessing the container manifest --manifest-url-header string HTTP header to use when accessing the manifest URL, with the key separated from the value with a ':', as in 'key:value' - --master-service-namespace string The namespace from which the kubernetes master services should be injected into pods (default "default") - --max-open-files int Number of files that can be opened by Kubelet process. [default=1000000] (default 1000000) + --max-open-files int Number of files that can be opened by Kubelet process. (default 1000000) --max-pods int32 Number of Pods that can run on this Kubelet. (default 110) - --minimum-image-ttl-duration duration Minimum age for an unused image before it is garbage collected. Examples: '300ms', '10s' or '2h45m'. Default: '2m' (default 2m0s) + --minimum-image-ttl-duration duration Minimum age for an unused image before it is garbage collected. Examples: '300ms', '10s' or '2h45m'. (default 2m0s) --network-plugin string The name of the network plugin to be invoked for various events in kubelet/pod lifecycle - --network-plugin-dir string The full path of the directory in which to search for network plugins or CNI config --network-plugin-mtu int32 The MTU to be passed to the network plugin, to override the default. Set to 0 to use the default 1460 MTU. --node-ip string IP address of the node. If set, kubelet will use this IP address for the node --node-labels mapStringString Labels to add when registering the node in the cluster. Labels must be key=value pairs separated by ','. - --node-status-update-frequency duration Specifies how often kubelet posts node status to master. Note: be cautious when changing the constant, it must work with nodeMonitorGracePeriod in nodecontroller. Default: 10s (default 10s) - --non-masquerade-cidr string Traffic to IPs outside this range will use IP masquerade. (default "10.0.0.0/8") + --node-status-update-frequency duration Specifies how often kubelet posts node status to master. Note: be cautious when changing the constant, it must work with nodeMonitorGracePeriod in nodecontroller. (default 10s) --oom-score-adj int32 The oom-score-adj value for kubelet process. Values must be within the range [-1000, 1000] (default -999) --pod-cidr string The CIDR to use for pod IP addresses, only used in standalone mode. In cluster mode, this is obtained from the master. --pod-infra-container-image string The image whose network/ipc namespaces containers in each pod will use. (default "gcr.io/google_containers/pause-amd64:3.0") @@ -142,12 +148,13 @@ TaintBasedEvictions=true|false (ALPHA - default=false) --pods-per-core int32 Number of Pods per core that can run on this Kubelet. The total number of Pods on this Kubelet cannot exceed max-pods, so max-pods will be used if this calculation results in a larger number of Pods allowed on the Kubelet. A value of 0 disables this limit. --port int32 The port for the Kubelet to serve on. (default 10250) --protect-kernel-defaults Default kubelet behaviour for kernel tuning. If set, kubelet errors if any of kernel tunables is different than kubelet defaults. + --provider-id string Unique identifier for identifying the node in a machine database, i.e cloudprovider --read-only-port int32 The read-only port for the Kubelet to serve on with no authentication/authorization (set to 0 to disable) (default 10255) --really-crash-for-testing If true, when panics occur crash. Intended for testing. --register-node Register the node with the apiserver (defaults to true if --api-servers is set) (default true) - --register-with-taints []api.Taint Register the node with the given list of taints (comma seperated "=:"). No-op if register-node is false. - --registry-burst int32 Maximum size of a bursty pulls, temporarily allows pulls to burst to this number, while still not exceeding registry-qps. Only used if --registry-qps > 0 (default 10) - --registry-qps int32 If > 0, limit registry pull QPS to this value. If 0, unlimited. [default=5.0] (default 5) + --register-with-taints []api.Taint Register the node with the given list of taints (comma separated "=:"). No-op if register-node is false. + --registry-burst int32 Maximum size of a bursty pulls, temporarily allows pulls to burst to this number, while still not exceeding registry-qps. Only used if --registry-qps > 0 (default 10) + --registry-qps int32 If > 0, limit registry pull QPS to this value. If 0, unlimited. (default 5) --require-kubeconfig If true the Kubelet will exit if there are configuration errors, and will ignore the value of --api-servers in favor of the server defined in the kubeconfig file. --resolv-conf string Resolver configuration file used as the basis for the container DNS resolution configuration. (default "/etc/resolv.conf") --rkt-api-endpoint string The endpoint of the rkt API service to communicate with. Only used if --container-runtime='rkt'. (default "localhost:15441") @@ -155,18 +162,19 @@ TaintBasedEvictions=true|false (ALPHA - default=false) --root-dir string Directory path for managing kubelet files (volume mounts,etc). (default "/var/lib/kubelet") --runonce If true, exit after spawning pods from local manifests or remote urls. Exclusive with --api-servers, and --enable-server --runtime-cgroups string Optional absolute name of cgroups to create and run the runtime in. - --runtime-request-timeout duration Timeout of all runtime requests except long running request - pull, logs, exec and attach. When timeout exceeded, kubelet will cancel the request, throw out an error and retry later. Default: 2m0s (default 2m0s) + --runtime-request-timeout duration Timeout of all runtime requests except long running request - pull, logs, exec and attach. When timeout exceeded, kubelet will cancel the request, throw out an error and retry later. (default 2m0s) --seccomp-profile-root string Directory path for seccomp profiles. (default "/var/lib/kubelet/seccomp") - --serialize-image-pulls Pull images one at a time. We recommend *not* changing the default value on nodes that run docker daemon with version < 1.9 or an Aufs storage backend. Issue #10959 has more details. [default=true] (default true) + --serialize-image-pulls Pull images one at a time. We recommend *not* changing the default value on nodes that run docker daemon with version < 1.9 or an Aufs storage backend. Issue #10959 has more details. (default true) --streaming-connection-idle-timeout duration Maximum time a streaming connection can be idle before the connection is automatically closed. 0 indicates no timeout. Example: '5m' (default 4h0m0s) --sync-frequency duration Max period between synchronizing running containers and config (default 1m0s) - --system-cgroups / Optional absolute name of cgroups in which to place all non-kernel processes that are not already inside a cgroup under /. Empty for no container. Rolling back the flag requires a reboot. (Default: ""). - --system-reserved mapStringString A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G) pairs that describe resources reserved for non-kubernetes components. Currently only cpu and memory are supported. See http://kubernetes.io/docs/user-guide/compute-resources for more detail. [default=none] + --system-cgroups / Optional absolute name of cgroups in which to place all non-kernel processes that are not already inside a cgroup under /. Empty for no container. Rolling back the flag requires a reboot. + --system-reserved mapStringString A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=500Mi) pairs that describe resources reserved for non-kubernetes components. Currently only cpu and memory are supported. See http://kubernetes.io/docs/user-guide/compute-resources for more detail. [default=none] --system-reserved-cgroup string Absolute name of the top level cgroup that is used to manage non-kubernetes components for which compute resources were reserved via '--system-reserved' flag. Ex. '/system-reserved'. [default=''] - --tls-cert-file string File containing x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert). If --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key are generated for the public address and saved to the directory passed to --cert-dir. + --tls-cert-file string File containing x509 Certificate used for serving HTTPS (with intermediate certs, if any, concatenated after server cert). If --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key are generated for the public address and saved to the directory passed to --cert-dir. --tls-private-key-file string File containing x509 private key matching --tls-cert-file. + --version version[=true] Print version information and quit --volume-plugin-dir string The full path of the directory in which to search for additional third party volume plugins (default "/usr/libexec/kubernetes/kubelet-plugins/volume/exec/") - --volume-stats-agg-period duration Specifies interval for kubelet to calculate and cache the volume disk usage for all pods and volumes. To disable volume calculations, set to 0. Default: '1m' (default 1m0s) + --volume-stats-agg-period duration Specifies interval for kubelet to calculate and cache the volume disk usage for all pods and volumes. To disable volume calculations, set to 0. (default 1m0s) ``` -###### Auto generated by spf13/cobra on 21-Mar-2017 +###### Auto generated by spf13/cobra on 11-Jul-2017 diff --git a/docs/api-reference/apps/v1beta1/definitions.html b/docs/api-reference/apps/v1beta1/definitions.html index 239dc4505f..2f15ecf907 100755 --- a/docs/api-reference/apps/v1beta1/definitions.html +++ b/docs/api-reference/apps/v1beta1/definitions.html @@ -41,7 +41,7 @@ - + @@ -79,7 +79,7 @@ - + @@ -120,7 +120,7 @@ - + @@ -154,7 +154,7 @@ - + @@ -209,7 +209,7 @@ - + @@ -250,7 +250,7 @@ - + @@ -305,7 +305,7 @@ - + @@ -353,7 +353,7 @@ - + @@ -408,7 +408,7 @@ - + @@ -477,7 +477,7 @@ - + @@ -518,7 +518,7 @@ - + @@ -573,7 +573,7 @@ - + @@ -614,7 +614,7 @@ - + @@ -666,7 +666,7 @@ Examples:
- + @@ -710,7 +710,7 @@ Examples:
- + @@ -765,7 +765,7 @@ Examples:
- + @@ -802,7 +802,7 @@ Examples:
- + @@ -850,7 +850,7 @@ Examples:
- + @@ -912,7 +912,7 @@ Examples:
- + @@ -960,7 +960,7 @@ Examples:
- + @@ -1022,7 +1022,7 @@ Examples:
- + @@ -1063,7 +1063,7 @@ Examples:
- + @@ -1097,7 +1097,7 @@ Examples:
- + @@ -1250,7 +1250,7 @@ Examples:
- + @@ -1314,7 +1314,7 @@ Examples:
- + @@ -1348,7 +1348,7 @@ Examples:
- + @@ -1410,7 +1410,7 @@ Examples:
- + @@ -1556,7 +1556,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1622,7 +1622,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1656,7 +1656,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1704,7 +1704,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1773,7 +1773,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1813,7 +1813,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1861,7 +1861,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1923,7 +1923,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1992,7 +1992,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2036,7 +2036,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2091,7 +2091,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2132,7 +2132,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2173,7 +2173,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2221,7 +2221,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2283,7 +2283,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2327,7 +2327,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2375,7 +2375,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2427,7 +2427,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2468,7 +2468,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2530,7 +2530,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2585,7 +2585,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2626,7 +2626,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2674,7 +2674,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2736,7 +2736,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2777,7 +2777,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2842,7 +2842,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -2904,7 +2904,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3099,7 +3099,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3147,7 +3147,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3230,7 +3230,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3278,7 +3278,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3333,7 +3333,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3374,7 +3374,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3461,7 +3461,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3509,7 +3509,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3564,7 +3564,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3710,7 +3710,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3772,7 +3772,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3813,7 +3813,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3854,7 +3854,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3902,7 +3902,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -3950,7 +3950,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -4009,7 +4009,7 @@ The StatefulSet guarantees that a given network identity will always map to the - + @@ -4096,4 +4096,4 @@ Last updated 2016-11-06 03:50:37 UTC - \ No newline at end of file + diff --git a/docs/api-reference/batch/v1/definitions.html b/docs/api-reference/batch/v1/definitions.html index 3c17f1bbe1..50f6f28e44 100755 --- a/docs/api-reference/batch/v1/definitions.html +++ b/docs/api-reference/batch/v1/definitions.html @@ -43,7 +43,7 @@ title: Batch API Definitions - + @@ -81,7 +81,7 @@ title: Batch API Definitions - + @@ -122,7 +122,7 @@ title: Batch API Definitions - + @@ -156,7 +156,7 @@ title: Batch API Definitions - + @@ -211,7 +211,7 @@ title: Batch API Definitions - + @@ -252,7 +252,7 @@ title: Batch API Definitions - + @@ -307,7 +307,7 @@ title: Batch API Definitions - + @@ -355,7 +355,7 @@ title: Batch API Definitions - + @@ -424,7 +424,7 @@ title: Batch API Definitions - + @@ -465,7 +465,7 @@ title: Batch API Definitions - + @@ -520,7 +520,7 @@ title: Batch API Definitions - + @@ -561,7 +561,7 @@ title: Batch API Definitions - + @@ -616,7 +616,7 @@ Examples:
- + @@ -671,7 +671,7 @@ Examples:
- + @@ -708,7 +708,7 @@ Examples:
- + @@ -756,7 +756,7 @@ Examples:
- + @@ -818,7 +818,7 @@ Examples:
- + @@ -866,7 +866,7 @@ Examples:
- + @@ -928,7 +928,7 @@ Examples:
- + @@ -969,7 +969,7 @@ Examples:
- + @@ -1003,7 +1003,7 @@ Examples:
- + @@ -1156,7 +1156,7 @@ Examples:
- + @@ -1220,7 +1220,7 @@ Examples:
- + @@ -1254,7 +1254,7 @@ Examples:
- + @@ -1323,7 +1323,7 @@ Examples:
- + @@ -1469,7 +1469,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1535,7 +1535,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1569,7 +1569,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1617,7 +1617,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1686,7 +1686,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1726,7 +1726,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1774,7 +1774,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1843,7 +1843,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1887,7 +1887,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1942,7 +1942,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1983,7 +1983,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2024,7 +2024,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2086,7 +2086,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2148,7 +2148,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2189,7 +2189,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2258,7 +2258,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2316,7 +2316,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2364,7 +2364,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2412,7 +2412,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2453,7 +2453,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2515,7 +2515,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2570,7 +2570,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2611,7 +2611,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2659,7 +2659,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2721,7 +2721,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2762,7 +2762,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2831,7 +2831,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2893,7 +2893,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3088,7 +3088,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3136,7 +3136,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3219,7 +3219,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3267,7 +3267,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3322,7 +3322,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3363,7 +3363,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3450,7 +3450,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3498,7 +3498,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3553,7 +3553,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3699,7 +3699,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3761,7 +3761,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3802,7 +3802,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3843,7 +3843,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3891,7 +3891,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3943,7 +3943,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4030,4 +4030,4 @@ Last updated 2016-11-05 07:45:07 UTC - \ No newline at end of file + diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index 04e613fe7e..262b7aed95 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -91,7 +91,7 @@ title: Extensions API Definitions - + @@ -160,7 +160,7 @@ title: Extensions API Definitions - + @@ -215,7 +215,7 @@ title: Extensions API Definitions - + @@ -277,7 +277,7 @@ title: Extensions API Definitions - + @@ -311,7 +311,7 @@ title: Extensions API Definitions - + @@ -352,7 +352,7 @@ title: Extensions API Definitions - + @@ -407,7 +407,7 @@ title: Extensions API Definitions - + @@ -462,7 +462,7 @@ title: Extensions API Definitions - + @@ -510,7 +510,7 @@ title: Extensions API Definitions - + @@ -551,7 +551,7 @@ title: Extensions API Definitions - + @@ -606,7 +606,7 @@ title: Extensions API Definitions - + @@ -675,7 +675,7 @@ title: Extensions API Definitions - + @@ -709,7 +709,7 @@ title: Extensions API Definitions - + @@ -750,7 +750,7 @@ title: Extensions API Definitions - + @@ -802,7 +802,7 @@ Examples:
- + @@ -864,7 +864,7 @@ Examples:
- + @@ -922,7 +922,7 @@ Examples:
- + @@ -977,7 +977,7 @@ Examples:
- + @@ -1018,7 +1018,7 @@ Examples:
- + @@ -1055,7 +1055,7 @@ Examples:
- + @@ -1103,7 +1103,7 @@ Examples:
- + @@ -1151,7 +1151,7 @@ Examples:
- + @@ -1220,7 +1220,7 @@ Examples:
- + @@ -1261,7 +1261,7 @@ Examples:
- + @@ -1295,7 +1295,7 @@ Examples:
- + @@ -1329,7 +1329,7 @@ Examples:
- + @@ -1475,7 +1475,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1530,7 +1530,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1571,7 +1571,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1633,7 +1633,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1685,7 +1685,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1754,7 +1754,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1788,7 +1788,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1843,7 +1843,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1883,7 +1883,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1924,7 +1924,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1965,7 +1965,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2006,7 +2006,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2068,7 +2068,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2106,7 +2106,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2143,7 +2143,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2191,7 +2191,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2246,7 +2246,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2308,7 +2308,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2377,7 +2377,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2418,7 +2418,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2452,7 +2452,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2514,7 +2514,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2562,7 +2562,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2603,7 +2603,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2665,7 +2665,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2860,7 +2860,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2915,7 +2915,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2963,7 +2963,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3046,7 +3046,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3136,7 +3136,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3191,7 +3191,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3236,7 +3236,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3284,7 +3284,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3339,7 +3339,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3401,7 +3401,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3547,7 +3547,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3588,7 +3588,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3636,7 +3636,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3684,7 +3684,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3725,7 +3725,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3780,7 +3780,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3842,7 +3842,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3925,7 +3925,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3963,7 +3963,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4015,7 +4015,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4056,7 +4056,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4101,7 +4101,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4142,7 +4142,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4190,7 +4190,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4245,7 +4245,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4307,7 +4307,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4348,7 +4348,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4410,7 +4410,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4465,7 +4465,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4527,7 +4527,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4561,7 +4561,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4602,7 +4602,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4648,7 +4648,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -4700,7 +4700,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -4741,7 +4741,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -4803,7 +4803,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -4865,7 +4865,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -4896,7 +4896,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -4930,7 +4930,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5083,7 +5083,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5147,7 +5147,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5188,7 +5188,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5250,7 +5250,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5319,7 +5319,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5381,7 +5381,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5415,7 +5415,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5477,7 +5477,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5525,7 +5525,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5601,7 +5601,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5656,7 +5656,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5711,7 +5711,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5773,7 +5773,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5821,7 +5821,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5862,7 +5862,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5900,7 +5900,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5941,7 +5941,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6010,7 +6010,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6079,7 +6079,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6127,7 +6127,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6210,7 +6210,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6265,7 +6265,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6306,7 +6306,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6347,7 +6347,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6409,7 +6409,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6472,4 +6472,4 @@ Last updated 2016-11-08 08:09:17 UTC - \ No newline at end of file + diff --git a/docs/api-reference/labels-annotations-taints.md b/docs/api-reference/labels-annotations-taints.md index 0a052bebe2..492237bd57 100644 --- a/docs/api-reference/labels-annotations-taints.md +++ b/docs/api-reference/labels-annotations-taints.md @@ -4,4 +4,4 @@ title: Well-Known Labels, Annotations and Taints {% include api-reference-content-moved.md %} -* [Well-Known Labels, Annotations and Taints](/docs/reference/labels-annotations-taints/) \ No newline at end of file +* [Well-Known Labels, Annotations and Taints](/docs/reference/labels-annotations-taints/) diff --git a/docs/reference/federation/extensions/v1beta1/definitions.html b/docs/reference/federation/extensions/v1beta1/definitions.html index e3211ee0c4..309ff7cab8 100755 --- a/docs/reference/federation/extensions/v1beta1/definitions.html +++ b/docs/reference/federation/extensions/v1beta1/definitions.html @@ -9,6 +9,360 @@ notitle: true Top Level API Objects +
-

v1.LocalObjectReference

+

v1.Initializer

-

LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

+

Initializer is information about an initializer that has not yet completed.

@@ -1345,7 +1713,7 @@ notitle: true -+ @@ -1359,7 +1727,41 @@ notitle: true - + + + + + + +

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

name of the process that is responsible for initializing this object.

true

string

+ +
+
+

v1.LocalObjectReference

+
+

LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

+
+ +++++++ + + + + + + + + + + + + + @@ -1379,7 +1781,7 @@ notitle: true -+ @@ -1420,7 +1822,7 @@ notitle: true -+ @@ -1454,7 +1856,7 @@ notitle: true -+ @@ -1468,7 +1870,7 @@ notitle: true - + @@ -1488,7 +1890,7 @@ notitle: true -+ @@ -1513,7 +1915,7 @@ notitle: true
If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).

-Applied only if Name is not specified. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#idempotency

+Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency

@@ -1547,7 +1949,7 @@ Populated by the system. Read-only. More info:

resourceVersion

+Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency

@@ -1563,7 +1965,7 @@ Populated by the system. Read-only. Value must be treated as opaque by clients a +Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

@@ -1572,7 +1974,7 @@ Populated by the system. Read-only. Null for lists. More info:

deletionTimestamp

+Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

@@ -1606,6 +2008,15 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + + + + + + + @@ -1634,7 +2045,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -+ @@ -1648,7 +2059,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1662,14 +2073,14 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + - + @@ -1677,68 +2088,6 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
NameDescriptionRequiredSchemaDefault

name

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

false

string

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%, 30% of the currently running DaemonSet pods can be stopped for an update at any given time. The update starts by stopping at most 30% of the currently running DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are ready, 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.

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.

false

string

false

string

An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

-Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

false

string

creationTimestamp

CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

-Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

false

string

DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

-Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

false

string

initializers

An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven’t explicitly asked to observe uninitialized objects.
+
+When an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.

false

v1.Initializers

finalizers

Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

false

replicas

Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller

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

false

integer (int32)

selector

Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors

false

v1.LabelSelector

template

Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template

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

false

v1.PodTemplateSpec

-
-
-

v1beta1.DaemonSetSpec

-
-

DaemonSetSpec is the specification of a daemon set.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

selector

Selector is a label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

false

v1.LabelSelector

template

Template is the object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template’s node selector (or on every node if no node selector is specified). More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template

true

v1.PodTemplateSpec

updateStrategy

UpdateStrategy to replace existing DaemonSet pods with new pods.

false

v1beta1.DaemonSetUpdateStrategy

minReadySeconds

MinReadySeconds 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).

false

integer (int32)

templateGeneration

A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation.

false

integer (int64)

-

v1beta1.Deployment

@@ -1751,7 +2100,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1765,14 +2114,14 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

@@ -1801,6 +2150,79 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1beta1.DaemonSetSpec

+
+

DaemonSetSpec is the specification of a daemon set.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

selector

A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors

false

v1.LabelSelector

template

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

true

v1.PodTemplateSpec

updateStrategy

An update strategy to replace existing DaemonSet pods with new pods.

false

v1beta1.DaemonSetUpdateStrategy

minReadySeconds

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).

false

integer (int32)

templateGeneration

DEPRECATED. A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation.

false

integer (int64)

revisionHistoryLimit

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.

false

integer (int32)

+ +
+
+

types.UID

+

v1.AzureFileVolumeSource

@@ -1813,7 +2235,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1849,10 +2271,6 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -
-
-

types.UID

-

v1.ISCSIVolumeSource

@@ -1865,7 +2283,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1907,7 +2325,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

fsType

-

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#iscsi

+

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi

false

string

@@ -1926,6 +2344,27 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

string array

+ +

chapAuthDiscovery

+

whether support iSCSI Discovery CHAP authentication

+

false

+

boolean

+

false

+ + +

chapAuthSession

+

whether support iSCSI Session CHAP authentication

+

false

+

boolean

+

false

+ + +

secretRef

+

CHAP secret for iSCSI target and initiator authentication

+

false

+

v1.LocalObjectReference

+ + @@ -1941,7 +2380,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1955,21 +2394,21 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ListMeta

@@ -1996,7 +2435,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2010,7 +2449,14 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

medium

-

What type of storage medium should back this directory. The default is "" which means to use the node’s default medium. Must be an empty string (default) or Memory. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

+

What type of storage medium should back this directory. The default is "" which means to use the node’s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir

+

false

+

string

+ + + +

sizeLimit

+

Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

false

string

@@ -2030,7 +2476,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2064,7 +2510,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2085,8 +2531,8 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

namespaces

-

namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means "this pod’s namespace," empty list means "all namespaces" The json tag here is not "omitempty" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details.

-

true

+

namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod’s namespace"

+

false

string array

@@ -2112,7 +2558,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2160,7 +2606,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2201,7 +2647,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2230,6 +2676,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.PersistentVolumeClaimVolumeSource

+
+

PersistentVolumeClaimVolumeSource references the user’s PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

claimName

ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims

true

string

readOnly

Will force the ReadOnly setting in VolumeMounts. Default false.

false

boolean

false

+

v1.ListMeta

@@ -2242,7 +2729,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2263,7 +2750,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

resourceVersion

-

String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

+

String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency

false

string

@@ -2271,47 +2758,6 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -
-
-

v1.PersistentVolumeClaimVolumeSource

-
-

PersistentVolumeClaimVolumeSource references the user’s PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

claimName

ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims

true

string

readOnly

Will force the ReadOnly setting in VolumeMounts. Default false.

false

boolean

false

-

v1beta1.RollbackConfig

@@ -2321,7 +2767,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2335,7 +2781,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

revision

-

The revision to rollback to. If set to 0, rollbck to the last revision.

+

The revision to rollback to. If set to 0, rollback to the last revision.

false

integer (int64)

@@ -2358,7 +2804,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2372,7 +2818,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

secretName

-

Name of the secret in the pod’s namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

+

Name of the secret in the pod’s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret

false

string

@@ -2413,7 +2859,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2475,7 +2921,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2489,7 +2935,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

fieldRef

-

Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

+

Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.

false

v1.ObjectFieldSelector

@@ -2530,7 +2976,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2571,7 +3017,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2618,6 +3064,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

boolean

false

+ +

kind

+

Expected values Shared: mulitple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared

+

false

+

v1.AzureDataDiskKind

+ + @@ -2633,7 +3086,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2678,7 +3131,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2699,7 +3152,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

rollingUpdate

-

Rolling update config params. Present only if DaemonSetUpdateStrategy = RollingUpdate.

+

Rolling update config params. Present only if type = "RollingUpdate".

false

v1beta1.RollingUpdateDaemonSet

@@ -2719,7 +3172,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2745,6 +3198,20 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

string

+ +

storagePolicyName

+

Storage Policy Based Management (SPBM) profile name.

+

false

+

string

+ + + +

storagePolicyID

+

Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.

+

false

+

string

+ + @@ -2760,7 +3227,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2774,14 +3241,14 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

@@ -2809,7 +3276,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

propagationPolicy

-

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

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.

false

v1.DeletionPropagation

@@ -2817,6 +3284,61 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1beta1.DaemonSetList

+
+

DaemonSetList is a collection of daemon sets.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

false

string

apiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

false

string

metadata

Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ListMeta

items

A list of daemon sets.

true

v1beta1.DaemonSet array

+

v1.Volume

@@ -2829,7 +3351,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -2843,35 +3365,35 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

name

-

Volume’s name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names

+

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

true

string

hostPath

-

HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath

+

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

false

v1.HostPathVolumeSource

emptyDir

-

EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

+

EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir

false

v1.EmptyDirVolumeSource

gcePersistentDisk

-

GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

+

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

false

v1.GCEPersistentDiskVolumeSource

awsElasticBlockStore

-

AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

+

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

false

v1.AWSElasticBlockStoreVolumeSource

@@ -2885,42 +3407,42 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

secret

-

Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

+

Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret

false

v1.SecretVolumeSource

nfs

-

NFS represents an NFS mount on the host that shares a pod’s lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs

+

NFS represents an NFS mount on the host that shares a pod’s lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

false

v1.NFSVolumeSource

iscsi

-

ISCSI represents an ISCSI Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md

+

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

false

v1.ISCSIVolumeSource

glusterfs

-

Glusterfs represents a Glusterfs mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md

+

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

false

v1.GlusterfsVolumeSource

persistentVolumeClaim

-

PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims

+

PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims

false

v1.PersistentVolumeClaimVolumeSource

rbd

-

RBD represents a Rados Block Device mount on the host that shares a pod’s lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md

+

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

false

v1.RBDVolumeSource

@@ -2934,7 +3456,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

cinder

-

Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

+

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

false

v1.CinderVolumeSource

@@ -3023,59 +3545,18 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

v1.PortworxVolumeSource

- - - -
-
-

v1beta1.DaemonSetList

-
-

DaemonSetList is a collection of daemon sets.

-
- ------- - - - - - - - - - - - - + + - + - - + + - - - - - - - - - - - - - - - + @@ -3093,7 +3574,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -+ @@ -3141,7 +3622,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -+ @@ -3189,7 +3670,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -+ @@ -3224,14 +3705,14 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + - + @@ -3272,7 +3753,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -+ @@ -3313,7 +3794,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -+ @@ -3403,7 +3884,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -+ @@ -3417,7 +3898,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3455,7 +3936,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -+ @@ -3498,68 +3979,6 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
NameDescriptionRequiredSchemaDefault

kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

scaleIO

ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.

false

string

v1.ScaleIOVolumeSource

apiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

storageos

StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.

false

string

metadata

Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

false

v1.ListMeta

items

Items is a list of daemon sets.

true

v1beta1.DaemonSet array

v1.StorageOSVolumeSource

initialDelaySeconds

Number of seconds after the container has started before liveness probes are initiated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes

Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

false

integer (int32)

timeoutSeconds

Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes

Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

false

integer (int32)

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

false

string

-
-
-

v1.ContainerPort

-
-

ContainerPort represents a network port in a single container.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

name

If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.

false

string

hostPort

Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.

false

integer (int32)

containerPort

Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

true

integer (int32)

protocol

Protocol for port. Must be UDP or TCP. Defaults to "TCP".

false

string

hostIP

What host IP to bind the external port to.

false

string

-

v1.PodSpec

@@ -3572,7 +3991,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3586,28 +4005,28 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

volumes

-

List of volumes that can be mounted by containers belonging to the pod. More info: http://kubernetes.io/docs/user-guide/volumes

+

List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes

false

v1.Volume array

initContainers

-

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: http://kubernetes.io/docs/user-guide/containers

+

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/

false

v1.Container array

containers

-

List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers

+

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.

true

v1.Container array

restartPolicy

-

Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy

+

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

false

string

@@ -3635,14 +4054,14 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

nodeSelector

-

NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: http://kubernetes.io/docs/user-guide/node-selection/README

+

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/

false

object

serviceAccountName

-

ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md

+

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/

false

string

@@ -3698,7 +4117,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

imagePullSecrets

-

ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod

+

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

false

v1.LocalObjectReference array

@@ -3738,6 +4157,89 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

v1.Toleration array

+ +

hostAliases

+

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.

+

false

+

v1.HostAlias array

+ + + +

priorityClassName

+

If specified, indicates the pod’s priority. "SYSTEM" is a special keyword which indicates the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.

+

false

+

string

+ + + +

priority

+

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.

+

false

+

integer (int32)

+ + + + + +
+
+

v1.ContainerPort

+
+

ContainerPort represents a network port in a single container.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

name

If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.

false

string

hostPort

Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.

false

integer (int32)

containerPort

Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.

true

integer (int32)

protocol

Protocol for port. Must be UDP or TCP. Defaults to "TCP".

false

string

hostIP

What host IP to bind the external port to.

false

string

@@ -3753,7 +4255,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3767,14 +4269,14 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

postStart

-

PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks#hook-details

+

PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks

false

v1.Handler

preStop

-

PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks#hook-details

+

PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks

false

v1.Handler

@@ -3794,7 +4296,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3808,21 +4310,21 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

endpoints

-

EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

+

EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

true

string

path

-

Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

+

Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

true

string

readOnly

-

ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

+

ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

false

boolean

false

@@ -3842,7 +4344,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3890,7 +4392,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3952,7 +4454,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -3993,7 +4495,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -4045,7 +4547,7 @@ Examples:
- + @@ -4059,35 +4561,35 @@ Examples:

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata.

+

Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.

false

v1.ObjectMeta

spec

-

defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.

+

defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.

false

v1beta1.ScaleSpec

status

-

current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only.

+

current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.

false

v1beta1.ScaleStatus

@@ -4107,7 +4609,7 @@ Examples:
- + @@ -4121,56 +4623,56 @@ Examples:

monitors

-

A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

+

A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

true

string array

image

-

The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

+

The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

true

string

fsType

-

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#rbd

+

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd

false

string

pool

-

The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.

+

The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

false

string

user

-

The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

+

The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

false

string

keyring

-

Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

+

Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

false

string

secretRef

-

SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

+

SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

false

v1.LocalObjectReference

readOnly

-

ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

+

ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

false

boolean

false

@@ -4193,7 +4695,7 @@ Examples:
- + @@ -4207,7 +4709,7 @@ Examples:

name

-

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

+

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

false

string

@@ -4241,7 +4743,7 @@ Examples:
- + @@ -4270,6 +4772,144 @@ Examples:
+
+
+

v1.ScaleIOVolumeSource

+
+

ScaleIOVolumeSource represents a persistent ScaleIO volume

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

gateway

The host address of the ScaleIO API Gateway.

true

string

system

The name of the storage system as configured in ScaleIO.

true

string

secretRef

SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.

true

v1.LocalObjectReference

sslEnabled

Flag to enable/disable SSL communication with Gateway, default false

false

boolean

false

protectionDomain

The name of the Protection Domain for the configured storage (defaults to "default").

false

string

storagePool

The Storage Pool associated with the protection domain (defaults to "default").

false

string

storageMode

Indicates whether the storage for a volume should be thick or thin (defaults to "thin").

false

string

volumeName

The name of a volume already created in the ScaleIO system that is associated with this volume source.

false

string

fsType

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

false

string

readOnly

Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

false

boolean

false

+ +
+
+

v1.Initializers

+
+

Initializers tracks the progress of initialization.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

pending

Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.

true

v1.Initializer array

result

If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.

false

v1.Status

+

v1.Status

@@ -4282,7 +4922,7 @@ Examples:
- + @@ -4296,28 +4936,28 @@ Examples:

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

false

v1.ListMeta

status

-

Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

false

string

@@ -4365,7 +5005,7 @@ Examples:
- + @@ -4393,7 +5033,7 @@ Examples:

targetSelector

-

label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

+

label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors

false

string

@@ -4413,7 +5053,7 @@ Examples:
- + @@ -4427,21 +5067,21 @@ Examples:

server

-

Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

+

Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

true

string

path

-

Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

+

Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

true

string

readOnly

-

ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

+

ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

false

boolean

false

@@ -4461,7 +5101,7 @@ Examples:
- + @@ -4475,14 +5115,14 @@ Examples:

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

@@ -4516,7 +5156,7 @@ Examples:
- + @@ -4530,14 +5170,14 @@ Examples:

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

@@ -4578,7 +5218,7 @@ Examples:
- + @@ -4619,7 +5259,7 @@ Examples:
- + @@ -4674,7 +5314,7 @@ Examples:
- + @@ -4707,40 +5347,6 @@ Examples:

v1.DeletionPropagation

-
-
-

v1.TCPSocketAction

-
-

TCPSocketAction describes an action based on opening a socket

-
- ------- - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

port

Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

true

string

-

v1beta1.DeploymentStrategy

@@ -4753,7 +5359,7 @@ Examples:
- + @@ -4782,6 +5388,47 @@ Examples:
+
+
+

v1.TCPSocketAction

+
+

TCPSocketAction describes an action based on opening a socket

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

port

Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

true

string

host

Optional: Host name to connect to, defaults to the pod IP.

false

string

+

v1beta1.IngressRule

@@ -4794,7 +5441,7 @@ Examples:
- + @@ -4809,10 +5456,10 @@ Examples:

host

Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the
- IP in the Spec of the parent Ingress.
+ IP in the Spec of the parent Ingress.
2. The : delimiter is not respected because ports are not allowed.
- Currently the port of an Ingress is implicitly :80 for http and
- :443 for https.
+ Currently the port of an Ingress is implicitly :80 for http and
+ :443 for https.
Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.

false

string

@@ -4840,7 +5487,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -4902,7 +5549,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -4930,7 +5577,14 @@ Both these may change in the future. Incoming requests are matched against the h

kind

-

The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

+

false

+

string

+ + + +

uid

+

UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids

false

string

@@ -4964,7 +5618,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -4998,7 +5652,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5019,21 +5673,21 @@ Both these may change in the future. Incoming requests are matched against the h

image

-

Docker image name. More info: http://kubernetes.io/docs/user-guide/images

-

false

+

Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images

+

true

string

command

-

Entrypoint array. Not executed within a shell. The docker image’s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container’s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers#containers-and-commands

+

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

false

string array

args

-

Arguments to the entrypoint. The docker image’s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container’s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers#containers-and-commands

+

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

false

string array

@@ -5054,7 +5708,7 @@ Both these may change in the future. Incoming requests are matched against the h

envFrom

-

List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from 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.

+

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.

false

v1.EnvFromSource array

@@ -5068,7 +5722,7 @@ Both these may change in the future. Incoming requests are matched against the h

resources

-

Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources

+

Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources

false

v1.ResourceRequirements

@@ -5082,14 +5736,14 @@ Both these may change in the future. Incoming requests are matched against the h

livenessProbe

-

Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes

+

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

false

v1.Probe

readinessProbe

-

Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes

+

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

false

v1.Probe

@@ -5117,14 +5771,14 @@ Both these may change in the future. Incoming requests are matched against the h

imagePullPolicy

-

Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/images#updating-images

+

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

false

string

securityContext

-

Security options the pod should run with. More info: http://releases.k8s.io/HEAD/docs/design/security_context.md

+

Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://git.k8s.io/community/contributors/design-proposals/security_context.md

false

v1.SecurityContext

@@ -5165,7 +5819,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5229,7 +5883,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5250,7 +5904,7 @@ Both these may change in the future. Incoming requests are matched against the h

kind

-

Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

true

string

@@ -5298,7 +5952,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5312,7 +5966,7 @@ Both these may change in the future. Incoming requests are matched against the h

replicas

-

Replicas is the most recently oberved number of replicas. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller

+

Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller

true

integer (int32)

@@ -5367,7 +6021,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5381,7 +6035,14 @@ Both these may change in the future. Incoming requests are matched against the h

name

-

name is the name of the resource.

+

name is the plural name of the resource.

+

true

+

string

+ + + +

singularName

+

singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.

true

string

@@ -5414,6 +6075,13 @@ Both these may change in the future. Incoming requests are matched against the h

string array

+ +

categories

+

categories is a list of the grouped resources this resource belongs to (e.g. all)

+

false

+

string array

+ + @@ -5429,7 +6097,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5477,7 +6145,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5491,35 +6159,35 @@ Both these may change in the future. Incoming requests are matched against the h

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

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

false

v1.ObjectMeta

spec

-

Spec defines the specification of the desired behavior of the ReplicaSet. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

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

false

v1beta1.ReplicaSetSpec

status

-

Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

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

false

v1beta1.ReplicaSetStatus

@@ -5539,7 +6207,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5553,7 +6221,7 @@ Both these may change in the future. Incoming requests are matched against the h

path

-

Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath

+

Path of the directory on the host. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

true

string

@@ -5576,7 +6244,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5590,7 +6258,7 @@ Both these may change in the future. Incoming requests are matched against the h

name

-

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

+

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

false

string

@@ -5624,7 +6292,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5638,35 +6306,35 @@ Both these may change in the future. Incoming requests are matched against the h

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ObjectMeta

spec

-

Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

false

v1beta1.DaemonSetSpec

status

-

Status is the current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

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

false

v1beta1.DaemonSetStatus

@@ -5686,7 +6354,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5700,21 +6368,21 @@ Both these may change in the future. Incoming requests are matched against the h

volumeID

-

volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

+

volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

true

string

fsType

-

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

+

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

false

string

readOnly

-

Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

+

Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

false

boolean

false

@@ -5734,7 +6402,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5806,7 +6474,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5820,14 +6488,14 @@ Both these may change in the future. Incoming requests are matched against the h

volumeID

-

Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

+

Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

true

string

fsType

-

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

+

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

false

string

@@ -5841,7 +6509,7 @@ Both these may change in the future. Incoming requests are matched against the h

readOnly

-

Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

+

Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

false

boolean

false

@@ -5861,7 +6529,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5920,7 +6588,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -5961,7 +6629,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6009,7 +6677,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6057,7 +6725,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6071,14 +6739,14 @@ Both these may change in the future. Incoming requests are matched against the h

limits

-

Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

+

Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

false

object

requests

-

Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

+

Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

false

object

@@ -6086,6 +6754,47 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.HostAlias

+
+

HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod’s hosts file.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

ip

IP address of the host file entry.

false

string

hostnames

Hostnames for the above IP address.

false

string array

+

v1.PodTemplateSpec

@@ -6098,7 +6807,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6112,14 +6821,14 @@ Both these may change in the future. Incoming requests are matched against the h

metadata

-

Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ObjectMeta

spec

-

Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

false

v1.PodSpec

@@ -6139,7 +6848,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6179,7 +6888,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6251,7 +6960,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6265,7 +6974,7 @@ Both these may change in the future. Incoming requests are matched against the h

name

-

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

+

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

false

string

@@ -6280,6 +6989,68 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.StorageOSVolumeSource

+
+

Represents a StorageOS persistent volume resource.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

volumeName

VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.

false

string

volumeNamespace

VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod’s namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.

false

string

fsType

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

false

string

readOnly

Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

false

boolean

false

secretRef

SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.

false

v1.LocalObjectReference

+

v1.NodeAffinity

@@ -6292,7 +7063,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6321,6 +7092,10 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.AzureDataDiskKind

+

v1.PreferredSchedulingTerm

@@ -6333,7 +7108,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6374,7 +7149,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6388,7 +7163,7 @@ Both these may change in the future. Incoming requests are matched against the h

name

-

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

+

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

false

string

@@ -6422,7 +7197,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6463,7 +7238,7 @@ Both these may change in the future. Incoming requests are matched against the h - + @@ -6477,35 +7252,35 @@ Both these may change in the future. Incoming requests are matched against the h

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ObjectMeta

spec

-

Spec is the desired state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

false

v1beta1.IngressSpec

status

-

Status is the current state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

false

v1beta1.IngressStatus

@@ -6529,8 +7304,8 @@ Both these may change in the future. Incoming requests are matched against the h
- \ No newline at end of file + diff --git a/docs/reference/federation/extensions/v1beta1/operations.html b/docs/reference/federation/extensions/v1beta1/operations.html index d651fabb6f..7d24e9285f 100755 --- a/docs/reference/federation/extensions/v1beta1/operations.html +++ b/docs/reference/federation/extensions/v1beta1/operations.html @@ -9,6 +9,360 @@ notitle: true Operations + - \ No newline at end of file + diff --git a/docs/reference/federation/v1beta1/definitions.html b/docs/reference/federation/federation/v1beta1/definitions.html similarity index 60% rename from docs/reference/federation/v1beta1/definitions.html rename to docs/reference/federation/federation/v1beta1/definitions.html index 53d1936775..3e88e4c94f 100755 --- a/docs/reference/federation/v1beta1/definitions.html +++ b/docs/reference/federation/federation/v1beta1/definitions.html @@ -9,6 +9,360 @@ notitle: true Top Level API Objects +
-

v1.LocalObjectReference

+

v1.Initializers

-

LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

+

Initializers tracks the progress of initialization.

@@ -454,7 +815,48 @@ notitle: true -++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

pending

Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.

true

v1.Initializer array

result

If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.

false

v1.Status

+ +
+
+

v1.Initializer

+
+

Initializer is information about an initializer that has not yet completed.

+
+ ++++++ @@ -468,7 +870,41 @@ notitle: true - + + + + + + +

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

name of the process that is responsible for initializing this object.

true

string

+ +
+
+

v1.LocalObjectReference

+
+

LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

+
+ +++++++ + + + + + + + + + + + + + @@ -488,7 +924,7 @@ notitle: true -+ @@ -502,28 +938,28 @@ notitle: true - + - + - + - + @@ -571,7 +1007,7 @@ notitle: true -+ @@ -609,7 +1045,7 @@ notitle: true -+ @@ -638,221 +1074,6 @@ notitle: true
NameDescriptionRequiredSchemaDefault

name

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

false

string

kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

Kind is a string value representing the 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

false

string

apiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

APIVersion defines the versioned 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

false

string

metadata

Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

false

v1.ListMeta

status

Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

false

string

-
-
-

v1.ObjectMeta

-
-

ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

name

Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names

false

string

generateName

GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.
-
-If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).
-
-Applied only if Name is not specified. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#idempotency

false

string

namespace

Namespace defines the space within each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.
-
-Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces

false

string

selfLink

SelfLink is a URL representing this object. Populated by the system. Read-only.

false

string

uid

UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.
-
-Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

false

string

resourceVersion

An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.
-
-Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

false

string

generation

A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.

false

integer (int64)

creationTimestamp

CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
-
-Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

false

string

deletionTimestamp

DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
-
-Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

false

string

deletionGracePeriodSeconds

Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.

false

integer (int64)

labels

Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels

false

object

annotations

Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations

false

object

ownerReferences

List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.

false

v1.OwnerReference array

finalizers

Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

false

string array

clusterName

The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.

false

string

- -
-
-

v1.OwnerReference

-
-

OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

apiVersion

API version of the referent.

true

string

kind

Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

true

string

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

true

string

uid

UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

true

string

controller

If true, this reference points to the managing controller.

false

boolean

false

blockOwnerDeletion

If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.

false

boolean

false

-

v1beta1.ClusterCondition

@@ -865,7 +1086,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -924,9 +1145,9 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
-

v1.APIResource

+

v1.ObjectMeta

-

APIResource specifies the name of a resource and whether it is namespaced.

+

ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.

@@ -934,7 +1155,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -+ @@ -948,7 +1169,238 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

name

name is the name of the resource.

Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names

false

string

generateName

GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.
+
+If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).
+
+Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency

false

string

namespace

Namespace defines the space within each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.
+
+Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces

false

string

selfLink

SelfLink is a URL representing this object. Populated by the system. Read-only.

false

string

uid

UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.
+
+Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

false

string

resourceVersion

An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.
+
+Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency

false

string

generation

A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.

false

integer (int64)

creationTimestamp

CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
+
+Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

string

deletionTimestamp

DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
+
+Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

string

deletionGracePeriodSeconds

Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.

false

integer (int64)

labels

Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels

false

object

annotations

Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations

false

object

ownerReferences

List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.

false

v1.OwnerReference array

initializers

An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven’t explicitly asked to observe uninitialized objects.
+
+When an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.

false

v1.Initializers

finalizers

Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

false

string array

clusterName

The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.

false

string

+ +
+
+

v1.OwnerReference

+
+

OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

apiVersion

API version of the referent.

true

string

kind

Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

true

string

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

true

string

uid

UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

true

string

controller

If true, this reference points to the managing controller.

false

boolean

false

blockOwnerDeletion

If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.

false

boolean

false

+ +
+
+

v1.APIResource

+
+

APIResource specifies the name of a resource and whether it is namespaced.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + @@ -981,6 +1433,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + + + + + + +
NameDescriptionRequiredSchemaDefault

name

name is the plural name of the resource.

true

string

singularName

singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.

true

string

string array

categories

categories is a list of the grouped resources this resource belongs to (e.g. all)

false

string array

@@ -1000,7 +1459,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1056,7 +1515,7 @@ Examples:
- + @@ -1070,21 +1529,21 @@ Examples:

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ObjectMeta

@@ -1118,8 +1577,8 @@ Examples:
- \ No newline at end of file + diff --git a/docs/reference/federation/v1beta1/operations.html b/docs/reference/federation/federation/v1beta1/operations.html similarity index 61% rename from docs/reference/federation/v1beta1/operations.html rename to docs/reference/federation/federation/v1beta1/operations.html index 28cc47802c..6dd2e9efaa 100755 --- a/docs/reference/federation/v1beta1/operations.html +++ b/docs/reference/federation/federation/v1beta1/operations.html @@ -9,6 +9,360 @@ notitle: true Operations + - \ No newline at end of file + diff --git a/docs/reference/federation/index.md b/docs/reference/federation/index.md index 1cadb737e7..8cfd620d4b 100644 --- a/docs/reference/federation/index.md +++ b/docs/reference/federation/index.md @@ -4,14 +4,15 @@ redirect_from: - "/docs/federation/api-reference/" - "/docs/federation/api-reference/index.md" --- +# API Reference Federation API server supports the following group versions: -* federation/v1beta1: [operations](/docs/reference/federation/v1beta1/operations/), [model definitions](/docs/reference/federation/v1beta1/definitions/) -* v1: [operations](/docs/reference/federation/v1/operations/), [model definitions]/docs/reference/federation/v1/definitions/) -* extensions/v1beta1: [operations](/docs/reference/federation/extensions/v1beta1/operations/), [model definitions](/docs/reference/federation/extensions/v1beta1/definitions/) +* federation/v1beta1: [operations](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/federation/docs/api-reference/federation/v1beta1/operations.html), [model definitions](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/federation/docs/api-reference/federation/v1beta1/definitions.html) +* v1: [operations](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/federation/docs/api-reference/v1/operations.html), [model definitions](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/federation/docs/api-reference/v1/definitions.html) +* extensions/v1beta1: [operations](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/federation/docs/api-reference/extensions/v1beta1/operations.html), [model definitions](https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/federation/docs/api-reference/extensions/v1beta1/definitions.html) -[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/federation/api-reference/README.md?pixel)]() +[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/federation/docs/api-reference/README.md?pixel)]() diff --git a/docs/reference/federation/v1/definitions.html b/docs/reference/federation/v1/definitions.html index 30a662d14b..c6e8591b73 100755 --- a/docs/reference/federation/v1/definitions.html +++ b/docs/reference/federation/v1/definitions.html @@ -9,6 +9,360 @@ notitle: true Top Level API Objects + +
+

v1.Initializers

+
+

Initializers tracks the progress of initialization.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

pending

Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.

true

v1.Initializer array

result

If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.

false

v1.Status

+

v1.Preconditions

@@ -280,7 +675,7 @@ notitle: true - + @@ -314,7 +709,7 @@ notitle: true - + @@ -328,28 +723,28 @@ notitle: true

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

false

v1.ListMeta

status

-

Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

false

string

@@ -397,7 +792,7 @@ notitle: true - + @@ -431,7 +826,7 @@ notitle: true - + @@ -445,28 +840,28 @@ notitle: true

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ObjectMeta

data

-

Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN or leading dot followed by valid DNS_SUBDOMAIN. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4

+

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

false

object

@@ -497,7 +892,7 @@ notitle: true - + @@ -538,7 +933,7 @@ notitle: true - + @@ -552,21 +947,21 @@ notitle: true

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

true

v1.ObjectMeta

@@ -642,7 +1037,7 @@ notitle: true - + @@ -687,7 +1082,7 @@ notitle: true - + @@ -701,7 +1096,7 @@ notitle: true

phase

-

Phase is the current lifecycle phase of the namespace. More info: http://releases.k8s.io/HEAD/docs/design/namespaces.md#phases

+

Phase is the current lifecycle phase of the namespace. More info: https://git.k8s.io/community/contributors/design-proposals/namespaces.md#phases

false

string

@@ -721,7 +1116,7 @@ notitle: true - + @@ -735,21 +1130,21 @@ notitle: true

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

false

v1.ListMeta

@@ -776,7 +1171,7 @@ notitle: true - + @@ -790,7 +1185,7 @@ notitle: true

finalizers

-

Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: http://releases.k8s.io/HEAD/docs/design/namespaces.md#finalizers

+

Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://git.k8s.io/community/contributors/design-proposals/namespaces.md#finalizers

false

v1.FinalizerName array

@@ -810,7 +1205,7 @@ notitle: true - + @@ -824,35 +1219,35 @@ notitle: true

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ObjectMeta

spec

-

Spec defines the behavior of a service. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

false

v1.ServiceSpec

status

-

Most recently observed status of the service. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status

+

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

false

v1.ServiceStatus

@@ -878,7 +1273,7 @@ notitle: true - + @@ -892,21 +1287,21 @@ notitle: true

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ListMeta

@@ -933,7 +1328,7 @@ notitle: true - + @@ -947,14 +1342,14 @@ notitle: true

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

@@ -982,7 +1377,7 @@ notitle: true

propagationPolicy

-

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

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.

false

v1.DeletionPropagation

@@ -1002,7 +1397,7 @@ notitle: true - + @@ -1030,7 +1425,14 @@ notitle: true

kind

-

The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

+

false

+

string

+ + + +

uid

+

UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids

false

string

@@ -1064,7 +1466,7 @@ notitle: true - + @@ -1078,28 +1480,28 @@ notitle: true

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard object’s metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+

Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

v1.ObjectMeta

data

-

Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.

+

Data contains the configuration data. Each key must consist of alphanumeric characters, -, _ or ..

false

object

@@ -1107,6 +1509,40 @@ notitle: true +
+
+

v1.Initializer

+
+

Initializer is information about an initializer that has not yet completed.

+
+ +++++++ + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

name

name of the process that is responsible for initializing this object.

true

string

+

v1.ObjectReference

@@ -1119,7 +1555,7 @@ notitle: true - + @@ -1133,28 +1569,28 @@ notitle: true

kind

-

Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

false

string

namespace

-

Namespace of the referent. More info: http://kubernetes.io/docs/user-guide/namespaces

+

Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/

false

string

name

-

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

+

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

false

string

uid

-

UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

+

UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids

false

string

@@ -1168,7 +1604,7 @@ notitle: true

resourceVersion

-

Specific resourceVersion to which this reference is made, if any. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

+

Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency

false

string

@@ -1195,7 +1631,7 @@ notitle: true - + @@ -1229,7 +1665,7 @@ notitle: true - + @@ -1243,28 +1679,28 @@ notitle: true

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

false

v1.ListMeta

items

-

Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets

+

Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret

true

v1.Secret array

@@ -1288,7 +1724,7 @@ notitle: true - + @@ -1323,14 +1759,14 @@ notitle: true

targetPort

-

Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod’s container ports. If this is not specified, the value of the port field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the port field. More info: http://kubernetes.io/docs/user-guide/services#defining-a-service

+

Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod’s container ports. If this is not specified, the value of the port field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the port field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service

false

string

nodePort

-

The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: http://kubernetes.io/docs/user-guide/services#type—nodeport

+

The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport

false

integer (int32)

@@ -1350,7 +1786,7 @@ notitle: true - + @@ -1371,7 +1807,7 @@ notitle: true

kind

-

Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

true

string

@@ -1419,7 +1855,7 @@ notitle: true - + @@ -1444,7 +1880,7 @@ notitle: true
If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).

-Applied only if Name is not specified. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#idempotency

+Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency

false

string

@@ -1478,7 +1914,7 @@ Populated by the system. Read-only. More info:

resourceVersion

An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

-Populated by the system. Read-only. Value must be treated as opaque by clients and . More info:
http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency

+Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency

false

string

@@ -1494,7 +1930,7 @@ Populated by the system. Read-only. Value must be treated as opaque by clients a

creationTimestamp

CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

-Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

string

@@ -1503,7 +1939,7 @@ Populated by the system. Read-only. Null for lists. More info:

deletionTimestamp

DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

-Populated by the system when a graceful deletion is requested. Read-only. More info:
http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata

+Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

false

string

@@ -1537,6 +1973,15 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +

initializers

+

An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven’t explicitly asked to observe uninitialized objects.
+
+When an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.

+

false

+

v1.Initializers

+ + +

finalizers

Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.

false

@@ -1565,7 +2010,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1579,21 +2024,21 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

kind

-

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Kind is a string value representing the 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

false

string

apiVersion

-

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

+

APIVersion defines the versioned 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

false

string

metadata

-

Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

+

Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

false

v1.ListMeta

@@ -1620,7 +2065,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1634,7 +2079,14 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

name

-

name is the name of the resource.

+

name is the plural name of the resource.

+

true

+

string

+ + + +

singularName

+

singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.

true

string

@@ -1667,6 +2119,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

string array

+ +

categories

+

categories is a list of the grouped resources this resource belongs to (e.g. all)

+

false

+

string array

+ + @@ -1682,7 +2141,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1696,49 +2155,42 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

ports

-

The list of ports that are exposed by this service. More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies

+

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

false

v1.ServicePort array

selector

-

Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://kubernetes.io/docs/user-guide/services#overview

+

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/

false

object

clusterIP

-

clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are "None", empty string (""), or a valid IP address. "None" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies

+

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

false

string

type

-

type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: http://kubernetes.io/docs/user-guide/services#overview

+

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

false

string

externalIPs

-

externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. A previous form of this functionality exists as the deprecatedPublicIPs field. When using this field, callers should also clear the deprecatedPublicIPs field.

-

false

-

string array

- - - -

deprecatedPublicIPs

-

deprecatedPublicIPs is deprecated and replaced by the externalIPs field with almost the exact same semantics. This field is retained in the v1 API for compatibility until at least 8/20/2016. It will be removed from any new API revisions. If both deprecatedPublicIPs and externalIPs are set, deprecatedPublicIPs is used.

+

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.

false

string array

sessionAffinity

-

Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies

+

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

false

string

@@ -1752,7 +2204,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

loadBalancerSourceRanges

-

If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: http://kubernetes.io/docs/user-guide/services-firewalls

+

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/

false

string array

@@ -1764,6 +2216,20 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

string

+ +

externalTrafficPolicy

+

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.

+

false

+

string

+ + + +

healthCheckNodePort

+

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.

+

false

+

integer (int32)

+ + @@ -1779,7 +2245,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1824,7 +2290,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i - + @@ -1876,8 +2342,8 @@ Examples:
- \ No newline at end of file + diff --git a/docs/reference/federation/v1/operations.html b/docs/reference/federation/v1/operations.html index 23b37f45bf..bd587020eb 100755 --- a/docs/reference/federation/v1/operations.html +++ b/docs/reference/federation/v1/operations.html @@ -9,6 +9,360 @@ notitle: true Operations +
-

delete collection of Namespace

+

create a Namespace

-
DELETE /api/v1/namespaces
+
POST /api/v1/namespaces
@@ -555,7 +933,7 @@ notitle: true - + @@ -577,43 +955,11 @@ notitle: true -

QueryParameter

-

labelSelector

-

A selector to restrict the list of returned objects by their labels. Defaults to everything.

-

false

-

string

+

BodyParameter

+

body

- - -

QueryParameter

-

fieldSelector

-

A selector to restrict the list of returned objects by their fields. Defaults to everything.

-

false

-

string

- - - -

QueryParameter

-

watch

-

Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

-

false

-

boolean

- - - -

QueryParameter

-

resourceVersion

-

When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

-

false

-

string

- - - -

QueryParameter

-

timeoutSeconds

-

Timeout for the list/watch call.

-

false

-

integer (int32)

+

true

+

v1.Namespace

@@ -626,7 +972,7 @@ notitle: true - + @@ -639,7 +985,7 @@ notitle: true

200

success

-

v1.Status

+

v1.Namespace

@@ -683,10 +1029,10 @@ notitle: true
-

create a Namespace

+

list or watch objects of kind ConfigMap

-
POST /api/v1/namespaces
+
GET /api/v1/namespaces/{namespace}/configmaps
@@ -698,118 +1044,7 @@ notitle: true - - - - -Type -Name -Description -Required -Schema -Default - - - - -

QueryParameter

-

pretty

-

If true, then the output is pretty printed.

-

false

-

string

- - - -

BodyParameter

-

body

- -

true

-

v1.Namespace

- - - - - -
-
-

Responses

- ----- - - - - - - - - - - - - - - -
HTTP CodeDescriptionSchema

200

success

v1.Namespace

- -
-
-

Consumes

-
-
    -
  • -

    /

    -
  • -
-
-
-
-

Produces

-
-
    -
  • -

    application/json

    -
  • -
  • -

    application/yaml

    -
  • -
  • -

    application/vnd.kubernetes.protobuf

    -
  • -
-
-
-
-

Tags

-
-
    -
  • -

    apiv1

    -
  • -
-
-
-
-
-

list or watch objects of kind ConfigMap

-
-
-
GET /api/v1/namespaces/{namespace}/configmaps
-
-
-
-

Parameters

- ------ @@ -848,6 +1083,179 @@ notitle: true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

QueryParameter

includeUninitialized

If true, partially initialized resources are included in the response.

false

boolean

QueryParameter

watch

Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

false

boolean

QueryParameter

resourceVersion

When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

false

string

QueryParameter

timeoutSeconds

Timeout for the list/watch call.

false

integer (int32)

PathParameter

namespace

object name and auth scope, such as for teams and projects

true

string

+ +
+
+

Responses

+ +++++ + + + + + + + + + + + + + + +
HTTP CodeDescriptionSchema

200

success

v1.ConfigMapList

+ +
+
+

Consumes

+
+
    +
  • +

    /

    +
  • +
+
+
+
+

Produces

+
+
    +
  • +

    application/json

    +
  • +
  • +

    application/yaml

    +
  • +
  • +

    application/vnd.kubernetes.protobuf

    +
  • +
  • +

    application/json;stream=watch

    +
  • +
  • +

    application/vnd.kubernetes.protobuf;stream=watch

    +
  • +
+
+
+
+

Tags

+
+
    +
  • +

    apiv1

    +
  • +
+
+
+
+
+

delete collection of ConfigMap

+
+
+
DELETE /api/v1/namespaces/{namespace}/configmaps
+
+
+
+

Parameters

+ ++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -888,7 +1296,7 @@ notitle: true -+ @@ -901,7 +1309,7 @@ notitle: true - +
TypeNameDescriptionRequiredSchemaDefault

QueryParameter

pretty

If true, then the output is pretty printed.

false

string

QueryParameter

labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

false

string

QueryParameter

fieldSelector

A selector to restrict the list of returned objects by their fields. Defaults to everything.

false

string

QueryParameter

includeUninitialized

If true, partially initialized resources are included in the response.

false

boolean

QueryParameter

watch

Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

false

200

success

v1.ConfigMapList

v1.Status

@@ -930,12 +1338,6 @@ notitle: true
  • application/vnd.kubernetes.protobuf

  • -
  • -

    application/json;stream=watch

    -
  • -
  • -

    application/vnd.kubernetes.protobuf;stream=watch

    -
  • @@ -951,10 +1353,10 @@ notitle: true
    -

    delete collection of ConfigMap

    +

    create a ConfigMap

    -
    DELETE /api/v1/namespaces/{namespace}/configmaps
    +
    POST /api/v1/namespaces/{namespace}/configmaps
    @@ -966,7 +1368,7 @@ notitle: true - + @@ -988,43 +1390,11 @@ notitle: true -

    QueryParameter

    -

    labelSelector

    -

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    -

    false

    -

    string

    +

    BodyParameter

    +

    body

    - - -

    QueryParameter

    -

    fieldSelector

    -

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    -

    false

    -

    string

    - - - -

    QueryParameter

    -

    watch

    -

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    -

    false

    -

    boolean

    - - - -

    QueryParameter

    -

    resourceVersion

    -

    When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

    -

    false

    -

    string

    - - - -

    QueryParameter

    -

    timeoutSeconds

    -

    Timeout for the list/watch call.

    -

    false

    -

    integer (int32)

    +

    true

    +

    v1.ConfigMap

    @@ -1045,7 +1415,7 @@ notitle: true - + @@ -1058,7 +1428,7 @@ notitle: true

    200

    success

    -

    v1.Status

    +

    v1.ConfigMap

    @@ -1102,10 +1472,10 @@ notitle: true
    -

    create a ConfigMap

    +

    read the specified ConfigMap

    -
    POST /api/v1/namespaces/{namespace}/configmaps
    +
    GET /api/v1/namespaces/{namespace}/configmaps/{name}
    @@ -1117,7 +1487,7 @@ notitle: true - + @@ -1139,11 +1509,19 @@ notitle: true -

    BodyParameter

    -

    body

    +

    QueryParameter

    +

    export

    +

    Should this value be exported. Export strips fields that a user can not specify.

    +

    false

    +

    boolean

    -

    true

    -

    v1.ConfigMap

    + + +

    QueryParameter

    +

    exact

    +

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

    +

    false

    +

    boolean

    @@ -1154,6 +1532,14 @@ notitle: true

    string

    + +

    PathParameter

    +

    name

    +

    name of the ConfigMap

    +

    true

    +

    string

    + + @@ -1164,7 +1550,7 @@ notitle: true - + @@ -1221,10 +1607,10 @@ notitle: true
    -

    read the specified ConfigMap

    +

    replace the specified ConfigMap

    -
    GET /api/v1/namespaces/{namespace}/configmaps/{name}
    +
    PUT /api/v1/namespaces/{namespace}/configmaps/{name}
    @@ -1236,7 +1622,7 @@ notitle: true - + @@ -1258,19 +1644,11 @@ notitle: true -

    QueryParameter

    -

    export

    -

    Should this value be exported. Export strips fields that a user can not specify.

    -

    false

    -

    boolean

    +

    BodyParameter

    +

    body

    - - -

    QueryParameter

    -

    exact

    -

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

    -

    false

    -

    boolean

    +

    true

    +

    v1.ConfigMap

    @@ -1299,7 +1677,7 @@ notitle: true - + @@ -1356,10 +1734,10 @@ notitle: true
    -

    replace the specified ConfigMap

    +

    delete a ConfigMap

    -
    PUT /api/v1/namespaces/{namespace}/configmaps/{name}
    +
    DELETE /api/v1/namespaces/{namespace}/configmaps/{name}
    @@ -1371,134 +1749,7 @@ notitle: true - - - - -Type -Name -Description -Required -Schema -Default - - - - -

    QueryParameter

    -

    pretty

    -

    If true, then the output is pretty printed.

    -

    false

    -

    string

    - - - -

    BodyParameter

    -

    body

    - -

    true

    -

    v1.ConfigMap

    - - - -

    PathParameter

    -

    namespace

    -

    object name and auth scope, such as for teams and projects

    -

    true

    -

    string

    - - - -

    PathParameter

    -

    name

    -

    name of the ConfigMap

    -

    true

    -

    string

    - - - - - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.ConfigMap

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a ConfigMap

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/configmaps/{name}
    -
    -
    -
    -

    Parameters

    - ------ @@ -1546,7 +1797,7 @@ notitle: true - + @@ -1572,12 +1823,12 @@ notitle: true
    -

    Responses

    +

    Responses

    QueryParameter

    propagationPolicy

    Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

    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.

    false

    string

    -+ @@ -1597,7 +1848,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -1607,7 +1858,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -1623,7 +1874,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -1641,7 +1892,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -1649,7 +1900,7 @@ notitle: true -+ @@ -1699,12 +1950,12 @@ notitle: true
    -

    Responses

    +

    Responses

    -+ @@ -1724,7 +1975,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -1740,7 +1991,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -1756,7 +2007,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -1774,7 +2025,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -1782,7 +2033,7 @@ notitle: true -+ @@ -1821,6 +2072,179 @@ notitle: true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    QueryParameter

    includeUninitialized

    If true, partially initialized resources are included in the response.

    false

    boolean

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    resourceVersion

    When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    + +
    +
    +

    Responses

    + +++++ + + + + + + + + + + + + + + +
    HTTP CodeDescriptionSchema

    200

    success

    v1.EventList

    + +
    +
    +

    Consumes

    +
    +
      +
    • +

      /

      +
    • +
    +
    +
    +
    +

    Produces

    +
    +
      +
    • +

      application/json

      +
    • +
    • +

      application/yaml

      +
    • +
    • +

      application/vnd.kubernetes.protobuf

      +
    • +
    • +

      application/json;stream=watch

      +
    • +
    • +

      application/vnd.kubernetes.protobuf;stream=watch

      +
    • +
    +
    +
    +
    +

    Tags

    +
    +
      +
    • +

      apiv1

      +
    • +
    +
    +
    +
    +
    +

    delete collection of Event

    +
    +
    +
    DELETE /api/v1/namespaces/{namespace}/events
    +
    +
    +
    +

    Parameters

    + ++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1861,7 +2285,7 @@ notitle: true -+ @@ -1874,7 +2298,7 @@ notitle: true - +
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    includeUninitialized

    If true, partially initialized resources are included in the response.

    false

    boolean

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    200

    success

    v1.EventList

    v1.Status

    @@ -1903,12 +2327,6 @@ notitle: true
  • application/vnd.kubernetes.protobuf

  • -
  • -

    application/json;stream=watch

    -
  • -
  • -

    application/vnd.kubernetes.protobuf;stream=watch

    -
  • @@ -1924,10 +2342,10 @@ notitle: true
    -

    delete collection of Event

    +

    create an Event

    -
    DELETE /api/v1/namespaces/{namespace}/events
    +
    POST /api/v1/namespaces/{namespace}/events
    @@ -1939,7 +2357,7 @@ notitle: true - + @@ -1961,43 +2379,11 @@ notitle: true -

    QueryParameter

    -

    labelSelector

    -

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    -

    false

    -

    string

    +

    BodyParameter

    +

    body

    - - -

    QueryParameter

    -

    fieldSelector

    -

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    -

    false

    -

    string

    - - - -

    QueryParameter

    -

    watch

    -

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    -

    false

    -

    boolean

    - - - -

    QueryParameter

    -

    resourceVersion

    -

    When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

    -

    false

    -

    string

    - - - -

    QueryParameter

    -

    timeoutSeconds

    -

    Timeout for the list/watch call.

    -

    false

    -

    integer (int32)

    +

    true

    +

    v1.Event

    @@ -2018,7 +2404,7 @@ notitle: true - + @@ -2031,7 +2417,7 @@ notitle: true

    200

    success

    -

    v1.Status

    +

    v1.Event

    @@ -2075,10 +2461,10 @@ notitle: true
    -

    create an Event

    +

    read the specified Event

    -
    POST /api/v1/namespaces/{namespace}/events
    +
    GET /api/v1/namespaces/{namespace}/events/{name}
    @@ -2090,7 +2476,7 @@ notitle: true - + @@ -2112,11 +2498,19 @@ notitle: true -

    BodyParameter

    -

    body

    +

    QueryParameter

    +

    export

    +

    Should this value be exported. Export strips fields that a user can not specify.

    +

    false

    +

    boolean

    -

    true

    -

    v1.Event

    + + +

    QueryParameter

    +

    exact

    +

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

    +

    false

    +

    boolean

    @@ -2127,6 +2521,14 @@ notitle: true

    string

    + +

    PathParameter

    +

    name

    +

    name of the Event

    +

    true

    +

    string

    + + @@ -2137,7 +2539,7 @@ notitle: true - + @@ -2194,10 +2596,10 @@ notitle: true
    -

    read the specified Event

    +

    replace the specified Event

    -
    GET /api/v1/namespaces/{namespace}/events/{name}
    +
    PUT /api/v1/namespaces/{namespace}/events/{name}
    @@ -2209,7 +2611,7 @@ notitle: true - + @@ -2231,19 +2633,11 @@ notitle: true -

    QueryParameter

    -

    export

    -

    Should this value be exported. Export strips fields that a user can not specify.

    -

    false

    -

    boolean

    +

    BodyParameter

    +

    body

    - - -

    QueryParameter

    -

    exact

    -

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

    -

    false

    -

    boolean

    +

    true

    +

    v1.Event

    @@ -2272,7 +2666,7 @@ notitle: true - + @@ -2329,10 +2723,10 @@ notitle: true
    -

    replace the specified Event

    +

    delete an Event

    -
    PUT /api/v1/namespaces/{namespace}/events/{name}
    +
    DELETE /api/v1/namespaces/{namespace}/events/{name}
    @@ -2344,134 +2738,7 @@ notitle: true - - - - -Type -Name -Description -Required -Schema -Default - - - - -

    QueryParameter

    -

    pretty

    -

    If true, then the output is pretty printed.

    -

    false

    -

    string

    - - - -

    BodyParameter

    -

    body

    - -

    true

    -

    v1.Event

    - - - -

    PathParameter

    -

    namespace

    -

    object name and auth scope, such as for teams and projects

    -

    true

    -

    string

    - - - -

    PathParameter

    -

    name

    -

    name of the Event

    -

    true

    -

    string

    - - - - - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Event

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete an Event

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/events/{name}
    -
    -
    -
    -

    Parameters

    - ------ @@ -2519,7 +2786,7 @@ notitle: true - + @@ -2545,12 +2812,12 @@ notitle: true
    -

    Responses

    +

    Responses

    QueryParameter

    propagationPolicy

    Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

    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.

    false

    string

    -+ @@ -2570,7 +2837,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -2580,7 +2847,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -2596,7 +2863,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -2614,7 +2881,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -2622,7 +2889,7 @@ notitle: true -+ @@ -2672,12 +2939,12 @@ notitle: true
    -

    Responses

    +

    Responses

    -+ @@ -2697,7 +2964,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -2713,7 +2980,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -2729,7 +2996,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -2747,7 +3014,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -2755,7 +3022,7 @@ notitle: true -+ @@ -2794,6 +3061,179 @@ notitle: true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    QueryParameter

    includeUninitialized

    If true, partially initialized resources are included in the response.

    false

    boolean

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    resourceVersion

    When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    + +
    +
    +

    Responses

    + +++++ + + + + + + + + + + + + + + +
    HTTP CodeDescriptionSchema

    200

    success

    v1.SecretList

    + +
    +
    +

    Consumes

    +
    +
      +
    • +

      /

      +
    • +
    +
    +
    +
    +

    Produces

    +
    +
      +
    • +

      application/json

      +
    • +
    • +

      application/yaml

      +
    • +
    • +

      application/vnd.kubernetes.protobuf

      +
    • +
    • +

      application/json;stream=watch

      +
    • +
    • +

      application/vnd.kubernetes.protobuf;stream=watch

      +
    • +
    +
    +
    +
    +

    Tags

    +
    +
      +
    • +

      apiv1

      +
    • +
    +
    +
    +
    +
    +

    delete collection of Secret

    +
    +
    +
    DELETE /api/v1/namespaces/{namespace}/secrets
    +
    +
    +
    +

    Parameters

    + ++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2834,7 +3274,7 @@ notitle: true -+ @@ -2847,7 +3287,7 @@ notitle: true - +
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    includeUninitialized

    If true, partially initialized resources are included in the response.

    false

    boolean

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    200

    success

    v1.SecretList

    v1.Status

    @@ -2876,12 +3316,6 @@ notitle: true
  • application/vnd.kubernetes.protobuf

  • -
  • -

    application/json;stream=watch

    -
  • -
  • -

    application/vnd.kubernetes.protobuf;stream=watch

    -
  • @@ -2897,10 +3331,10 @@ notitle: true
    -

    delete collection of Secret

    +

    create a Secret

    -
    DELETE /api/v1/namespaces/{namespace}/secrets
    +
    POST /api/v1/namespaces/{namespace}/secrets
    @@ -2912,7 +3346,7 @@ notitle: true - + @@ -2934,43 +3368,11 @@ notitle: true -

    QueryParameter

    -

    labelSelector

    -

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    -

    false

    -

    string

    +

    BodyParameter

    +

    body

    - - -

    QueryParameter

    -

    fieldSelector

    -

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    -

    false

    -

    string

    - - - -

    QueryParameter

    -

    watch

    -

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    -

    false

    -

    boolean

    - - - -

    QueryParameter

    -

    resourceVersion

    -

    When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

    -

    false

    -

    string

    - - - -

    QueryParameter

    -

    timeoutSeconds

    -

    Timeout for the list/watch call.

    -

    false

    -

    integer (int32)

    +

    true

    +

    v1.Secret

    @@ -2991,7 +3393,7 @@ notitle: true - + @@ -3004,7 +3406,7 @@ notitle: true

    200

    success

    -

    v1.Status

    +

    v1.Secret

    @@ -3048,10 +3450,10 @@ notitle: true
    -

    create a Secret

    +

    read the specified Secret

    -
    POST /api/v1/namespaces/{namespace}/secrets
    +
    GET /api/v1/namespaces/{namespace}/secrets/{name}
    @@ -3063,7 +3465,7 @@ notitle: true - + @@ -3085,11 +3487,19 @@ notitle: true -

    BodyParameter

    -

    body

    +

    QueryParameter

    +

    export

    +

    Should this value be exported. Export strips fields that a user can not specify.

    +

    false

    +

    boolean

    -

    true

    -

    v1.Secret

    + + +

    QueryParameter

    +

    exact

    +

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

    +

    false

    +

    boolean

    @@ -3100,6 +3510,14 @@ notitle: true

    string

    + +

    PathParameter

    +

    name

    +

    name of the Secret

    +

    true

    +

    string

    + + @@ -3110,7 +3528,7 @@ notitle: true - + @@ -3167,10 +3585,10 @@ notitle: true
    -

    read the specified Secret

    +

    replace the specified Secret

    -
    GET /api/v1/namespaces/{namespace}/secrets/{name}
    +
    PUT /api/v1/namespaces/{namespace}/secrets/{name}
    @@ -3182,7 +3600,7 @@ notitle: true - + @@ -3204,19 +3622,11 @@ notitle: true -

    QueryParameter

    -

    export

    -

    Should this value be exported. Export strips fields that a user can not specify.

    -

    false

    -

    boolean

    +

    BodyParameter

    +

    body

    - - -

    QueryParameter

    -

    exact

    -

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

    -

    false

    -

    boolean

    +

    true

    +

    v1.Secret

    @@ -3245,7 +3655,7 @@ notitle: true - + @@ -3302,10 +3712,10 @@ notitle: true
    -

    replace the specified Secret

    +

    delete a Secret

    -
    PUT /api/v1/namespaces/{namespace}/secrets/{name}
    +
    DELETE /api/v1/namespaces/{namespace}/secrets/{name}
    @@ -3317,134 +3727,7 @@ notitle: true - - - - -Type -Name -Description -Required -Schema -Default - - - - -

    QueryParameter

    -

    pretty

    -

    If true, then the output is pretty printed.

    -

    false

    -

    string

    - - - -

    BodyParameter

    -

    body

    - -

    true

    -

    v1.Secret

    - - - -

    PathParameter

    -

    namespace

    -

    object name and auth scope, such as for teams and projects

    -

    true

    -

    string

    - - - -

    PathParameter

    -

    name

    -

    name of the Secret

    -

    true

    -

    string

    - - - - - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Secret

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Secret

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/secrets/{name}
    -
    -
    -
    -

    Parameters

    - ------ @@ -3492,7 +3775,7 @@ notitle: true - + @@ -3518,12 +3801,12 @@ notitle: true
    -

    Responses

    +

    Responses

    QueryParameter

    propagationPolicy

    Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

    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.

    false

    string

    -+ @@ -3543,7 +3826,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -3553,7 +3836,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -3569,7 +3852,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -3587,7 +3870,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -3595,7 +3878,7 @@ notitle: true -+ @@ -3645,12 +3928,12 @@ notitle: true
    -

    Responses

    +

    Responses

    -+ @@ -3670,7 +3953,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -3686,7 +3969,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -3702,7 +3985,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -3720,7 +4003,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -3728,7 +4011,7 @@ notitle: true -+ @@ -3767,6 +4050,179 @@ notitle: true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    QueryParameter

    includeUninitialized

    If true, partially initialized resources are included in the response.

    false

    boolean

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    resourceVersion

    When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    + +
    +
    +

    Responses

    + +++++ + + + + + + + + + + + + + + +
    HTTP CodeDescriptionSchema

    200

    success

    v1.ServiceList

    + +
    +
    +

    Consumes

    +
    +
      +
    • +

      /

      +
    • +
    +
    +
    +
    +

    Produces

    +
    +
      +
    • +

      application/json

      +
    • +
    • +

      application/yaml

      +
    • +
    • +

      application/vnd.kubernetes.protobuf

      +
    • +
    • +

      application/json;stream=watch

      +
    • +
    • +

      application/vnd.kubernetes.protobuf;stream=watch

      +
    • +
    +
    +
    +
    +

    Tags

    +
    +
      +
    • +

      apiv1

      +
    • +
    +
    +
    +
    +
    +

    delete collection of Service

    +
    +
    +
    DELETE /api/v1/namespaces/{namespace}/services
    +
    +
    +
    +

    Parameters

    + ++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3807,7 +4263,7 @@ notitle: true -+ @@ -3820,7 +4276,7 @@ notitle: true - +
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    includeUninitialized

    If true, partially initialized resources are included in the response.

    false

    boolean

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    200

    success

    v1.ServiceList

    v1.Status

    @@ -3849,12 +4305,6 @@ notitle: true
  • application/vnd.kubernetes.protobuf

  • -
  • -

    application/json;stream=watch

    -
  • -
  • -

    application/vnd.kubernetes.protobuf;stream=watch

    -
  • @@ -3870,10 +4320,10 @@ notitle: true
    -

    delete collection of Service

    +

    create a Service

    -
    DELETE /api/v1/namespaces/{namespace}/services
    +
    POST /api/v1/namespaces/{namespace}/services
    @@ -3885,7 +4335,7 @@ notitle: true - + @@ -3907,43 +4357,11 @@ notitle: true -

    QueryParameter

    -

    labelSelector

    -

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    -

    false

    -

    string

    +

    BodyParameter

    +

    body

    - - -

    QueryParameter

    -

    fieldSelector

    -

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    -

    false

    -

    string

    - - - -

    QueryParameter

    -

    watch

    -

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    -

    false

    -

    boolean

    - - - -

    QueryParameter

    -

    resourceVersion

    -

    When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

    -

    false

    -

    string

    - - - -

    QueryParameter

    -

    timeoutSeconds

    -

    Timeout for the list/watch call.

    -

    false

    -

    integer (int32)

    +

    true

    +

    v1.Service

    @@ -3964,7 +4382,7 @@ notitle: true - + @@ -3977,7 +4395,7 @@ notitle: true

    200

    success

    -

    v1.Status

    +

    v1.Service

    @@ -4021,10 +4439,10 @@ notitle: true
    -

    create a Service

    +

    read the specified Service

    -
    POST /api/v1/namespaces/{namespace}/services
    +
    GET /api/v1/namespaces/{namespace}/services/{name}
    @@ -4036,7 +4454,7 @@ notitle: true - + @@ -4058,11 +4476,19 @@ notitle: true -

    BodyParameter

    -

    body

    +

    QueryParameter

    +

    export

    +

    Should this value be exported. Export strips fields that a user can not specify.

    +

    false

    +

    boolean

    -

    true

    -

    v1.Service

    + + +

    QueryParameter

    +

    exact

    +

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

    +

    false

    +

    boolean

    @@ -4073,6 +4499,14 @@ notitle: true

    string

    + +

    PathParameter

    +

    name

    +

    name of the Service

    +

    true

    +

    string

    + + @@ -4083,7 +4517,7 @@ notitle: true - + @@ -4140,10 +4574,10 @@ notitle: true
    -

    read the specified Service

    +

    replace the specified Service

    -
    GET /api/v1/namespaces/{namespace}/services/{name}
    +
    PUT /api/v1/namespaces/{namespace}/services/{name}
    @@ -4155,7 +4589,7 @@ notitle: true - + @@ -4177,19 +4611,11 @@ notitle: true -

    QueryParameter

    -

    export

    -

    Should this value be exported. Export strips fields that a user can not specify.

    -

    false

    -

    boolean

    +

    BodyParameter

    +

    body

    - - -

    QueryParameter

    -

    exact

    -

    Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

    -

    false

    -

    boolean

    +

    true

    +

    v1.Service

    @@ -4218,7 +4644,7 @@ notitle: true - + @@ -4275,10 +4701,10 @@ notitle: true
    -

    replace the specified Service

    +

    delete a Service

    -
    PUT /api/v1/namespaces/{namespace}/services/{name}
    +
    DELETE /api/v1/namespaces/{namespace}/services/{name}
    @@ -4290,134 +4716,7 @@ notitle: true - - - - -Type -Name -Description -Required -Schema -Default - - - - -

    QueryParameter

    -

    pretty

    -

    If true, then the output is pretty printed.

    -

    false

    -

    string

    - - - -

    BodyParameter

    -

    body

    - -

    true

    -

    v1.Service

    - - - -

    PathParameter

    -

    namespace

    -

    object name and auth scope, such as for teams and projects

    -

    true

    -

    string

    - - - -

    PathParameter

    -

    name

    -

    name of the Service

    -

    true

    -

    string

    - - - - - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Service

    -
    -
    -
    DELETE /api/v1/namespaces/{namespace}/services/{name}
    -
    -
    -
    -

    Parameters

    - ------ @@ -4465,7 +4764,7 @@ notitle: true - + @@ -4491,12 +4790,12 @@ notitle: true
    -

    Responses

    +

    Responses

    QueryParameter

    propagationPolicy

    Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

    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.

    false

    string

    -+ @@ -4516,7 +4815,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -4526,7 +4825,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -4542,7 +4841,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -4560,7 +4859,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -4568,7 +4867,7 @@ notitle: true -+ @@ -4618,12 +4917,12 @@ notitle: true
    -

    Responses

    +

    Responses

    -+ @@ -4643,7 +4942,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -4659,7 +4958,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -4675,7 +4974,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -4693,7 +4992,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -4701,7 +5000,7 @@ notitle: true -+ @@ -4741,6 +5040,133 @@ notitle: true
    +
    +
    +

    Responses

    + +++++ + + + + + + + + + + + + + + +
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    + +
    +
    +

    Consumes

    +
    +
      +
    • +

      /

      +
    • +
    +
    +
    +
    +

    Produces

    +
    +
      +
    • +

      application/json

      +
    • +
    • +

      application/yaml

      +
    • +
    • +

      application/vnd.kubernetes.protobuf

      +
    • +
    +
    +
    +
    +

    Tags

    +
    +
      +
    • +

      apiv1

      +
    • +
    +
    +
    +
    +
    +

    replace status of the specified Service

    +
    +
    +
    PUT /api/v1/namespaces/{namespace}/services/{name}/status
    +
    +
    +
    +

    Parameters

    + ++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Service

    PathParameter

    namespace

    object name and auth scope, such as for teams and projects

    true

    string

    PathParameter

    name

    name of the Service

    true

    string

    +

    Responses

    @@ -4748,7 +5174,7 @@ notitle: true - + @@ -4805,10 +5231,10 @@ notitle: true
    -

    replace status of the specified Service

    +

    partially update status of the specified Service

    -
    PUT /api/v1/namespaces/{namespace}/services/{name}/status
    +
    PATCH /api/v1/namespaces/{namespace}/services/{name}/status
    @@ -4820,134 +5246,7 @@ notitle: true - - - - -Type -Name -Description -Required -Schema -Default - - - - -

    QueryParameter

    -

    pretty

    -

    If true, then the output is pretty printed.

    -

    false

    -

    string

    - - - -

    BodyParameter

    -

    body

    - -

    true

    -

    v1.Service

    - - - -

    PathParameter

    -

    namespace

    -

    object name and auth scope, such as for teams and projects

    -

    true

    -

    string

    - - - -

    PathParameter

    -

    name

    -

    name of the Service

    -

    true

    -

    string

    - - - - - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Service

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Service

    -
    -
    -
    PATCH /api/v1/namespaces/{namespace}/services/{name}/status
    -
    -
    -
    -

    Parameters

    - ------ @@ -4997,12 +5296,12 @@ notitle: true
    -

    Responses

    +

    Responses

    -+ @@ -5022,7 +5321,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -5038,7 +5337,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -5054,7 +5353,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -5072,7 +5371,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -5080,7 +5379,7 @@ notitle: true -+ @@ -5128,6 +5427,125 @@ notitle: true
    +
    +
    +

    Responses

    + +++++ + + + + + + + + + + + + + + +
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    + +
    +
    +

    Consumes

    +
    +
      +
    • +

      /

      +
    • +
    +
    +
    +
    +

    Produces

    +
    +
      +
    • +

      application/json

      +
    • +
    • +

      application/yaml

      +
    • +
    • +

      application/vnd.kubernetes.protobuf

      +
    • +
    +
    +
    +
    +

    Tags

    +
    +
      +
    • +

      apiv1

      +
    • +
    +
    +
    +
    +
    +

    replace the specified Namespace

    +
    +
    +
    PUT /api/v1/namespaces/{name}
    +
    +
    +
    +

    Parameters

    + ++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    BodyParameter

    body

    true

    v1.Namespace

    PathParameter

    name

    name of the Namespace

    true

    string

    +

    Responses

    @@ -5135,7 +5553,7 @@ notitle: true - + @@ -5192,10 +5610,10 @@ notitle: true
    -

    replace the specified Namespace

    +

    delete a Namespace

    -
    PUT /api/v1/namespaces/{name}
    +
    DELETE /api/v1/namespaces/{name}
    @@ -5207,126 +5625,7 @@ notitle: true - - - - -Type -Name -Description -Required -Schema -Default - - - - -

    QueryParameter

    -

    pretty

    -

    If true, then the output is pretty printed.

    -

    false

    -

    string

    - - - -

    BodyParameter

    -

    body

    - -

    true

    -

    v1.Namespace

    - - - -

    PathParameter

    -

    name

    -

    name of the Namespace

    -

    true

    -

    string

    - - - - - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    delete a Namespace

    -
    -
    -
    DELETE /api/v1/namespaces/{name}
    -
    -
    -
    -

    Parameters

    - ------ @@ -5374,7 +5673,7 @@ notitle: true - + @@ -5392,12 +5691,12 @@ notitle: true
    -

    Responses

    +

    Responses

    QueryParameter

    propagationPolicy

    Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

    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.

    false

    string

    -+ @@ -5417,7 +5716,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -5427,7 +5726,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -5443,7 +5742,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -5461,7 +5760,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -5469,7 +5768,7 @@ notitle: true -+ @@ -5511,12 +5810,12 @@ notitle: true
    -

    Responses

    +

    Responses

    -+ @@ -5536,7 +5835,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -5552,7 +5851,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -5568,7 +5867,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -5586,7 +5885,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -5594,7 +5893,7 @@ notitle: true -+ @@ -5634,6 +5933,117 @@ notitle: true
    +
    +
    +

    Responses

    + +++++ + + + + + + + + + + + + + + +
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    + +
    +
    +

    Consumes

    +
    +
      +
    • +

      /

      +
    • +
    +
    +
    +
    +

    Produces

    +
    +
      +
    • +

      application/json

      +
    • +
    • +

      application/yaml

      +
    • +
    • +

      application/vnd.kubernetes.protobuf

      +
    • +
    +
    +
    +
    +

    Tags

    +
    +
      +
    • +

      apiv1

      +
    • +
    +
    +
    +
    +
    +

    read status of the specified Namespace

    +
    +
    +
    GET /api/v1/namespaces/{name}/status
    +
    +
    +
    +

    Parameters

    + ++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    PathParameter

    name

    name of the Namespace

    true

    string

    +

    Responses

    @@ -5641,7 +6051,7 @@ notitle: true - + @@ -5698,10 +6108,10 @@ notitle: true
    -

    read status of the specified Namespace

    +

    replace status of the specified Namespace

    -
    GET /api/v1/namespaces/{name}/status
    +
    PUT /api/v1/namespaces/{name}/status
    @@ -5713,7 +6123,7 @@ notitle: true - + @@ -5735,6 +6145,14 @@ notitle: true +

    BodyParameter

    +

    body

    + +

    true

    +

    v1.Namespace

    + + +

    PathParameter

    name

    name of the Namespace

    @@ -5752,7 +6170,7 @@ notitle: true - + @@ -5809,10 +6227,10 @@ notitle: true
    -

    replace status of the specified Namespace

    +

    partially update status of the specified Namespace

    -
    PUT /api/v1/namespaces/{name}/status
    +
    PATCH /api/v1/namespaces/{name}/status
    @@ -5824,126 +6242,7 @@ notitle: true - - - - -Type -Name -Description -Required -Schema -Default - - - - -

    QueryParameter

    -

    pretty

    -

    If true, then the output is pretty printed.

    -

    false

    -

    string

    - - - -

    BodyParameter

    -

    body

    - -

    true

    -

    v1.Namespace

    - - - -

    PathParameter

    -

    name

    -

    name of the Namespace

    -

    true

    -

    string

    - - - - - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.Namespace

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    -
    -

    partially update status of the specified Namespace

    -
    -
    -
    PATCH /api/v1/namespaces/{name}/status
    -
    -
    -
    -

    Parameters

    - ------ @@ -5985,12 +6284,12 @@ notitle: true
    -

    Responses

    +

    Responses

    -+ @@ -6010,7 +6309,7 @@ notitle: true
    -

    Consumes

    +

    Consumes

    • @@ -6026,7 +6325,7 @@ notitle: true
    -

    Produces

    +

    Produces

    • @@ -6042,7 +6341,7 @@ notitle: true
    -

    Tags

    +

    Tags

    • @@ -6060,7 +6359,7 @@ notitle: true
    -

    Parameters

    +

    Parameters

    @@ -6068,7 +6367,7 @@ notitle: true -+ @@ -6107,6 +6406,171 @@ notitle: true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    QueryParameter

    includeUninitialized

    If true, partially initialized resources are included in the response.

    false

    boolean

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    resourceVersion

    When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    + +
    +
    +

    Responses

    + +++++ + + + + + + + + + + + + + + +
    HTTP CodeDescriptionSchema

    200

    success

    v1.SecretList

    + +
    +
    +

    Consumes

    +
    +
      +
    • +

      /

      +
    • +
    +
    +
    +
    +

    Produces

    +
    +
      +
    • +

      application/json

      +
    • +
    • +

      application/yaml

      +
    • +
    • +

      application/vnd.kubernetes.protobuf

      +
    • +
    • +

      application/json;stream=watch

      +
    • +
    • +

      application/vnd.kubernetes.protobuf;stream=watch

      +
    • +
    +
    +
    +
    +

    Tags

    +
    +
      +
    • +

      apiv1

      +
    • +
    +
    +
    +
    +
    +

    list or watch objects of kind Service

    +
    +
    +
    GET /api/v1/services
    +
    +
    +
    +

    Parameters

    + ++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6139,7 +6603,7 @@ notitle: true -+ @@ -6152,7 +6616,7 @@ notitle: true - +
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    includeUninitialized

    If true, partially initialized resources are included in the response.

    false

    boolean

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    200

    success

    v1.SecretList

    v1.ServiceList

    @@ -6202,10 +6666,10 @@ notitle: true
    -

    list or watch objects of kind Service

    +

    watch individual changes to a list of ConfigMap

    -
    GET /api/v1/services
    +
    GET /api/v1/watch/configmaps
    @@ -6217,7 +6681,7 @@ notitle: true - + @@ -6256,6 +6720,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -6288,7 +6760,7 @@ notitle: true - + @@ -6301,7 +6773,7 @@ notitle: true

    200

    success

    -

    v1.ServiceList

    +

    v1.WatchEvent

    @@ -6351,10 +6823,10 @@ notitle: true
    -

    watch individual changes to a list of ConfigMap

    +

    watch individual changes to a list of Event

    -
    GET /api/v1/watch/configmaps
    +
    GET /api/v1/watch/events
    @@ -6366,7 +6838,7 @@ notitle: true - + @@ -6405,6 +6877,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -6437,7 +6917,7 @@ notitle: true - + @@ -6500,10 +6980,10 @@ notitle: true
    -

    watch individual changes to a list of Event

    +

    watch individual changes to a list of Namespace

    -
    GET /api/v1/watch/events
    +
    GET /api/v1/watch/namespaces
    @@ -6515,7 +6995,7 @@ notitle: true - + @@ -6554,6 +7034,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -6586,7 +7074,7 @@ notitle: true - + @@ -6649,10 +7137,10 @@ notitle: true
    -

    watch individual changes to a list of Namespace

    +

    watch individual changes to a list of ConfigMap

    -
    GET /api/v1/watch/namespaces
    +
    GET /api/v1/watch/namespaces/{namespace}/configmaps
    @@ -6664,7 +7152,7 @@ notitle: true - + @@ -6703,6 +7191,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -6725,6 +7221,14 @@ notitle: true

    integer (int32)

    + +

    PathParameter

    +

    namespace

    +

    object name and auth scope, such as for teams and projects

    +

    true

    +

    string

    + + @@ -6735,7 +7239,7 @@ notitle: true - + @@ -6798,10 +7302,10 @@ notitle: true
    -

    watch individual changes to a list of ConfigMap

    +

    watch changes to an object of kind ConfigMap

    -
    GET /api/v1/watch/namespaces/{namespace}/configmaps
    +
    GET /api/v1/watch/namespaces/{namespace}/configmaps/{name}
    @@ -6813,7 +7317,7 @@ notitle: true - + @@ -6852,6 +7356,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -6882,6 +7394,14 @@ notitle: true

    string

    + +

    PathParameter

    +

    name

    +

    name of the ConfigMap

    +

    true

    +

    string

    + + @@ -6892,7 +7412,7 @@ notitle: true - + @@ -6955,10 +7475,10 @@ notitle: true
    -

    watch changes to an object of kind ConfigMap

    +

    watch individual changes to a list of Event

    -
    GET /api/v1/watch/namespaces/{namespace}/configmaps/{name}
    +
    GET /api/v1/watch/namespaces/{namespace}/events
    @@ -6970,7 +7490,7 @@ notitle: true - + @@ -7009,6 +7529,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -7039,14 +7567,6 @@ notitle: true

    string

    - -

    PathParameter

    -

    name

    -

    name of the ConfigMap

    -

    true

    -

    string

    - - @@ -7057,7 +7577,7 @@ notitle: true - + @@ -7120,10 +7640,10 @@ notitle: true
    -

    watch individual changes to a list of Event

    +

    watch changes to an object of kind Event

    -
    GET /api/v1/watch/namespaces/{namespace}/events
    +
    GET /api/v1/watch/namespaces/{namespace}/events/{name}
    @@ -7135,7 +7655,7 @@ notitle: true - + @@ -7174,6 +7694,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -7204,6 +7732,14 @@ notitle: true

    string

    + +

    PathParameter

    +

    name

    +

    name of the Event

    +

    true

    +

    string

    + + @@ -7214,7 +7750,7 @@ notitle: true - + @@ -7277,10 +7813,10 @@ notitle: true
    -

    watch changes to an object of kind Event

    +

    watch individual changes to a list of Secret

    -
    GET /api/v1/watch/namespaces/{namespace}/events/{name}
    +
    GET /api/v1/watch/namespaces/{namespace}/secrets
    @@ -7292,7 +7828,7 @@ notitle: true - + @@ -7331,6 +7867,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -7361,14 +7905,6 @@ notitle: true

    string

    - -

    PathParameter

    -

    name

    -

    name of the Event

    -

    true

    -

    string

    - - @@ -7379,7 +7915,7 @@ notitle: true - + @@ -7442,10 +7978,10 @@ notitle: true
    -

    watch individual changes to a list of Secret

    +

    watch changes to an object of kind Secret

    -
    GET /api/v1/watch/namespaces/{namespace}/secrets
    +
    GET /api/v1/watch/namespaces/{namespace}/secrets/{name}
    @@ -7457,7 +7993,7 @@ notitle: true - + @@ -7496,6 +8032,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -7526,6 +8070,14 @@ notitle: true

    string

    + +

    PathParameter

    +

    name

    +

    name of the Secret

    +

    true

    +

    string

    + + @@ -7536,7 +8088,7 @@ notitle: true - + @@ -7599,10 +8151,10 @@ notitle: true
    -

    watch changes to an object of kind Secret

    +

    watch individual changes to a list of Service

    -
    GET /api/v1/watch/namespaces/{namespace}/secrets/{name}
    +
    GET /api/v1/watch/namespaces/{namespace}/services
    @@ -7614,7 +8166,7 @@ notitle: true - + @@ -7653,6 +8205,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -7683,14 +8243,6 @@ notitle: true

    string

    - -

    PathParameter

    -

    name

    -

    name of the Secret

    -

    true

    -

    string

    - - @@ -7701,7 +8253,7 @@ notitle: true - + @@ -7764,10 +8316,10 @@ notitle: true
    -

    watch individual changes to a list of Service

    +

    watch changes to an object of kind Service

    -
    GET /api/v1/watch/namespaces/{namespace}/services
    +
    GET /api/v1/watch/namespaces/{namespace}/services/{name}
    @@ -7779,7 +8331,7 @@ notitle: true - + @@ -7818,6 +8370,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -7848,6 +8408,14 @@ notitle: true

    string

    + +

    PathParameter

    +

    name

    +

    name of the Service

    +

    true

    +

    string

    + + @@ -7858,7 +8426,7 @@ notitle: true - + @@ -7921,10 +8489,10 @@ notitle: true
    -

    watch changes to an object of kind Service

    +

    watch changes to an object of kind Namespace

    -
    GET /api/v1/watch/namespaces/{namespace}/services/{name}
    +
    GET /api/v1/watch/namespaces/{name}
    @@ -7936,7 +8504,7 @@ notitle: true - + @@ -7975,6 +8543,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -7999,16 +8575,8 @@ notitle: true

    PathParameter

    -

    namespace

    -

    object name and auth scope, such as for teams and projects

    -

    true

    -

    string

    - - - -

    PathParameter

    name

    -

    name of the Service

    +

    name of the Namespace

    true

    string

    @@ -8023,7 +8591,7 @@ notitle: true - + @@ -8086,10 +8654,10 @@ notitle: true
    -

    watch changes to an object of kind Namespace

    +

    watch individual changes to a list of Secret

    -
    GET /api/v1/watch/namespaces/{name}
    +
    GET /api/v1/watch/secrets
    @@ -8101,7 +8669,7 @@ notitle: true - + @@ -8140,6 +8708,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -8162,14 +8738,6 @@ notitle: true

    integer (int32)

    - -

    PathParameter

    -

    name

    -

    name of the Namespace

    -

    true

    -

    string

    - - @@ -8180,7 +8748,7 @@ notitle: true - + @@ -8243,10 +8811,10 @@ notitle: true
    -

    watch individual changes to a list of Secret

    +

    watch individual changes to a list of Service

    -
    GET /api/v1/watch/secrets
    +
    GET /api/v1/watch/services
    @@ -8258,7 +8826,7 @@ notitle: true - + @@ -8297,6 +8865,14 @@ notitle: true

    QueryParameter

    +

    includeUninitialized

    +

    If true, partially initialized resources are included in the response.

    +

    false

    +

    boolean

    + + + +

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    @@ -8329,7 +8905,7 @@ notitle: true - + @@ -8391,162 +8967,13 @@ notitle: true
    -
    -

    watch individual changes to a list of Service

    -
    -
    -
    GET /api/v1/watch/services
    -
    -
    -
    -

    Parameters

    - -------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescriptionRequiredSchemaDefault

    QueryParameter

    pretty

    If true, then the output is pretty printed.

    false

    string

    QueryParameter

    labelSelector

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    false

    string

    QueryParameter

    fieldSelector

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    false

    string

    QueryParameter

    watch

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    false

    boolean

    QueryParameter

    resourceVersion

    When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

    false

    string

    QueryParameter

    timeoutSeconds

    Timeout for the list/watch call.

    false

    integer (int32)

    - -
    -
    -

    Responses

    - ----- - - - - - - - - - - - - - - -
    HTTP CodeDescriptionSchema

    200

    success

    v1.WatchEvent

    - -
    -
    -

    Consumes

    -
    -
      -
    • -

      /

      -
    • -
    -
    -
    -
    -

    Produces

    -
    -
      -
    • -

      application/json

      -
    • -
    • -

      application/yaml

      -
    • -
    • -

      application/vnd.kubernetes.protobuf

      -
    • -
    • -

      application/json;stream=watch

      -
    • -
    • -

      application/vnd.kubernetes.protobuf;stream=watch

      -
    • -
    -
    -
    -
    -

    Tags

    -
    -
      -
    • -

      apiv1

      -
    • -
    -
    -
    -
    - \ No newline at end of file +