diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 8925ffefab4..52f1c5598ab 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -76185,6 +76185,44 @@ } } }, + "io.k8s.api.core.v1.PodDNSConfig": { + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", + "type": "array", + "items": { + "type": "string" + } + }, + "options": { + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfigOption" + } + }, + "searches": { + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "io.k8s.api.core.v1.PodDNSConfigOption": { + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "description": "Required.", + "type": "string" + }, + "value": { + "type": "string" + } + } + }, "io.k8s.api.core.v1.PodList": { "description": "PodList is a list of Pods.", "required": [ @@ -76278,8 +76316,12 @@ "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, + "dnsConfig": { + "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.", + "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfig" + }, "dnsPolicy": { - "description": "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, "hostAliases": { diff --git a/api/swagger-spec/apps_v1.json b/api/swagger-spec/apps_v1.json index 1067d9fbb66..4fff9f1831e 100644 --- a/api/swagger-spec/apps_v1.json +++ b/api/swagger-spec/apps_v1.json @@ -6652,7 +6652,7 @@ }, "dnsPolicy": { "type": "string", - "description": "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." }, "nodeSelector": { "type": "object", @@ -6735,6 +6735,10 @@ "type": "integer", "format": "int32", "description": "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." + }, + "dnsConfig": { + "$ref": "v1.PodDNSConfig", + "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." } } }, @@ -8607,6 +8611,46 @@ } } }, + "v1.PodDNSConfig": { + "id": "v1.PodDNSConfig", + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed." + }, + "searches": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed." + }, + "options": { + "type": "array", + "items": { + "$ref": "v1.PodDNSConfigOption" + }, + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy." + } + } + }, + "v1.PodDNSConfigOption": { + "id": "v1.PodDNSConfigOption", + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "type": "string", + "description": "Required." + }, + "value": { + "type": "string" + } + } + }, "v1.DaemonSetUpdateStrategy": { "id": "v1.DaemonSetUpdateStrategy", "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", diff --git a/api/swagger-spec/apps_v1beta1.json b/api/swagger-spec/apps_v1beta1.json index ed3864bcc4f..0a9f4ce5c83 100644 --- a/api/swagger-spec/apps_v1beta1.json +++ b/api/swagger-spec/apps_v1beta1.json @@ -4286,7 +4286,7 @@ }, "dnsPolicy": { "type": "string", - "description": "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." }, "nodeSelector": { "type": "object", @@ -4369,6 +4369,10 @@ "type": "integer", "format": "int32", "description": "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." + }, + "dnsConfig": { + "$ref": "v1.PodDNSConfig", + "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." } } }, @@ -6241,6 +6245,46 @@ } } }, + "v1.PodDNSConfig": { + "id": "v1.PodDNSConfig", + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed." + }, + "searches": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed." + }, + "options": { + "type": "array", + "items": { + "$ref": "v1.PodDNSConfigOption" + }, + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy." + } + } + }, + "v1.PodDNSConfigOption": { + "id": "v1.PodDNSConfigOption", + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "type": "string", + "description": "Required." + }, + "value": { + "type": "string" + } + } + }, "v1beta1.DeploymentStrategy": { "id": "v1beta1.DeploymentStrategy", "description": "DeploymentStrategy describes how to replace existing pods with new ones.", diff --git a/api/swagger-spec/apps_v1beta2.json b/api/swagger-spec/apps_v1beta2.json index 9269a5fbb98..f2aa62f3209 100644 --- a/api/swagger-spec/apps_v1beta2.json +++ b/api/swagger-spec/apps_v1beta2.json @@ -6651,7 +6651,7 @@ }, "dnsPolicy": { "type": "string", - "description": "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." }, "nodeSelector": { "type": "object", @@ -6734,6 +6734,10 @@ "type": "integer", "format": "int32", "description": "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." + }, + "dnsConfig": { + "$ref": "v1.PodDNSConfig", + "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." } } }, @@ -8606,6 +8610,46 @@ } } }, + "v1.PodDNSConfig": { + "id": "v1.PodDNSConfig", + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed." + }, + "searches": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed." + }, + "options": { + "type": "array", + "items": { + "$ref": "v1.PodDNSConfigOption" + }, + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy." + } + } + }, + "v1.PodDNSConfigOption": { + "id": "v1.PodDNSConfigOption", + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "type": "string", + "description": "Required." + }, + "value": { + "type": "string" + } + } + }, "v1beta2.DaemonSetUpdateStrategy": { "id": "v1beta2.DaemonSetUpdateStrategy", "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", diff --git a/api/swagger-spec/batch_v1.json b/api/swagger-spec/batch_v1.json index 28b48c3a179..fd7f780ba2b 100644 --- a/api/swagger-spec/batch_v1.json +++ b/api/swagger-spec/batch_v1.json @@ -1626,7 +1626,7 @@ }, "dnsPolicy": { "type": "string", - "description": "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." }, "nodeSelector": { "type": "object", @@ -1709,6 +1709,10 @@ "type": "integer", "format": "int32", "description": "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." + }, + "dnsConfig": { + "$ref": "v1.PodDNSConfig", + "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." } } }, @@ -3581,6 +3585,46 @@ } } }, + "v1.PodDNSConfig": { + "id": "v1.PodDNSConfig", + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed." + }, + "searches": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed." + }, + "options": { + "type": "array", + "items": { + "$ref": "v1.PodDNSConfigOption" + }, + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy." + } + } + }, + "v1.PodDNSConfigOption": { + "id": "v1.PodDNSConfigOption", + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "type": "string", + "description": "Required." + }, + "value": { + "type": "string" + } + } + }, "v1.JobStatus": { "id": "v1.JobStatus", "description": "JobStatus represents the current state of a Job.", diff --git a/api/swagger-spec/batch_v1beta1.json b/api/swagger-spec/batch_v1beta1.json index bd489166495..de28cd79b11 100644 --- a/api/swagger-spec/batch_v1beta1.json +++ b/api/swagger-spec/batch_v1beta1.json @@ -1681,7 +1681,7 @@ }, "dnsPolicy": { "type": "string", - "description": "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." }, "nodeSelector": { "type": "object", @@ -1764,6 +1764,10 @@ "type": "integer", "format": "int32", "description": "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." + }, + "dnsConfig": { + "$ref": "v1.PodDNSConfig", + "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." } } }, @@ -3636,6 +3640,46 @@ } } }, + "v1.PodDNSConfig": { + "id": "v1.PodDNSConfig", + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed." + }, + "searches": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed." + }, + "options": { + "type": "array", + "items": { + "$ref": "v1.PodDNSConfigOption" + }, + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy." + } + } + }, + "v1.PodDNSConfigOption": { + "id": "v1.PodDNSConfigOption", + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "type": "string", + "description": "Required." + }, + "value": { + "type": "string" + } + } + }, "v1beta1.CronJobStatus": { "id": "v1beta1.CronJobStatus", "description": "CronJobStatus represents the current state of a cron job.", diff --git a/api/swagger-spec/batch_v2alpha1.json b/api/swagger-spec/batch_v2alpha1.json index 12a212ae35a..9c393fe9e84 100644 --- a/api/swagger-spec/batch_v2alpha1.json +++ b/api/swagger-spec/batch_v2alpha1.json @@ -1681,7 +1681,7 @@ }, "dnsPolicy": { "type": "string", - "description": "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." }, "nodeSelector": { "type": "object", @@ -1764,6 +1764,10 @@ "type": "integer", "format": "int32", "description": "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." + }, + "dnsConfig": { + "$ref": "v1.PodDNSConfig", + "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." } } }, @@ -3636,6 +3640,46 @@ } } }, + "v1.PodDNSConfig": { + "id": "v1.PodDNSConfig", + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed." + }, + "searches": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed." + }, + "options": { + "type": "array", + "items": { + "$ref": "v1.PodDNSConfigOption" + }, + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy." + } + } + }, + "v1.PodDNSConfigOption": { + "id": "v1.PodDNSConfigOption", + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "type": "string", + "description": "Required." + }, + "value": { + "type": "string" + } + } + }, "v2alpha1.CronJobStatus": { "id": "v2alpha1.CronJobStatus", "description": "CronJobStatus represents the current state of a cron job.", diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index 49984d4311e..df2dfaf5612 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -7294,7 +7294,7 @@ }, "dnsPolicy": { "type": "string", - "description": "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." }, "nodeSelector": { "type": "object", @@ -7377,6 +7377,10 @@ "type": "integer", "format": "int32", "description": "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." + }, + "dnsConfig": { + "$ref": "v1.PodDNSConfig", + "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." } } }, @@ -9249,6 +9253,46 @@ } } }, + "v1.PodDNSConfig": { + "id": "v1.PodDNSConfig", + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed." + }, + "searches": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed." + }, + "options": { + "type": "array", + "items": { + "$ref": "v1.PodDNSConfigOption" + }, + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy." + } + } + }, + "v1.PodDNSConfigOption": { + "id": "v1.PodDNSConfigOption", + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "type": "string", + "description": "Required." + }, + "value": { + "type": "string" + } + } + }, "v1beta1.DaemonSetUpdateStrategy": { "id": "v1beta1.DaemonSetUpdateStrategy", "properties": { diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 592cf46cb43..40f8bda8d62 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -21404,7 +21404,7 @@ }, "dnsPolicy": { "type": "string", - "description": "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'." }, "nodeSelector": { "type": "object", @@ -21487,6 +21487,10 @@ "type": "integer", "format": "int32", "description": "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." + }, + "dnsConfig": { + "$ref": "v1.PodDNSConfig", + "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." } } }, @@ -22986,6 +22990,46 @@ } } }, + "v1.PodDNSConfig": { + "id": "v1.PodDNSConfig", + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed." + }, + "searches": { + "type": "array", + "items": { + "type": "string" + }, + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed." + }, + "options": { + "type": "array", + "items": { + "$ref": "v1.PodDNSConfigOption" + }, + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy." + } + } + }, + "v1.PodDNSConfigOption": { + "id": "v1.PodDNSConfigOption", + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "type": "string", + "description": "Required." + }, + "value": { + "type": "string" + } + } + }, "v1.PodStatus": { "id": "v1.PodStatus", "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system.", diff --git a/docs/api-reference/apps/v1/definitions.html b/docs/api-reference/apps/v1/definitions.html index 5a98f61eb00..887585f5562 100755 --- a/docs/api-reference/apps/v1/definitions.html +++ b/docs/api-reference/apps/v1/definitions.html @@ -3804,7 +3804,7 @@ When an object is created, the system will populate this list with the current s
dnsPolicy
Set DNS policy for containers within the pod. One of ClusterFirstWithHostNet, ClusterFirst or Default. Defaults to "ClusterFirst". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are ClusterFirstWithHostNet, ClusterFirst, Default or None. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
false
string
integer (int32)
dnsConfig
Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.
false
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
nameservers |
+A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. |
+false |
+string array |
++ |
searches |
+A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. |
+false |
+string array |
++ |
options |
+A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. |
+false |
+v1.PodDNSConfigOption array |
++ |
PodDNSConfigOption defines DNS resolver options of a pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Required. |
+false |
+string |
++ |
value |
++ | false |
+string |
++ |
dnsPolicy
Set DNS policy for containers within the pod. One of ClusterFirstWithHostNet, ClusterFirst or Default. Defaults to "ClusterFirst". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are ClusterFirstWithHostNet, ClusterFirst, Default or None. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
false
string
integer (int32)
dnsConfig
Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.
false
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
nameservers |
+A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. |
+false |
+string array |
++ |
searches |
+A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. |
+false |
+string array |
++ |
options |
+A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. |
+false |
+v1.PodDNSConfigOption array |
++ |
PodDNSConfigOption defines DNS resolver options of a pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Required. |
+false |
+string |
++ |
value |
++ | false |
+string |
++ |
dnsPolicy
Set DNS policy for containers within the pod. One of ClusterFirstWithHostNet, ClusterFirst or Default. Defaults to "ClusterFirst". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are ClusterFirstWithHostNet, ClusterFirst, Default or None. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
false
string
integer (int32)
dnsConfig
Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.
false
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
nameservers |
+A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. |
+false |
+string array |
++ |
searches |
+A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. |
+false |
+string array |
++ |
options |
+A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. |
+false |
+v1.PodDNSConfigOption array |
++ |
PodDNSConfigOption defines DNS resolver options of a pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Required. |
+false |
+string |
++ |
value |
++ | false |
+string |
++ |
dnsPolicy
Set DNS policy for containers within the pod. One of ClusterFirstWithHostNet, ClusterFirst or Default. Defaults to "ClusterFirst". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are ClusterFirstWithHostNet, ClusterFirst, Default or None. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
false
string
integer (int32)
dnsConfig
Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.
false
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
nameservers |
+A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. |
+false |
+string array |
++ |
searches |
+A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. |
+false |
+string array |
++ |
options |
+A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. |
+false |
+v1.PodDNSConfigOption array |
++ |
PodDNSConfigOption defines DNS resolver options of a pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Required. |
+false |
+string |
++ |
value |
++ | false |
+string |
++ |
dnsPolicy
Set DNS policy for containers within the pod. One of ClusterFirstWithHostNet, ClusterFirst or Default. Defaults to "ClusterFirst". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are ClusterFirstWithHostNet, ClusterFirst, Default or None. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
false
string
integer (int32)
dnsConfig
Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.
false
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
nameservers |
+A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. |
+false |
+string array |
++ |
searches |
+A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. |
+false |
+string array |
++ |
options |
+A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. |
+false |
+v1.PodDNSConfigOption array |
++ |
CronJobStatus represents the current state of a cron job.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
active |
+A list of pointers to currently running jobs. |
+false |
+v1.ObjectReference array |
++ |
lastScheduleTime |
+Information when was the last time the job was successfully scheduled. |
+false |
+string |
++ |
CronJobStatus represents the current state of a cron job.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
active |
-A list of pointers to currently running jobs. |
-false |
-v1.ObjectReference array |
-- |
lastScheduleTime |
-Information when was the last time the job was successfully scheduled. |
-false |
-string |
-- |
PodDNSConfigOption defines DNS resolver options of a pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Required. |
+false |
+string |
++ |
value |
++ | false |
+string |
++ |
dnsPolicy
Set DNS policy for containers within the pod. One of ClusterFirstWithHostNet, ClusterFirst or Default. Defaults to "ClusterFirst". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are ClusterFirstWithHostNet, ClusterFirst, Default or None. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
false
string
integer (int32)
dnsConfig
Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.
false
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
nameservers |
+A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. |
+false |
+string array |
++ |
searches |
+A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. |
+false |
+string array |
++ |
options |
+A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. |
+false |
+v1.PodDNSConfigOption array |
++ |
PodDNSConfigOption defines DNS resolver options of a pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Required. |
+false |
+string |
++ |
value |
++ | false |
+string |
++ |
dnsPolicy
Set DNS policy for containers within the pod. One of ClusterFirstWithHostNet, ClusterFirst or Default. Defaults to "ClusterFirst". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are ClusterFirstWithHostNet, ClusterFirst, Default or None. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.
false
string
integer (int32)
dnsConfig
Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.
false
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
nameservers |
+A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. |
+false |
+string array |
++ |
searches |
+A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. |
+false |
+string array |
++ |
options |
+A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. |
+false |
+v1.PodDNSConfigOption array |
++ |
PodDNSConfigOption defines DNS resolver options of a pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Required. |
+false |
+string |
++ |
value |
++ | false |
+string |
++ |
Selects a key from a ConfigMap.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
name |
-Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
-false |
-string |
-- |
key |
-The key to select. |
-true |
-string |
-- |
optional |
-Specify whether the ConfigMap or it’s key must be defined |
-false |
-boolean |
-false |
-
Selects a key from a ConfigMap.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
+false |
+string |
++ |
key |
+The key to select. |
+true |
+string |
++ |
optional |
+Specify whether the ConfigMap or it’s key must be defined |
+false |
+boolean |
+false |
+
APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 |
-- |
groupVersion |
-groupVersion is the group and version this APIResourceList is for. |
-true |
-string |
-- |
resources |
-resources contains the name of the resources and if they are namespaced. |
-true |
-v1.APIResource array |
-- |
Affinity is a group of affinity scheduling rules.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
nodeAffinity |
-Describes node affinity scheduling rules for the pod. |
-false |
-- | - |
podAffinity |
-Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). |
-false |
-- | - |
podAntiAffinity |
-Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). |
-false |
-- | - |
Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
-false |
-- | - |
spec |
-Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
-false |
-- | - |
status |
-Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
-false |
-- | - |
PersistentVolumeClaimList is a list of PersistentVolumeClaim items.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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#types-kinds |
-false |
-- | - |
items |
-A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims |
-true |
-v1.PersistentVolumeClaim array |
-- |
A null or empty node selector term matches no objects.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
matchExpressions |
-Required. A list of node selector requirements. The requirements are ANDed. |
-true |
-- | - |
Local represents directly-attached storage with node affinity
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
path |
-The full path to the volume on the node For alpha, this path must be a directory Once block as a source is supported, then this path can point to a block device |
-true |
-string |
-- |
Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
@@ -799,61 +511,6 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } -SELinuxOptions are the labels to be applied to the container
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
user |
-User is a SELinux user label that applies to the container. |
-false |
-string |
-- |
role |
-Role is a SELinux role label that applies to the container. |
-false |
-string |
-- |
type |
-Type is a SELinux type label that applies to the container. |
-false |
-string |
-- |
level |
-Level is SELinux level label that applies to the container. |
-false |
-string |
-- |
VolumeMount describes a mounting of a Volume within a container.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
name |
-This must match the Name of a Volume. |
-true |
-string |
-- |
readOnly |
-Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. |
-false |
-boolean |
-false |
-
mountPath |
-Path within the container at which the volume should be mounted. Must not contain :. |
-true |
-string |
-- |
subPath |
-Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root). |
-false |
-string |
-- |
mountPropagation |
-mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release. |
-false |
-- | - |
Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
items |
-Items is a list of DownwardAPIVolume file |
-false |
-v1.DownwardAPIVolumeFile array |
-- |
Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
monitors |
-Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-true |
-string array |
-- |
path |
-Optional: Used as the mounted root, rather than the full Ceph tree, default is / |
-false |
-string |
-- |
user |
-Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-false |
-string |
-- |
secretFile |
-Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-false |
-string |
-- |
secretRef |
-Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-false |
-- | - |
readOnly |
-Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-false |
-boolean |
-false |
-
ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
hard |
-Hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ |
-false |
-object |
-- |
scopes |
-A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects. |
-false |
-v1.ResourceQuotaScope array |
-- |
NamespaceStatus is information about the current status of a Namespace.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
phase |
-Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/ |
-false |
-string |
-- |
NamespaceSpec describes the attributes on a Namespace.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
finalizers |
-Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/ |
-false |
-v1.FinalizerName array |
-- |
Adapts a ConfigMap into a volume.
-The contents of the target ConfigMap’s Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.
+PersistentVolumeStatus is the current status of a persistent volume.
name |
-Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
+phase |
+Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase |
false |
string |
||
items |
-If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the .. path or start with ... |
+message |
+A human-readable message indicating details about why the volume is in this state. |
false |
-v1.KeyToPath array |
+string |
|
defaultMode |
-Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. |
+reason |
+Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI. |
false |
-integer (int32) |
+string |
|
optional |
-Specify whether the ConfigMap or it’s keys must be defined |
-false |
-boolean |
-false |
-
PersistentVolumeStatus is the current status of a persistent volume.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
phase |
-Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase |
-false |
-string |
-- |
message |
-A human-readable message indicating details about why the volume is in this state. |
-false |
-string |
-- |
reason |
-Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI. |
-false |
-string |
-- |
EndpointsList is a list of endpoints.
+PortworxVolumeSource represents a Portworx volume resource.
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#types-kinds |
-false |
-- | - |
items |
-List of endpoints. |
-true |
-v1.Endpoints array |
-- |
ReplicationControllerCondition describes the state of a replication controller at a certain point.
-Name | -Description | -Required | -Schema | -Default | -||
---|---|---|---|---|---|---|
type |
-Type of replication controller condition. |
+volumeID |
+VolumeID uniquely identifies a Portworx volume |
true |
string |
|
status |
-Status of the condition, one of True, False, Unknown. |
-true |
-string |
-- | ||
lastTransitionTime |
-The last time the condition transitioned from one status to another. |
+fsType |
+FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. |
false |
string |
|
reason |
-The reason for the condition’s last transition. |
-false |
-string |
-- | ||
message |
-A human readable message indicating details about the transition. |
-false |
-string |
-- |
SecretEnvSource selects a Secret to populate the environment variables with.
-The contents of the target Secret’s Data field will represent the key-value pairs as environment variables.
-Name | -Description | -Required | -Schema | -Default | -||
---|---|---|---|---|---|---|
name |
-Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
-false |
-string |
-- | ||
optional |
-Specify whether the Secret must be defined |
+readOnly |
+Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. |
false |
boolean |
false |
@@ -1848,88 +1060,6 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
ScaleStatus represents the current status of a scale subresource.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
replicas |
-actual number of observed instances of the scaled object. |
-true |
-integer (int32) |
-- |
selector |
-label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors |
-false |
-string |
-- |
Adds and removes POSIX capabilities from running containers.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
add |
-Added capabilities |
-false |
-v1.Capability array |
-- |
drop |
-Removed capabilities |
-false |
-v1.Capability array |
-- |
PortworxVolumeSource represents a Portworx volume resource.
+Adds and removes POSIX capabilities from running containers.
volumeID |
-VolumeID uniquely identifies a Portworx volume |
-true |
-string |
+add |
+Added capabilities |
+false |
+v1.Capability array |
|
fsType |
-FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. |
+drop |
+Removed capabilities |
false |
-string |
+v1.Capability array |
||
readOnly |
-Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. |
-false |
-boolean |
-false |
-
NodeCondition contains condition information for a node.
+Initializer is information about an initializer that has not yet completed.
type |
-Type of node condition. |
+name |
+name of the process that is responsible for initializing this object. |
true |
string |
|
status |
-Status of the condition, one of True, False, Unknown. |
-true |
-string |
-- | ||
lastHeartbeatTime |
-Last time we got an update on a given condition. |
-false |
-string |
-- | ||
lastTransitionTime |
-Last time the condition transit from one status to another. |
-false |
-string |
-- | ||
reason |
-(brief) reason for the condition’s last transition. |
-false |
-string |
-- | ||
message |
-Human readable message indicating details about last transition. |
-false |
-string |
-- |
Initializer is information about an initializer that has not yet completed.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
name |
-name of the process that is responsible for initializing this object. |
-true |
-string |
-- |
LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
name |
-Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
-false |
-string |
-- |
ResourceQuotaStatus defines the enforced hard limits and observed use.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
hard |
-Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ |
-false |
-object |
-- |
used |
-Used is the current observed total usage of the resource in the namespace. |
-false |
-object |
-- |
SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
name |
-Name is unique within a namespace to reference a secret resource. |
-false |
-string |
-- |
namespace |
-Namespace defines the space within which the secret name must be unique. |
-false |
-string |
-- |
LimitRangeSpec defines a min/max usage limit for resources that match on kind.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
limits |
-Limits is the list of LimitRangeItem objects that are enforced. |
-true |
-v1.LimitRangeItem array |
-- |
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
secretName |
-the name of secret that contains Azure Storage Account Name and Key |
-true |
-string |
-- |
shareName |
-Share Name |
-true |
-string |
-- |
readOnly |
-Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. |
-false |
-boolean |
-false |
-
Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
targetPortal |
-iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). |
-true |
-string |
-- |
iqn |
-Target iSCSI Qualified Name. |
-true |
-string |
-- |
lun |
-iSCSI Target Lun number. |
-true |
-integer (int32) |
-- |
iscsiInterface |
-iSCSI Interface Name that uses an iSCSI transport. Defaults to default (tcp). |
-false |
-string |
-- |
fsType |
-Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi |
-false |
-string |
-- |
readOnly |
-ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. |
-false |
-boolean |
-false |
-
portals |
-iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). |
-false |
-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 |
-- | - |
initiatorName |
-Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection. |
-false |
-string |
-- |
Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
labelSelector |
-A label query over a set of resources, in this case pods. |
-false |
-- | - |
namespaces |
-namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod’s namespace" |
-false |
-string array |
-- |
topologyKey |
-This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. |
-true |
-string |
-- |
PersistentVolumeClaim is a user’s request for and claim to a persistent volume
+Pod affinity is a group of inter pod affinity scheduling rules.
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 |
+requiredDuringSchedulingIgnoredDuringExecution |
+If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. |
false |
-string |
+v1.PodAffinityTerm array |
|
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 |
+preferredDuringSchedulingIgnoredDuringExecution |
+The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. |
false |
-string |
-- | |
metadata |
-Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
-false |
-- | - | |||
spec |
-Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims |
-false |
-- | - | |||
status |
-Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims |
-false |
-+ |
requiredDuringSchedulingIgnoredDuringExecution |
-If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. |
+datasetName |
+Name of the dataset stored as metadata → name on the dataset for Flocker should be considered as deprecated |
false |
-v1.PodAffinityTerm array |
+string |
|
preferredDuringSchedulingIgnoredDuringExecution |
-The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. |
+datasetUUID |
+UUID of the dataset. This is unique identifier of a Flocker dataset |
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: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds |
+selfLink |
+selfLink is a URL representing this object. Populated by the system. Read-only. |
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 |
+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: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency |
false |
string |
|
metadata |
-Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
+continue |
+continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response. |
false |
-- | - |
secrets |
-Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret |
-false |
-v1.ObjectReference array |
-- | ||
imagePullSecrets |
-ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod |
-false |
-v1.LocalObjectReference array |
-- | ||
automountServiceAccountToken |
-AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level. |
-false |
-boolean |
-false |
-
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).
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 |
-
NodeAddress contains information for the node’s address.
-Name | -Description | -Required | -Schema | -Default | -|||
---|---|---|---|---|---|---|---|
type |
-Node address type, one of Hostname, ExternalIP or InternalIP. |
-true |
-string |
-- | |||
address |
-The node address. |
-true |
string |
selfLink |
-selfLink is a URL representing this object. Populated by the system. Read-only. |
-false |
-string |
-- |
resourceVersion |
-String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency |
-false |
-string |
-- |
continue |
-continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response. |
-false |
-string |
-- |
Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
datasetName |
-Name of the dataset stored as metadata → name on the dataset for Flocker should be considered as deprecated |
-false |
-string |
-- |
datasetUUID |
-UUID of the dataset. This is unique identifier of a Flocker dataset |
-false |
-string |
-- |
ResourceQuotaList is a list of ResourceQuota items.
-Name | -Description | -Required | -Schema | -Default | -|||
---|---|---|---|---|---|---|---|
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#types-kinds |
-false |
-- | - | |||
items |
-Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ |
+type |
+Node address type, one of Hostname, ExternalIP or InternalIP. |
true |
-v1.ResourceQuota array |
+string |
++ |
address |
+The node address. |
+true |
+string |
phase |
-Phase represents the current phase of PersistentVolumeClaim. |
-false |
+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 |
|
accessModes |
-AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 |
+readOnly |
+Will force the ReadOnly setting in VolumeMounts. Default false. |
false |
-- | - | |
capacity |
-Represents the actual resources of the underlying volume. |
+boolean |
false |
-object |
-- | ||
conditions |
-Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to ResizeStarted. |
-false |
-- |
Represents storage that is managed by an external CSI volume driver
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
driver |
-Driver is the name of the driver to use for this volume. Required. |
-true |
-string |
-- |
volumeHandle |
-VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required. |
-true |
-string |
-- |
readOnly |
-Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write). |
-false |
-boolean |
-false |
-
EnvVarSource represents a source for the value of an EnvVar.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
fieldRef |
-Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP. |
-false |
-- | - |
resourceFieldRef |
-Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. |
-false |
-- | - |
configMapKeyRef |
-Selects a key of a ConfigMap. |
-false |
-- | - |
secretKeyRef |
-Selects a key of a secret in the pod’s namespace |
-false |
-- | - |
Maps a string key to a path within a volume.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
key |
-The key to project. |
-true |
-string |
-- |
path |
-The relative path of the file to map the key to. May not be an absolute path. May not contain the path element ... May not start with the string ... |
-true |
-string |
-- |
mode |
-Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. |
-false |
-integer (int32) |
-- |
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
diskName |
-The Name of the data disk in the blob storage |
-true |
-string |
-- |
diskURI |
-The URI the data disk in the blob storage |
-true |
-string |
-- |
cachingMode |
-Host Caching mode: None, Read Only, Read Write. |
-false |
-- | - |
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 |
-
kind |
-Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared |
-false |
-- | - |
Represents a vSphere volume resource.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
volumePath |
-Path that identifies vSphere volume vmdk |
-true |
-string |
-- |
fsType |
-Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. |
-false |
-string |
-- |
storagePolicyName |
-Storage Policy Based Management (SPBM) profile name. |
-false |
-string |
-- |
storagePolicyID |
-Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. |
-false |
-string |
-- |
ServiceAccountList is a list of ServiceAccount objects
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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#types-kinds |
-false |
-- | - |
items |
-List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ |
-true |
-v1.ServiceAccount array |
-- |
LimitRangeList is a list of LimitRange items.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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#types-kinds |
-false |
-- | - |
items |
-Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ |
-true |
-v1.LimitRange array |
-- |
Endpoints is a collection of endpoints that implement the actual service. Example:
- Name: "mysvc",
- Subsets: [
- {
- Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
- Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
- },
- {
- Addresses: [{"ip": "10.10.3.3"}],
- Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}]
- },
- ]
Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
-false |
-- | - |
subsets |
-The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service. |
-true |
-v1.EndpointSubset array |
-- |
DeleteOptions may be provided when deleting an API object.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 |
-- |
gracePeriodSeconds |
-The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. |
-false |
-integer (int64) |
-- |
preconditions |
-Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. |
-false |
-- | - |
orphanDependents |
-Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both. |
-false |
-boolean |
-false |
-
propagationPolicy |
-Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: Orphan - orphan the dependents; Background - allow the garbage collector to delete the dependents in the background; Foreground - a cascading policy that deletes all dependents in the foreground. |
-false |
-- | - |
Volume represents a named volume in a pod that may be accessed by any container in the pod.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
name |
-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: https://kubernetes.io/docs/concepts/storage/volumes#hostpath |
-false |
-- | - |
emptyDir |
-EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir |
-false |
-- | - |
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 |
-- | - |
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 |
-- | - |
gitRepo |
-GitRepo represents a git repository at a particular revision. |
-false |
-- | - |
secret |
-Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret |
-false |
-- | - |
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 |
-- | - |
iscsi |
-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 |
-- | - |
glusterfs |
-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 |
-- | - |
persistentVolumeClaim |
-PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims |
-false |
-- | - |
rbd |
-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 |
-- | - |
flexVolume |
-FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future. |
-false |
-- | - |
cinder |
-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 |
-- | - |
cephfs |
-CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime |
-false |
-- | - |
flocker |
-Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running |
-false |
-- | - |
downwardAPI |
-DownwardAPI represents downward API about the pod that should populate this volume |
-false |
-- | - |
fc |
-FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod. |
-false |
-- | - |
azureFile |
-AzureFile represents an Azure File Service mount on the host and bind mount to the pod. |
-false |
-- | - |
configMap |
-ConfigMap represents a configMap that should populate this volume |
-false |
-- | - |
vsphereVolume |
-VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine |
-false |
-- | - |
quobyte |
-Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime |
-false |
-- | - |
azureDisk |
-AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. |
-false |
-- | - |
photonPersistentDisk |
-PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine |
-false |
-- | - |
projected |
-Items for all in one resources secrets, configmaps, and downward API |
-false |
-- | - |
portworxVolume |
-PortworxVolume represents a portworx volume attached and mounted on kubelets host machine |
-false |
-- | - |
scaleIO |
-ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. |
-false |
-- | - |
storageos |
-StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. |
-false |
-- | - |
Projection that may be projected along with other supported volume types
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
secret |
-information about the secret data to project |
-false |
-- | - |
downwardAPI |
-information about the downwardAPI data to project |
-false |
-- | - |
configMap |
-information about the configMap data to project |
-false |
-- | - |
Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
exec |
-One and only one of the following should be specified. Exec specifies the action to take. |
-false |
-- | - |
httpGet |
-HTTPGet specifies the http request to perform. |
-false |
-- | - |
tcpSocket |
-TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported |
-false |
-- | - |
initialDelaySeconds |
-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: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes |
-false |
-integer (int32) |
-- |
periodSeconds |
-How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. |
-false |
-integer (int32) |
-- |
successThreshold |
-Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1. |
-false |
-integer (int32) |
-- |
failureThreshold |
-Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. |
-false |
-integer (int32) |
-- |
Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
monitors |
-Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-true |
-string array |
-- |
path |
-Optional: Used as the mounted root, rather than the full Ceph tree, default is / |
-false |
-string |
-- |
user |
-Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-false |
-string |
-- |
secretFile |
-Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-false |
-string |
-- |
secretRef |
-Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-false |
-- | - |
readOnly |
-Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
-false |
-boolean |
-false |
-
SecretKeySelector selects a key of a Secret.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
name |
-Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
-false |
-string |
-- |
key |
-The key of the secret to select from. Must be a valid secret key. |
-true |
-string |
-- |
optional |
-Specify whether the Secret or it’s key must be defined |
-false |
-boolean |
-false |
-
ReplicationController represents the configuration of a replication controller.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 |
-If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
-false |
-- | - |
spec |
-Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
-false |
-- | - |
status |
-Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
-false |
-- | - |
PodStatus represents information about the status of a pod. Status may trail the actual state of a system.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
phase |
-Current condition of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase |
-false |
-string |
-- |
conditions |
-Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions |
-false |
-v1.PodCondition array |
-- |
message |
-A human readable message indicating details about why the pod is in this condition. |
-false |
-string |
-- |
reason |
-A brief CamelCase message indicating details about why the pod is in this state. e.g. Evicted |
-false |
-string |
-- |
hostIP |
-IP address of the host to which the pod is assigned. Empty if not yet scheduled. |
-false |
-string |
-- |
podIP |
-IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated. |
-false |
-string |
-- |
startTime |
-RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod. |
-false |
-string |
-- |
initContainerStatuses |
-The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status |
-false |
-v1.ContainerStatus array |
-- |
containerStatuses |
-The list has one entry per container in the manifest. Each entry is currently the output of |
-false |
-v1.ContainerStatus array |
-- |
qosClass |
-The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://github.com/kubernetes/kubernetes/blob/master/docs/design/resource-qos.md |
-false |
-string |
-- |
DownwardAPIVolumeFile represents information to create the file containing the pod field
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
path |
-Required: Path is the relative path name of the file to be created. Must not be absolute or contain the .. path. Must be utf-8 encoded. The first item of the relative path must not start with .. |
-true |
-string |
-- |
fieldRef |
-Required: Selects a field of the pod: only annotations, labels, name and namespace are supported. |
-false |
-- | - |
resourceFieldRef |
-Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. |
-false |
-- | - |
mode |
-Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. |
-false |
-integer (int32) |
-- |
LimitRange sets resource usage limits for each kind of resource in a Namespace.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
-false |
-- | - |
spec |
-Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
-false |
-- | - |
ContainerPort represents a network port in a single container.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 |
-- |
PodSpec is a description of a pod.
+ContainerPort represents a network port in a single container.
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: 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. |
-true |
-v1.Container array |
-- | ||
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 |
+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 |
|
terminationGracePeriodSeconds |
-Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds. |
-false |
-integer (int64) |
-- | ||
activeDeadlineSeconds |
-Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer. |
-false |
-integer (int64) |
-- | ||
dnsPolicy |
-Set DNS policy for containers within the pod. One of ClusterFirstWithHostNet, ClusterFirst or Default. Defaults to "ClusterFirst". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet. |
-false |
-string |
-- | ||
nodeSelector |
-NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: 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: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ |
-false |
-string |
-- | ||
serviceAccount |
-DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead. |
-false |
-string |
-- | ||
automountServiceAccountToken |
-AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. |
-false |
-boolean |
-false |
-||
nodeName |
-NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements. |
-false |
-string |
-- | ||
hostNetwork |
-Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false. |
-false |
-boolean |
-false |
-||
hostPID |
-Use the host’s pid namespace. Optional: Default to false. |
-false |
-boolean |
-false |
-||
hostIPC |
-Use the host’s ipc namespace. Optional: Default to false. |
-false |
-boolean |
-false |
-||
securityContext |
-SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field. |
-false |
-- | - | ||
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: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod |
-false |
-v1.LocalObjectReference array |
-- | ||
hostname |
-Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value. |
-false |
-string |
-- | ||
subdomain |
-If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all. |
-false |
-string |
-- | ||
affinity |
-If specified, the pod’s scheduling constraints |
-false |
-- | - | ||
schedulerName |
-If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler. |
-false |
-string |
-- | ||
tolerations |
-If specified, the pod’s tolerations. |
-false |
-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. |
+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 |
++ |
EventList is a list of events.
+Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.
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#types-kinds |
-false |
-- | - | |||
items |
-List of events |
+endpoints |
+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 |
-v1.Event array |
+string |
Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.
-Name | -Description | -Required | -Schema | -Default | +path |
+Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod |
+true |
+string |
+|
---|---|---|---|---|---|---|---|---|---|
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: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks |
+readOnly |
+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 |
-- | - | |||
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: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks |
+boolean |
false |
-- | - |
ReplicationControllerSpec is the specification of a replication controller.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
replicas |
-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) |
-- |
minReadySeconds |
-Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) |
-false |
-integer (int32) |
-- |
selector |
-Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors |
-false |
-object |
-- |
template |
-Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template |
-false |
-- | - |
Handler defines a specific action that should be taken
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
exec |
-One and only one of the following should be specified. Exec specifies the action to take. |
-false |
-- | - |
httpGet |
-HTTPGet specifies the http request to perform. |
-false |
-- | - |
tcpSocket |
-TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported |
-false |
-- |
Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.
+Handler defines a specific action that should be taken
endpoints |
-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 |
+exec |
+One and only one of the following should be specified. Exec specifies the action to take. |
+false |
+||
path |
-Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod |
-true |
-string |
+httpGet |
+HTTPGet specifies the http request to perform. |
+false |
+||
readOnly |
-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 |
+tcpSocket |
+TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported |
false |
++ |
AttachedVolume describes a volume attached to a node
+ReplicationControllerSpec is the specification of a replication controller.
name |
-Name of the attached volume |
-true |
+replicas |
+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) |
++ |
minReadySeconds |
+Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) |
+false |
+integer (int32) |
++ | |||
selector |
+Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors |
+false |
+object |
++ | |||
template |
+Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template |
+false |
++ | + |
EventSource contains information for an event.
+Name | +Description | +Required | +Schema | +Default | +|||
---|---|---|---|---|---|---|---|
component |
+Component from which the event is generated. |
+false |
string |
||||
devicePath |
-DevicePath represents the device path where the volume should be available |
-true |
+host |
+Node name on which the event is generated. |
+false |
string |
EventSource contains information for an event.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
component |
-Component from which the event is generated. |
-false |
-string |
-- |
host |
-Node name on which the event is generated. |
-false |
-string |
-- |
PodCondition contains details for the current condition of this pod.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
type |
-Type is the type of the condition. Currently only Ready. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions |
-true |
-string |
-- |
status |
-Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions |
-true |
-string |
-- |
lastProbeTime |
-Last time we probed the condition. |
-false |
-string |
-- |
lastTransitionTime |
-Last time the condition transitioned from one status to another. |
-false |
-string |
-- |
reason |
-Unique, one-word, CamelCase reason for the condition’s last transition. |
-false |
-string |
-- |
message |
-Human-readable message indicating details about last transition. |
-false |
-string |
-- |
Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
monitors |
-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: 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: https://kubernetes.io/docs/concepts/storage/volumes#rbd |
-false |
-string |
-- |
pool |
-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: 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: 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: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it |
-false |
-- | - |
readOnly |
-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 |
-
Represents a Photon Controller persistent disk resource.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
pdID |
-ID that identifies Photon Controller persistent disk |
-true |
-string |
-- |
fsType |
-Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. |
-false |
-string |
-- |
Status is a return value for calls that don’t return other objects.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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#types-kinds |
-false |
-- | - |
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 |
-- |
message |
-A human-readable description of the status of this operation. |
-false |
-string |
-- |
reason |
-A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. |
-false |
-string |
-- |
details |
-Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type. |
-false |
-- | - |
code |
-Suggested HTTP return code for this status, 0 if not set. |
-false |
-integer (int32) |
-- |
ServiceStatus represents the current status of a service.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
loadBalancer |
-LoadBalancer contains the current status of the load-balancer, if one is present. |
-false |
-- | - |
ServiceStatus represents the current status of a service.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
loadBalancer |
+LoadBalancer contains the current status of the load-balancer, if one is present. |
+false |
++ | + |
Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
targetWWNs |
-Optional: FC target worldwide names (WWNs) |
-false |
-string array |
-- |
lun |
-Optional: FC target lun number |
-false |
-integer (int32) |
-- |
fsType |
-Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. |
-false |
-string |
-- |
readOnly |
-Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. |
-false |
-boolean |
-false |
-
wwids |
-Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. |
-false |
-string array |
-- |
Pod anti affinity is a group of inter pod anti affinity scheduling rules.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
requiredDuringSchedulingIgnoredDuringExecution |
-If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. |
-false |
-v1.PodAffinityTerm array |
-- |
preferredDuringSchedulingIgnoredDuringExecution |
-The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. |
-false |
-- | - |
TCPSocketAction describes an action based on opening a socket
+Pod anti affinity is a group of inter pod anti affinity scheduling rules.
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 |
+requiredDuringSchedulingIgnoredDuringExecution |
+If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. |
+false |
+v1.PodAffinityTerm array |
|
host |
-Optional: Host name to connect to, defaults to the pod IP. |
+preferredDuringSchedulingIgnoredDuringExecution |
+The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. |
false |
-string |
+
LoadBalancerStatus represents the status of a load-balancer.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
ingress |
-Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. |
-false |
-v1.LoadBalancerIngress array |
-- |
A single application container that you want to run within a pod.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
name |
-Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. |
-true |
-string |
-- |
image |
-Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets. |
-false |
-string |
-- |
command |
-Entrypoint array. Not executed within a shell. The docker image’s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container’s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: 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: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell |
-false |
-string array |
-- |
workingDir |
-Container’s working directory. If not specified, the container runtime’s default will be used, which might be configured in the container image. Cannot be updated. |
-false |
-string |
-- |
ports |
-List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. |
-false |
-v1.ContainerPort array |
-- |
envFrom |
-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 |
-- |
env |
-List of environment variables to set in the container. Cannot be updated. |
-false |
-v1.EnvVar array |
-- |
resources |
-Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources |
-false |
-- | - |
volumeMounts |
-Pod volumes to mount into the container’s filesystem. Cannot be updated. |
-false |
-v1.VolumeMount array |
-- |
volumeDevices |
-volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future. |
-false |
-v1.VolumeDevice array |
-- |
livenessProbe |
-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 |
-- | - |
readinessProbe |
-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 |
-- | - |
lifecycle |
-Actions that the management system should take in response to container lifecycle events. Cannot be updated. |
-false |
-- | - |
terminationMessagePath |
-Optional: Path at which the file to which the container’s termination message will be written is mounted into the container’s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated. |
-false |
-string |
-- |
terminationMessagePolicy |
-Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. |
-false |
-string |
-- |
imagePullPolicy |
-Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images |
-false |
-string |
-- |
securityContext |
-Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ |
-false |
-- | - |
stdin |
-Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. |
-false |
-boolean |
-false |
-
stdinOnce |
-Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false |
-false |
-boolean |
-false |
-
tty |
-Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false. |
-false |
-boolean |
-false |
-
PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
seLinuxOptions |
-The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. |
-false |
-- | - |
runAsUser |
-The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. |
-false |
-integer (int64) |
-- |
runAsNonRoot |
-Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. |
-false |
-boolean |
-false |
-
supplementalGroups |
-A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container. |
-false |
-integer (int32) array |
-- |
fsGroup |
-A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: |
-false |
-integer (int64) |
-- |
ReplicationControllerStatus represents the current status of a replication controller.
+PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.
replicas |
-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) |
-- | |||
fullyLabeledReplicas |
-The number of pods that have labels matching the labels of the pod template of the replication controller. |
+seLinuxOptions |
+The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. |
false |
-integer (int32) |
+||
readyReplicas |
-The number of ready replicas for this replication controller. |
-false |
-integer (int32) |
-- | |||
availableReplicas |
-The number of available replicas (ready for at least minReadySeconds) for this replication controller. |
-false |
-integer (int32) |
-- | |||
observedGeneration |
-ObservedGeneration reflects the generation of the most recently observed replication controller. |
+runAsUser |
+The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. |
false |
integer (int64) |
||
conditions |
-Represents the latest available observations of a replication controller’s current state. |
+runAsNonRoot |
+Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. |
false |
-+ | boolean |
+false |
+
supplementalGroups |
+A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container. |
+false |
+integer (int32) array |
++ | |||
fsGroup |
+A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: |
+false |
+integer (int64) |
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.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 |
-
Information about the condition of a component.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
type |
-Type of condition for a component. Valid value: "Healthy" |
-true |
-string |
-- |
status |
-Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown". |
-true |
-string |
-- |
message |
-Message about the condition for a component. For example, information about a health check. |
-false |
-string |
-- |
error |
-Condition error code for a component. For example, a health check error code. |
-false |
-string |
-- |
ScaleSpec describes the attributes of a scale subresource.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
replicas |
-desired number of instances for the scaled object. |
-false |
-integer (int32) |
-- |
ScaleSpec describes the attributes of a scale subresource.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
replicas |
+desired number of instances for the scaled object. |
+false |
+integer (int32) |
++ |
APIResource specifies the name of a resource and whether it is namespaced.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 |
-- |
namespaced |
-namespaced indicates if a resource is namespaced or not. |
-true |
-boolean |
-false |
-
group |
-group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale". |
-false |
-string |
-- |
version |
-version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource’s group)". |
-false |
-string |
-- |
kind |
-kind is the kind for the resource (e.g. Foo is the kind for a resource foo) |
-true |
-string |
-- |
verbs |
-verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy) |
-true |
-string array |
-- |
shortNames |
-shortNames is a list of suggested short names of the resource. |
-false |
-string array |
-- |
categories |
-categories is a list of the grouped resources this resource belongs to (e.g. all) |
-false |
-string array |
-- |
ContainerStateTerminated is a terminated state of a container.
+PodDNSConfigOption defines DNS resolver options of a pod.
exitCode |
-Exit status from the last termination of the container |
-true |
-integer (int32) |
-- | ||
signal |
-Signal from the last termination of the container |
-false |
-integer (int32) |
-- | ||
reason |
-(brief) reason from the last termination of the container |
+name |
+Required. |
false |
string |
|
message |
-Message regarding the last termination of the container |
+value |
+false |
string |
||
startedAt |
-Time at which previous execution of the container started |
-false |
-string |
-- | ||
finishedAt |
-Time at which the container last terminated |
-false |
-string |
-- | ||
containerID |
-Container’s ID in the format docker://<container_id> |
-false |
-string |
-- |
Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
-false |
-- | - |
target |
-The target object that you want to bind to the standard object. |
-true |
-- | - |
ContainerStateTerminated is a terminated state of a container.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
exitCode |
+Exit status from the last termination of the container |
+true |
+integer (int32) |
++ |
signal |
+Signal from the last termination of the container |
+false |
+integer (int32) |
++ |
reason |
+(brief) reason from the last termination of the container |
+false |
+string |
++ |
message |
+Message regarding the last termination of the container |
+false |
+string |
++ |
startedAt |
+Time at which previous execution of the container started |
+false |
+string |
++ |
finishedAt |
+Time at which the container last terminated |
+false |
+string |
++ |
containerID |
+Container’s ID in the format docker://<container_id> |
+false |
+string |
++ |
ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
waiting |
-Details about a waiting container |
-false |
-- | - |
running |
-Details about a running container |
-false |
-- | - |
terminated |
-Details about a terminated container |
-false |
-- | - |
Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
registry |
+Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes |
+true |
+string |
++ |
volume |
+Volume is a string that references an already created Quobyte volume by name. |
+true |
+string |
++ |
readOnly |
+ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. |
+false |
+boolean |
+false |
+
user |
+User to map volume access to Defaults to serivceaccount user |
+false |
+string |
++ |
group |
+Group to map volume access to Default is no group |
+false |
+string |
++ |
Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
registry |
-Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes |
-true |
-string |
-- |
volume |
-Volume is a string that references an already created Quobyte volume by name. |
-true |
-string |
-- |
readOnly |
-ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. |
-false |
-boolean |
-false |
-
user |
-User to map volume access to Defaults to serivceaccount user |
-false |
-string |
-- |
group |
-Group to map volume access to Default is no group |
-false |
-string |
-- |
ReplicationControllerList is a collection of replication controllers.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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#types-kinds |
-false |
-- | - |
items |
-List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller |
-true |
-v1.ReplicationController array |
-- |
Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
-false |
-- | - |
data |
-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 |
-- |
stringData |
-stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. |
-false |
-object |
-- |
type |
-Used to facilitate programmatic handling of secret data. |
-false |
-string |
-- |
Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
type |
-- | true |
-string |
-- |
object |
-- | true |
-string |
-- |
EnvVar represents an environment variable present in a Container.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
name |
-Name of the environment variable. Must be a C_IDENTIFIER. |
-true |
-string |
-- |
value |
-Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "". |
-false |
-string |
-- |
valueFrom |
-Source for the environment variable’s value. Cannot be used if value is not empty. |
-false |
-- | - |
A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
key |
-key is the label key that the selector applies to. |
-true |
-string |
-- |
operator |
-operator represents a key’s relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. |
-true |
-string |
-- |
values |
-values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. |
-false |
-string array |
-- |
ResourceRequirements describes the compute resource requirements.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
limits |
-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: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ |
-false |
-object |
-- |
LimitRangeItem defines a min/max usage limit for any resource that matches on kind.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
type |
-Type of resource that this limit applies to. |
-false |
-string |
-- |
max |
-Max usage constraints on this kind by resource name. |
-false |
-object |
-- |
min |
-Min usage constraints on this kind by resource name. |
-false |
-object |
-- |
default |
-Default resource requirement limit value by resource name if resource limit is omitted. |
-false |
-object |
-- |
defaultRequest |
-DefaultRequest is the default resource requirement request value by resource name if resource request is omitted. |
-false |
-object |
-- |
maxLimitRequestRatio |
-MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource. |
-false |
-object |
-- |
PodList is a list of Pods.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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#types-kinds |
-false |
-- | - |
items |
-List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md |
-true |
-v1.Pod array |
-- |
ServiceList holds a list of services.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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#types-kinds |
-false |
-- | - |
items |
-List of services |
-true |
-v1.Service array |
-- |
A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
nodeSelectorTerms |
-Required. A list of node selector terms. The terms are ORed. |
-true |
-v1.NodeSelectorTerm array |
-- |
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
-ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.
-The contents of the target ConfigMap’s Data field will represent the key-value pairs as environment variables.
+A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.
name |
-Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
-false |
-string |
+nodeSelectorTerms |
+Required. A list of node selector terms. The terms are ORed. |
+true |
+v1.NodeSelectorTerm array |
|
optional |
-Specify whether the ConfigMap must be defined |
-false |
-boolean |
-false |
-
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
+ObjectReference contains enough information to let you inspect or modify the referred object.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
kind |
-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: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ |
-false |
-string |
-- |
name |
-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: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids |
-false |
-string |
-- |
apiVersion |
-API version of the referent. |
-false |
-string |
-- |
resourceVersion |
-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 |
-- |
fieldPath |
-If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. |
-false |
-string |
-- |
ContainerStateWaiting is a waiting state of a container.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
reason |
-(brief) reason the container is not yet running. |
-false |
-string |
-- |
message |
-Message regarding why the container is not yet running. |
-false |
-string |
-- |
ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
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 |
-- | - |
sslEnabled |
-Flag to enable/disable SSL communication with Gateway, default false |
-false |
-boolean |
-false |
-
protectionDomain |
-The name of the ScaleIO Protection Domain for the configured storage. |
-false |
-string |
-- |
storagePool |
-The ScaleIO Storage Pool associated with the protection domain. |
-false |
-string |
-- |
storageMode |
-Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. |
-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 |
-
APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 |
++ |
groupVersion |
+groupVersion is the group and version this APIResourceList is for. |
+true |
+string |
++ |
resources |
+resources contains the name of the resources and if they are namespaced. |
+true |
+v1.APIResource array |
++ |
Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
+false |
++ | + |
spec |
+Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
+false |
++ | + |
status |
+Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
+false |
++ | + |
Affinity is a group of affinity scheduling rules.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
nodeAffinity |
+Describes node affinity scheduling rules for the pod. |
+false |
++ | + |
podAffinity |
+Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). |
+false |
++ | + |
podAntiAffinity |
+Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). |
+false |
++ | + |
PersistentVolumeClaimList is a list of PersistentVolumeClaim items.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
items |
+A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims |
+true |
+v1.PersistentVolumeClaim array |
++ |
Local represents directly-attached storage with node affinity
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
path |
+The full path to the volume on the node For alpha, this path must be a directory Once block as a source is supported, then this path can point to a block device |
+true |
+string |
++ |
A null or empty node selector term matches no objects.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
matchExpressions |
+Required. A list of node selector requirements. The requirements are ANDed. |
+true |
++ | + |
SELinuxOptions are the labels to be applied to the container
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
user |
+User is a SELinux user label that applies to the container. |
+false |
+string |
++ |
role |
+Role is a SELinux role label that applies to the container. |
+false |
+string |
++ |
type |
+Type is a SELinux type label that applies to the container. |
+false |
+string |
++ |
level |
+Level is SELinux level label that applies to the container. |
+false |
+string |
++ |
VolumeMount describes a mounting of a Volume within a container.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+This must match the Name of a Volume. |
+true |
+string |
++ |
readOnly |
+Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. |
+false |
+boolean |
+false |
+
mountPath |
+Path within the container at which the volume should be mounted. Must not contain :. |
+true |
+string |
++ |
subPath |
+Path within the volume from which the container’s volume should be mounted. Defaults to "" (volume’s root). |
+false |
+string |
++ |
mountPropagation |
+mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release. |
+false |
++ | + |
Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
items |
+Items is a list of DownwardAPIVolume file |
+false |
+v1.DownwardAPIVolumeFile array |
++ |
Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
monitors |
+Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+true |
+string array |
++ |
path |
+Optional: Used as the mounted root, rather than the full Ceph tree, default is / |
+false |
+string |
++ |
user |
+Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+false |
+string |
++ |
secretFile |
+Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+false |
+string |
++ |
secretRef |
+Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+false |
++ | + |
readOnly |
+Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+false |
+boolean |
+false |
+
NamespaceStatus is information about the current status of a Namespace.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
phase |
+Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/ |
+false |
+string |
++ |
ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
hard |
+Hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ |
+false |
+object |
++ |
scopes |
+A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects. |
+false |
+v1.ResourceQuotaScope array |
++ |
NamespaceSpec describes the attributes on a Namespace.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
finalizers |
+Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/ |
+false |
+v1.FinalizerName array |
++ |
Adapts a ConfigMap into a volume.
+The contents of the target ConfigMap’s Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
+false |
+string |
++ |
items |
+If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the .. path or start with ... |
+false |
+v1.KeyToPath array |
++ |
defaultMode |
+Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. |
+false |
+integer (int32) |
++ |
optional |
+Specify whether the ConfigMap or it’s keys must be defined |
+false |
+boolean |
+false |
+
EndpointsList is a list of endpoints.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
items |
+List of endpoints. |
+true |
+v1.Endpoints array |
++ |
SecretEnvSource selects a Secret to populate the environment variables with.
+The contents of the target Secret’s Data field will represent the key-value pairs as environment variables.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
+false |
+string |
++ |
optional |
+Specify whether the Secret must be defined |
+false |
+boolean |
+false |
+
ReplicationControllerCondition describes the state of a replication controller at a certain point.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
type |
+Type of replication controller condition. |
+true |
+string |
++ |
status |
+Status of the condition, one of True, False, Unknown. |
+true |
+string |
++ |
lastTransitionTime |
+The last time the condition transitioned from one status to another. |
+false |
+string |
++ |
reason |
+The reason for the condition’s last transition. |
+false |
+string |
++ |
message |
+A human readable message indicating details about the transition. |
+false |
+string |
++ |
ScaleStatus represents the current status of a scale subresource.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
replicas |
+actual number of observed instances of the scaled object. |
+true |
+integer (int32) |
++ |
selector |
+label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors |
+false |
+string |
++ |
NodeCondition contains condition information for a node.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
type |
+Type of node condition. |
+true |
+string |
++ |
status |
+Status of the condition, one of True, False, Unknown. |
+true |
+string |
++ |
lastHeartbeatTime |
+Last time we got an update on a given condition. |
+false |
+string |
++ |
lastTransitionTime |
+Last time the condition transit from one status to another. |
+false |
+string |
++ |
reason |
+(brief) reason for the condition’s last transition. |
+false |
+string |
++ |
message |
+Human readable message indicating details about last transition. |
+false |
+string |
++ |
LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
+false |
+string |
++ |
ResourceQuotaStatus defines the enforced hard limits and observed use.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
hard |
+Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ |
+false |
+object |
++ |
used |
+Used is the current observed total usage of the resource in the namespace. |
+false |
+object |
++ |
SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name is unique within a namespace to reference a secret resource. |
+false |
+string |
++ |
namespace |
+Namespace defines the space within which the secret name must be unique. |
+false |
+string |
++ |
LimitRangeSpec defines a min/max usage limit for resources that match on kind.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
limits |
+Limits is the list of LimitRangeItem objects that are enforced. |
+true |
+v1.LimitRangeItem array |
++ |
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
secretName |
+the name of secret that contains Azure Storage Account Name and Key |
+true |
+string |
++ |
shareName |
+Share Name |
+true |
+string |
++ |
readOnly |
+Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. |
+false |
+boolean |
+false |
+
Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
targetPortal |
+iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). |
+true |
+string |
++ |
iqn |
+Target iSCSI Qualified Name. |
+true |
+string |
++ |
lun |
+iSCSI Target Lun number. |
+true |
+integer (int32) |
++ |
iscsiInterface |
+iSCSI Interface Name that uses an iSCSI transport. Defaults to default (tcp). |
+false |
+string |
++ |
fsType |
+Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi |
+false |
+string |
++ |
readOnly |
+ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. |
+false |
+boolean |
+false |
+
portals |
+iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). |
+false |
+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 |
++ | + |
initiatorName |
+Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection. |
+false |
+string |
++ |
Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
labelSelector |
+A label query over a set of resources, in this case pods. |
+false |
++ | + |
namespaces |
+namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod’s namespace" |
+false |
+string array |
++ |
topologyKey |
+This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. |
+true |
+string |
++ |
PersistentVolumeClaim is a user’s request for and claim to a persistent volume
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
+false |
++ | + |
spec |
+Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims |
+false |
++ | + |
status |
+Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims |
+false |
++ | + |
ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
+false |
++ | + |
secrets |
+Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret |
+false |
+v1.ObjectReference array |
++ |
imagePullSecrets |
+ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod |
+false |
+v1.LocalObjectReference array |
++ |
automountServiceAccountToken |
+AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level. |
+false |
+boolean |
+false |
+
PersistentVolumeClaimStatus is the current status of a persistent volume claim.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
phase |
+Phase represents the current phase of PersistentVolumeClaim. |
+false |
+string |
++ |
accessModes |
+AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 |
+false |
++ | + |
capacity |
+Represents the actual resources of the underlying volume. |
+false |
+object |
++ |
conditions |
+Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to ResizeStarted. |
+false |
++ | + |
ResourceQuotaList is a list of ResourceQuota items.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
items |
+Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ |
+true |
+v1.ResourceQuota array |
++ |
Represents storage that is managed by an external CSI volume driver
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
driver |
+Driver is the name of the driver to use for this volume. Required. |
+true |
+string |
++ |
volumeHandle |
+VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required. |
+true |
+string |
++ |
readOnly |
+Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write). |
+false |
+boolean |
+false |
+
EnvVarSource represents a source for the value of an EnvVar.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
fieldRef |
+Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP. |
+false |
++ | + |
resourceFieldRef |
+Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. |
+false |
++ | + |
configMapKeyRef |
+Selects a key of a ConfigMap. |
+false |
++ | + |
secretKeyRef |
+Selects a key of a secret in the pod’s namespace |
+false |
++ | + |
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
diskName |
+The Name of the data disk in the blob storage |
+true |
+string |
++ |
diskURI |
+The URI the data disk in the blob storage |
+true |
+string |
++ |
cachingMode |
+Host Caching mode: None, Read Only, Read Write. |
+false |
++ | + |
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 |
+
kind |
+Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared |
+false |
++ | + |
Maps a string key to a path within a volume.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
key |
+The key to project. |
+true |
+string |
++ |
path |
+The relative path of the file to map the key to. May not be an absolute path. May not contain the path element ... May not start with the string ... |
+true |
+string |
++ |
mode |
+Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. |
+false |
+integer (int32) |
++ |
Represents a vSphere volume resource.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
volumePath |
+Path that identifies vSphere volume vmdk |
+true |
+string |
++ |
fsType |
+Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. |
+false |
+string |
++ |
storagePolicyName |
+Storage Policy Based Management (SPBM) profile name. |
+false |
+string |
++ |
storagePolicyID |
+Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. |
+false |
+string |
++ |
LimitRangeList is a list of LimitRange items.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
items |
+Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ |
+true |
+v1.LimitRange array |
++ |
ServiceAccountList is a list of ServiceAccount objects
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
items |
+List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ |
+true |
+v1.ServiceAccount array |
++ |
Endpoints is a collection of endpoints that implement the actual service. Example:
+ Name: "mysvc",
+ Subsets: [
+ {
+ Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
+ Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
+ },
+ {
+ Addresses: [{"ip": "10.10.3.3"}],
+ Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}]
+ },
+ ]
Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
+false |
++ | + |
subsets |
+The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service. |
+true |
+v1.EndpointSubset array |
++ |
DeleteOptions may be provided when deleting an API object.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 |
++ |
gracePeriodSeconds |
+The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. |
+false |
+integer (int64) |
++ |
preconditions |
+Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. |
+false |
++ | + |
orphanDependents |
+Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both. |
+false |
+boolean |
+false |
+
propagationPolicy |
+Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: Orphan - orphan the dependents; Background - allow the garbage collector to delete the dependents in the background; Foreground - a cascading policy that deletes all dependents in the foreground. |
+false |
++ | + |
Volume represents a named volume in a pod that may be accessed by any container in the pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+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: https://kubernetes.io/docs/concepts/storage/volumes#hostpath |
+false |
++ | + |
emptyDir |
+EmptyDir represents a temporary directory that shares a pod’s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir |
+false |
++ | + |
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 |
++ | + |
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 |
++ | + |
gitRepo |
+GitRepo represents a git repository at a particular revision. |
+false |
++ | + |
secret |
+Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret |
+false |
++ | + |
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 |
++ | + |
iscsi |
+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 |
++ | + |
glusterfs |
+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 |
++ | + |
persistentVolumeClaim |
+PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims |
+false |
++ | + |
rbd |
+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 |
++ | + |
flexVolume |
+FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future. |
+false |
++ | + |
cinder |
+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 |
++ | + |
cephfs |
+CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime |
+false |
++ | + |
flocker |
+Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running |
+false |
++ | + |
downwardAPI |
+DownwardAPI represents downward API about the pod that should populate this volume |
+false |
++ | + |
fc |
+FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod. |
+false |
++ | + |
azureFile |
+AzureFile represents an Azure File Service mount on the host and bind mount to the pod. |
+false |
++ | + |
configMap |
+ConfigMap represents a configMap that should populate this volume |
+false |
++ | + |
vsphereVolume |
+VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine |
+false |
++ | + |
quobyte |
+Quobyte represents a Quobyte mount on the host that shares a pod’s lifetime |
+false |
++ | + |
azureDisk |
+AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. |
+false |
++ | + |
photonPersistentDisk |
+PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine |
+false |
++ | + |
projected |
+Items for all in one resources secrets, configmaps, and downward API |
+false |
++ | + |
portworxVolume |
+PortworxVolume represents a portworx volume attached and mounted on kubelets host machine |
+false |
++ | + |
scaleIO |
+ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. |
+false |
++ | + |
storageos |
+StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. |
+false |
++ | + |
Projection that may be projected along with other supported volume types
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
secret |
+information about the secret data to project |
+false |
++ | + |
downwardAPI |
+information about the downwardAPI data to project |
+false |
++ | + |
configMap |
+information about the configMap data to project |
+false |
++ | + |
Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
monitors |
+Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+true |
+string array |
++ |
path |
+Optional: Used as the mounted root, rather than the full Ceph tree, default is / |
+false |
+string |
++ |
user |
+Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+false |
+string |
++ |
secretFile |
+Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+false |
+string |
++ |
secretRef |
+Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+false |
++ | + |
readOnly |
+Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it |
+false |
+boolean |
+false |
+
Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
exec |
+One and only one of the following should be specified. Exec specifies the action to take. |
+false |
++ | + |
httpGet |
+HTTPGet specifies the http request to perform. |
+false |
++ | + |
tcpSocket |
+TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported |
+false |
++ | + |
initialDelaySeconds |
+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: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes |
+false |
+integer (int32) |
++ |
periodSeconds |
+How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. |
+false |
+integer (int32) |
++ |
successThreshold |
+Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1. |
+false |
+integer (int32) |
++ |
failureThreshold |
+Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. |
+false |
+integer (int32) |
++ |
SecretKeySelector selects a key of a Secret.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
+false |
+string |
++ |
key |
+The key of the secret to select from. Must be a valid secret key. |
+true |
+string |
++ |
optional |
+Specify whether the Secret or it’s key must be defined |
+false |
+boolean |
+false |
+
ReplicationController represents the configuration of a replication controller.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 |
+If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
+false |
++ | + |
spec |
+Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
+false |
++ | + |
status |
+Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
+false |
++ | + |
LimitRange sets resource usage limits for each kind of resource in a Namespace.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
+false |
++ | + |
spec |
+Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status |
+false |
++ | + |
DownwardAPIVolumeFile represents information to create the file containing the pod field
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
path |
+Required: Path is the relative path name of the file to be created. Must not be absolute or contain the .. path. Must be utf-8 encoded. The first item of the relative path must not start with .. |
+true |
+string |
++ |
fieldRef |
+Required: Selects a field of the pod: only annotations, labels, name and namespace are supported. |
+false |
++ | + |
resourceFieldRef |
+Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. |
+false |
++ | + |
mode |
+Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. |
+false |
+integer (int32) |
++ |
PodStatus represents information about the status of a pod. Status may trail the actual state of a system.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
phase |
+Current condition of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase |
+false |
+string |
++ |
conditions |
+Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions |
+false |
+v1.PodCondition array |
++ |
message |
+A human readable message indicating details about why the pod is in this condition. |
+false |
+string |
++ |
reason |
+A brief CamelCase message indicating details about why the pod is in this state. e.g. Evicted |
+false |
+string |
++ |
hostIP |
+IP address of the host to which the pod is assigned. Empty if not yet scheduled. |
+false |
+string |
++ |
podIP |
+IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated. |
+false |
+string |
++ |
startTime |
+RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod. |
+false |
+string |
++ |
initContainerStatuses |
+The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status |
+false |
+v1.ContainerStatus array |
++ |
containerStatuses |
+The list has one entry per container in the manifest. Each entry is currently the output of |
+false |
+v1.ContainerStatus array |
++ |
qosClass |
+The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://github.com/kubernetes/kubernetes/blob/master/docs/design/resource-qos.md |
+false |
+string |
++ |
PodSpec is a description of a pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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: 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. |
+true |
+v1.Container array |
++ |
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 |
++ |
terminationGracePeriodSeconds |
+Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds. |
+false |
+integer (int64) |
++ |
activeDeadlineSeconds |
+Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer. |
+false |
+integer (int64) |
++ |
dnsPolicy |
+Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are ClusterFirstWithHostNet, ClusterFirst, Default or None. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet. |
+false |
+string |
++ |
nodeSelector |
+NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: 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: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ |
+false |
+string |
++ |
serviceAccount |
+DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead. |
+false |
+string |
++ |
automountServiceAccountToken |
+AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. |
+false |
+boolean |
+false |
+
nodeName |
+NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements. |
+false |
+string |
++ |
hostNetwork |
+Host networking requested for this pod. Use the host’s network namespace. If this option is set, the ports that will be used must be specified. Default to false. |
+false |
+boolean |
+false |
+
hostPID |
+Use the host’s pid namespace. Optional: Default to false. |
+false |
+boolean |
+false |
+
hostIPC |
+Use the host’s ipc namespace. Optional: Default to false. |
+false |
+boolean |
+false |
+
securityContext |
+SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field. |
+false |
++ | + |
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: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod |
+false |
+v1.LocalObjectReference array |
++ |
hostname |
+Specifies the hostname of the Pod If not specified, the pod’s hostname will be set to a system-defined value. |
+false |
+string |
++ |
subdomain |
+If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all. |
+false |
+string |
++ |
affinity |
+If specified, the pod’s scheduling constraints |
+false |
++ | + |
schedulerName |
+If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler. |
+false |
+string |
++ |
tolerations |
+If specified, the pod’s tolerations. |
+false |
+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) |
++ |
dnsConfig |
+Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. |
+false |
++ | + |
EventList is a list of events.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
items |
+List of events |
+true |
+v1.Event array |
++ |
Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks |
+false |
++ | + |
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: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks |
+false |
++ | + |
AttachedVolume describes a volume attached to a node
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the attached volume |
+true |
+string |
++ |
devicePath |
+DevicePath represents the device path where the volume should be available |
+true |
+string |
++ |
PodCondition contains details for the current condition of this pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
type |
+Type is the type of the condition. Currently only Ready. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions |
+true |
+string |
++ |
status |
+Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions |
+true |
+string |
++ |
lastProbeTime |
+Last time we probed the condition. |
+false |
+string |
++ |
lastTransitionTime |
+Last time the condition transitioned from one status to another. |
+false |
+string |
++ |
reason |
+Unique, one-word, CamelCase reason for the condition’s last transition. |
+false |
+string |
++ |
message |
+Human-readable message indicating details about last transition. |
+false |
+string |
++ |
Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
monitors |
+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: 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: https://kubernetes.io/docs/concepts/storage/volumes#rbd |
+false |
+string |
++ |
pool |
+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: 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: 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: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it |
+false |
++ | + |
readOnly |
+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 |
+
Represents a Photon Controller persistent disk resource.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
pdID |
+ID that identifies Photon Controller persistent disk |
+true |
+string |
++ |
fsType |
+Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. |
+false |
+string |
++ |
Status is a return value for calls that don’t return other objects.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
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 |
++ |
message |
+A human-readable description of the status of this operation. |
+false |
+string |
++ |
reason |
+A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. |
+false |
+string |
++ |
details |
+Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type. |
+false |
++ | + |
code |
+Suggested HTTP return code for this status, 0 if not set. |
+false |
+integer (int32) |
++ |
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
nameservers |
+A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. |
+false |
+string array |
++ |
searches |
+A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. |
+false |
+string array |
++ |
options |
+A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. |
+false |
+v1.PodDNSConfigOption array |
++ |
Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
targetWWNs |
+Optional: FC target worldwide names (WWNs) |
+false |
+string array |
++ |
lun |
+Optional: FC target lun number |
+false |
+integer (int32) |
++ |
fsType |
+Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. |
+false |
+string |
++ |
readOnly |
+Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. |
+false |
+boolean |
+false |
+
wwids |
+Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. |
+false |
+string array |
++ |
TCPSocketAction describes an action based on opening a socket
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 |
++ |
LoadBalancerStatus represents the status of a load-balancer.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
ingress |
+Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. |
+false |
+v1.LoadBalancerIngress array |
++ |
A single application container that you want to run within a pod.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. |
+true |
+string |
++ |
image |
+Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets. |
+false |
+string |
++ |
command |
+Entrypoint array. Not executed within a shell. The docker image’s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container’s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: 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: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell |
+false |
+string array |
++ |
workingDir |
+Container’s working directory. If not specified, the container runtime’s default will be used, which might be configured in the container image. Cannot be updated. |
+false |
+string |
++ |
ports |
+List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. |
+false |
+v1.ContainerPort array |
++ |
envFrom |
+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 |
++ |
env |
+List of environment variables to set in the container. Cannot be updated. |
+false |
+v1.EnvVar array |
++ |
resources |
+Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources |
+false |
++ | + |
volumeMounts |
+Pod volumes to mount into the container’s filesystem. Cannot be updated. |
+false |
+v1.VolumeMount array |
++ |
volumeDevices |
+volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future. |
+false |
+v1.VolumeDevice array |
++ |
livenessProbe |
+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 |
++ | + |
readinessProbe |
+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 |
++ | + |
lifecycle |
+Actions that the management system should take in response to container lifecycle events. Cannot be updated. |
+false |
++ | + |
terminationMessagePath |
+Optional: Path at which the file to which the container’s termination message will be written is mounted into the container’s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated. |
+false |
+string |
++ |
terminationMessagePolicy |
+Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. |
+false |
+string |
++ |
imagePullPolicy |
+Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images |
+false |
+string |
++ |
securityContext |
+Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ |
+false |
++ | + |
stdin |
+Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. |
+false |
+boolean |
+false |
+
stdinOnce |
+Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false |
+false |
+boolean |
+false |
+
tty |
+Whether this container should allocate a TTY for itself, also requires stdin to be true. Default is false. |
+false |
+boolean |
+false |
+
ReplicationControllerStatus represents the current status of a replication controller.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
replicas |
+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) |
++ |
fullyLabeledReplicas |
+The number of pods that have labels matching the labels of the pod template of the replication controller. |
+false |
+integer (int32) |
++ |
readyReplicas |
+The number of ready replicas for this replication controller. |
+false |
+integer (int32) |
++ |
availableReplicas |
+The number of available replicas (ready for at least minReadySeconds) for this replication controller. |
+false |
+integer (int32) |
++ |
observedGeneration |
+ObservedGeneration reflects the generation of the most recently observed replication controller. |
+false |
+integer (int64) |
++ |
conditions |
+Represents the latest available observations of a replication controller’s current state. |
+false |
++ | + |
Information about the condition of a component.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
type |
+Type of condition for a component. Valid value: "Healthy" |
+true |
+string |
++ |
status |
+Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown". |
+true |
+string |
++ |
message |
+Message about the condition for a component. For example, information about a health check. |
+false |
+string |
++ |
error |
+Condition error code for a component. For example, a health check error code. |
+false |
+string |
++ |
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.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 |
+
APIResource specifies the name of a resource and whether it is namespaced.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 |
++ |
namespaced |
+namespaced indicates if a resource is namespaced or not. |
+true |
+boolean |
+false |
+
group |
+group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale". |
+false |
+string |
++ |
version |
+version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource’s group)". |
+false |
+string |
++ |
kind |
+kind is the kind for the resource (e.g. Foo is the kind for a resource foo) |
+true |
+string |
++ |
verbs |
+verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy) |
+true |
+string array |
++ |
shortNames |
+shortNames is a list of suggested short names of the resource. |
+false |
+string array |
++ |
categories |
+categories is a list of the grouped resources this resource belongs to (e.g. all) |
+false |
+string array |
++ |
Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
+false |
++ | + |
target |
+The target object that you want to bind to the standard object. |
+true |
++ | + |
ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
waiting |
+Details about a waiting container |
+false |
++ | + |
running |
+Details about a running container |
+false |
++ | + |
terminated |
+Details about a terminated container |
+false |
++ | + |
ReplicationControllerList is a collection of replication controllers.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
items |
+List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller |
+true |
+v1.ReplicationController array |
++ |
Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
type |
++ | true |
+string |
++ |
object |
++ | true |
+string |
++ |
Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 object’s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata |
+false |
++ | + |
data |
+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 |
++ |
stringData |
+stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. |
+false |
+object |
++ |
type |
+Used to facilitate programmatic handling of secret data. |
+false |
+string |
++ |
A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
key |
+key is the label key that the selector applies to. |
+true |
+string |
++ |
operator |
+operator represents a key’s relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. |
+true |
+string |
++ |
values |
+values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. |
+false |
+string array |
++ |
EnvVar represents an environment variable present in a Container.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the environment variable. Must be a C_IDENTIFIER. |
+true |
+string |
++ |
value |
+Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "". |
+false |
+string |
++ |
valueFrom |
+Source for the environment variable’s value. Cannot be used if value is not empty. |
+false |
++ | + |
ResourceRequirements describes the compute resource requirements.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
limits |
+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: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ |
+false |
+object |
++ |
LimitRangeItem defines a min/max usage limit for any resource that matches on kind.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
type |
+Type of resource that this limit applies to. |
+false |
+string |
++ |
max |
+Max usage constraints on this kind by resource name. |
+false |
+object |
++ |
min |
+Min usage constraints on this kind by resource name. |
+false |
+object |
++ |
default |
+Default resource requirement limit value by resource name if resource limit is omitted. |
+false |
+object |
++ |
defaultRequest |
+DefaultRequest is the default resource requirement request value by resource name if resource request is omitted. |
+false |
+object |
++ |
maxLimitRequestRatio |
+MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource. |
+false |
+object |
++ |
PodList is a list of Pods.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
items |
+List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md |
+true |
+v1.Pod array |
++ |
ServiceList holds a list of services.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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#types-kinds |
+false |
++ | + |
items |
+List of services |
+true |
+v1.Service array |
++ |
ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.
+The contents of the target ConfigMap’s Data field will represent the key-value pairs as environment variables.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
+false |
+string |
++ |
optional |
+Specify whether the ConfigMap must be defined |
+false |
+boolean |
+false |
+
ObjectReference contains enough information to let you inspect or modify the referred object.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
kind |
+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: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ |
+false |
+string |
++ |
name |
+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: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids |
+false |
+string |
++ |
apiVersion |
+API version of the referent. |
+false |
+string |
++ |
resourceVersion |
+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 |
++ |
fieldPath |
+If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. |
+false |
+string |
++ |
ContainerStateWaiting is a waiting state of a container.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
reason |
+(brief) reason the container is not yet running. |
+false |
+string |
++ |
message |
+Message regarding why the container is not yet running. |
+false |
+string |
++ |
ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
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 |
++ | + |
sslEnabled |
+Flag to enable/disable SSL communication with Gateway, default false |
+false |
+boolean |
+false |
+
protectionDomain |
+The name of the ScaleIO Protection Domain for the configured storage. |
+false |
+string |
++ |
storagePool |
+The ScaleIO Storage Pool associated with the protection domain. |
+false |
+string |
++ |
storageMode |
+Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. |
+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 |
+
EndpointAddress is a tuple that describes single IP address.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
ip |
+The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready. |
+true |
+string |
++ |
hostname |
+The Hostname of this endpoint |
+false |
+string |
++ |
nodeName |
+Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node. |
+false |
+string |
++ |
targetRef |
+Reference to object providing the endpoint. |
+false |
++ | + |
EndpointAddress is a tuple that describes single IP address.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
ip |
-The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready. |
-true |
-string |
-- |
hostname |
-The Hostname of this endpoint |
-false |
-string |
-- |
nodeName |
-Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node. |
-false |
-string |
-- |
targetRef |
-Reference to object providing the endpoint. |
-false |
-- | - |