Home
Getting Started
Documentation
Community
Events
Media
Blog

Top Level API Objects

Definitions

v1beta1.PodSelectorRequirement

A pod 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 ard 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

v1beta1.Job

Job represents the configuration of a single job.

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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

string

apiVersion

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

false

string

metadata

Standard object’s metadata. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#metadata

false

v1.ObjectMeta

spec

Spec is a structure defining the expected behavior of a job. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#spec-and-status

false

v1beta1.JobSpec

status

Status is a structure describing current status of a job. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#spec-and-status

false

v1beta1.JobStatus

v1.SELinuxOptions

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. More info: http://kubernetes.io/v1.1/docs/user-guide/labels.html

false

string

role

Role is a SELinux role label that applies to the container. More info: http://kubernetes.io/v1.1/docs/user-guide/labels.html

false

string

type

Type is a SELinux type label that applies to the container. More info: http://kubernetes.io/v1.1/docs/user-guide/labels.html

false

string

level

Level is SELinux level label that applies to the container. More info: http://kubernetes.io/v1.1/docs/user-guide/labels.html

false

string

v1.ObjectFieldSelector

ObjectFieldSelector selects an APIVersioned field of an object.

Name Description Required Schema Default

apiVersion

Version of the schema the FieldPath is written in terms of, defaults to "v1".

false

string

fieldPath

Path of the field to select in the specified API version.

true

string

v1beta1.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. More info: http://kubernetes.io/v1.1/docs/user-guide/labels.html#label-selectors

false

any

v1.VolumeMount

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.

true

string

v1beta1.IngressSpec

IngressSpec describes the Ingress the user wishes to exist.

Name Description Required Schema Default

backend

A default backend capable of servicing requests that don’t match any IngressRule. It is optional to allow the loadbalancer controller or defaulting logic to specify a global default.

false

v1beta1.IngressBackend

rules

A list of host rules used to configure the Ingress.

true

v1beta1.IngressRule array

v1.NFSVolumeSource

NFSVolumeSource represents an NFS mount that lasts the lifetime of a pod

Name Description Required Schema Default

server

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

true

string

path

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

true

string

readOnly

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

false

boolean

false

v1beta1.IngressBackend

IngressBackend describes all endpoints for a given Service and port.

Name Description Required Schema Default

serviceName

Specifies the name of the referenced service.

true

string

servicePort

Specifies the port of the referenced service.

true

string

v1.CephFSVolumeSource

CephFSVolumeSource represents a Ceph Filesystem Mount that lasts the lifetime of a pod

Name Description Required Schema Default

monitors

Required: Monitors is a collection of Ceph monitors More info: http://kubernetes.io/v1.1/examples/cephfs/README.html#how-to-use-it

true

string array

user

Optional: User is the rados user name, default is admin More info: http://kubernetes.io/v1.1/examples/cephfs/README.html#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: http://kubernetes.io/v1.1/examples/cephfs/README.html#how-to-use-it

false

string

secretRef

Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://kubernetes.io/v1.1/examples/cephfs/README.html#how-to-use-it

false

v1.LocalObjectReference

readOnly

Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://kubernetes.io/v1.1/examples/cephfs/README.html#how-to-use-it

false

boolean

false

v1beta1.HorizontalPodAutoscalerStatus

current status of a horizontal pod autoscaler

Name Description Required Schema Default

observedGeneration

most recent generation observed by this autoscaler.

false

integer (int64)

lastScaleTime

last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.

false

string

currentReplicas

current number of replicas of pods managed by this autoscaler.

true

integer (int32)

desiredReplicas

desired number of replicas of pods managed by this autoscaler.

true

integer (int32)

currentCPUUtilizationPercentage

current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.

false

integer (int32)

v1.FCVolumeSource

A Fibre Channel Disk can only be mounted as read/write once.

Name Description Required Schema Default

targetWWNs

Required: FC target world wide names (WWNs)

true

string array

lun

Required: FC target lun number

true

integer (int32)

fsType

Required: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs"

true

string

readOnly

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

false

boolean

false

v1beta1.IngressStatus

IngressStatus describe the current state of the Ingress.

Name Description Required Schema Default

loadBalancer

LoadBalancer contains the current status of the load-balancer.

false

v1.LoadBalancerStatus

v1.DownwardAPIVolumeSource

DownwardAPIVolumeSource represents a volume containing downward API info

Name Description Required Schema Default

items

Items is a list of downward API volume file

false

v1.DownwardAPIVolumeFile array

unversioned.StatusCause

StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

Name Description Required Schema Default

reason

A machine-readable description of the cause of the error. If this value is empty there is no information available.

false

string

message

A human-readable description of the cause of the error. This field may be presented as-is to a reader.

false

string

field

The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.

Examples:
"name" - the field "name" on the current resource
"items[0].name" - the field "name" on the first array entry in "items"

false

string

v1.GCEPersistentDiskVolumeSource

GCEPersistentDiskVolumeSource represents a Persistent Disk resource in Google Compute Engine.

A GCE PD must exist and be formatted before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once.

Name Description Required Schema Default

pdName

Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://kubernetes.io/v1.1/docs/user-guide/volumes.html#gcepersistentdisk

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". More info: http://kubernetes.io/v1.1/docs/user-guide/volumes.html#gcepersistentdisk

true

string

partition

The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: http://kubernetes.io/v1.1/docs/user-guide/volumes.html#gcepersistentdisk

false

integer (int32)

readOnly

ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/v1.1/docs/user-guide/volumes.html#gcepersistentdisk

false

boolean

false

v1.TCPSocketAction

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

v1beta1.IngressRule

IngressRule represents the rules mapping the paths under a specified host to the related backend services.

Name Description Required Schema Default

host

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

false

string

http

Currently mixing different types of rules in a single Ingress is disallowed, so exactly one of the following must be set.

true

v1beta1.HTTPIngressRuleValue

v1beta1.JobList

JobList is a collection of jobs.

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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

string

apiVersion

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

false

string

metadata

Standard list metadata More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#metadata

false

unversioned.ListMeta

items

Items is the list of Job.

true

v1beta1.Job array

v1beta1.HTTPIngressRuleValue

HTTPIngressRuleValue is a list of http selectors pointing to IngressBackends. In the example: http://<host>/<path>?<searchpart> → IngressBackend where parts of the url correspond to RFC 3986, this resource will be used to to match against everything after the last / and before the first ? or #.

Name Description Required Schema Default

paths

A collection of paths that map requests to IngressBackends.

true

v1beta1.HTTPIngressPath array

unversioned.StatusDetails

StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

Name Description Required Schema Default

name

The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

false

string

kind

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

false

string

causes

The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

false

unversioned.StatusCause array

retryAfterSeconds

If specified, the time in seconds before the operation should be retried.

false

integer (int32)

v1.GitRepoVolumeSource

GitRepoVolumeSource represents a volume that is pulled from git when the pod is created.

Name Description Required Schema Default

repository

Repository URL

true

string

revision

Commit hash for the specified revision.

true

string

v1.HTTPGetAction

HTTPGetAction describes an action based on HTTP Get requests.

Name Description Required Schema Default

path

Path to access on the HTTP server.

false

string

port

Name or number 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

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

false

string

scheme

Scheme to use for connecting to the host. Defaults to HTTP.

false

string

v1beta1.JobStatus

JobStatus represents the current state of a Job.

Name Description Required Schema Default

conditions

Conditions represent the latest available observations of an object’s current state. More info: http://kubernetes.io/v1.1/docs/user-guide/jobs.html

false

v1beta1.JobCondition array

startTime

StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

false

string

completionTime

CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.

false

string

active

Active is the number of actively running pods.

false

integer (int32)

succeeded

Succeeded is the number of pods which reached Phase Succeeded.

false

integer (int32)

failed

Failed is the number of pods which reached Phase Failed.

false

integer (int32)

v1.Capabilities

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

v1.LocalObjectReference

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: http://kubernetes.io/v1.1/docs/user-guide/identifiers.html#names

false

string

v1.LoadBalancerStatus

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

v1beta1.CPUTargetUtilization

Name Description Required Schema Default

targetPercentage

fraction of the requested CPU that should be utilized/used, e.g. 70 means that 70% of the requested CPU should be in use.

true

integer (int32)

v1.Container

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: http://kubernetes.io/v1.1/docs/user-guide/images.html

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: http://kubernetes.io/v1.1/docs/user-guide/containers.html#containers-and-commands

false

string array

args

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

false

string array

workingDir

Container’s working directory. Defaults to Docker’s default. D efaults to image’s default. Cannot be updated.

false

string

ports

List of ports to expose from the container. Cannot be updated.

false

v1.ContainerPort 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: http://kubernetes.io/v1.1/docs/user-guide/persistent-volumes.html#resources

false

v1.ResourceRequirements

volumeMounts

Pod volumes to mount into the container’s filesyste. Cannot be updated.

false

v1.VolumeMount array

livenessProbe

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

false

v1.Probe

readinessProbe

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

false

v1.Probe

lifecycle

Actions that the management system should take in response to container lifecycle events. Cannot be updated.

false

v1.Lifecycle

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. Defaults to /dev/termination-log. 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: http://kubernetes.io/v1.1/docs/user-guide/images.html#updating-images

false

string

securityContext

Security options the pod should run with. More info: http://kubernetes.io/v1.1/docs/design/security_context.html

false

v1.SecurityContext

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

v1.ExecAction

ExecAction describes a "run in container" action.

Name Description Required Schema Default

command

Command is the command line to execute inside the container, the working directory for the command is root (/) in the container’s filesystem. The command is simply exec’d, it is not run inside a shell, so traditional shell instructions ('

', etc) won’t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

false

string array

v1.ObjectMeta

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

Name Description Required Schema Default

name

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

false

string

generateName

GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.

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

Applied only if Name is not specified. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#idempotency

false

string

namespace

Namespace defines the space within each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.

Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/v1.1/docs/user-guide/namespaces.html

false

string

selfLink

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

false

string

uid

UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.

Populated by the system. Read-only. More info: http://kubernetes.io/v1.1/docs/user-guide/identifiers.html#uids

false

string

resourceVersion

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

Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#concurrency-control-and-consistency

false

string

generation

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

false

integer (int64)

creationTimestamp

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

Populated by the system. Read-only. Null for lists. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#metadata

false

string

deletionTimestamp

DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource will be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. Once the resource is deleted in the API, the Kubelet will send a hard termination signal to the container. If not set, graceful deletion of the object has not been requested.

Populated by the system when a graceful deletion is requested. Read-only. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#metadata

false

string

deletionGracePeriodSeconds

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

false

integer (int64)

labels

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

false

any

annotations

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

false

any

v1.HostPathVolumeSource

HostPathVolumeSource represents bare host directory volume.

Name Description Required Schema Default

path

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

true

string

v1.ISCSIVolumeSource

ISCSIVolumeSource describes an ISCSI Disk can only be mounted as read/write once.

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)

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". More info: http://kubernetes.io/v1.1/docs/user-guide/volumes.html#iscsi

true

string

readOnly

ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

false

boolean

false

json.WatchEvent

Name Description Required Schema Default

type

the type of watch event; may be ADDED, MODIFIED, DELETED, or ERROR

false

string

object

the object being watched; will match the type of the resource endpoint or be a Status object if the type is ERROR

false

string

v1beta1.IngressList

IngressList is a collection of Ingress.

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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

string

apiVersion

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

false

string

metadata

Standard object’s metadata. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#metadata

false

unversioned.ListMeta

items

Items is the list of Ingress.

true

v1beta1.Ingress array

v1.EmptyDirVolumeSource

EmptyDirVolumeSource is temporary directory that shares a pod’s lifetime.

Name Description Required Schema Default

medium

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

false

string

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

unversioned.Patch

Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

v1.CinderVolumeSource

CinderVolumeSource represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet.

Name Description Required Schema Default

volumeID

volume id used to identify the volume in cinder More info: http://kubernetes.io/v1.1/examples/mysql-cinder-pd/README.html

true

string

fsType

Required: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Only ext3 and ext4 are allowed More info: http://kubernetes.io/v1.1/examples/mysql-cinder-pd/README.html

false

string

readOnly

Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://kubernetes.io/v1.1/examples/mysql-cinder-pd/README.html

false

boolean

false

v1.SecurityContext

SecurityContext holds security configuration that will be applied to a container.

Name Description Required Schema Default

capabilities

The linux kernel capabilites that should be added or removed. Default to Container.Capabilities if left unset. More info: http://kubernetes.io/v1.1/docs/design/security_context.html#security-context

false

v1.Capabilities

privileged

Run the container in privileged mode. Default to Container.Privileged if left unset. More info: http://kubernetes.io/v1.1/docs/design/security_context.html#security-context

false

boolean

false

seLinuxOptions

SELinuxOptions are the labels to be applied to the container and volumes. Options that control the SELinux labels applied. More info: http://kubernetes.io/v1.1/docs/design/security_context.html#security-context

false

v1.SELinuxOptions

runAsUser

RunAsUser is the UID to run the entrypoint of the container process. The user id that runs the first process in the container. More info: http://kubernetes.io/v1.1/docs/design/security_context.html#security-context

false

integer (int64)

runAsNonRoot

RunAsNonRoot indicates that the container should be run as a non-root user. If the RunAsUser field is not explicitly set then the kubelet may check the image for a specified user or perform defaulting to specify a user.

false

boolean

false

v1.AWSElasticBlockStoreVolumeSource

Represents a persistent disk resource in AWS.

An Amazon Elastic Block Store (EBS) must already be created, formatted, and reside in the same AWS zone as the kubelet before it can be mounted. Note: Amazon EBS volumes can be mounted to only one instance at a time.

Name Description Required Schema Default

volumeID

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

true

string

fsType

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

true

string

partition

The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).

false

integer (int32)

readOnly

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

false

boolean

false

v1.PersistentVolumeClaimVolumeSource

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

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: http://kubernetes.io/v1.1/docs/user-guide/persistent-volumes.html#persistentvolumeclaims

true

string

readOnly

Will force the ReadOnly setting in VolumeMounts. Default false.

false

boolean

false

v1.FlockerVolumeSource

FlockerVolumeSource represents a Flocker volume mounted by the Flocker agent.

Name Description Required Schema Default

datasetName

Required: the volume name. This is going to be store on metadata → name on the payload for Flocker

true

string

unversioned.ListMeta

ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

Name Description Required Schema Default

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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#concurrency-control-and-consistency

false

string

v1beta1.HorizontalPodAutoscalerSpec

specification of a horizontal pod autoscaler.

Name Description Required Schema Default

scaleRef

reference to Scale subresource; horizontal pod autoscaler will learn the current resource consumption from its status, and will set the desired number of pods by modifying its spec.

true

v1beta1.SubresourceReference

minReplicas

lower limit for the number of pods that can be set by the autoscaler, default 1.

false

integer (int32)

maxReplicas

upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.

true

integer (int32)

cpuUtilization

target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified it defaults to the target CPU utilization at 80% of the requested resources.

false

v1beta1.CPUTargetUtilization

v1beta1.HorizontalPodAutoscaler

configuration of a horizontal pod autoscaler.

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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

string

apiVersion

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

false

string

metadata

Standard object metadata. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#metadata

false

v1.ObjectMeta

spec

behaviour of autoscaler. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#spec-and-status.

false

v1beta1.HorizontalPodAutoscalerSpec

status

current information about the autoscaler.

false

v1beta1.HorizontalPodAutoscalerStatus

v1.EnvVar

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

v1.EnvVarSource

v1.SecretVolumeSource

SecretVolumeSource adapts a Secret into a VolumeSource. More info: http://kubernetes.io/v1.1/docs/design/secrets.html

Name Description Required Schema Default

secretName

SecretName is the name of a secret in the pod’s namespace. More info: http://kubernetes.io/v1.1/docs/user-guide/volumes.html#secrets

true

string

v1.ResourceRequirements

ResourceRequirements describes the compute resource requirements.

Name Description Required Schema Default

limits

Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/v1.1/docs/design/resources.html#resource-specifications

false

any

requests

Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/v1.1/docs/design/resources.html#resource-specifications

false

any

v1.EnvVarSource

EnvVarSource represents a source for the value of an EnvVar.

Name Description Required Schema Default

fieldRef

Selects a field of the pod. Only name and namespace are supported.

true

v1.ObjectFieldSelector

v1beta1.JobCondition

JobCondition describes current state of a job.

Name Description Required Schema Default

type

Type of job condition, currently only Complete.

true

string

status

Status of the condition, one of True, False, Unknown.

true

string

lastProbeTime

Last time the condition was checked.

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

v1.LoadBalancerIngress

LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

Name Description Required Schema Default

ip

IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

false

string

hostname

Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

false

string

v1.PodTemplateSpec

PodTemplateSpec describes the data a pod should have when created from a template

Name Description Required Schema Default

metadata

Standard object’s metadata. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#metadata

false

v1.ObjectMeta

spec

Specification of the desired behavior of the pod. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#spec-and-status

false

v1.PodSpec

v1.DeleteOptions

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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

string

apiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#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.

true

integer (int64)

v1.Volume

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: http://kubernetes.io/v1.1/docs/user-guide/identifiers.html#names

true

string

hostPath

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

false

v1.HostPathVolumeSource

emptyDir

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

false

v1.EmptyDirVolumeSource

gcePersistentDisk

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

false

v1.GCEPersistentDiskVolumeSource

awsElasticBlockStore

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

false

v1.AWSElasticBlockStoreVolumeSource

gitRepo

GitRepo represents a git repository at a particular revision.

false

v1.GitRepoVolumeSource

secret

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

false

v1.SecretVolumeSource

nfs

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

false

v1.NFSVolumeSource

iscsi

ISCSI represents an ISCSI Disk resource that is attached to a kubelet’s host machine and then exposed to the pod. More info: http://kubernetes.io/v1.1/examples/iscsi/README.html

false

v1.ISCSIVolumeSource

glusterfs

Glusterfs represents a Glusterfs mount on the host that shares a pod’s lifetime. More info: http://kubernetes.io/v1.1/examples/glusterfs/README.html

false

v1.GlusterfsVolumeSource

persistentVolumeClaim

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

false

v1.PersistentVolumeClaimVolumeSource

rbd

RBD represents a Rados Block Device mount on the host that shares a pod’s lifetime. More info: http://kubernetes.io/v1.1/examples/rbd/README.html

false

v1.RBDVolumeSource

cinder

Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://kubernetes.io/v1.1/examples/mysql-cinder-pd/README.html

false

v1.CinderVolumeSource

cephfs

CephFS represents a Ceph FS mount on the host that shares a pod’s lifetime

false

v1.CephFSVolumeSource

flocker

Flocker represents a Flocker volume attached to a kubelet’s host machine. This depends on the Flocker control service being running

false

v1.FlockerVolumeSource

downwardAPI

DownwardAPI represents downward API about the pod that should populate this volume

false

v1.DownwardAPIVolumeSource

fc

FC represents a Fibre Channel resource that is attached to a kubelet’s host machine and then exposed to the pod.

false

v1.FCVolumeSource

v1.Probe

Probe describes a liveness probe to be examined to the container.

Name Description Required Schema Default

exec

One and only one of the following should be specified. Exec specifies the action to take.

false

v1.ExecAction

httpGet

HTTPGet specifies the http request to perform.

false

v1.HTTPGetAction

tcpSocket

TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

false

v1.TCPSocketAction

initialDelaySeconds

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

false

integer (int64)

timeoutSeconds

Number of seconds after which liveness probes timeout. Defaults to 1 second. More info: http://kubernetes.io/v1.1/docs/user-guide/pod-states.html#container-probes

false

integer (int64)

v1beta1.JobSpec

JobSpec describes how the job execution will look like.

Name Description Required Schema Default

parallelism

Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://kubernetes.io/v1.1/docs/user-guide/jobs.html

false

integer (int32)

completions

Completions specifies the desired number of successfully finished pods the job should be run with. Defaults to 1. More info: http://kubernetes.io/v1.1/docs/user-guide/jobs.html

false

integer (int32)

selector

Selector is a label query over pods that should match the pod count. More info: http://kubernetes.io/v1.1/docs/user-guide/labels.html#label-selectors

false

v1beta1.PodSelector

template

Template is the object that describes the pod that will be created when executing a job. More info: http://kubernetes.io/v1.1/docs/user-guide/jobs.html

true

v1.PodTemplateSpec

v1beta1.PodSelector

A pod selector is a label query over a set of pods. The result of matchLabels and matchExpressions are ANDed. An empty pod selector matches all objects. A null pod selector matches no objects.

Name Description Required Schema Default

matchLabels

matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

false

any

matchExpressions

matchExpressions is a list of pod selector requirements. The requirements are ANDed.

false

v1beta1.PodSelectorRequirement array

v1.Capability

unversioned.Status

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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

string

apiVersion

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

false

string

metadata

Standard list metadata. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

unversioned.ListMeta

status

Status of the operation. One of: "Success" or "Failure". More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#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

unversioned.StatusDetails

code

Suggested HTTP return code for this status, 0 if not set.

false

integer (int32)

v1.DownwardAPIVolumeFile

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.

true

v1.ObjectFieldSelector

v1.ContainerPort

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

v1.PodSpec

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: http://kubernetes.io/v1.1/docs/user-guide/volumes.html

false

v1.Volume array

containers

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

true

v1.Container array

restartPolicy

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

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 ClusterFirst or Default. Defaults to "ClusterFirst".

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: http://kubernetes.io/v1.1/docs/user-guide/node-selection/README.html

false

any

serviceAccountName

ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://kubernetes.io/v1.1/docs/design/service_accounts.html

false

string

serviceAccount

DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

false

string

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

imagePullSecrets

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

false

v1.LocalObjectReference array

v1beta1.HorizontalPodAutoscalerList

list of horizontal pod autoscaler 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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

string

apiVersion

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

false

string

metadata

Standard list metadata.

false

unversioned.ListMeta

items

list of horizontal pod autoscaler objects.

true

v1beta1.HorizontalPodAutoscaler array

v1.Lifecycle

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: http://kubernetes.io/v1.1/docs/user-guide/container-environment.html#hook-details

false

v1.Handler

preStop

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

false

v1.Handler

v1.Handler

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

v1.ExecAction

httpGet

HTTPGet specifies the http request to perform.

false

v1.HTTPGetAction

tcpSocket

TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

false

v1.TCPSocketAction

v1.GlusterfsVolumeSource

GlusterfsVolumeSource represents a Glusterfs Mount that lasts the lifetime of a pod.

Name Description Required Schema Default

endpoints

EndpointsName is the endpoint name that details Glusterfs topology. More info: http://kubernetes.io/v1.1/examples/glusterfs/README.html#create-a-pod

true

string

path

Path is the Glusterfs volume path. More info: http://kubernetes.io/v1.1/examples/glusterfs/README.html#create-a-pod

true

string

readOnly

ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://kubernetes.io/v1.1/examples/glusterfs/README.html#create-a-pod

false

boolean

false

v1beta1.HTTPIngressPath

IngressPath associates a path regex with an IngressBackend. Incoming urls matching the Path are forwarded to the Backend.

Name Description Required Schema Default

path

Path is a regex matched against the url of an incoming request.

false

string

backend

Define the referenced service endpoint which the traffic will be forwarded to.

true

v1beta1.IngressBackend

v1beta1.SubresourceReference

SubresourceReference contains enough information to let you inspect or modify the referred subresource.

Name Description Required Schema Default

kind

Kind of the referent; More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds"

false

string

namespace

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

false

string

name

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

false

string

apiVersion

API version of the referent

false

string

subresource

Subresource name of the referent

false

string

v1beta1.Ingress

Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.

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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

string

apiVersion

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

false

string

metadata

Standard object’s metadata. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#metadata

false

v1.ObjectMeta

spec

Spec is the desired state of the Ingress. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#spec-and-status

false

v1beta1.IngressSpec

status

Status is the current state of the Ingress. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#spec-and-status

false

v1beta1.IngressStatus

v1beta1.Scale

represents a scaling request for a resource.

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: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#types-kinds

false

string

apiVersion

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

false

string

metadata

Standard object metadata; More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#metadata.

false

v1.ObjectMeta

spec

defines the behavior of the scale. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#spec-and-status.

false

v1beta1.ScaleSpec

status

current status of the scale. More info: http://kubernetes.io/v1.1/docs/devel/api-conventions.html#spec-and-status. Read-only.

false

v1beta1.ScaleStatus

v1.RBDVolumeSource

RBDVolumeSource represents a Rados Block Device Mount that lasts the lifetime of a pod

Name Description Required Schema Default

monitors

A collection of Ceph monitors. More info: http://kubernetes.io/v1.1/examples/rbd/README.html#how-to-use-it

true

string array

image

The rados image name. More info: http://kubernetes.io/v1.1/examples/rbd/README.html#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". More info: http://kubernetes.io/v1.1/docs/user-guide/volumes.html#rbd

false

string

pool

The rados pool name. Default is rbd. More info: http://kubernetes.io/v1.1/examples/rbd/README.html#how-to-use-it.

true

string

user

The rados user name. Default is admin. More info: http://kubernetes.io/v1.1/examples/rbd/README.html#how-to-use-it

true

string

keyring

Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://kubernetes.io/v1.1/examples/rbd/README.html#how-to-use-it

true

string

secretRef

SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is empty. More info: http://kubernetes.io/v1.1/examples/rbd/README.html#how-to-use-it

true

v1.LocalObjectReference

readOnly

ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/v1.1/examples/rbd/README.html#how-to-use-it

false

boolean

false

any

Represents an untyped JSON map - see the description of the field for more info about the structure of this object.

Analytics