v1

package
v1.15.0-kw4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 15, 2023 License: Apache-2.0 Imports: 8 Imported by: 6

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

This section is empty.

Functions ¶

This section is empty.

Types ¶

type AWSElasticBlockStoreVolumeSource ¶

type AWSElasticBlockStoreVolumeSource struct {

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

	// 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).
	Partition int32 `json:"partition,omitempty"`

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

	// Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
	// Required: true
	VolumeID *string `json:"volumeID"`
}

AWSElasticBlockStoreVolumeSource Represents a Persistent Disk resource in AWS.

An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.

swagger:model AWSElasticBlockStoreVolumeSource

func (AWSElasticBlockStoreVolumeSource) MarshalEasyJSON ¶

func (v AWSElasticBlockStoreVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AWSElasticBlockStoreVolumeSource) MarshalJSON ¶

func (v AWSElasticBlockStoreVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AWSElasticBlockStoreVolumeSource) UnmarshalEasyJSON ¶

func (v *AWSElasticBlockStoreVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AWSElasticBlockStoreVolumeSource) UnmarshalJSON ¶

func (v *AWSElasticBlockStoreVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Affinity ¶

type Affinity struct {

	// Describes node affinity scheduling rules for the pod.
	NodeAffinity *NodeAffinity `json:"nodeAffinity,omitempty"`

	// Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).
	PodAffinity *PodAffinity `json:"podAffinity,omitempty"`

	// Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).
	PodAntiAffinity *PodAntiAffinity `json:"podAntiAffinity,omitempty"`
}

Affinity Affinity is a group of affinity scheduling rules.

swagger:model Affinity

func (Affinity) MarshalEasyJSON ¶

func (v Affinity) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Affinity) MarshalJSON ¶

func (v Affinity) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Affinity) UnmarshalEasyJSON ¶

func (v *Affinity) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Affinity) UnmarshalJSON ¶

func (v *Affinity) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AttachedVolume ¶

type AttachedVolume struct {

	// DevicePath represents the device path where the volume should be available
	// Required: true
	DevicePath *string `json:"devicePath"`

	// Name of the attached volume
	// Required: true
	Name *string `json:"name"`
}

AttachedVolume AttachedVolume describes a volume attached to a node

swagger:model AttachedVolume

func (AttachedVolume) MarshalEasyJSON ¶

func (v AttachedVolume) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AttachedVolume) MarshalJSON ¶

func (v AttachedVolume) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AttachedVolume) UnmarshalEasyJSON ¶

func (v *AttachedVolume) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AttachedVolume) UnmarshalJSON ¶

func (v *AttachedVolume) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AzureDiskVolumeSource ¶

type AzureDiskVolumeSource struct {

	// Host Caching mode: None, Read Only, Read Write.
	CachingMode string `json:"cachingMode,omitempty"`

	// The Name of the data disk in the blob storage
	// Required: true
	DiskName *string `json:"diskName"`

	// The URI the data disk in the blob storage
	// Required: true
	DiskURI *string `json:"diskURI"`

	// 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.
	FsType string `json:"fsType,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`
}

AzureDiskVolumeSource AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

swagger:model AzureDiskVolumeSource

func (AzureDiskVolumeSource) MarshalEasyJSON ¶

func (v AzureDiskVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AzureDiskVolumeSource) MarshalJSON ¶

func (v AzureDiskVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AzureDiskVolumeSource) UnmarshalEasyJSON ¶

func (v *AzureDiskVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AzureDiskVolumeSource) UnmarshalJSON ¶

func (v *AzureDiskVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AzureFilePersistentVolumeSource ¶

type AzureFilePersistentVolumeSource struct {

	// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// the name of secret that contains Azure Storage Account Name and Key
	// Required: true
	SecretName *string `json:"secretName"`

	// the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod
	SecretNamespace string `json:"secretNamespace,omitempty"`

	// Share Name
	// Required: true
	ShareName *string `json:"shareName"`
}

AzureFilePersistentVolumeSource AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

swagger:model AzureFilePersistentVolumeSource

func (AzureFilePersistentVolumeSource) MarshalEasyJSON ¶

func (v AzureFilePersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AzureFilePersistentVolumeSource) MarshalJSON ¶

func (v AzureFilePersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AzureFilePersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *AzureFilePersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AzureFilePersistentVolumeSource) UnmarshalJSON ¶

func (v *AzureFilePersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AzureFileVolumeSource ¶

type AzureFileVolumeSource struct {

	// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// the name of secret that contains Azure Storage Account Name and Key
	// Required: true
	SecretName *string `json:"secretName"`

	// Share Name
	// Required: true
	ShareName *string `json:"shareName"`
}

AzureFileVolumeSource AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

swagger:model AzureFileVolumeSource

func (AzureFileVolumeSource) MarshalEasyJSON ¶

func (v AzureFileVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AzureFileVolumeSource) MarshalJSON ¶

func (v AzureFileVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AzureFileVolumeSource) UnmarshalEasyJSON ¶

func (v *AzureFileVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AzureFileVolumeSource) UnmarshalJSON ¶

func (v *AzureFileVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Binding ¶

type Binding struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// The target object that you want to bind to the standard object.
	// Required: true
	Target *ObjectReference `json:"target"`
}

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

swagger:model Binding

func (Binding) MarshalEasyJSON ¶

func (v Binding) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Binding) MarshalJSON ¶

func (v Binding) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Binding) UnmarshalEasyJSON ¶

func (v *Binding) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Binding) UnmarshalJSON ¶

func (v *Binding) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CSIPersistentVolumeSource ¶

type CSIPersistentVolumeSource struct {

	// ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.
	ControllerExpandSecretRef *SecretReference `json:"controllerExpandSecretRef,omitempty"`

	// ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.
	ControllerPublishSecretRef *SecretReference `json:"controllerPublishSecretRef,omitempty"`

	// Driver is the name of the driver to use for this volume. Required.
	// Required: true
	Driver *string `json:"driver"`

	// Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs".
	FsType string `json:"fsType,omitempty"`

	// NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.
	NodePublishSecretRef *SecretReference `json:"nodePublishSecretRef,omitempty"`

	// NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.
	NodeStageSecretRef *SecretReference `json:"nodeStageSecretRef,omitempty"`

	// Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).
	ReadOnly bool `json:"readOnly,omitempty"`

	// Attributes of the volume to publish.
	VolumeAttributes map[string]string `json:"volumeAttributes,omitempty"`

	// VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.
	// Required: true
	VolumeHandle *string `json:"volumeHandle"`
}

CSIPersistentVolumeSource Represents storage that is managed by an external CSI volume driver (Beta feature)

swagger:model CSIPersistentVolumeSource

func (CSIPersistentVolumeSource) MarshalEasyJSON ¶

func (v CSIPersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CSIPersistentVolumeSource) MarshalJSON ¶

func (v CSIPersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CSIPersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *CSIPersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CSIPersistentVolumeSource) UnmarshalJSON ¶

func (v *CSIPersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CSIVolumeSource ¶

type CSIVolumeSource struct {

	// Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.
	// Required: true
	Driver *string `json:"driver"`

	// Filesystem type to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.
	FsType string `json:"fsType,omitempty"`

	// NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and  may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.
	NodePublishSecretRef *LocalObjectReference `json:"nodePublishSecretRef,omitempty"`

	// Specifies a read-only configuration for the volume. Defaults to false (read/write).
	ReadOnly bool `json:"readOnly,omitempty"`

	// VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.
	VolumeAttributes map[string]string `json:"volumeAttributes,omitempty"`
}

CSIVolumeSource Represents a source location of a volume to mount, managed by an external CSI driver

swagger:model CSIVolumeSource

func (CSIVolumeSource) MarshalEasyJSON ¶

func (v CSIVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CSIVolumeSource) MarshalJSON ¶

func (v CSIVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CSIVolumeSource) UnmarshalEasyJSON ¶

func (v *CSIVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CSIVolumeSource) UnmarshalJSON ¶

func (v *CSIVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Capabilities ¶

type Capabilities struct {

	// Added capabilities
	Add []string `json:"add,omitempty"`

	// Removed capabilities
	Drop []string `json:"drop,omitempty"`
}

Capabilities Adds and removes POSIX capabilities from running containers.

swagger:model Capabilities

func (Capabilities) MarshalEasyJSON ¶

func (v Capabilities) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Capabilities) MarshalJSON ¶

func (v Capabilities) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Capabilities) UnmarshalEasyJSON ¶

func (v *Capabilities) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Capabilities) UnmarshalJSON ¶

func (v *Capabilities) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CephFSPersistentVolumeSource ¶

type CephFSPersistentVolumeSource struct {

	// Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
	// Required: true
	Monitors []string `json:"monitors"`

	// Optional: Used as the mounted root, rather than the full Ceph tree, default is /
	Path string `json:"path,omitempty"`

	// 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
	ReadOnly bool `json:"readOnly,omitempty"`

	// 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
	SecretFile string `json:"secretFile,omitempty"`

	// 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
	SecretRef *SecretReference `json:"secretRef,omitempty"`

	// 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
	User string `json:"user,omitempty"`
}

CephFSPersistentVolumeSource Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

swagger:model CephFSPersistentVolumeSource

func (CephFSPersistentVolumeSource) MarshalEasyJSON ¶

func (v CephFSPersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CephFSPersistentVolumeSource) MarshalJSON ¶

func (v CephFSPersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CephFSPersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *CephFSPersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CephFSPersistentVolumeSource) UnmarshalJSON ¶

func (v *CephFSPersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CephFSVolumeSource ¶

type CephFSVolumeSource struct {

	// Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
	// Required: true
	Monitors []string `json:"monitors"`

	// Optional: Used as the mounted root, rather than the full Ceph tree, default is /
	Path string `json:"path,omitempty"`

	// 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
	ReadOnly bool `json:"readOnly,omitempty"`

	// 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
	SecretFile string `json:"secretFile,omitempty"`

	// 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
	SecretRef *LocalObjectReference `json:"secretRef,omitempty"`

	// 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
	User string `json:"user,omitempty"`
}

CephFSVolumeSource Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

swagger:model CephFSVolumeSource

func (CephFSVolumeSource) MarshalEasyJSON ¶

func (v CephFSVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CephFSVolumeSource) MarshalJSON ¶

func (v CephFSVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CephFSVolumeSource) UnmarshalEasyJSON ¶

func (v *CephFSVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CephFSVolumeSource) UnmarshalJSON ¶

func (v *CephFSVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CinderPersistentVolumeSource ¶

type CinderPersistentVolumeSource struct {

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

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

	// Optional: points to a secret object containing parameters used to connect to OpenStack.
	SecretRef *SecretReference `json:"secretRef,omitempty"`

	// volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
	// Required: true
	VolumeID *string `json:"volumeID"`
}

CinderPersistentVolumeSource 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. Cinder volumes support ownership management and SELinux relabeling.

swagger:model CinderPersistentVolumeSource

func (CinderPersistentVolumeSource) MarshalEasyJSON ¶

func (v CinderPersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CinderPersistentVolumeSource) MarshalJSON ¶

func (v CinderPersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CinderPersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *CinderPersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CinderPersistentVolumeSource) UnmarshalJSON ¶

func (v *CinderPersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CinderVolumeSource ¶

type CinderVolumeSource struct {

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

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

	// Optional: points to a secret object containing parameters used to connect to OpenStack.
	SecretRef *LocalObjectReference `json:"secretRef,omitempty"`

	// volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
	// Required: true
	VolumeID *string `json:"volumeID"`
}

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. Cinder volumes support ownership management and SELinux relabeling.

swagger:model CinderVolumeSource

func (CinderVolumeSource) MarshalEasyJSON ¶

func (v CinderVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CinderVolumeSource) MarshalJSON ¶

func (v CinderVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CinderVolumeSource) UnmarshalEasyJSON ¶

func (v *CinderVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CinderVolumeSource) UnmarshalJSON ¶

func (v *CinderVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ClientIPConfig ¶

type ClientIPConfig struct {

	// timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". Default value is 10800(for 3 hours).
	TimeoutSeconds int32 `json:"timeoutSeconds,omitempty"`
}

ClientIPConfig ClientIPConfig represents the configurations of Client IP based session affinity.

swagger:model ClientIPConfig

func (ClientIPConfig) MarshalEasyJSON ¶

func (v ClientIPConfig) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ClientIPConfig) MarshalJSON ¶

func (v ClientIPConfig) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ClientIPConfig) UnmarshalEasyJSON ¶

func (v *ClientIPConfig) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ClientIPConfig) UnmarshalJSON ¶

func (v *ClientIPConfig) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ComponentCondition ¶

type ComponentCondition struct {

	// Condition error code for a component. For example, a health check error code.
	Error string `json:"error,omitempty"`

	// Message about the condition for a component. For example, information about a health check.
	Message string `json:"message,omitempty"`

	// Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".
	// Required: true
	Status *string `json:"status"`

	// Type of condition for a component. Valid value: "Healthy"
	// Required: true
	Type *string `json:"type"`
}

ComponentCondition Information about the condition of a component.

swagger:model ComponentCondition

func (ComponentCondition) MarshalEasyJSON ¶

func (v ComponentCondition) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ComponentCondition) MarshalJSON ¶

func (v ComponentCondition) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ComponentCondition) UnmarshalEasyJSON ¶

func (v *ComponentCondition) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ComponentCondition) UnmarshalJSON ¶

func (v *ComponentCondition) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ComponentStatus ¶

type ComponentStatus struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of component conditions observed
	Conditions []*ComponentCondition `json:"conditions,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`
}

ComponentStatus ComponentStatus (and ComponentStatusList) holds the cluster validation info.

swagger:model ComponentStatus

func (ComponentStatus) MarshalEasyJSON ¶

func (v ComponentStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ComponentStatus) MarshalJSON ¶

func (v ComponentStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ComponentStatus) UnmarshalEasyJSON ¶

func (v *ComponentStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ComponentStatus) UnmarshalJSON ¶

func (v *ComponentStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ComponentStatusList ¶

type ComponentStatusList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of ComponentStatus objects.
	// Required: true
	Items []*ComponentStatus `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

ComponentStatusList Status of all the conditions for the component as a list of ComponentStatus objects.

swagger:model ComponentStatusList

func (ComponentStatusList) MarshalEasyJSON ¶

func (v ComponentStatusList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ComponentStatusList) MarshalJSON ¶

func (v ComponentStatusList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ComponentStatusList) UnmarshalEasyJSON ¶

func (v *ComponentStatusList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ComponentStatusList) UnmarshalJSON ¶

func (v *ComponentStatusList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ConfigMap ¶

type ConfigMap struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.
	BinaryData map[string]strfmt.Base64 `json:"binaryData,omitempty"`

	// Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.
	Data map[string]string `json:"data,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`
}

ConfigMap ConfigMap holds configuration data for pods to consume.

swagger:model ConfigMap

func (ConfigMap) MarshalEasyJSON ¶

func (v ConfigMap) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ConfigMap) MarshalJSON ¶

func (v ConfigMap) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ConfigMap) UnmarshalEasyJSON ¶

func (v *ConfigMap) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ConfigMap) UnmarshalJSON ¶

func (v *ConfigMap) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ConfigMapEnvSource ¶

type ConfigMapEnvSource struct {

	// Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`

	// Specify whether the ConfigMap must be defined
	Optional bool `json:"optional,omitempty"`
}

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

swagger:model ConfigMapEnvSource

func (ConfigMapEnvSource) MarshalEasyJSON ¶

func (v ConfigMapEnvSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ConfigMapEnvSource) MarshalJSON ¶

func (v ConfigMapEnvSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ConfigMapEnvSource) UnmarshalEasyJSON ¶

func (v *ConfigMapEnvSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ConfigMapEnvSource) UnmarshalJSON ¶

func (v *ConfigMapEnvSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ConfigMapKeySelector ¶

type ConfigMapKeySelector struct {

	// The key to select.
	// Required: true
	Key *string `json:"key"`

	// Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`

	// Specify whether the ConfigMap or its key must be defined
	Optional bool `json:"optional,omitempty"`
}

ConfigMapKeySelector Selects a key from a ConfigMap.

swagger:model ConfigMapKeySelector

func (ConfigMapKeySelector) MarshalEasyJSON ¶

func (v ConfigMapKeySelector) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ConfigMapKeySelector) MarshalJSON ¶

func (v ConfigMapKeySelector) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ConfigMapKeySelector) UnmarshalEasyJSON ¶

func (v *ConfigMapKeySelector) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ConfigMapKeySelector) UnmarshalJSON ¶

func (v *ConfigMapKeySelector) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ConfigMapList ¶

type ConfigMapList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// Items is the list of ConfigMaps.
	// Required: true
	Items []*ConfigMap `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

ConfigMapList ConfigMapList is a resource containing a list of ConfigMap objects.

swagger:model ConfigMapList

func (ConfigMapList) MarshalEasyJSON ¶

func (v ConfigMapList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ConfigMapList) MarshalJSON ¶

func (v ConfigMapList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ConfigMapList) UnmarshalEasyJSON ¶

func (v *ConfigMapList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ConfigMapList) UnmarshalJSON ¶

func (v *ConfigMapList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ConfigMapNodeConfigSource ¶

type ConfigMapNodeConfigSource struct {

	// KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.
	// Required: true
	KubeletConfigKey *string `json:"kubeletConfigKey"`

	// Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.
	// Required: true
	Name *string `json:"name"`

	// Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.
	// Required: true
	Namespace *string `json:"namespace"`

	// ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.
	ResourceVersion string `json:"resourceVersion,omitempty"`

	// UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.
	UID string `json:"uid,omitempty"`
}

ConfigMapNodeConfigSource ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.

swagger:model ConfigMapNodeConfigSource

func (ConfigMapNodeConfigSource) MarshalEasyJSON ¶

func (v ConfigMapNodeConfigSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ConfigMapNodeConfigSource) MarshalJSON ¶

func (v ConfigMapNodeConfigSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ConfigMapNodeConfigSource) UnmarshalEasyJSON ¶

func (v *ConfigMapNodeConfigSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ConfigMapNodeConfigSource) UnmarshalJSON ¶

func (v *ConfigMapNodeConfigSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ConfigMapProjection ¶

type ConfigMapProjection struct {

	// 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 '..'.
	Items []*KeyToPath `json:"items,omitempty"`

	// Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`

	// Specify whether the ConfigMap or its keys must be defined
	Optional bool `json:"optional,omitempty"`
}

ConfigMapProjection Adapts a ConfigMap into a projected volume.

The contents of the target ConfigMap's Data field will be presented in a projected 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. Note that this is identical to a configmap volume source without the default mode.

swagger:model ConfigMapProjection

func (ConfigMapProjection) MarshalEasyJSON ¶

func (v ConfigMapProjection) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ConfigMapProjection) MarshalJSON ¶

func (v ConfigMapProjection) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ConfigMapProjection) UnmarshalEasyJSON ¶

func (v *ConfigMapProjection) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ConfigMapProjection) UnmarshalJSON ¶

func (v *ConfigMapProjection) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ConfigMapVolumeSource ¶

type ConfigMapVolumeSource struct {

	// 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.
	DefaultMode int32 `json:"defaultMode,omitempty"`

	// 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 '..'.
	Items []*KeyToPath `json:"items,omitempty"`

	// Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`

	// Specify whether the ConfigMap or its keys must be defined
	Optional bool `json:"optional,omitempty"`
}

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

swagger:model ConfigMapVolumeSource

func (ConfigMapVolumeSource) MarshalEasyJSON ¶

func (v ConfigMapVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ConfigMapVolumeSource) MarshalJSON ¶

func (v ConfigMapVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ConfigMapVolumeSource) UnmarshalEasyJSON ¶

func (v *ConfigMapVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ConfigMapVolumeSource) UnmarshalJSON ¶

func (v *ConfigMapVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Container ¶

type Container struct {

	// 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
	Args []string `json:"args,omitempty"`

	// 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
	Command []string `json:"command,omitempty"`

	// List of environment variables to set in the container. Cannot be updated.
	Env []*EnvVar `json:"env,omitempty"`

	// 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.
	EnvFrom []*EnvFromSource `json:"envFrom,omitempty"`

	// 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.
	Image string `json:"image,omitempty"`

	// 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
	ImagePullPolicy string `json:"imagePullPolicy,omitempty"`

	// Actions that the management system should take in response to container lifecycle events. Cannot be updated.
	Lifecycle *Lifecycle `json:"lifecycle,omitempty"`

	// 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
	LivenessProbe *Probe `json:"livenessProbe,omitempty"`

	// Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
	// Required: true
	Name *string `json:"name"`

	// 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.
	Ports []*ContainerPort `json:"ports,omitempty"`

	// 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
	ReadinessProbe *Probe `json:"readinessProbe,omitempty"`

	// Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
	Resources *ResourceRequirements `json:"resources,omitempty"`

	// 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/
	SecurityContext *SecurityContext `json:"securityContext,omitempty"`

	// 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.
	Stdin bool `json:"stdin,omitempty"`

	// 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
	StdinOnce bool `json:"stdinOnce,omitempty"`

	// 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.
	TerminationMessagePath string `json:"terminationMessagePath,omitempty"`

	// 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.
	TerminationMessagePolicy string `json:"terminationMessagePolicy,omitempty"`

	// Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.
	Tty bool `json:"tty,omitempty"`

	// volumeDevices is the list of block devices to be used by the container. This is a beta feature.
	VolumeDevices []*VolumeDevice `json:"volumeDevices,omitempty"`

	// Pod volumes to mount into the container's filesystem. Cannot be updated.
	VolumeMounts []*VolumeMount `json:"volumeMounts,omitempty"`

	// 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.
	WorkingDir string `json:"workingDir,omitempty"`
}

Container A single application container that you want to run within a pod.

swagger:model Container

func (Container) MarshalEasyJSON ¶

func (v Container) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Container) MarshalJSON ¶

func (v Container) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Container) UnmarshalEasyJSON ¶

func (v *Container) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Container) UnmarshalJSON ¶

func (v *Container) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ContainerImage ¶

type ContainerImage struct {

	// Names by which this image is known. e.g. ["k8s.gcr.io/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"]
	// Required: true
	Names []string `json:"names"`

	// The size of the image in bytes.
	SizeBytes int64 `json:"sizeBytes,omitempty"`
}

ContainerImage Describe a container image

swagger:model ContainerImage

func (ContainerImage) MarshalEasyJSON ¶

func (v ContainerImage) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ContainerImage) MarshalJSON ¶

func (v ContainerImage) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ContainerImage) UnmarshalEasyJSON ¶

func (v *ContainerImage) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ContainerImage) UnmarshalJSON ¶

func (v *ContainerImage) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ContainerPort ¶

type ContainerPort struct {

	// Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.
	// Required: true
	ContainerPort *int32 `json:"containerPort"`

	// What host IP to bind the external port to.
	HostIP string `json:"hostIP,omitempty"`

	// 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.
	HostPort int32 `json:"hostPort,omitempty"`

	// 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.
	Name string `json:"name,omitempty"`

	// Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".
	Protocol string `json:"protocol,omitempty"`
}

ContainerPort ContainerPort represents a network port in a single container.

swagger:model ContainerPort

func (ContainerPort) MarshalEasyJSON ¶

func (v ContainerPort) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ContainerPort) MarshalJSON ¶

func (v ContainerPort) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ContainerPort) UnmarshalEasyJSON ¶

func (v *ContainerPort) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ContainerPort) UnmarshalJSON ¶

func (v *ContainerPort) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ContainerState ¶

type ContainerState struct {

	// Details about a running container
	Running *ContainerStateRunning `json:"running,omitempty"`

	// Details about a terminated container
	Terminated *ContainerStateTerminated `json:"terminated,omitempty"`

	// Details about a waiting container
	Waiting *ContainerStateWaiting `json:"waiting,omitempty"`
}

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

swagger:model ContainerState

func (ContainerState) MarshalEasyJSON ¶

func (v ContainerState) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ContainerState) MarshalJSON ¶

func (v ContainerState) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ContainerState) UnmarshalEasyJSON ¶

func (v *ContainerState) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ContainerState) UnmarshalJSON ¶

func (v *ContainerState) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ContainerStateRunning ¶

type ContainerStateRunning struct {

	// Time at which the container was last (re-)started
	StartedAt *apimachinery_pkg_apis_meta_v1.Time `json:"startedAt,omitempty"`
}

ContainerStateRunning ContainerStateRunning is a running state of a container.

swagger:model ContainerStateRunning

func (ContainerStateRunning) MarshalEasyJSON ¶

func (v ContainerStateRunning) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ContainerStateRunning) MarshalJSON ¶

func (v ContainerStateRunning) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ContainerStateRunning) UnmarshalEasyJSON ¶

func (v *ContainerStateRunning) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ContainerStateRunning) UnmarshalJSON ¶

func (v *ContainerStateRunning) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ContainerStateTerminated ¶

type ContainerStateTerminated struct {

	// Container's ID in the format 'docker://<container_id>'
	ContainerID string `json:"containerID,omitempty"`

	// Exit status from the last termination of the container
	// Required: true
	ExitCode *int32 `json:"exitCode"`

	// Time at which the container last terminated
	FinishedAt *apimachinery_pkg_apis_meta_v1.Time `json:"finishedAt,omitempty"`

	// Message regarding the last termination of the container
	Message string `json:"message,omitempty"`

	// (brief) reason from the last termination of the container
	Reason string `json:"reason,omitempty"`

	// Signal from the last termination of the container
	Signal int32 `json:"signal,omitempty"`

	// Time at which previous execution of the container started
	StartedAt *apimachinery_pkg_apis_meta_v1.Time `json:"startedAt,omitempty"`
}

ContainerStateTerminated ContainerStateTerminated is a terminated state of a container.

swagger:model ContainerStateTerminated

func (ContainerStateTerminated) MarshalEasyJSON ¶

func (v ContainerStateTerminated) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ContainerStateTerminated) MarshalJSON ¶

func (v ContainerStateTerminated) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ContainerStateTerminated) UnmarshalEasyJSON ¶

func (v *ContainerStateTerminated) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ContainerStateTerminated) UnmarshalJSON ¶

func (v *ContainerStateTerminated) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ContainerStateWaiting ¶

type ContainerStateWaiting struct {

	// Message regarding why the container is not yet running.
	Message string `json:"message,omitempty"`

	// (brief) reason the container is not yet running.
	Reason string `json:"reason,omitempty"`
}

ContainerStateWaiting ContainerStateWaiting is a waiting state of a container.

swagger:model ContainerStateWaiting

func (ContainerStateWaiting) MarshalEasyJSON ¶

func (v ContainerStateWaiting) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ContainerStateWaiting) MarshalJSON ¶

func (v ContainerStateWaiting) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ContainerStateWaiting) UnmarshalEasyJSON ¶

func (v *ContainerStateWaiting) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ContainerStateWaiting) UnmarshalJSON ¶

func (v *ContainerStateWaiting) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ContainerStatus ¶

type ContainerStatus struct {

	// Container's ID in the format 'docker://<container_id>'.
	ContainerID string `json:"containerID,omitempty"`

	// The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images
	// Required: true
	Image *string `json:"image"`

	// ImageID of the container's image.
	// Required: true
	ImageID *string `json:"imageID"`

	// Details about the container's last termination condition.
	LastState *ContainerState `json:"lastState,omitempty"`

	// This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.
	// Required: true
	Name *string `json:"name"`

	// Specifies whether the container has passed its readiness probe.
	// Required: true
	Ready *bool `json:"ready"`

	// The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.
	// Required: true
	RestartCount *int32 `json:"restartCount"`

	// Details about the container's current condition.
	State *ContainerState `json:"state,omitempty"`
}

ContainerStatus ContainerStatus contains details for the current status of this container.

swagger:model ContainerStatus

func (ContainerStatus) MarshalEasyJSON ¶

func (v ContainerStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ContainerStatus) MarshalJSON ¶

func (v ContainerStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ContainerStatus) UnmarshalEasyJSON ¶

func (v *ContainerStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ContainerStatus) UnmarshalJSON ¶

func (v *ContainerStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type DaemonEndpoint ¶

type DaemonEndpoint struct {

	// Port number of the given endpoint.
	// Required: true
	Port *int32 `json:"Port"`
}

DaemonEndpoint DaemonEndpoint contains information about a single Daemon endpoint.

swagger:model DaemonEndpoint

func (DaemonEndpoint) MarshalEasyJSON ¶

func (v DaemonEndpoint) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DaemonEndpoint) MarshalJSON ¶

func (v DaemonEndpoint) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DaemonEndpoint) UnmarshalEasyJSON ¶

func (v *DaemonEndpoint) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DaemonEndpoint) UnmarshalJSON ¶

func (v *DaemonEndpoint) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type DownwardAPIProjection ¶

type DownwardAPIProjection struct {

	// Items is a list of DownwardAPIVolume file
	Items []*DownwardAPIVolumeFile `json:"items,omitempty"`
}

DownwardAPIProjection Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.

swagger:model DownwardAPIProjection

func (DownwardAPIProjection) MarshalEasyJSON ¶

func (v DownwardAPIProjection) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DownwardAPIProjection) MarshalJSON ¶

func (v DownwardAPIProjection) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DownwardAPIProjection) UnmarshalEasyJSON ¶

func (v *DownwardAPIProjection) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DownwardAPIProjection) UnmarshalJSON ¶

func (v *DownwardAPIProjection) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type DownwardAPIVolumeFile ¶

type DownwardAPIVolumeFile struct {

	// Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.
	FieldRef *ObjectFieldSelector `json:"fieldRef,omitempty"`

	// 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.
	Mode int32 `json:"mode,omitempty"`

	// 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 '..'
	// Required: true
	Path *string `json:"path"`

	// Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.
	ResourceFieldRef *ResourceFieldSelector `json:"resourceFieldRef,omitempty"`
}

DownwardAPIVolumeFile DownwardAPIVolumeFile represents information to create the file containing the pod field

swagger:model DownwardAPIVolumeFile

func (DownwardAPIVolumeFile) MarshalEasyJSON ¶

func (v DownwardAPIVolumeFile) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DownwardAPIVolumeFile) MarshalJSON ¶

func (v DownwardAPIVolumeFile) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DownwardAPIVolumeFile) UnmarshalEasyJSON ¶

func (v *DownwardAPIVolumeFile) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DownwardAPIVolumeFile) UnmarshalJSON ¶

func (v *DownwardAPIVolumeFile) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type DownwardAPIVolumeSource ¶

type DownwardAPIVolumeSource struct {

	// 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.
	DefaultMode int32 `json:"defaultMode,omitempty"`

	// Items is a list of downward API volume file
	Items []*DownwardAPIVolumeFile `json:"items,omitempty"`
}

DownwardAPIVolumeSource DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

swagger:model DownwardAPIVolumeSource

func (DownwardAPIVolumeSource) MarshalEasyJSON ¶

func (v DownwardAPIVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DownwardAPIVolumeSource) MarshalJSON ¶

func (v DownwardAPIVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DownwardAPIVolumeSource) UnmarshalEasyJSON ¶

func (v *DownwardAPIVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DownwardAPIVolumeSource) UnmarshalJSON ¶

func (v *DownwardAPIVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EmptyDirVolumeSource ¶

type EmptyDirVolumeSource struct {

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

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

EmptyDirVolumeSource Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

swagger:model EmptyDirVolumeSource

func (EmptyDirVolumeSource) MarshalEasyJSON ¶

func (v EmptyDirVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EmptyDirVolumeSource) MarshalJSON ¶

func (v EmptyDirVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EmptyDirVolumeSource) UnmarshalEasyJSON ¶

func (v *EmptyDirVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EmptyDirVolumeSource) UnmarshalJSON ¶

func (v *EmptyDirVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EndpointAddress ¶

type EndpointAddress struct {

	// The Hostname of this endpoint
	Hostname string `json:"hostname,omitempty"`

	// 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.
	// Required: true
	IP *string `json:"ip"`

	// Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.
	NodeName string `json:"nodeName,omitempty"`

	// Reference to object providing the endpoint.
	TargetRef *ObjectReference `json:"targetRef,omitempty"`
}

EndpointAddress EndpointAddress is a tuple that describes single IP address.

swagger:model EndpointAddress

func (EndpointAddress) MarshalEasyJSON ¶

func (v EndpointAddress) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EndpointAddress) MarshalJSON ¶

func (v EndpointAddress) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EndpointAddress) UnmarshalEasyJSON ¶

func (v *EndpointAddress) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EndpointAddress) UnmarshalJSON ¶

func (v *EndpointAddress) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EndpointPort ¶

type EndpointPort struct {

	// The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.
	Name string `json:"name,omitempty"`

	// The port number of the endpoint.
	// Required: true
	Port *int32 `json:"port"`

	// The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.
	Protocol string `json:"protocol,omitempty"`
}

EndpointPort EndpointPort is a tuple that describes a single port.

swagger:model EndpointPort

func (EndpointPort) MarshalEasyJSON ¶

func (v EndpointPort) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EndpointPort) MarshalJSON ¶

func (v EndpointPort) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EndpointPort) UnmarshalEasyJSON ¶

func (v *EndpointPort) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EndpointPort) UnmarshalJSON ¶

func (v *EndpointPort) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EndpointSubset ¶

type EndpointSubset struct {

	// IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.
	Addresses []*EndpointAddress `json:"addresses,omitempty"`

	// IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.
	NotReadyAddresses []*EndpointAddress `json:"notReadyAddresses,omitempty"`

	// Port numbers available on the related IP addresses.
	Ports []*EndpointPort `json:"ports,omitempty"`
}

EndpointSubset EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:

{
  Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
  Ports:     [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
}

The resulting set of endpoints can be viewed as:

a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],
b: [ 10.10.1.1:309, 10.10.2.2:309 ]

swagger:model EndpointSubset

func (EndpointSubset) MarshalEasyJSON ¶

func (v EndpointSubset) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EndpointSubset) MarshalJSON ¶

func (v EndpointSubset) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EndpointSubset) UnmarshalEasyJSON ¶

func (v *EndpointSubset) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EndpointSubset) UnmarshalJSON ¶

func (v *EndpointSubset) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Endpoints ¶

type Endpoints struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// 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.
	Subsets []*EndpointSubset `json:"subsets,omitempty"`
}

Endpoints 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}]
   },
]

swagger:model Endpoints

func (Endpoints) MarshalEasyJSON ¶

func (v Endpoints) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Endpoints) MarshalJSON ¶

func (v Endpoints) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Endpoints) UnmarshalEasyJSON ¶

func (v *Endpoints) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Endpoints) UnmarshalJSON ¶

func (v *Endpoints) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EndpointsList ¶

type EndpointsList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of endpoints.
	// Required: true
	Items []*Endpoints `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

EndpointsList EndpointsList is a list of endpoints.

swagger:model EndpointsList

func (EndpointsList) MarshalEasyJSON ¶

func (v EndpointsList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EndpointsList) MarshalJSON ¶

func (v EndpointsList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EndpointsList) UnmarshalEasyJSON ¶

func (v *EndpointsList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EndpointsList) UnmarshalJSON ¶

func (v *EndpointsList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EnvFromSource ¶

type EnvFromSource struct {

	// The ConfigMap to select from
	ConfigMapRef *ConfigMapEnvSource `json:"configMapRef,omitempty"`

	// An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
	Prefix string `json:"prefix,omitempty"`

	// The Secret to select from
	SecretRef *SecretEnvSource `json:"secretRef,omitempty"`
}

EnvFromSource EnvFromSource represents the source of a set of ConfigMaps

swagger:model EnvFromSource

func (EnvFromSource) MarshalEasyJSON ¶

func (v EnvFromSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EnvFromSource) MarshalJSON ¶

func (v EnvFromSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EnvFromSource) UnmarshalEasyJSON ¶

func (v *EnvFromSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EnvFromSource) UnmarshalJSON ¶

func (v *EnvFromSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EnvVar ¶

type EnvVar struct {

	// Name of the environment variable. Must be a C_IDENTIFIER.
	// Required: true
	Name *string `json:"name"`

	// 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 "".
	Value string `json:"value,omitempty"`

	// Source for the environment variable's value. Cannot be used if value is not empty.
	ValueFrom *EnvVarSource `json:"valueFrom,omitempty"`
}

EnvVar EnvVar represents an environment variable present in a Container.

swagger:model EnvVar

func (EnvVar) MarshalEasyJSON ¶

func (v EnvVar) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EnvVar) MarshalJSON ¶

func (v EnvVar) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EnvVar) UnmarshalEasyJSON ¶

func (v *EnvVar) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EnvVar) UnmarshalJSON ¶

func (v *EnvVar) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EnvVarSource ¶

type EnvVarSource struct {

	// Selects a key of a ConfigMap.
	ConfigMapKeyRef *ConfigMapKeySelector `json:"configMapKeyRef,omitempty"`

	// Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.
	FieldRef *ObjectFieldSelector `json:"fieldRef,omitempty"`

	// 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.
	ResourceFieldRef *ResourceFieldSelector `json:"resourceFieldRef,omitempty"`

	// Selects a key of a secret in the pod's namespace
	SecretKeyRef *SecretKeySelector `json:"secretKeyRef,omitempty"`
}

EnvVarSource EnvVarSource represents a source for the value of an EnvVar.

swagger:model EnvVarSource

func (EnvVarSource) MarshalEasyJSON ¶

func (v EnvVarSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EnvVarSource) MarshalJSON ¶

func (v EnvVarSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EnvVarSource) UnmarshalEasyJSON ¶

func (v *EnvVarSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EnvVarSource) UnmarshalJSON ¶

func (v *EnvVarSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Event ¶

type Event struct {

	// What action was taken/failed regarding to the Regarding object.
	Action string `json:"action,omitempty"`

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// The number of times this event has occurred.
	Count int32 `json:"count,omitempty"`

	// Time when this Event was first observed.
	EventTime *apimachinery_pkg_apis_meta_v1.MicroTime `json:"eventTime,omitempty"`

	// The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)
	FirstTimestamp *apimachinery_pkg_apis_meta_v1.Time `json:"firstTimestamp,omitempty"`

	// The object that this event is about.
	// Required: true
	InvolvedObject *ObjectReference `json:"involvedObject"`

	// 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
	Kind string `json:"kind,omitempty"`

	// The time at which the most recent occurrence of this event was recorded.
	LastTimestamp *apimachinery_pkg_apis_meta_v1.Time `json:"lastTimestamp,omitempty"`

	// A human-readable description of the status of this operation.
	Message string `json:"message,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// Required: true
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata"`

	// This should be a short, machine understandable string that gives the reason for the transition into the object's current status.
	Reason string `json:"reason,omitempty"`

	// Optional secondary object for more complex actions.
	Related *ObjectReference `json:"related,omitempty"`

	// Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
	ReportingComponent string `json:"reportingComponent,omitempty"`

	// ID of the controller instance, e.g. `kubelet-xyzf`.
	ReportingInstance string `json:"reportingInstance,omitempty"`

	// Data about the Event series this event represents or nil if it's a singleton Event.
	Series *EventSeries `json:"series,omitempty"`

	// The component reporting this event. Should be a short machine understandable string.
	Source *EventSource `json:"source,omitempty"`

	// Type of this event (Normal, Warning), new types could be added in the future
	Type string `json:"type,omitempty"`
}

Event Event is a report of an event somewhere in the cluster.

swagger:model Event

func (Event) MarshalEasyJSON ¶

func (v Event) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Event) MarshalJSON ¶

func (v Event) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Event) UnmarshalEasyJSON ¶

func (v *Event) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Event) UnmarshalJSON ¶

func (v *Event) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventList ¶

type EventList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of events
	// Required: true
	Items []*Event `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

EventList EventList is a list of events.

swagger:model EventList

func (EventList) MarshalEasyJSON ¶

func (v EventList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventList) MarshalJSON ¶

func (v EventList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventList) UnmarshalEasyJSON ¶

func (v *EventList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventList) UnmarshalJSON ¶

func (v *EventList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventSeries ¶

type EventSeries struct {

	// Number of occurrences in this series up to the last heartbeat time
	Count int32 `json:"count,omitempty"`

	// Time of the last occurrence observed
	LastObservedTime *apimachinery_pkg_apis_meta_v1.MicroTime `json:"lastObservedTime,omitempty"`

	// State of this Series: Ongoing or Finished Deprecated. Planned removal for 1.18
	State string `json:"state,omitempty"`
}

EventSeries EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.

swagger:model EventSeries

func (EventSeries) MarshalEasyJSON ¶

func (v EventSeries) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventSeries) MarshalJSON ¶

func (v EventSeries) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventSeries) UnmarshalEasyJSON ¶

func (v *EventSeries) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventSeries) UnmarshalJSON ¶

func (v *EventSeries) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventSource ¶

type EventSource struct {

	// Component from which the event is generated.
	Component string `json:"component,omitempty"`

	// Node name on which the event is generated.
	Host string `json:"host,omitempty"`
}

EventSource EventSource contains information for an event.

swagger:model EventSource

func (EventSource) MarshalEasyJSON ¶

func (v EventSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventSource) MarshalJSON ¶

func (v EventSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventSource) UnmarshalEasyJSON ¶

func (v *EventSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventSource) UnmarshalJSON ¶

func (v *EventSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ExecAction ¶

type ExecAction struct {

	// 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.
	Command []string `json:"command,omitempty"`
}

ExecAction ExecAction describes a "run in container" action.

swagger:model ExecAction

func (ExecAction) MarshalEasyJSON ¶

func (v ExecAction) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ExecAction) MarshalJSON ¶

func (v ExecAction) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ExecAction) UnmarshalEasyJSON ¶

func (v *ExecAction) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ExecAction) UnmarshalJSON ¶

func (v *ExecAction) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type FCVolumeSource ¶

type FCVolumeSource struct {

	// 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.
	FsType string `json:"fsType,omitempty"`

	// Optional: FC target lun number
	Lun int32 `json:"lun,omitempty"`

	// Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// Optional: FC target worldwide names (WWNs)
	TargetWWNs []string `json:"targetWWNs,omitempty"`

	// Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.
	Wwids []string `json:"wwids,omitempty"`
}

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

swagger:model FCVolumeSource

func (FCVolumeSource) MarshalEasyJSON ¶

func (v FCVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (FCVolumeSource) MarshalJSON ¶

func (v FCVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*FCVolumeSource) UnmarshalEasyJSON ¶

func (v *FCVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*FCVolumeSource) UnmarshalJSON ¶

func (v *FCVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type FlexPersistentVolumeSource ¶

type FlexPersistentVolumeSource struct {

	// Driver is the name of the driver to use for this volume.
	// Required: true
	Driver *string `json:"driver"`

	// Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.
	FsType string `json:"fsType,omitempty"`

	// Optional: Extra command options if any.
	Options map[string]string `json:"options,omitempty"`

	// Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.
	SecretRef *SecretReference `json:"secretRef,omitempty"`
}

FlexPersistentVolumeSource FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.

swagger:model FlexPersistentVolumeSource

func (FlexPersistentVolumeSource) MarshalEasyJSON ¶

func (v FlexPersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (FlexPersistentVolumeSource) MarshalJSON ¶

func (v FlexPersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*FlexPersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *FlexPersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*FlexPersistentVolumeSource) UnmarshalJSON ¶

func (v *FlexPersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type FlexVolumeSource ¶

type FlexVolumeSource struct {

	// Driver is the name of the driver to use for this volume.
	// Required: true
	Driver *string `json:"driver"`

	// Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.
	FsType string `json:"fsType,omitempty"`

	// Optional: Extra command options if any.
	Options map[string]string `json:"options,omitempty"`

	// Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.
	SecretRef *LocalObjectReference `json:"secretRef,omitempty"`
}

FlexVolumeSource FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.

swagger:model FlexVolumeSource

func (FlexVolumeSource) MarshalEasyJSON ¶

func (v FlexVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (FlexVolumeSource) MarshalJSON ¶

func (v FlexVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*FlexVolumeSource) UnmarshalEasyJSON ¶

func (v *FlexVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*FlexVolumeSource) UnmarshalJSON ¶

func (v *FlexVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type FlockerVolumeSource ¶

type FlockerVolumeSource struct {

	// Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated
	DatasetName string `json:"datasetName,omitempty"`

	// UUID of the dataset. This is unique identifier of a Flocker dataset
	DatasetUUID string `json:"datasetUUID,omitempty"`
}

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

swagger:model FlockerVolumeSource

func (FlockerVolumeSource) MarshalEasyJSON ¶

func (v FlockerVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (FlockerVolumeSource) MarshalJSON ¶

func (v FlockerVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*FlockerVolumeSource) UnmarshalEasyJSON ¶

func (v *FlockerVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*FlockerVolumeSource) UnmarshalJSON ¶

func (v *FlockerVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GCEPersistentDiskVolumeSource ¶

type GCEPersistentDiskVolumeSource struct {

	// 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#gcepersistentdisk
	FsType string `json:"fsType,omitempty"`

	// 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: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
	Partition int32 `json:"partition,omitempty"`

	// Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
	// Required: true
	PdName *string `json:"pdName"`

	// ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
	ReadOnly bool `json:"readOnly,omitempty"`
}

GCEPersistentDiskVolumeSource Represents a Persistent Disk resource in Google Compute Engine.

A GCE PD must exist 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 or read-only many times. GCE PDs support ownership management and SELinux relabeling.

swagger:model GCEPersistentDiskVolumeSource

func (GCEPersistentDiskVolumeSource) MarshalEasyJSON ¶

func (v GCEPersistentDiskVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GCEPersistentDiskVolumeSource) MarshalJSON ¶

func (v GCEPersistentDiskVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GCEPersistentDiskVolumeSource) UnmarshalEasyJSON ¶

func (v *GCEPersistentDiskVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GCEPersistentDiskVolumeSource) UnmarshalJSON ¶

func (v *GCEPersistentDiskVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GitRepoVolumeSource ¶

type GitRepoVolumeSource struct {

	// Target directory name. Must not contain or start with '..'.  If '.' is supplied, the volume directory will be the git repository.  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
	Directory string `json:"directory,omitempty"`

	// Repository URL
	// Required: true
	Repository *string `json:"repository"`

	// Commit hash for the specified revision.
	Revision string `json:"revision,omitempty"`
}

GitRepoVolumeSource Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.

DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.

swagger:model GitRepoVolumeSource

func (GitRepoVolumeSource) MarshalEasyJSON ¶

func (v GitRepoVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GitRepoVolumeSource) MarshalJSON ¶

func (v GitRepoVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GitRepoVolumeSource) UnmarshalEasyJSON ¶

func (v *GitRepoVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GitRepoVolumeSource) UnmarshalJSON ¶

func (v *GitRepoVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GlusterfsPersistentVolumeSource ¶

type GlusterfsPersistentVolumeSource struct {

	// EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
	// Required: true
	Endpoints *string `json:"endpoints"`

	// EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
	EndpointsNamespace string `json:"endpointsNamespace,omitempty"`

	// Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
	// Required: true
	Path *string `json:"path"`

	// 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
	ReadOnly bool `json:"readOnly,omitempty"`
}

GlusterfsPersistentVolumeSource Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

swagger:model GlusterfsPersistentVolumeSource

func (GlusterfsPersistentVolumeSource) MarshalEasyJSON ¶

func (v GlusterfsPersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GlusterfsPersistentVolumeSource) MarshalJSON ¶

func (v GlusterfsPersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GlusterfsPersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *GlusterfsPersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GlusterfsPersistentVolumeSource) UnmarshalJSON ¶

func (v *GlusterfsPersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GlusterfsVolumeSource ¶

type GlusterfsVolumeSource struct {

	// EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
	// Required: true
	Endpoints *string `json:"endpoints"`

	// Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
	// Required: true
	Path *string `json:"path"`

	// 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
	ReadOnly bool `json:"readOnly,omitempty"`
}

GlusterfsVolumeSource Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

swagger:model GlusterfsVolumeSource

func (GlusterfsVolumeSource) MarshalEasyJSON ¶

func (v GlusterfsVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GlusterfsVolumeSource) MarshalJSON ¶

func (v GlusterfsVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GlusterfsVolumeSource) UnmarshalEasyJSON ¶

func (v *GlusterfsVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GlusterfsVolumeSource) UnmarshalJSON ¶

func (v *GlusterfsVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type HTTPGetAction ¶

type HTTPGetAction struct {

	// Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
	Host string `json:"host,omitempty"`

	// Custom headers to set in the request. HTTP allows repeated headers.
	HTTPHeaders []*HTTPHeader `json:"httpHeaders,omitempty"`

	// Path to access on the HTTP server.
	Path string `json:"path,omitempty"`

	// 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.
	// Required: true
	Port *apimachinery_pkg_util_intstr.IntOrString `json:"port"`

	// Scheme to use for connecting to the host. Defaults to HTTP.
	Scheme string `json:"scheme,omitempty"`
}

HTTPGetAction HTTPGetAction describes an action based on HTTP Get requests.

swagger:model HTTPGetAction

func (HTTPGetAction) MarshalEasyJSON ¶

func (v HTTPGetAction) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (HTTPGetAction) MarshalJSON ¶

func (v HTTPGetAction) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*HTTPGetAction) UnmarshalEasyJSON ¶

func (v *HTTPGetAction) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*HTTPGetAction) UnmarshalJSON ¶

func (v *HTTPGetAction) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type HTTPHeader ¶

type HTTPHeader struct {

	// The header field name
	// Required: true
	Name *string `json:"name"`

	// The header field value
	// Required: true
	Value *string `json:"value"`
}

HTTPHeader HTTPHeader describes a custom header to be used in HTTP probes

swagger:model HTTPHeader

func (HTTPHeader) MarshalEasyJSON ¶

func (v HTTPHeader) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (HTTPHeader) MarshalJSON ¶

func (v HTTPHeader) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*HTTPHeader) UnmarshalEasyJSON ¶

func (v *HTTPHeader) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*HTTPHeader) UnmarshalJSON ¶

func (v *HTTPHeader) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Handler ¶

type Handler struct {

	// One and only one of the following should be specified. Exec specifies the action to take.
	Exec *ExecAction `json:"exec,omitempty"`

	// HTTPGet specifies the http request to perform.
	HTTPGet *HTTPGetAction `json:"httpGet,omitempty"`

	// TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported
	TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty"`
}

Handler Handler defines a specific action that should be taken

swagger:model Handler

func (Handler) MarshalEasyJSON ¶

func (v Handler) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Handler) MarshalJSON ¶

func (v Handler) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Handler) UnmarshalEasyJSON ¶

func (v *Handler) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Handler) UnmarshalJSON ¶

func (v *Handler) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type HostAlias ¶

type HostAlias struct {

	// Hostnames for the above IP address.
	Hostnames []string `json:"hostnames,omitempty"`

	// IP address of the host file entry.
	IP string `json:"ip,omitempty"`
}

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

swagger:model HostAlias

func (HostAlias) MarshalEasyJSON ¶

func (v HostAlias) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (HostAlias) MarshalJSON ¶

func (v HostAlias) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*HostAlias) UnmarshalEasyJSON ¶

func (v *HostAlias) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*HostAlias) UnmarshalJSON ¶

func (v *HostAlias) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type HostPathVolumeSource ¶

type HostPathVolumeSource struct {

	// Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
	// Required: true
	Path *string `json:"path"`

	// Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
	Type string `json:"type,omitempty"`
}

HostPathVolumeSource Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

swagger:model HostPathVolumeSource

func (HostPathVolumeSource) MarshalEasyJSON ¶

func (v HostPathVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (HostPathVolumeSource) MarshalJSON ¶

func (v HostPathVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*HostPathVolumeSource) UnmarshalEasyJSON ¶

func (v *HostPathVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*HostPathVolumeSource) UnmarshalJSON ¶

func (v *HostPathVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ISCSIPersistentVolumeSource ¶

type ISCSIPersistentVolumeSource struct {

	// whether support iSCSI Discovery CHAP authentication
	ChapAuthDiscovery bool `json:"chapAuthDiscovery,omitempty"`

	// whether support iSCSI Session CHAP authentication
	ChapAuthSession bool `json:"chapAuthSession,omitempty"`

	// 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
	FsType string `json:"fsType,omitempty"`

	// Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.
	InitiatorName string `json:"initiatorName,omitempty"`

	// Target iSCSI Qualified Name.
	// Required: true
	Iqn *string `json:"iqn"`

	// iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).
	IscsiInterface string `json:"iscsiInterface,omitempty"`

	// iSCSI Target Lun number.
	// Required: true
	Lun *int32 `json:"lun"`

	// 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).
	Portals []string `json:"portals,omitempty"`

	// ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.
	ReadOnly bool `json:"readOnly,omitempty"`

	// CHAP Secret for iSCSI target and initiator authentication
	SecretRef *SecretReference `json:"secretRef,omitempty"`

	// 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).
	// Required: true
	TargetPortal *string `json:"targetPortal"`
}

ISCSIPersistentVolumeSource ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

swagger:model ISCSIPersistentVolumeSource

func (ISCSIPersistentVolumeSource) MarshalEasyJSON ¶

func (v ISCSIPersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ISCSIPersistentVolumeSource) MarshalJSON ¶

func (v ISCSIPersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ISCSIPersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *ISCSIPersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ISCSIPersistentVolumeSource) UnmarshalJSON ¶

func (v *ISCSIPersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ISCSIVolumeSource ¶

type ISCSIVolumeSource struct {

	// whether support iSCSI Discovery CHAP authentication
	ChapAuthDiscovery bool `json:"chapAuthDiscovery,omitempty"`

	// whether support iSCSI Session CHAP authentication
	ChapAuthSession bool `json:"chapAuthSession,omitempty"`

	// 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
	FsType string `json:"fsType,omitempty"`

	// Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.
	InitiatorName string `json:"initiatorName,omitempty"`

	// Target iSCSI Qualified Name.
	// Required: true
	Iqn *string `json:"iqn"`

	// iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).
	IscsiInterface string `json:"iscsiInterface,omitempty"`

	// iSCSI Target Lun number.
	// Required: true
	Lun *int32 `json:"lun"`

	// 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).
	Portals []string `json:"portals,omitempty"`

	// ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.
	ReadOnly bool `json:"readOnly,omitempty"`

	// CHAP Secret for iSCSI target and initiator authentication
	SecretRef *LocalObjectReference `json:"secretRef,omitempty"`

	// 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).
	// Required: true
	TargetPortal *string `json:"targetPortal"`
}

ISCSIVolumeSource Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

swagger:model ISCSIVolumeSource

func (ISCSIVolumeSource) MarshalEasyJSON ¶

func (v ISCSIVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ISCSIVolumeSource) MarshalJSON ¶

func (v ISCSIVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ISCSIVolumeSource) UnmarshalEasyJSON ¶

func (v *ISCSIVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ISCSIVolumeSource) UnmarshalJSON ¶

func (v *ISCSIVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type KeyToPath ¶

type KeyToPath struct {

	// The key to project.
	// Required: true
	Key *string `json:"key"`

	// 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.
	Mode int32 `json:"mode,omitempty"`

	// 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 '..'.
	// Required: true
	Path *string `json:"path"`
}

KeyToPath Maps a string key to a path within a volume.

swagger:model KeyToPath

func (KeyToPath) MarshalEasyJSON ¶

func (v KeyToPath) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (KeyToPath) MarshalJSON ¶

func (v KeyToPath) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*KeyToPath) UnmarshalEasyJSON ¶

func (v *KeyToPath) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*KeyToPath) UnmarshalJSON ¶

func (v *KeyToPath) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Lifecycle ¶

type Lifecycle struct {

	// 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
	PostStart *Handler `json:"postStart,omitempty"`

	// PreStop is called immediately before a container is terminated due to an API request or management event such as liveness probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks
	PreStop *Handler `json:"preStop,omitempty"`
}

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.

swagger:model Lifecycle

func (Lifecycle) MarshalEasyJSON ¶

func (v Lifecycle) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Lifecycle) MarshalJSON ¶

func (v Lifecycle) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Lifecycle) UnmarshalEasyJSON ¶

func (v *Lifecycle) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Lifecycle) UnmarshalJSON ¶

func (v *Lifecycle) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type LimitRange ¶

type LimitRange struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Spec *LimitRangeSpec `json:"spec,omitempty"`
}

LimitRange LimitRange sets resource usage limits for each kind of resource in a Namespace.

swagger:model LimitRange

func (LimitRange) MarshalEasyJSON ¶

func (v LimitRange) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (LimitRange) MarshalJSON ¶

func (v LimitRange) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*LimitRange) UnmarshalEasyJSON ¶

func (v *LimitRange) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*LimitRange) UnmarshalJSON ¶

func (v *LimitRange) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type LimitRangeItem ¶

type LimitRangeItem struct {

	// Default resource requirement limit value by resource name if resource limit is omitted.
	Default map[string]*apimachinery_pkg_api_resource.Quantity `json:"default,omitempty"`

	// DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.
	DefaultRequest map[string]*apimachinery_pkg_api_resource.Quantity `json:"defaultRequest,omitempty"`

	// Max usage constraints on this kind by resource name.
	Max map[string]*apimachinery_pkg_api_resource.Quantity `json:"max,omitempty"`

	// 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.
	MaxLimitRequestRatio map[string]*apimachinery_pkg_api_resource.Quantity `json:"maxLimitRequestRatio,omitempty"`

	// Min usage constraints on this kind by resource name.
	Min map[string]*apimachinery_pkg_api_resource.Quantity `json:"min,omitempty"`

	// Type of resource that this limit applies to.
	Type string `json:"type,omitempty"`
}

LimitRangeItem LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

swagger:model LimitRangeItem

func (LimitRangeItem) MarshalEasyJSON ¶

func (v LimitRangeItem) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (LimitRangeItem) MarshalJSON ¶

func (v LimitRangeItem) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*LimitRangeItem) UnmarshalEasyJSON ¶

func (v *LimitRangeItem) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*LimitRangeItem) UnmarshalJSON ¶

func (v *LimitRangeItem) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type LimitRangeList ¶

type LimitRangeList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
	// Required: true
	Items []*LimitRange `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

LimitRangeList LimitRangeList is a list of LimitRange items.

swagger:model LimitRangeList

func (LimitRangeList) MarshalEasyJSON ¶

func (v LimitRangeList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (LimitRangeList) MarshalJSON ¶

func (v LimitRangeList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*LimitRangeList) UnmarshalEasyJSON ¶

func (v *LimitRangeList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*LimitRangeList) UnmarshalJSON ¶

func (v *LimitRangeList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type LimitRangeSpec ¶

type LimitRangeSpec struct {

	// Limits is the list of LimitRangeItem objects that are enforced.
	// Required: true
	Limits []*LimitRangeItem `json:"limits"`
}

LimitRangeSpec LimitRangeSpec defines a min/max usage limit for resources that match on kind.

swagger:model LimitRangeSpec

func (LimitRangeSpec) MarshalEasyJSON ¶

func (v LimitRangeSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (LimitRangeSpec) MarshalJSON ¶

func (v LimitRangeSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*LimitRangeSpec) UnmarshalEasyJSON ¶

func (v *LimitRangeSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*LimitRangeSpec) UnmarshalJSON ¶

func (v *LimitRangeSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type LoadBalancerIngress ¶

type LoadBalancerIngress struct {

	// Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)
	Hostname string `json:"hostname,omitempty"`

	// IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)
	IP string `json:"ip,omitempty"`
}

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

swagger:model LoadBalancerIngress

func (LoadBalancerIngress) MarshalEasyJSON ¶

func (v LoadBalancerIngress) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (LoadBalancerIngress) MarshalJSON ¶

func (v LoadBalancerIngress) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*LoadBalancerIngress) UnmarshalEasyJSON ¶

func (v *LoadBalancerIngress) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*LoadBalancerIngress) UnmarshalJSON ¶

func (v *LoadBalancerIngress) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type LoadBalancerStatus ¶

type LoadBalancerStatus struct {

	// Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.
	Ingress []*LoadBalancerIngress `json:"ingress,omitempty"`
}

LoadBalancerStatus LoadBalancerStatus represents the status of a load-balancer.

swagger:model LoadBalancerStatus

func (LoadBalancerStatus) MarshalEasyJSON ¶

func (v LoadBalancerStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (LoadBalancerStatus) MarshalJSON ¶

func (v LoadBalancerStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*LoadBalancerStatus) UnmarshalEasyJSON ¶

func (v *LoadBalancerStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*LoadBalancerStatus) UnmarshalJSON ¶

func (v *LoadBalancerStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type LocalObjectReference ¶

type LocalObjectReference struct {

	// Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`
}

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

swagger:model LocalObjectReference

func (LocalObjectReference) MarshalEasyJSON ¶

func (v LocalObjectReference) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (LocalObjectReference) MarshalJSON ¶

func (v LocalObjectReference) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*LocalObjectReference) UnmarshalEasyJSON ¶

func (v *LocalObjectReference) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*LocalObjectReference) UnmarshalJSON ¶

func (v *LocalObjectReference) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type LocalVolumeSource ¶

type LocalVolumeSource struct {

	// Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a fileystem if unspecified.
	FsType string `json:"fsType,omitempty"`

	// The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).
	// Required: true
	Path *string `json:"path"`
}

LocalVolumeSource Local represents directly-attached storage with node affinity (Beta feature)

swagger:model LocalVolumeSource

func (LocalVolumeSource) MarshalEasyJSON ¶

func (v LocalVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (LocalVolumeSource) MarshalJSON ¶

func (v LocalVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*LocalVolumeSource) UnmarshalEasyJSON ¶

func (v *LocalVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*LocalVolumeSource) UnmarshalJSON ¶

func (v *LocalVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NFSVolumeSource ¶

type NFSVolumeSource struct {

	// Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
	// Required: true
	Path *string `json:"path"`

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

	// Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
	// Required: true
	Server *string `json:"server"`
}

NFSVolumeSource Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

swagger:model NFSVolumeSource

func (NFSVolumeSource) MarshalEasyJSON ¶

func (v NFSVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NFSVolumeSource) MarshalJSON ¶

func (v NFSVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NFSVolumeSource) UnmarshalEasyJSON ¶

func (v *NFSVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NFSVolumeSource) UnmarshalJSON ¶

func (v *NFSVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Namespace ¶

type Namespace struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Spec *NamespaceSpec `json:"spec,omitempty"`

	// Status describes the current status of a Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Status *NamespaceStatus `json:"status,omitempty"`
}

Namespace Namespace provides a scope for Names. Use of multiple namespaces is optional.

swagger:model Namespace

func (Namespace) MarshalEasyJSON ¶

func (v Namespace) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Namespace) MarshalJSON ¶

func (v Namespace) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Namespace) UnmarshalEasyJSON ¶

func (v *Namespace) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Namespace) UnmarshalJSON ¶

func (v *Namespace) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NamespaceList ¶

type NamespaceList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
	// Required: true
	Items []*Namespace `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

NamespaceList NamespaceList is a list of Namespaces.

swagger:model NamespaceList

func (NamespaceList) MarshalEasyJSON ¶

func (v NamespaceList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NamespaceList) MarshalJSON ¶

func (v NamespaceList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NamespaceList) UnmarshalEasyJSON ¶

func (v *NamespaceList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NamespaceList) UnmarshalJSON ¶

func (v *NamespaceList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NamespaceSpec ¶

type NamespaceSpec struct {

	// 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/
	Finalizers []string `json:"finalizers,omitempty"`
}

NamespaceSpec NamespaceSpec describes the attributes on a Namespace.

swagger:model NamespaceSpec

func (NamespaceSpec) MarshalEasyJSON ¶

func (v NamespaceSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NamespaceSpec) MarshalJSON ¶

func (v NamespaceSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NamespaceSpec) UnmarshalEasyJSON ¶

func (v *NamespaceSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NamespaceSpec) UnmarshalJSON ¶

func (v *NamespaceSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NamespaceStatus ¶

type NamespaceStatus struct {

	// Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
	Phase string `json:"phase,omitempty"`
}

NamespaceStatus NamespaceStatus is information about the current status of a Namespace.

swagger:model NamespaceStatus

func (NamespaceStatus) MarshalEasyJSON ¶

func (v NamespaceStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NamespaceStatus) MarshalJSON ¶

func (v NamespaceStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NamespaceStatus) UnmarshalEasyJSON ¶

func (v *NamespaceStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NamespaceStatus) UnmarshalJSON ¶

func (v *NamespaceStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Node ¶

type Node struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Spec *NodeSpec `json:"spec,omitempty"`

	// 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
	Status *NodeStatus `json:"status,omitempty"`
}

Node Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

swagger:model Node

func (Node) MarshalEasyJSON ¶

func (v Node) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Node) MarshalJSON ¶

func (v Node) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Node) UnmarshalEasyJSON ¶

func (v *Node) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Node) UnmarshalJSON ¶

func (v *Node) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeAddress ¶

type NodeAddress struct {

	// The node address.
	// Required: true
	Address *string `json:"address"`

	// Node address type, one of Hostname, ExternalIP or InternalIP.
	// Required: true
	Type *string `json:"type"`
}

NodeAddress NodeAddress contains information for the node's address.

swagger:model NodeAddress

func (NodeAddress) MarshalEasyJSON ¶

func (v NodeAddress) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeAddress) MarshalJSON ¶

func (v NodeAddress) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeAddress) UnmarshalEasyJSON ¶

func (v *NodeAddress) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeAddress) UnmarshalJSON ¶

func (v *NodeAddress) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeAffinity ¶

type NodeAffinity struct {

	// 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 matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.
	PreferredDuringSchedulingIgnoredDuringExecution []*PreferredSchedulingTerm `json:"preferredDuringSchedulingIgnoredDuringExecution,omitempty"`

	// 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 an update), the system may or may not try to eventually evict the pod from its node.
	RequiredDuringSchedulingIgnoredDuringExecution *NodeSelector `json:"requiredDuringSchedulingIgnoredDuringExecution,omitempty"`
}

NodeAffinity Node affinity is a group of node affinity scheduling rules.

swagger:model NodeAffinity

func (NodeAffinity) MarshalEasyJSON ¶

func (v NodeAffinity) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeAffinity) MarshalJSON ¶

func (v NodeAffinity) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeAffinity) UnmarshalEasyJSON ¶

func (v *NodeAffinity) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeAffinity) UnmarshalJSON ¶

func (v *NodeAffinity) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeCondition ¶

type NodeCondition struct {

	// Last time we got an update on a given condition.
	LastHeartbeatTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastHeartbeatTime,omitempty"`

	// Last time the condition transit from one status to another.
	LastTransitionTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastTransitionTime,omitempty"`

	// Human readable message indicating details about last transition.
	Message string `json:"message,omitempty"`

	// (brief) reason for the condition's last transition.
	Reason string `json:"reason,omitempty"`

	// Status of the condition, one of True, False, Unknown.
	// Required: true
	Status *string `json:"status"`

	// Type of node condition.
	// Required: true
	Type *string `json:"type"`
}

NodeCondition NodeCondition contains condition information for a node.

swagger:model NodeCondition

func (NodeCondition) MarshalEasyJSON ¶

func (v NodeCondition) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeCondition) MarshalJSON ¶

func (v NodeCondition) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeCondition) UnmarshalEasyJSON ¶

func (v *NodeCondition) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeCondition) UnmarshalJSON ¶

func (v *NodeCondition) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeConfigSource ¶

type NodeConfigSource struct {

	// ConfigMap is a reference to a Node's ConfigMap
	ConfigMap *ConfigMapNodeConfigSource `json:"configMap,omitempty"`
}

NodeConfigSource NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.

swagger:model NodeConfigSource

func (NodeConfigSource) MarshalEasyJSON ¶

func (v NodeConfigSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeConfigSource) MarshalJSON ¶

func (v NodeConfigSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeConfigSource) UnmarshalEasyJSON ¶

func (v *NodeConfigSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeConfigSource) UnmarshalJSON ¶

func (v *NodeConfigSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeConfigStatus ¶

type NodeConfigStatus struct {

	// Active reports the checkpointed config the node is actively using. Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error.
	Active *NodeConfigSource `json:"active,omitempty"`

	// Assigned reports the checkpointed config the node will try to use. When Node.Spec.ConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config. The node refers to this record to choose its config checkpoint, and reports this record in Assigned. Assigned only updates in the status after the record has been checkpointed to disk. When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned.
	Assigned *NodeConfigSource `json:"assigned,omitempty"`

	// Error describes any problems reconciling the Spec.ConfigSource to the Active config. Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting to load or validate the Assigned config, etc. Errors may occur at different points while syncing config. Earlier errors (e.g. download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries. Later errors (e.g. loading or validating a checkpointed config) will result in a rollback to LastKnownGood. In the latter case, it is usually possible to resolve the error by fixing the config assigned in Spec.ConfigSource. You can find additional information for debugging by searching the error message in the Kubelet log. Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions.
	Error string `json:"error,omitempty"`

	// LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config. The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct. This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated. If the Assigned config is Active at the end of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good. You should not make assumptions about the node's method of determining config stability and correctness, as this may change or become configurable in the future.
	LastKnownGood *NodeConfigSource `json:"lastKnownGood,omitempty"`
}

NodeConfigStatus NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.

swagger:model NodeConfigStatus

func (NodeConfigStatus) MarshalEasyJSON ¶

func (v NodeConfigStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeConfigStatus) MarshalJSON ¶

func (v NodeConfigStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeConfigStatus) UnmarshalEasyJSON ¶

func (v *NodeConfigStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeConfigStatus) UnmarshalJSON ¶

func (v *NodeConfigStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeDaemonEndpoints ¶

type NodeDaemonEndpoints struct {

	// Endpoint on which Kubelet is listening.
	KubeletEndpoint *DaemonEndpoint `json:"kubeletEndpoint,omitempty"`
}

NodeDaemonEndpoints NodeDaemonEndpoints lists ports opened by daemons running on the Node.

swagger:model NodeDaemonEndpoints

func (NodeDaemonEndpoints) MarshalEasyJSON ¶

func (v NodeDaemonEndpoints) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeDaemonEndpoints) MarshalJSON ¶

func (v NodeDaemonEndpoints) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeDaemonEndpoints) UnmarshalEasyJSON ¶

func (v *NodeDaemonEndpoints) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeDaemonEndpoints) UnmarshalJSON ¶

func (v *NodeDaemonEndpoints) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeList ¶

type NodeList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of nodes
	// Required: true
	Items []*Node `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

NodeList NodeList is the whole list of all Nodes which have been registered with master.

swagger:model NodeList

func (NodeList) MarshalEasyJSON ¶

func (v NodeList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeList) MarshalJSON ¶

func (v NodeList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeList) UnmarshalEasyJSON ¶

func (v *NodeList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeList) UnmarshalJSON ¶

func (v *NodeList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeSelector ¶

type NodeSelector struct {

	// Required. A list of node selector terms. The terms are ORed.
	// Required: true
	NodeSelectorTerms []*NodeSelectorTerm `json:"nodeSelectorTerms"`
}

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

swagger:model NodeSelector

func (NodeSelector) MarshalEasyJSON ¶

func (v NodeSelector) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeSelector) MarshalJSON ¶

func (v NodeSelector) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeSelector) UnmarshalEasyJSON ¶

func (v *NodeSelector) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeSelector) UnmarshalJSON ¶

func (v *NodeSelector) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeSelectorRequirement ¶

type NodeSelectorRequirement struct {

	// The label key that the selector applies to.
	// Required: true
	Key *string `json:"key"`

	// Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
	// Required: true
	Operator *string `json:"operator"`

	// 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. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.
	Values []string `json:"values,omitempty"`
}

NodeSelectorRequirement A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

swagger:model NodeSelectorRequirement

func (NodeSelectorRequirement) MarshalEasyJSON ¶

func (v NodeSelectorRequirement) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeSelectorRequirement) MarshalJSON ¶

func (v NodeSelectorRequirement) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeSelectorRequirement) UnmarshalEasyJSON ¶

func (v *NodeSelectorRequirement) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeSelectorRequirement) UnmarshalJSON ¶

func (v *NodeSelectorRequirement) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeSelectorTerm ¶

type NodeSelectorTerm struct {

	// A list of node selector requirements by node's labels.
	MatchExpressions []*NodeSelectorRequirement `json:"matchExpressions,omitempty"`

	// A list of node selector requirements by node's fields.
	MatchFields []*NodeSelectorRequirement `json:"matchFields,omitempty"`
}

NodeSelectorTerm A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.

swagger:model NodeSelectorTerm

func (NodeSelectorTerm) MarshalEasyJSON ¶

func (v NodeSelectorTerm) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeSelectorTerm) MarshalJSON ¶

func (v NodeSelectorTerm) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeSelectorTerm) UnmarshalEasyJSON ¶

func (v *NodeSelectorTerm) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeSelectorTerm) UnmarshalJSON ¶

func (v *NodeSelectorTerm) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeSpec ¶

type NodeSpec struct {

	// If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field
	ConfigSource *NodeConfigSource `json:"configSource,omitempty"`

	// Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966
	ExternalID string `json:"externalID,omitempty"`

	// PodCIDR represents the pod IP range assigned to the node.
	PodCIDR string `json:"podCIDR,omitempty"`

	// ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>
	ProviderID string `json:"providerID,omitempty"`

	// If specified, the node's taints.
	Taints []*Taint `json:"taints,omitempty"`

	// Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration
	Unschedulable bool `json:"unschedulable,omitempty"`
}

NodeSpec NodeSpec describes the attributes that a node is created with.

swagger:model NodeSpec

func (NodeSpec) MarshalEasyJSON ¶

func (v NodeSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeSpec) MarshalJSON ¶

func (v NodeSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeSpec) UnmarshalEasyJSON ¶

func (v *NodeSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeSpec) UnmarshalJSON ¶

func (v *NodeSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeStatus ¶

type NodeStatus struct {

	// List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses
	Addresses []*NodeAddress `json:"addresses,omitempty"`

	// Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.
	Allocatable map[string]*apimachinery_pkg_api_resource.Quantity `json:"allocatable,omitempty"`

	// Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity
	Capacity map[string]*apimachinery_pkg_api_resource.Quantity `json:"capacity,omitempty"`

	// Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition
	Conditions []*NodeCondition `json:"conditions,omitempty"`

	// Status of the config assigned to the node via the dynamic Kubelet config feature.
	Config *NodeConfigStatus `json:"config,omitempty"`

	// Endpoints of daemons running on the Node.
	DaemonEndpoints *NodeDaemonEndpoints `json:"daemonEndpoints,omitempty"`

	// List of container images on this node
	Images []*ContainerImage `json:"images,omitempty"`

	// Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info
	NodeInfo *NodeSystemInfo `json:"nodeInfo,omitempty"`

	// NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.
	Phase string `json:"phase,omitempty"`

	// List of volumes that are attached to the node.
	VolumesAttached []*AttachedVolume `json:"volumesAttached,omitempty"`

	// List of attachable volumes in use (mounted) by the node.
	VolumesInUse []string `json:"volumesInUse,omitempty"`
}

NodeStatus NodeStatus is information about the current status of a node.

swagger:model NodeStatus

func (NodeStatus) MarshalEasyJSON ¶

func (v NodeStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeStatus) MarshalJSON ¶

func (v NodeStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeStatus) UnmarshalEasyJSON ¶

func (v *NodeStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeStatus) UnmarshalJSON ¶

func (v *NodeStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NodeSystemInfo ¶

type NodeSystemInfo struct {

	// The Architecture reported by the node
	// Required: true
	Architecture *string `json:"architecture"`

	// Boot ID reported by the node.
	// Required: true
	BootID *string `json:"bootID"`

	// ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).
	// Required: true
	ContainerRuntimeVersion *string `json:"containerRuntimeVersion"`

	// Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).
	// Required: true
	KernelVersion *string `json:"kernelVersion"`

	// KubeProxy Version reported by the node.
	// Required: true
	KubeProxyVersion *string `json:"kubeProxyVersion"`

	// Kubelet Version reported by the node.
	// Required: true
	KubeletVersion *string `json:"kubeletVersion"`

	// MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html
	// Required: true
	MachineID *string `json:"machineID"`

	// The Operating System reported by the node
	// Required: true
	OperatingSystem *string `json:"operatingSystem"`

	// OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).
	// Required: true
	OsImage *string `json:"osImage"`

	// SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html
	// Required: true
	SystemUUID *string `json:"systemUUID"`
}

NodeSystemInfo NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

swagger:model NodeSystemInfo

func (NodeSystemInfo) MarshalEasyJSON ¶

func (v NodeSystemInfo) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NodeSystemInfo) MarshalJSON ¶

func (v NodeSystemInfo) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NodeSystemInfo) UnmarshalEasyJSON ¶

func (v *NodeSystemInfo) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NodeSystemInfo) UnmarshalJSON ¶

func (v *NodeSystemInfo) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ObjectFieldSelector ¶

type ObjectFieldSelector struct {

	// Version of the schema the FieldPath is written in terms of, defaults to "v1".
	APIVersion string `json:"apiVersion,omitempty"`

	// Path of the field to select in the specified API version.
	// Required: true
	FieldPath *string `json:"fieldPath"`
}

ObjectFieldSelector ObjectFieldSelector selects an APIVersioned field of an object.

swagger:model ObjectFieldSelector

func (ObjectFieldSelector) MarshalEasyJSON ¶

func (v ObjectFieldSelector) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ObjectFieldSelector) MarshalJSON ¶

func (v ObjectFieldSelector) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ObjectFieldSelector) UnmarshalEasyJSON ¶

func (v *ObjectFieldSelector) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ObjectFieldSelector) UnmarshalJSON ¶

func (v *ObjectFieldSelector) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ObjectReference ¶

type ObjectReference struct {

	// API version of the referent.
	APIVersion string `json:"apiVersion,omitempty"`

	// 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.
	FieldPath string `json:"fieldPath,omitempty"`

	// Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Kind string `json:"kind,omitempty"`

	// Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`

	// Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
	Namespace string `json:"namespace,omitempty"`

	// 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
	ResourceVersion string `json:"resourceVersion,omitempty"`

	// UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
	UID string `json:"uid,omitempty"`
}

ObjectReference ObjectReference contains enough information to let you inspect or modify the referred object.

swagger:model ObjectReference

func (ObjectReference) MarshalEasyJSON ¶

func (v ObjectReference) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ObjectReference) MarshalJSON ¶

func (v ObjectReference) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ObjectReference) UnmarshalEasyJSON ¶

func (v *ObjectReference) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ObjectReference) UnmarshalJSON ¶

func (v *ObjectReference) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolume ¶

type PersistentVolume struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
	Spec *PersistentVolumeSpec `json:"spec,omitempty"`

	// Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
	Status *PersistentVolumeStatus `json:"status,omitempty"`
}

PersistentVolume PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes

swagger:model PersistentVolume

func (PersistentVolume) MarshalEasyJSON ¶

func (v PersistentVolume) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolume) MarshalJSON ¶

func (v PersistentVolume) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolume) UnmarshalEasyJSON ¶

func (v *PersistentVolume) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolume) UnmarshalJSON ¶

func (v *PersistentVolume) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolumeClaim ¶

type PersistentVolumeClaim struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
	Spec *PersistentVolumeClaimSpec `json:"spec,omitempty"`

	// Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
	Status *PersistentVolumeClaimStatus `json:"status,omitempty"`
}

PersistentVolumeClaim PersistentVolumeClaim is a user's request for and claim to a persistent volume

swagger:model PersistentVolumeClaim

func (PersistentVolumeClaim) MarshalEasyJSON ¶

func (v PersistentVolumeClaim) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolumeClaim) MarshalJSON ¶

func (v PersistentVolumeClaim) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolumeClaim) UnmarshalEasyJSON ¶

func (v *PersistentVolumeClaim) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolumeClaim) UnmarshalJSON ¶

func (v *PersistentVolumeClaim) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolumeClaimCondition ¶

type PersistentVolumeClaimCondition struct {

	// Last time we probed the condition.
	LastProbeTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastProbeTime,omitempty"`

	// Last time the condition transitioned from one status to another.
	LastTransitionTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastTransitionTime,omitempty"`

	// Human-readable message indicating details about last transition.
	Message string `json:"message,omitempty"`

	// Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "ResizeStarted" that means the underlying persistent volume is being resized.
	Reason string `json:"reason,omitempty"`

	// status
	// Required: true
	Status *string `json:"status"`

	// type
	// Required: true
	Type *string `json:"type"`
}

PersistentVolumeClaimCondition PersistentVolumeClaimCondition contails details about state of pvc

swagger:model PersistentVolumeClaimCondition

func (PersistentVolumeClaimCondition) MarshalEasyJSON ¶

func (v PersistentVolumeClaimCondition) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolumeClaimCondition) MarshalJSON ¶

func (v PersistentVolumeClaimCondition) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolumeClaimCondition) UnmarshalEasyJSON ¶

func (v *PersistentVolumeClaimCondition) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolumeClaimCondition) UnmarshalJSON ¶

func (v *PersistentVolumeClaimCondition) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolumeClaimList ¶

type PersistentVolumeClaimList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
	// Required: true
	Items []*PersistentVolumeClaim `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

PersistentVolumeClaimList PersistentVolumeClaimList is a list of PersistentVolumeClaim items.

swagger:model PersistentVolumeClaimList

func (PersistentVolumeClaimList) MarshalEasyJSON ¶

func (v PersistentVolumeClaimList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolumeClaimList) MarshalJSON ¶

func (v PersistentVolumeClaimList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolumeClaimList) UnmarshalEasyJSON ¶

func (v *PersistentVolumeClaimList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolumeClaimList) UnmarshalJSON ¶

func (v *PersistentVolumeClaimList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolumeClaimSpec ¶

type PersistentVolumeClaimSpec struct {

	// AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1
	AccessModes []string `json:"accessModes,omitempty"`

	// This field requires the VolumeSnapshotDataSource alpha feature gate to be enabled and currently VolumeSnapshot is the only supported data source. If the provisioner can support VolumeSnapshot data source, it will create a new volume and data will be restored to the volume at the same time. If the provisioner does not support VolumeSnapshot data source, volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change.
	DataSource *TypedLocalObjectReference `json:"dataSource,omitempty"`

	// Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
	Resources *ResourceRequirements `json:"resources,omitempty"`

	// A label query over volumes to consider for binding.
	Selector *apimachinery_pkg_apis_meta_v1.LabelSelector `json:"selector,omitempty"`

	// Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1
	StorageClassName string `json:"storageClassName,omitempty"`

	// volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is a beta feature.
	VolumeMode string `json:"volumeMode,omitempty"`

	// VolumeName is the binding reference to the PersistentVolume backing this claim.
	VolumeName string `json:"volumeName,omitempty"`
}

PersistentVolumeClaimSpec PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

swagger:model PersistentVolumeClaimSpec

func (PersistentVolumeClaimSpec) MarshalEasyJSON ¶

func (v PersistentVolumeClaimSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolumeClaimSpec) MarshalJSON ¶

func (v PersistentVolumeClaimSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolumeClaimSpec) UnmarshalEasyJSON ¶

func (v *PersistentVolumeClaimSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolumeClaimSpec) UnmarshalJSON ¶

func (v *PersistentVolumeClaimSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolumeClaimStatus ¶

type PersistentVolumeClaimStatus struct {

	// 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
	AccessModes []string `json:"accessModes,omitempty"`

	// Represents the actual resources of the underlying volume.
	Capacity map[string]*apimachinery_pkg_api_resource.Quantity `json:"capacity,omitempty"`

	// Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.
	Conditions []*PersistentVolumeClaimCondition `json:"conditions,omitempty"`

	// Phase represents the current phase of PersistentVolumeClaim.
	Phase string `json:"phase,omitempty"`
}

PersistentVolumeClaimStatus PersistentVolumeClaimStatus is the current status of a persistent volume claim.

swagger:model PersistentVolumeClaimStatus

func (PersistentVolumeClaimStatus) MarshalEasyJSON ¶

func (v PersistentVolumeClaimStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolumeClaimStatus) MarshalJSON ¶

func (v PersistentVolumeClaimStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolumeClaimStatus) UnmarshalEasyJSON ¶

func (v *PersistentVolumeClaimStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolumeClaimStatus) UnmarshalJSON ¶

func (v *PersistentVolumeClaimStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolumeClaimVolumeSource ¶

type PersistentVolumeClaimVolumeSource struct {

	// 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
	// Required: true
	ClaimName *string `json:"claimName"`

	// Will force the ReadOnly setting in VolumeMounts. Default false.
	ReadOnly bool `json:"readOnly,omitempty"`
}

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

swagger:model PersistentVolumeClaimVolumeSource

func (PersistentVolumeClaimVolumeSource) MarshalEasyJSON ¶

func (v PersistentVolumeClaimVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolumeClaimVolumeSource) MarshalJSON ¶

func (v PersistentVolumeClaimVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolumeClaimVolumeSource) UnmarshalEasyJSON ¶

func (v *PersistentVolumeClaimVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolumeClaimVolumeSource) UnmarshalJSON ¶

func (v *PersistentVolumeClaimVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolumeList ¶

type PersistentVolumeList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes
	// Required: true
	Items []*PersistentVolume `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

PersistentVolumeList PersistentVolumeList is a list of PersistentVolume items.

swagger:model PersistentVolumeList

func (PersistentVolumeList) MarshalEasyJSON ¶

func (v PersistentVolumeList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolumeList) MarshalJSON ¶

func (v PersistentVolumeList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolumeList) UnmarshalEasyJSON ¶

func (v *PersistentVolumeList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolumeList) UnmarshalJSON ¶

func (v *PersistentVolumeList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolumeSpec ¶

type PersistentVolumeSpec struct {

	// AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes
	AccessModes []string `json:"accessModes,omitempty"`

	// 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
	AwsElasticBlockStore *AWSElasticBlockStoreVolumeSource `json:"awsElasticBlockStore,omitempty"`

	// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
	AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty"`

	// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
	AzureFile *AzureFilePersistentVolumeSource `json:"azureFile,omitempty"`

	// A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity
	Capacity map[string]*apimachinery_pkg_api_resource.Quantity `json:"capacity,omitempty"`

	// CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
	Cephfs *CephFSPersistentVolumeSource `json:"cephfs,omitempty"`

	// 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
	Cinder *CinderPersistentVolumeSource `json:"cinder,omitempty"`

	// ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding
	ClaimRef *ObjectReference `json:"claimRef,omitempty"`

	// CSI represents storage that is handled by an external CSI driver (Beta feature).
	Csi *CSIPersistentVolumeSource `json:"csi,omitempty"`

	// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
	Fc *FCVolumeSource `json:"fc,omitempty"`

	// FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.
	FlexVolume *FlexPersistentVolumeSource `json:"flexVolume,omitempty"`

	// Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running
	Flocker *FlockerVolumeSource `json:"flocker,omitempty"`

	// GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
	GcePersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty"`

	// Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md
	Glusterfs *GlusterfsPersistentVolumeSource `json:"glusterfs,omitempty"`

	// HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
	HostPath *HostPathVolumeSource `json:"hostPath,omitempty"`

	// ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.
	Iscsi *ISCSIPersistentVolumeSource `json:"iscsi,omitempty"`

	// Local represents directly-attached storage with node affinity
	Local *LocalVolumeSource `json:"local,omitempty"`

	// A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options
	MountOptions []string `json:"mountOptions,omitempty"`

	// NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
	Nfs *NFSVolumeSource `json:"nfs,omitempty"`

	// NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume.
	NodeAffinity *VolumeNodeAffinity `json:"nodeAffinity,omitempty"`

	// What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming
	PersistentVolumeReclaimPolicy string `json:"persistentVolumeReclaimPolicy,omitempty"`

	// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
	PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty"`

	// PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
	PortworxVolume *PortworxVolumeSource `json:"portworxVolume,omitempty"`

	// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
	Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty"`

	// 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
	Rbd *RBDPersistentVolumeSource `json:"rbd,omitempty"`

	// ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
	ScaleIO *ScaleIOPersistentVolumeSource `json:"scaleIO,omitempty"`

	// Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.
	StorageClassName string `json:"storageClassName,omitempty"`

	// StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md
	Storageos *StorageOSPersistentVolumeSource `json:"storageos,omitempty"`

	// volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is a beta feature.
	VolumeMode string `json:"volumeMode,omitempty"`

	// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
	VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty"`
}

PersistentVolumeSpec PersistentVolumeSpec is the specification of a persistent volume.

swagger:model PersistentVolumeSpec

func (PersistentVolumeSpec) MarshalEasyJSON ¶

func (v PersistentVolumeSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolumeSpec) MarshalJSON ¶

func (v PersistentVolumeSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolumeSpec) UnmarshalEasyJSON ¶

func (v *PersistentVolumeSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolumeSpec) UnmarshalJSON ¶

func (v *PersistentVolumeSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PersistentVolumeStatus ¶

type PersistentVolumeStatus struct {

	// A human-readable message indicating details about why the volume is in this state.
	Message string `json:"message,omitempty"`

	// 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
	Phase string `json:"phase,omitempty"`

	// Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.
	Reason string `json:"reason,omitempty"`
}

PersistentVolumeStatus PersistentVolumeStatus is the current status of a persistent volume.

swagger:model PersistentVolumeStatus

func (PersistentVolumeStatus) MarshalEasyJSON ¶

func (v PersistentVolumeStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PersistentVolumeStatus) MarshalJSON ¶

func (v PersistentVolumeStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PersistentVolumeStatus) UnmarshalEasyJSON ¶

func (v *PersistentVolumeStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PersistentVolumeStatus) UnmarshalJSON ¶

func (v *PersistentVolumeStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PhotonPersistentDiskVolumeSource ¶

type PhotonPersistentDiskVolumeSource struct {

	// 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.
	FsType string `json:"fsType,omitempty"`

	// ID that identifies Photon Controller persistent disk
	// Required: true
	PdID *string `json:"pdID"`
}

PhotonPersistentDiskVolumeSource Represents a Photon Controller persistent disk resource.

swagger:model PhotonPersistentDiskVolumeSource

func (PhotonPersistentDiskVolumeSource) MarshalEasyJSON ¶

func (v PhotonPersistentDiskVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PhotonPersistentDiskVolumeSource) MarshalJSON ¶

func (v PhotonPersistentDiskVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PhotonPersistentDiskVolumeSource) UnmarshalEasyJSON ¶

func (v *PhotonPersistentDiskVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PhotonPersistentDiskVolumeSource) UnmarshalJSON ¶

func (v *PhotonPersistentDiskVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Pod ¶

type Pod struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Spec *PodSpec `json:"spec,omitempty"`

	// Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Status *PodStatus `json:"status,omitempty"`
}

Pod Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

swagger:model Pod

func (Pod) MarshalEasyJSON ¶

func (v Pod) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Pod) MarshalJSON ¶

func (v Pod) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Pod) UnmarshalEasyJSON ¶

func (v *Pod) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Pod) UnmarshalJSON ¶

func (v *Pod) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodAffinity ¶

type PodAffinity struct {

	// 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.
	PreferredDuringSchedulingIgnoredDuringExecution []*WeightedPodAffinityTerm `json:"preferredDuringSchedulingIgnoredDuringExecution,omitempty"`

	// 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.
	RequiredDuringSchedulingIgnoredDuringExecution []*PodAffinityTerm `json:"requiredDuringSchedulingIgnoredDuringExecution,omitempty"`
}

PodAffinity Pod affinity is a group of inter pod affinity scheduling rules.

swagger:model PodAffinity

func (PodAffinity) MarshalEasyJSON ¶

func (v PodAffinity) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodAffinity) MarshalJSON ¶

func (v PodAffinity) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodAffinity) UnmarshalEasyJSON ¶

func (v *PodAffinity) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodAffinity) UnmarshalJSON ¶

func (v *PodAffinity) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodAffinityTerm ¶

type PodAffinityTerm struct {

	// A label query over a set of resources, in this case pods.
	LabelSelector *apimachinery_pkg_apis_meta_v1.LabelSelector `json:"labelSelector,omitempty"`

	// namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace"
	Namespaces []string `json:"namespaces,omitempty"`

	// 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.
	// Required: true
	TopologyKey *string `json:"topologyKey"`
}

PodAffinityTerm 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

swagger:model PodAffinityTerm

func (PodAffinityTerm) MarshalEasyJSON ¶

func (v PodAffinityTerm) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodAffinityTerm) MarshalJSON ¶

func (v PodAffinityTerm) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodAffinityTerm) UnmarshalEasyJSON ¶

func (v *PodAffinityTerm) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodAffinityTerm) UnmarshalJSON ¶

func (v *PodAffinityTerm) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodAntiAffinity ¶

type PodAntiAffinity struct {

	// 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.
	PreferredDuringSchedulingIgnoredDuringExecution []*WeightedPodAffinityTerm `json:"preferredDuringSchedulingIgnoredDuringExecution,omitempty"`

	// 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.
	RequiredDuringSchedulingIgnoredDuringExecution []*PodAffinityTerm `json:"requiredDuringSchedulingIgnoredDuringExecution,omitempty"`
}

PodAntiAffinity Pod anti affinity is a group of inter pod anti affinity scheduling rules.

swagger:model PodAntiAffinity

func (PodAntiAffinity) MarshalEasyJSON ¶

func (v PodAntiAffinity) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodAntiAffinity) MarshalJSON ¶

func (v PodAntiAffinity) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodAntiAffinity) UnmarshalEasyJSON ¶

func (v *PodAntiAffinity) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodAntiAffinity) UnmarshalJSON ¶

func (v *PodAntiAffinity) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodCondition ¶

type PodCondition struct {

	// Last time we probed the condition.
	LastProbeTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastProbeTime,omitempty"`

	// Last time the condition transitioned from one status to another.
	LastTransitionTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastTransitionTime,omitempty"`

	// Human-readable message indicating details about last transition.
	Message string `json:"message,omitempty"`

	// Unique, one-word, CamelCase reason for the condition's last transition.
	Reason string `json:"reason,omitempty"`

	// 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
	// Required: true
	Status *string `json:"status"`

	// Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
	// Required: true
	Type *string `json:"type"`
}

PodCondition PodCondition contains details for the current condition of this pod.

swagger:model PodCondition

func (PodCondition) MarshalEasyJSON ¶

func (v PodCondition) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodCondition) MarshalJSON ¶

func (v PodCondition) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodCondition) UnmarshalEasyJSON ¶

func (v *PodCondition) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodCondition) UnmarshalJSON ¶

func (v *PodCondition) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodDNSConfig ¶

type PodDNSConfig struct {

	// A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.
	Nameservers []string `json:"nameservers,omitempty"`

	// 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.
	Options []*PodDNSConfigOption `json:"options,omitempty"`

	// 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.
	Searches []string `json:"searches,omitempty"`
}

PodDNSConfig PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.

swagger:model PodDNSConfig

func (PodDNSConfig) MarshalEasyJSON ¶

func (v PodDNSConfig) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodDNSConfig) MarshalJSON ¶

func (v PodDNSConfig) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodDNSConfig) UnmarshalEasyJSON ¶

func (v *PodDNSConfig) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodDNSConfig) UnmarshalJSON ¶

func (v *PodDNSConfig) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodDNSConfigOption ¶

type PodDNSConfigOption struct {

	// Required.
	Name string `json:"name,omitempty"`

	// value
	Value string `json:"value,omitempty"`
}

PodDNSConfigOption PodDNSConfigOption defines DNS resolver options of a pod.

swagger:model PodDNSConfigOption

func (PodDNSConfigOption) MarshalEasyJSON ¶

func (v PodDNSConfigOption) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodDNSConfigOption) MarshalJSON ¶

func (v PodDNSConfigOption) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodDNSConfigOption) UnmarshalEasyJSON ¶

func (v *PodDNSConfigOption) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodDNSConfigOption) UnmarshalJSON ¶

func (v *PodDNSConfigOption) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodList ¶

type PodList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md
	// Required: true
	Items []*Pod `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

PodList PodList is a list of Pods.

swagger:model PodList

func (PodList) MarshalEasyJSON ¶

func (v PodList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodList) MarshalJSON ¶

func (v PodList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodList) UnmarshalEasyJSON ¶

func (v *PodList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodList) UnmarshalJSON ¶

func (v *PodList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodReadinessGate ¶

type PodReadinessGate struct {

	// ConditionType refers to a condition in the pod's condition list with matching type.
	// Required: true
	ConditionType *string `json:"conditionType"`
}

PodReadinessGate PodReadinessGate contains the reference to a pod condition

swagger:model PodReadinessGate

func (PodReadinessGate) MarshalEasyJSON ¶

func (v PodReadinessGate) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodReadinessGate) MarshalJSON ¶

func (v PodReadinessGate) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodReadinessGate) UnmarshalEasyJSON ¶

func (v *PodReadinessGate) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodReadinessGate) UnmarshalJSON ¶

func (v *PodReadinessGate) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodSecurityContext ¶

type PodSecurityContext struct {

	// 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:
	//
	// 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----
	//
	// If unset, the Kubelet will not modify the ownership and permissions of any volume.
	FsGroup int64 `json:"fsGroup,omitempty"`

	// The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.
	RunAsGroup int64 `json:"runAsGroup,omitempty"`

	// 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.
	RunAsNonRoot bool `json:"runAsNonRoot,omitempty"`

	// 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.
	RunAsUser int64 `json:"runAsUser,omitempty"`

	// 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.
	SeLinuxOptions *SELinuxOptions `json:"seLinuxOptions,omitempty"`

	// 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.
	SupplementalGroups []int64 `json:"supplementalGroups,omitempty"`

	// Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.
	Sysctls []*Sysctl `json:"sysctls,omitempty"`

	// Windows security options.
	WindowsOptions *WindowsSecurityContextOptions `json:"windowsOptions,omitempty"`
}

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

swagger:model PodSecurityContext

func (PodSecurityContext) MarshalEasyJSON ¶

func (v PodSecurityContext) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodSecurityContext) MarshalJSON ¶

func (v PodSecurityContext) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodSecurityContext) UnmarshalEasyJSON ¶

func (v *PodSecurityContext) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodSecurityContext) UnmarshalJSON ¶

func (v *PodSecurityContext) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodSpec ¶

type PodSpec struct {

	// 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.
	ActiveDeadlineSeconds int64 `json:"activeDeadlineSeconds,omitempty"`

	// If specified, the pod's scheduling constraints
	Affinity *Affinity `json:"affinity,omitempty"`

	// AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.
	AutomountServiceAccountToken bool `json:"automountServiceAccountToken,omitempty"`

	// 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.
	// Required: true
	Containers []*Container `json:"containers"`

	// Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.
	DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty"`

	// 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'.
	DNSPolicy string `json:"dnsPolicy,omitempty"`

	// EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.
	EnableServiceLinks bool `json:"enableServiceLinks,omitempty"`

	// 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.
	HostAliases []*HostAlias `json:"hostAliases,omitempty"`

	// Use the host's ipc namespace. Optional: Default to false.
	HostIPC bool `json:"hostIPC,omitempty"`

	// 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.
	HostNetwork bool `json:"hostNetwork,omitempty"`

	// Use the host's pid namespace. Optional: Default to false.
	HostPID bool `json:"hostPID,omitempty"`

	// Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.
	Hostname string `json:"hostname,omitempty"`

	// 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
	ImagePullSecrets []*LocalObjectReference `json:"imagePullSecrets,omitempty"`

	// 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/
	InitContainers []*Container `json:"initContainers,omitempty"`

	// 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.
	NodeName string `json:"nodeName,omitempty"`

	// 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/
	NodeSelector map[string]string `json:"nodeSelector,omitempty"`

	// PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.
	PreemptionPolicy string `json:"preemptionPolicy,omitempty"`

	// 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.
	Priority int32 `json:"priority,omitempty"`

	// If specified, indicates the pod's priority. "system-node-critical" and "system-cluster-critical" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.
	PriorityClassName string `json:"priorityClassName,omitempty"`

	// If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to "True" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md
	ReadinessGates []*PodReadinessGate `json:"readinessGates,omitempty"`

	// 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
	RestartPolicy string `json:"restartPolicy,omitempty"`

	// RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod.  If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the "legacy" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.
	RuntimeClassName string `json:"runtimeClassName,omitempty"`

	// If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.
	SchedulerName string `json:"schedulerName,omitempty"`

	// SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty.  See type description for default values of each field.
	SecurityContext *PodSecurityContext `json:"securityContext,omitempty"`

	// DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.
	ServiceAccount string `json:"serviceAccount,omitempty"`

	// 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/
	ServiceAccountName string `json:"serviceAccountName,omitempty"`

	// Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false. This field is beta-level and may be disabled with the PodShareProcessNamespace feature.
	ShareProcessNamespace bool `json:"shareProcessNamespace,omitempty"`

	// 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.
	Subdomain string `json:"subdomain,omitempty"`

	// 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.
	TerminationGracePeriodSeconds int64 `json:"terminationGracePeriodSeconds,omitempty"`

	// If specified, the pod's tolerations.
	Tolerations []*Toleration `json:"tolerations,omitempty"`

	// List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes
	Volumes []*Volume `json:"volumes,omitempty"`
}

PodSpec PodSpec is a description of a pod.

swagger:model PodSpec

func (PodSpec) MarshalEasyJSON ¶

func (v PodSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodSpec) MarshalJSON ¶

func (v PodSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodSpec) UnmarshalEasyJSON ¶

func (v *PodSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodSpec) UnmarshalJSON ¶

func (v *PodSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodStatus ¶

type PodStatus struct {

	// Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
	Conditions []*PodCondition `json:"conditions,omitempty"`

	// The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
	ContainerStatuses []*ContainerStatus `json:"containerStatuses,omitempty"`

	// IP address of the host to which the pod is assigned. Empty if not yet scheduled.
	HostIP string `json:"hostIP,omitempty"`

	// 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
	InitContainerStatuses []*ContainerStatus `json:"initContainerStatuses,omitempty"`

	// A human readable message indicating details about why the pod is in this condition.
	Message string `json:"message,omitempty"`

	// nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled.
	NominatedNodeName string `json:"nominatedNodeName,omitempty"`

	// The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:
	//
	// Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.
	//
	// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase
	Phase string `json:"phase,omitempty"`

	// IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.
	PodIP string `json:"podIP,omitempty"`

	// The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md
	QosClass string `json:"qosClass,omitempty"`

	// A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'
	Reason string `json:"reason,omitempty"`

	// 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.
	StartTime *apimachinery_pkg_apis_meta_v1.Time `json:"startTime,omitempty"`
}

PodStatus PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.

swagger:model PodStatus

func (PodStatus) MarshalEasyJSON ¶

func (v PodStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodStatus) MarshalJSON ¶

func (v PodStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodStatus) UnmarshalEasyJSON ¶

func (v *PodStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodStatus) UnmarshalJSON ¶

func (v *PodStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodTemplate ¶

type PodTemplate struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Template *PodTemplateSpec `json:"template,omitempty"`
}

PodTemplate PodTemplate describes a template for creating copies of a predefined pod.

swagger:model PodTemplate

func (PodTemplate) MarshalEasyJSON ¶

func (v PodTemplate) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodTemplate) MarshalJSON ¶

func (v PodTemplate) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodTemplate) UnmarshalEasyJSON ¶

func (v *PodTemplate) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodTemplate) UnmarshalJSON ¶

func (v *PodTemplate) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodTemplateList ¶

type PodTemplateList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of pod templates
	// Required: true
	Items []*PodTemplate `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

PodTemplateList PodTemplateList is a list of PodTemplates.

swagger:model PodTemplateList

func (PodTemplateList) MarshalEasyJSON ¶

func (v PodTemplateList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodTemplateList) MarshalJSON ¶

func (v PodTemplateList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodTemplateList) UnmarshalEasyJSON ¶

func (v *PodTemplateList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodTemplateList) UnmarshalJSON ¶

func (v *PodTemplateList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodTemplateSpec ¶

type PodTemplateSpec struct {

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Spec *PodSpec `json:"spec,omitempty"`
}

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

swagger:model PodTemplateSpec

func (PodTemplateSpec) MarshalEasyJSON ¶

func (v PodTemplateSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodTemplateSpec) MarshalJSON ¶

func (v PodTemplateSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodTemplateSpec) UnmarshalEasyJSON ¶

func (v *PodTemplateSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodTemplateSpec) UnmarshalJSON ¶

func (v *PodTemplateSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PortworxVolumeSource ¶

type PortworxVolumeSource struct {

	// 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.
	FsType string `json:"fsType,omitempty"`

	// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// VolumeID uniquely identifies a Portworx volume
	// Required: true
	VolumeID *string `json:"volumeID"`
}

PortworxVolumeSource PortworxVolumeSource represents a Portworx volume resource.

swagger:model PortworxVolumeSource

func (PortworxVolumeSource) MarshalEasyJSON ¶

func (v PortworxVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PortworxVolumeSource) MarshalJSON ¶

func (v PortworxVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PortworxVolumeSource) UnmarshalEasyJSON ¶

func (v *PortworxVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PortworxVolumeSource) UnmarshalJSON ¶

func (v *PortworxVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PreferredSchedulingTerm ¶

type PreferredSchedulingTerm struct {

	// A node selector term, associated with the corresponding weight.
	// Required: true
	Preference *NodeSelectorTerm `json:"preference"`

	// Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.
	// Required: true
	Weight *int32 `json:"weight"`
}

PreferredSchedulingTerm An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

swagger:model PreferredSchedulingTerm

func (PreferredSchedulingTerm) MarshalEasyJSON ¶

func (v PreferredSchedulingTerm) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PreferredSchedulingTerm) MarshalJSON ¶

func (v PreferredSchedulingTerm) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PreferredSchedulingTerm) UnmarshalEasyJSON ¶

func (v *PreferredSchedulingTerm) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PreferredSchedulingTerm) UnmarshalJSON ¶

func (v *PreferredSchedulingTerm) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Probe ¶

type Probe struct {

	// One and only one of the following should be specified. Exec specifies the action to take.
	Exec *ExecAction `json:"exec,omitempty"`

	// Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
	FailureThreshold int32 `json:"failureThreshold,omitempty"`

	// HTTPGet specifies the http request to perform.
	HTTPGet *HTTPGetAction `json:"httpGet,omitempty"`

	// 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
	InitialDelaySeconds int32 `json:"initialDelaySeconds,omitempty"`

	// How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
	PeriodSeconds int32 `json:"periodSeconds,omitempty"`

	// 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.
	SuccessThreshold int32 `json:"successThreshold,omitempty"`

	// TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported
	TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty"`

	// 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
	TimeoutSeconds int32 `json:"timeoutSeconds,omitempty"`
}

Probe Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

swagger:model Probe

func (Probe) MarshalEasyJSON ¶

func (v Probe) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Probe) MarshalJSON ¶

func (v Probe) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Probe) UnmarshalEasyJSON ¶

func (v *Probe) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Probe) UnmarshalJSON ¶

func (v *Probe) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ProjectedVolumeSource ¶

type ProjectedVolumeSource struct {

	// Mode bits to use on created files by default. Must be a value between 0 and 0777. 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.
	DefaultMode int32 `json:"defaultMode,omitempty"`

	// list of volume projections
	// Required: true
	Sources []*VolumeProjection `json:"sources"`
}

ProjectedVolumeSource Represents a projected volume source

swagger:model ProjectedVolumeSource

func (ProjectedVolumeSource) MarshalEasyJSON ¶

func (v ProjectedVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ProjectedVolumeSource) MarshalJSON ¶

func (v ProjectedVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ProjectedVolumeSource) UnmarshalEasyJSON ¶

func (v *ProjectedVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ProjectedVolumeSource) UnmarshalJSON ¶

func (v *ProjectedVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type QuobyteVolumeSource ¶

type QuobyteVolumeSource struct {

	// Group to map volume access to Default is no group
	Group string `json:"group,omitempty"`

	// ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.
	ReadOnly bool `json:"readOnly,omitempty"`

	// 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
	// Required: true
	Registry *string `json:"registry"`

	// Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin
	Tenant string `json:"tenant,omitempty"`

	// User to map volume access to Defaults to serivceaccount user
	User string `json:"user,omitempty"`

	// Volume is a string that references an already created Quobyte volume by name.
	// Required: true
	Volume *string `json:"volume"`
}

QuobyteVolumeSource Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

swagger:model QuobyteVolumeSource

func (QuobyteVolumeSource) MarshalEasyJSON ¶

func (v QuobyteVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (QuobyteVolumeSource) MarshalJSON ¶

func (v QuobyteVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*QuobyteVolumeSource) UnmarshalEasyJSON ¶

func (v *QuobyteVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*QuobyteVolumeSource) UnmarshalJSON ¶

func (v *QuobyteVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type RBDPersistentVolumeSource ¶

type RBDPersistentVolumeSource struct {

	// 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
	FsType string `json:"fsType,omitempty"`

	// The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	// Required: true
	Image *string `json:"image"`

	// 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
	Keyring string `json:"keyring,omitempty"`

	// A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	// Required: true
	Monitors []string `json:"monitors"`

	// The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	Pool string `json:"pool,omitempty"`

	// 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
	ReadOnly bool `json:"readOnly,omitempty"`

	// 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
	SecretRef *SecretReference `json:"secretRef,omitempty"`

	// The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	User string `json:"user,omitempty"`
}

RBDPersistentVolumeSource Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

swagger:model RBDPersistentVolumeSource

func (RBDPersistentVolumeSource) MarshalEasyJSON ¶

func (v RBDPersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RBDPersistentVolumeSource) MarshalJSON ¶

func (v RBDPersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RBDPersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *RBDPersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RBDPersistentVolumeSource) UnmarshalJSON ¶

func (v *RBDPersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type RBDVolumeSource ¶

type RBDVolumeSource struct {

	// 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
	FsType string `json:"fsType,omitempty"`

	// The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	// Required: true
	Image *string `json:"image"`

	// 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
	Keyring string `json:"keyring,omitempty"`

	// A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	// Required: true
	Monitors []string `json:"monitors"`

	// The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	Pool string `json:"pool,omitempty"`

	// 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
	ReadOnly bool `json:"readOnly,omitempty"`

	// 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
	SecretRef *LocalObjectReference `json:"secretRef,omitempty"`

	// The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	User string `json:"user,omitempty"`
}

RBDVolumeSource Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

swagger:model RBDVolumeSource

func (RBDVolumeSource) MarshalEasyJSON ¶

func (v RBDVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RBDVolumeSource) MarshalJSON ¶

func (v RBDVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RBDVolumeSource) UnmarshalEasyJSON ¶

func (v *RBDVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RBDVolumeSource) UnmarshalJSON ¶

func (v *RBDVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ReplicationController ¶

type ReplicationController struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// 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
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// 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
	Spec *ReplicationControllerSpec `json:"spec,omitempty"`

	// 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
	Status *ReplicationControllerStatus `json:"status,omitempty"`
}

ReplicationController ReplicationController represents the configuration of a replication controller.

swagger:model ReplicationController

func (ReplicationController) MarshalEasyJSON ¶

func (v ReplicationController) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ReplicationController) MarshalJSON ¶

func (v ReplicationController) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ReplicationController) UnmarshalEasyJSON ¶

func (v *ReplicationController) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ReplicationController) UnmarshalJSON ¶

func (v *ReplicationController) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ReplicationControllerCondition ¶

type ReplicationControllerCondition struct {

	// The last time the condition transitioned from one status to another.
	LastTransitionTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastTransitionTime,omitempty"`

	// A human readable message indicating details about the transition.
	Message string `json:"message,omitempty"`

	// The reason for the condition's last transition.
	Reason string `json:"reason,omitempty"`

	// Status of the condition, one of True, False, Unknown.
	// Required: true
	Status *string `json:"status"`

	// Type of replication controller condition.
	// Required: true
	Type *string `json:"type"`
}

ReplicationControllerCondition ReplicationControllerCondition describes the state of a replication controller at a certain point.

swagger:model ReplicationControllerCondition

func (ReplicationControllerCondition) MarshalEasyJSON ¶

func (v ReplicationControllerCondition) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ReplicationControllerCondition) MarshalJSON ¶

func (v ReplicationControllerCondition) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ReplicationControllerCondition) UnmarshalEasyJSON ¶

func (v *ReplicationControllerCondition) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ReplicationControllerCondition) UnmarshalJSON ¶

func (v *ReplicationControllerCondition) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ReplicationControllerList ¶

type ReplicationControllerList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller
	// Required: true
	Items []*ReplicationController `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

ReplicationControllerList ReplicationControllerList is a collection of replication controllers.

swagger:model ReplicationControllerList

func (ReplicationControllerList) MarshalEasyJSON ¶

func (v ReplicationControllerList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ReplicationControllerList) MarshalJSON ¶

func (v ReplicationControllerList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ReplicationControllerList) UnmarshalEasyJSON ¶

func (v *ReplicationControllerList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ReplicationControllerList) UnmarshalJSON ¶

func (v *ReplicationControllerList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ReplicationControllerSpec ¶

type ReplicationControllerSpec struct {

	// 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)
	MinReadySeconds int32 `json:"minReadySeconds,omitempty"`

	// 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
	Replicas int32 `json:"replicas,omitempty"`

	// 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
	Selector map[string]string `json:"selector,omitempty"`

	// 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
	Template *PodTemplateSpec `json:"template,omitempty"`
}

ReplicationControllerSpec ReplicationControllerSpec is the specification of a replication controller.

swagger:model ReplicationControllerSpec

func (ReplicationControllerSpec) MarshalEasyJSON ¶

func (v ReplicationControllerSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ReplicationControllerSpec) MarshalJSON ¶

func (v ReplicationControllerSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ReplicationControllerSpec) UnmarshalEasyJSON ¶

func (v *ReplicationControllerSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ReplicationControllerSpec) UnmarshalJSON ¶

func (v *ReplicationControllerSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ReplicationControllerStatus ¶

type ReplicationControllerStatus struct {

	// The number of available replicas (ready for at least minReadySeconds) for this replication controller.
	AvailableReplicas int32 `json:"availableReplicas,omitempty"`

	// Represents the latest available observations of a replication controller's current state.
	Conditions []*ReplicationControllerCondition `json:"conditions,omitempty"`

	// The number of pods that have labels matching the labels of the pod template of the replication controller.
	FullyLabeledReplicas int32 `json:"fullyLabeledReplicas,omitempty"`

	// ObservedGeneration reflects the generation of the most recently observed replication controller.
	ObservedGeneration int64 `json:"observedGeneration,omitempty"`

	// The number of ready replicas for this replication controller.
	ReadyReplicas int32 `json:"readyReplicas,omitempty"`

	// Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller
	// Required: true
	Replicas *int32 `json:"replicas"`
}

ReplicationControllerStatus ReplicationControllerStatus represents the current status of a replication controller.

swagger:model ReplicationControllerStatus

func (ReplicationControllerStatus) MarshalEasyJSON ¶

func (v ReplicationControllerStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ReplicationControllerStatus) MarshalJSON ¶

func (v ReplicationControllerStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ReplicationControllerStatus) UnmarshalEasyJSON ¶

func (v *ReplicationControllerStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ReplicationControllerStatus) UnmarshalJSON ¶

func (v *ReplicationControllerStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ResourceFieldSelector ¶

type ResourceFieldSelector struct {

	// Container name: required for volumes, optional for env vars
	ContainerName string `json:"containerName,omitempty"`

	// Specifies the output format of the exposed resources, defaults to "1"
	Divisor *apimachinery_pkg_api_resource.Quantity `json:"divisor,omitempty"`

	// Required: resource to select
	// Required: true
	Resource *string `json:"resource"`
}

ResourceFieldSelector ResourceFieldSelector represents container resources (cpu, memory) and their output format

swagger:model ResourceFieldSelector

func (ResourceFieldSelector) MarshalEasyJSON ¶

func (v ResourceFieldSelector) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ResourceFieldSelector) MarshalJSON ¶

func (v ResourceFieldSelector) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ResourceFieldSelector) UnmarshalEasyJSON ¶

func (v *ResourceFieldSelector) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ResourceFieldSelector) UnmarshalJSON ¶

func (v *ResourceFieldSelector) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ResourceQuota ¶

type ResourceQuota struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Spec *ResourceQuotaSpec `json:"spec,omitempty"`

	// Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Status *ResourceQuotaStatus `json:"status,omitempty"`
}

ResourceQuota ResourceQuota sets aggregate quota restrictions enforced per namespace

swagger:model ResourceQuota

func (ResourceQuota) MarshalEasyJSON ¶

func (v ResourceQuota) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ResourceQuota) MarshalJSON ¶

func (v ResourceQuota) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ResourceQuota) UnmarshalEasyJSON ¶

func (v *ResourceQuota) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ResourceQuota) UnmarshalJSON ¶

func (v *ResourceQuota) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ResourceQuotaList ¶

type ResourceQuotaList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
	// Required: true
	Items []*ResourceQuota `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

ResourceQuotaList ResourceQuotaList is a list of ResourceQuota items.

swagger:model ResourceQuotaList

func (ResourceQuotaList) MarshalEasyJSON ¶

func (v ResourceQuotaList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ResourceQuotaList) MarshalJSON ¶

func (v ResourceQuotaList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ResourceQuotaList) UnmarshalEasyJSON ¶

func (v *ResourceQuotaList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ResourceQuotaList) UnmarshalJSON ¶

func (v *ResourceQuotaList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ResourceQuotaSpec ¶

type ResourceQuotaSpec struct {

	// hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
	Hard map[string]*apimachinery_pkg_api_resource.Quantity `json:"hard,omitempty"`

	// scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
	ScopeSelector *ScopeSelector `json:"scopeSelector,omitempty"`

	// A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.
	Scopes []string `json:"scopes,omitempty"`
}

ResourceQuotaSpec ResourceQuotaSpec defines the desired hard limits to enforce for Quota.

swagger:model ResourceQuotaSpec

func (ResourceQuotaSpec) MarshalEasyJSON ¶

func (v ResourceQuotaSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ResourceQuotaSpec) MarshalJSON ¶

func (v ResourceQuotaSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ResourceQuotaSpec) UnmarshalEasyJSON ¶

func (v *ResourceQuotaSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ResourceQuotaSpec) UnmarshalJSON ¶

func (v *ResourceQuotaSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ResourceQuotaStatus ¶

type ResourceQuotaStatus struct {

	// Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
	Hard map[string]*apimachinery_pkg_api_resource.Quantity `json:"hard,omitempty"`

	// Used is the current observed total usage of the resource in the namespace.
	Used map[string]*apimachinery_pkg_api_resource.Quantity `json:"used,omitempty"`
}

ResourceQuotaStatus ResourceQuotaStatus defines the enforced hard limits and observed use.

swagger:model ResourceQuotaStatus

func (ResourceQuotaStatus) MarshalEasyJSON ¶

func (v ResourceQuotaStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ResourceQuotaStatus) MarshalJSON ¶

func (v ResourceQuotaStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ResourceQuotaStatus) UnmarshalEasyJSON ¶

func (v *ResourceQuotaStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ResourceQuotaStatus) UnmarshalJSON ¶

func (v *ResourceQuotaStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ResourceRequirements ¶

type ResourceRequirements struct {

	// Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
	Limits map[string]*apimachinery_pkg_api_resource.Quantity `json:"limits,omitempty"`

	// 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/
	Requests map[string]*apimachinery_pkg_api_resource.Quantity `json:"requests,omitempty"`
}

ResourceRequirements ResourceRequirements describes the compute resource requirements.

swagger:model ResourceRequirements

func (ResourceRequirements) MarshalEasyJSON ¶

func (v ResourceRequirements) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ResourceRequirements) MarshalJSON ¶

func (v ResourceRequirements) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ResourceRequirements) UnmarshalEasyJSON ¶

func (v *ResourceRequirements) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ResourceRequirements) UnmarshalJSON ¶

func (v *ResourceRequirements) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SELinuxOptions ¶

type SELinuxOptions struct {

	// Level is SELinux level label that applies to the container.
	Level string `json:"level,omitempty"`

	// Role is a SELinux role label that applies to the container.
	Role string `json:"role,omitempty"`

	// Type is a SELinux type label that applies to the container.
	Type string `json:"type,omitempty"`

	// User is a SELinux user label that applies to the container.
	User string `json:"user,omitempty"`
}

SELinuxOptions SELinuxOptions are the labels to be applied to the container

swagger:model SELinuxOptions

func (SELinuxOptions) MarshalEasyJSON ¶

func (v SELinuxOptions) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SELinuxOptions) MarshalJSON ¶

func (v SELinuxOptions) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SELinuxOptions) UnmarshalEasyJSON ¶

func (v *SELinuxOptions) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SELinuxOptions) UnmarshalJSON ¶

func (v *SELinuxOptions) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ScaleIOPersistentVolumeSource ¶

type ScaleIOPersistentVolumeSource struct {

	// Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs"
	FsType string `json:"fsType,omitempty"`

	// The host address of the ScaleIO API Gateway.
	// Required: true
	Gateway *string `json:"gateway"`

	// The name of the ScaleIO Protection Domain for the configured storage.
	ProtectionDomain string `json:"protectionDomain,omitempty"`

	// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.
	// Required: true
	SecretRef *SecretReference `json:"secretRef"`

	// Flag to enable/disable SSL communication with Gateway, default false
	SslEnabled bool `json:"sslEnabled,omitempty"`

	// Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.
	StorageMode string `json:"storageMode,omitempty"`

	// The ScaleIO Storage Pool associated with the protection domain.
	StoragePool string `json:"storagePool,omitempty"`

	// The name of the storage system as configured in ScaleIO.
	// Required: true
	System *string `json:"system"`

	// The name of a volume already created in the ScaleIO system that is associated with this volume source.
	VolumeName string `json:"volumeName,omitempty"`
}

ScaleIOPersistentVolumeSource ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume

swagger:model ScaleIOPersistentVolumeSource

func (ScaleIOPersistentVolumeSource) MarshalEasyJSON ¶

func (v ScaleIOPersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ScaleIOPersistentVolumeSource) MarshalJSON ¶

func (v ScaleIOPersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ScaleIOPersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *ScaleIOPersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ScaleIOPersistentVolumeSource) UnmarshalJSON ¶

func (v *ScaleIOPersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ScaleIOVolumeSource ¶

type ScaleIOVolumeSource struct {

	// Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs".
	FsType string `json:"fsType,omitempty"`

	// The host address of the ScaleIO API Gateway.
	// Required: true
	Gateway *string `json:"gateway"`

	// The name of the ScaleIO Protection Domain for the configured storage.
	ProtectionDomain string `json:"protectionDomain,omitempty"`

	// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.
	// Required: true
	SecretRef *LocalObjectReference `json:"secretRef"`

	// Flag to enable/disable SSL communication with Gateway, default false
	SslEnabled bool `json:"sslEnabled,omitempty"`

	// Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.
	StorageMode string `json:"storageMode,omitempty"`

	// The ScaleIO Storage Pool associated with the protection domain.
	StoragePool string `json:"storagePool,omitempty"`

	// The name of the storage system as configured in ScaleIO.
	// Required: true
	System *string `json:"system"`

	// The name of a volume already created in the ScaleIO system that is associated with this volume source.
	VolumeName string `json:"volumeName,omitempty"`
}

ScaleIOVolumeSource ScaleIOVolumeSource represents a persistent ScaleIO volume

swagger:model ScaleIOVolumeSource

func (ScaleIOVolumeSource) MarshalEasyJSON ¶

func (v ScaleIOVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ScaleIOVolumeSource) MarshalJSON ¶

func (v ScaleIOVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ScaleIOVolumeSource) UnmarshalEasyJSON ¶

func (v *ScaleIOVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ScaleIOVolumeSource) UnmarshalJSON ¶

func (v *ScaleIOVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ScopeSelector ¶

type ScopeSelector struct {

	// A list of scope selector requirements by scope of the resources.
	MatchExpressions []*ScopedResourceSelectorRequirement `json:"matchExpressions,omitempty"`
}

ScopeSelector A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.

swagger:model ScopeSelector

func (ScopeSelector) MarshalEasyJSON ¶

func (v ScopeSelector) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ScopeSelector) MarshalJSON ¶

func (v ScopeSelector) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ScopeSelector) UnmarshalEasyJSON ¶

func (v *ScopeSelector) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ScopeSelector) UnmarshalJSON ¶

func (v *ScopeSelector) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ScopedResourceSelectorRequirement ¶

type ScopedResourceSelectorRequirement struct {

	// Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.
	// Required: true
	Operator *string `json:"operator"`

	// The name of the scope that the selector applies to.
	// Required: true
	ScopeName *string `json:"scopeName"`

	// 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.
	Values []string `json:"values,omitempty"`
}

ScopedResourceSelectorRequirement A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.

swagger:model ScopedResourceSelectorRequirement

func (ScopedResourceSelectorRequirement) MarshalEasyJSON ¶

func (v ScopedResourceSelectorRequirement) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ScopedResourceSelectorRequirement) MarshalJSON ¶

func (v ScopedResourceSelectorRequirement) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ScopedResourceSelectorRequirement) UnmarshalEasyJSON ¶

func (v *ScopedResourceSelectorRequirement) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ScopedResourceSelectorRequirement) UnmarshalJSON ¶

func (v *ScopedResourceSelectorRequirement) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Secret ¶

type Secret struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Data map[string]strfmt.Base64 `json:"data,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// 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.
	StringData map[string]string `json:"stringData,omitempty"`

	// Used to facilitate programmatic handling of secret data.
	Type string `json:"type,omitempty"`
}

Secret Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.

swagger:model Secret

func (Secret) MarshalEasyJSON ¶

func (v Secret) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Secret) MarshalJSON ¶

func (v Secret) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Secret) UnmarshalEasyJSON ¶

func (v *Secret) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Secret) UnmarshalJSON ¶

func (v *Secret) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SecretEnvSource ¶

type SecretEnvSource struct {

	// Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`

	// Specify whether the Secret must be defined
	Optional bool `json:"optional,omitempty"`
}

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

swagger:model SecretEnvSource

func (SecretEnvSource) MarshalEasyJSON ¶

func (v SecretEnvSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SecretEnvSource) MarshalJSON ¶

func (v SecretEnvSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SecretEnvSource) UnmarshalEasyJSON ¶

func (v *SecretEnvSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SecretEnvSource) UnmarshalJSON ¶

func (v *SecretEnvSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SecretKeySelector ¶

type SecretKeySelector struct {

	// The key of the secret to select from.  Must be a valid secret key.
	// Required: true
	Key *string `json:"key"`

	// Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`

	// Specify whether the Secret or its key must be defined
	Optional bool `json:"optional,omitempty"`
}

SecretKeySelector SecretKeySelector selects a key of a Secret.

swagger:model SecretKeySelector

func (SecretKeySelector) MarshalEasyJSON ¶

func (v SecretKeySelector) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SecretKeySelector) MarshalJSON ¶

func (v SecretKeySelector) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SecretKeySelector) UnmarshalEasyJSON ¶

func (v *SecretKeySelector) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SecretKeySelector) UnmarshalJSON ¶

func (v *SecretKeySelector) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SecretList ¶

type SecretList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret
	// Required: true
	Items []*Secret `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

SecretList SecretList is a list of Secret.

swagger:model SecretList

func (SecretList) MarshalEasyJSON ¶

func (v SecretList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SecretList) MarshalJSON ¶

func (v SecretList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SecretList) UnmarshalEasyJSON ¶

func (v *SecretList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SecretList) UnmarshalJSON ¶

func (v *SecretList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SecretProjection ¶

type SecretProjection struct {

	// If unspecified, each key-value pair in the Data field of the referenced Secret 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 Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
	Items []*KeyToPath `json:"items,omitempty"`

	// Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`

	// Specify whether the Secret or its key must be defined
	Optional bool `json:"optional,omitempty"`
}

SecretProjection Adapts a secret into a projected volume.

The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.

swagger:model SecretProjection

func (SecretProjection) MarshalEasyJSON ¶

func (v SecretProjection) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SecretProjection) MarshalJSON ¶

func (v SecretProjection) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SecretProjection) UnmarshalEasyJSON ¶

func (v *SecretProjection) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SecretProjection) UnmarshalJSON ¶

func (v *SecretProjection) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SecretReference ¶

type SecretReference struct {

	// Name is unique within a namespace to reference a secret resource.
	Name string `json:"name,omitempty"`

	// Namespace defines the space within which the secret name must be unique.
	Namespace string `json:"namespace,omitempty"`
}

SecretReference SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace

swagger:model SecretReference

func (SecretReference) MarshalEasyJSON ¶

func (v SecretReference) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SecretReference) MarshalJSON ¶

func (v SecretReference) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SecretReference) UnmarshalEasyJSON ¶

func (v *SecretReference) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SecretReference) UnmarshalJSON ¶

func (v *SecretReference) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SecretVolumeSource ¶

type SecretVolumeSource struct {

	// 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.
	DefaultMode int32 `json:"defaultMode,omitempty"`

	// If unspecified, each key-value pair in the Data field of the referenced Secret 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 Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
	Items []*KeyToPath `json:"items,omitempty"`

	// Specify whether the Secret or its keys must be defined
	Optional bool `json:"optional,omitempty"`

	// Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
	SecretName string `json:"secretName,omitempty"`
}

SecretVolumeSource Adapts a Secret into a volume.

The contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.

swagger:model SecretVolumeSource

func (SecretVolumeSource) MarshalEasyJSON ¶

func (v SecretVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SecretVolumeSource) MarshalJSON ¶

func (v SecretVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SecretVolumeSource) UnmarshalEasyJSON ¶

func (v *SecretVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SecretVolumeSource) UnmarshalJSON ¶

func (v *SecretVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SecurityContext ¶

type SecurityContext struct {

	// AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN
	AllowPrivilegeEscalation bool `json:"allowPrivilegeEscalation,omitempty"`

	// The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.
	Capabilities *Capabilities `json:"capabilities,omitempty"`

	// Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.
	Privileged bool `json:"privileged,omitempty"`

	// procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.
	ProcMount string `json:"procMount,omitempty"`

	// Whether this container has a read-only root filesystem. Default is false.
	ReadOnlyRootFilesystem bool `json:"readOnlyRootFilesystem,omitempty"`

	// The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
	RunAsGroup int64 `json:"runAsGroup,omitempty"`

	// 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 PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
	RunAsNonRoot bool `json:"runAsNonRoot,omitempty"`

	// The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
	RunAsUser int64 `json:"runAsUser,omitempty"`

	// The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container.  May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
	SeLinuxOptions *SELinuxOptions `json:"seLinuxOptions,omitempty"`

	// Windows security options.
	WindowsOptions *WindowsSecurityContextOptions `json:"windowsOptions,omitempty"`
}

SecurityContext SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

swagger:model SecurityContext

func (SecurityContext) MarshalEasyJSON ¶

func (v SecurityContext) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SecurityContext) MarshalJSON ¶

func (v SecurityContext) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SecurityContext) UnmarshalEasyJSON ¶

func (v *SecurityContext) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SecurityContext) UnmarshalJSON ¶

func (v *SecurityContext) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Service ¶

type Service struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Spec *ServiceSpec `json:"spec,omitempty"`

	// Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
	Status *ServiceStatus `json:"status,omitempty"`
}

Service Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.

swagger:model Service

func (Service) MarshalEasyJSON ¶

func (v Service) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Service) MarshalJSON ¶

func (v Service) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Service) UnmarshalEasyJSON ¶

func (v *Service) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Service) UnmarshalJSON ¶

func (v *Service) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ServiceAccount ¶

type ServiceAccount struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.
	AutomountServiceAccountToken bool `json:"automountServiceAccountToken,omitempty"`

	// 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
	ImagePullSecrets []*LocalObjectReference `json:"imagePullSecrets,omitempty"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// 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
	Secrets []*ObjectReference `json:"secrets,omitempty"`
}

ServiceAccount 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

swagger:model ServiceAccount

func (ServiceAccount) MarshalEasyJSON ¶

func (v ServiceAccount) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ServiceAccount) MarshalJSON ¶

func (v ServiceAccount) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ServiceAccount) UnmarshalEasyJSON ¶

func (v *ServiceAccount) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ServiceAccount) UnmarshalJSON ¶

func (v *ServiceAccount) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ServiceAccountList ¶

type ServiceAccountList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
	// Required: true
	Items []*ServiceAccount `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

ServiceAccountList ServiceAccountList is a list of ServiceAccount objects

swagger:model ServiceAccountList

func (ServiceAccountList) MarshalEasyJSON ¶

func (v ServiceAccountList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ServiceAccountList) MarshalJSON ¶

func (v ServiceAccountList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ServiceAccountList) UnmarshalEasyJSON ¶

func (v *ServiceAccountList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ServiceAccountList) UnmarshalJSON ¶

func (v *ServiceAccountList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ServiceAccountTokenProjection ¶

type ServiceAccountTokenProjection struct {

	// Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.
	Audience string `json:"audience,omitempty"`

	// ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.
	ExpirationSeconds int64 `json:"expirationSeconds,omitempty"`

	// Path is the path relative to the mount point of the file to project the token into.
	// Required: true
	Path *string `json:"path"`
}

ServiceAccountTokenProjection ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).

swagger:model ServiceAccountTokenProjection

func (ServiceAccountTokenProjection) MarshalEasyJSON ¶

func (v ServiceAccountTokenProjection) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ServiceAccountTokenProjection) MarshalJSON ¶

func (v ServiceAccountTokenProjection) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ServiceAccountTokenProjection) UnmarshalEasyJSON ¶

func (v *ServiceAccountTokenProjection) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ServiceAccountTokenProjection) UnmarshalJSON ¶

func (v *ServiceAccountTokenProjection) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ServiceList ¶

type ServiceList struct {

	// 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
	APIVersion string `json:"apiVersion,omitempty"`

	// List of services
	// Required: true
	Items []*Service `json:"items"`

	// 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
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

ServiceList ServiceList holds a list of services.

swagger:model ServiceList

func (ServiceList) MarshalEasyJSON ¶

func (v ServiceList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ServiceList) MarshalJSON ¶

func (v ServiceList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ServiceList) UnmarshalEasyJSON ¶

func (v *ServiceList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ServiceList) UnmarshalJSON ¶

func (v *ServiceList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ServicePort ¶

type ServicePort struct {

	// The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service.
	Name string `json:"name,omitempty"`

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

	// The port that will be exposed by this service.
	// Required: true
	Port *int32 `json:"port"`

	// The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP.
	Protocol string `json:"protocol,omitempty"`

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

ServicePort ServicePort contains information on service's port.

swagger:model ServicePort

func (ServicePort) MarshalEasyJSON ¶

func (v ServicePort) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ServicePort) MarshalJSON ¶

func (v ServicePort) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ServicePort) UnmarshalEasyJSON ¶

func (v *ServicePort) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ServicePort) UnmarshalJSON ¶

func (v *ServicePort) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ServiceSpec ¶

type ServiceSpec struct {

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

	// externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service.  These IPs are not managed by Kubernetes.  The user is responsible for ensuring that traffic arrives at a node with this IP.  A common example is external load-balancers that are not part of the Kubernetes system.
	ExternalIPs []string `json:"externalIPs,omitempty"`

	// externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName.
	ExternalName string `json:"externalName,omitempty"`

	// externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. "Local" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. "Cluster" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.
	ExternalTrafficPolicy string `json:"externalTrafficPolicy,omitempty"`

	// healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local.
	HealthCheckNodePort int32 `json:"healthCheckNodePort,omitempty"`

	// Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.
	LoadBalancerIP string `json:"loadBalancerIP,omitempty"`

	// If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/
	LoadBalancerSourceRanges []string `json:"loadBalancerSourceRanges,omitempty"`

	// The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
	Ports []*ServicePort `json:"ports,omitempty"`

	// publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery.
	PublishNotReadyAddresses bool `json:"publishNotReadyAddresses,omitempty"`

	// Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/
	Selector map[string]string `json:"selector,omitempty"`

	// Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
	SessionAffinity string `json:"sessionAffinity,omitempty"`

	// sessionAffinityConfig contains the configurations of session affinity.
	SessionAffinityConfig *SessionAffinityConfig `json:"sessionAffinityConfig,omitempty"`

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

ServiceSpec ServiceSpec describes the attributes that a user creates on a service.

swagger:model ServiceSpec

func (ServiceSpec) MarshalEasyJSON ¶

func (v ServiceSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ServiceSpec) MarshalJSON ¶

func (v ServiceSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ServiceSpec) UnmarshalEasyJSON ¶

func (v *ServiceSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ServiceSpec) UnmarshalJSON ¶

func (v *ServiceSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ServiceStatus ¶

type ServiceStatus struct {

	// LoadBalancer contains the current status of the load-balancer, if one is present.
	LoadBalancer *LoadBalancerStatus `json:"loadBalancer,omitempty"`
}

ServiceStatus ServiceStatus represents the current status of a service.

swagger:model ServiceStatus

func (ServiceStatus) MarshalEasyJSON ¶

func (v ServiceStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ServiceStatus) MarshalJSON ¶

func (v ServiceStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ServiceStatus) UnmarshalEasyJSON ¶

func (v *ServiceStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ServiceStatus) UnmarshalJSON ¶

func (v *ServiceStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SessionAffinityConfig ¶

type SessionAffinityConfig struct {

	// clientIP contains the configurations of Client IP based session affinity.
	ClientIP *ClientIPConfig `json:"clientIP,omitempty"`
}

SessionAffinityConfig SessionAffinityConfig represents the configurations of session affinity.

swagger:model SessionAffinityConfig

func (SessionAffinityConfig) MarshalEasyJSON ¶

func (v SessionAffinityConfig) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SessionAffinityConfig) MarshalJSON ¶

func (v SessionAffinityConfig) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SessionAffinityConfig) UnmarshalEasyJSON ¶

func (v *SessionAffinityConfig) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SessionAffinityConfig) UnmarshalJSON ¶

func (v *SessionAffinityConfig) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type StorageOSPersistentVolumeSource ¶

type StorageOSPersistentVolumeSource struct {

	// 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.
	FsType string `json:"fsType,omitempty"`

	// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted.
	SecretRef *ObjectReference `json:"secretRef,omitempty"`

	// VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.
	VolumeName string `json:"volumeName,omitempty"`

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

StorageOSPersistentVolumeSource Represents a StorageOS persistent volume resource.

swagger:model StorageOSPersistentVolumeSource

func (StorageOSPersistentVolumeSource) MarshalEasyJSON ¶

func (v StorageOSPersistentVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (StorageOSPersistentVolumeSource) MarshalJSON ¶

func (v StorageOSPersistentVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*StorageOSPersistentVolumeSource) UnmarshalEasyJSON ¶

func (v *StorageOSPersistentVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*StorageOSPersistentVolumeSource) UnmarshalJSON ¶

func (v *StorageOSPersistentVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type StorageOSVolumeSource ¶

type StorageOSVolumeSource struct {

	// 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.
	FsType string `json:"fsType,omitempty"`

	// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
	ReadOnly bool `json:"readOnly,omitempty"`

	// SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted.
	SecretRef *LocalObjectReference `json:"secretRef,omitempty"`

	// VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.
	VolumeName string `json:"volumeName,omitempty"`

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

StorageOSVolumeSource Represents a StorageOS persistent volume resource.

swagger:model StorageOSVolumeSource

func (StorageOSVolumeSource) MarshalEasyJSON ¶

func (v StorageOSVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (StorageOSVolumeSource) MarshalJSON ¶

func (v StorageOSVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*StorageOSVolumeSource) UnmarshalEasyJSON ¶

func (v *StorageOSVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*StorageOSVolumeSource) UnmarshalJSON ¶

func (v *StorageOSVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Sysctl ¶

type Sysctl struct {

	// Name of a property to set
	// Required: true
	Name *string `json:"name"`

	// Value of a property to set
	// Required: true
	Value *string `json:"value"`
}

Sysctl Sysctl defines a kernel parameter to be set

swagger:model Sysctl

func (Sysctl) MarshalEasyJSON ¶

func (v Sysctl) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Sysctl) MarshalJSON ¶

func (v Sysctl) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Sysctl) UnmarshalEasyJSON ¶

func (v *Sysctl) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Sysctl) UnmarshalJSON ¶

func (v *Sysctl) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type TCPSocketAction ¶

type TCPSocketAction struct {

	// Optional: Host name to connect to, defaults to the pod IP.
	Host string `json:"host,omitempty"`

	// 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.
	// Required: true
	Port *apimachinery_pkg_util_intstr.IntOrString `json:"port"`
}

TCPSocketAction TCPSocketAction describes an action based on opening a socket

swagger:model TCPSocketAction

func (TCPSocketAction) MarshalEasyJSON ¶

func (v TCPSocketAction) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (TCPSocketAction) MarshalJSON ¶

func (v TCPSocketAction) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*TCPSocketAction) UnmarshalEasyJSON ¶

func (v *TCPSocketAction) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*TCPSocketAction) UnmarshalJSON ¶

func (v *TCPSocketAction) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Taint ¶

type Taint struct {

	// Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
	// Required: true
	Effect *string `json:"effect"`

	// Required. The taint key to be applied to a node.
	// Required: true
	Key *string `json:"key"`

	// TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.
	TimeAdded *apimachinery_pkg_apis_meta_v1.Time `json:"timeAdded,omitempty"`

	// Required. The taint value corresponding to the taint key.
	Value string `json:"value,omitempty"`
}

Taint The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.

swagger:model Taint

func (Taint) MarshalEasyJSON ¶

func (v Taint) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Taint) MarshalJSON ¶

func (v Taint) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Taint) UnmarshalEasyJSON ¶

func (v *Taint) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Taint) UnmarshalJSON ¶

func (v *Taint) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Toleration ¶

type Toleration struct {

	// Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
	Effect string `json:"effect,omitempty"`

	// Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.
	Key string `json:"key,omitempty"`

	// Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.
	Operator string `json:"operator,omitempty"`

	// TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.
	TolerationSeconds int64 `json:"tolerationSeconds,omitempty"`

	// Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.
	Value string `json:"value,omitempty"`
}

Toleration The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

swagger:model Toleration

func (Toleration) MarshalEasyJSON ¶

func (v Toleration) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Toleration) MarshalJSON ¶

func (v Toleration) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Toleration) UnmarshalEasyJSON ¶

func (v *Toleration) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Toleration) UnmarshalJSON ¶

func (v *Toleration) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type TopologySelectorLabelRequirement ¶

type TopologySelectorLabelRequirement struct {

	// The label key that the selector applies to.
	// Required: true
	Key *string `json:"key"`

	// An array of string values. One value must match the label to be selected. Each entry in Values is ORed.
	// Required: true
	Values []string `json:"values"`
}

TopologySelectorLabelRequirement A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.

swagger:model TopologySelectorLabelRequirement

func (TopologySelectorLabelRequirement) MarshalEasyJSON ¶

func (v TopologySelectorLabelRequirement) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (TopologySelectorLabelRequirement) MarshalJSON ¶

func (v TopologySelectorLabelRequirement) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*TopologySelectorLabelRequirement) UnmarshalEasyJSON ¶

func (v *TopologySelectorLabelRequirement) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*TopologySelectorLabelRequirement) UnmarshalJSON ¶

func (v *TopologySelectorLabelRequirement) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type TopologySelectorTerm ¶

type TopologySelectorTerm struct {

	// A list of topology selector requirements by labels.
	MatchLabelExpressions []*TopologySelectorLabelRequirement `json:"matchLabelExpressions,omitempty"`
}

TopologySelectorTerm A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.

swagger:model TopologySelectorTerm

func (TopologySelectorTerm) MarshalEasyJSON ¶

func (v TopologySelectorTerm) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (TopologySelectorTerm) MarshalJSON ¶

func (v TopologySelectorTerm) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*TopologySelectorTerm) UnmarshalEasyJSON ¶

func (v *TopologySelectorTerm) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*TopologySelectorTerm) UnmarshalJSON ¶

func (v *TopologySelectorTerm) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type TypedLocalObjectReference ¶

type TypedLocalObjectReference struct {

	// APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.
	APIGroup string `json:"apiGroup,omitempty"`

	// Kind is the type of resource being referenced
	// Required: true
	Kind *string `json:"kind"`

	// Name is the name of resource being referenced
	// Required: true
	Name *string `json:"name"`
}

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

swagger:model TypedLocalObjectReference

func (TypedLocalObjectReference) MarshalEasyJSON ¶

func (v TypedLocalObjectReference) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (TypedLocalObjectReference) MarshalJSON ¶

func (v TypedLocalObjectReference) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*TypedLocalObjectReference) UnmarshalEasyJSON ¶

func (v *TypedLocalObjectReference) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*TypedLocalObjectReference) UnmarshalJSON ¶

func (v *TypedLocalObjectReference) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Volume ¶

type Volume struct {

	// 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
	AwsElasticBlockStore *AWSElasticBlockStoreVolumeSource `json:"awsElasticBlockStore,omitempty"`

	// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
	AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty"`

	// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
	AzureFile *AzureFileVolumeSource `json:"azureFile,omitempty"`

	// CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
	Cephfs *CephFSVolumeSource `json:"cephfs,omitempty"`

	// 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
	Cinder *CinderVolumeSource `json:"cinder,omitempty"`

	// ConfigMap represents a configMap that should populate this volume
	ConfigMap *ConfigMapVolumeSource `json:"configMap,omitempty"`

	// CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature).
	Csi *CSIVolumeSource `json:"csi,omitempty"`

	// DownwardAPI represents downward API about the pod that should populate this volume
	DownwardAPI *DownwardAPIVolumeSource `json:"downwardAPI,omitempty"`

	// EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
	EmptyDir *EmptyDirVolumeSource `json:"emptyDir,omitempty"`

	// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
	Fc *FCVolumeSource `json:"fc,omitempty"`

	// FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.
	FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty"`

	// Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
	Flocker *FlockerVolumeSource `json:"flocker,omitempty"`

	// 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
	GcePersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty"`

	// GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.
	GitRepo *GitRepoVolumeSource `json:"gitRepo,omitempty"`

	// 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
	Glusterfs *GlusterfsVolumeSource `json:"glusterfs,omitempty"`

	// 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
	HostPath *HostPathVolumeSource `json:"hostPath,omitempty"`

	// 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
	Iscsi *ISCSIVolumeSource `json:"iscsi,omitempty"`

	// 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
	// Required: true
	Name *string `json:"name"`

	// NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
	Nfs *NFSVolumeSource `json:"nfs,omitempty"`

	// PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
	PersistentVolumeClaim *PersistentVolumeClaimVolumeSource `json:"persistentVolumeClaim,omitempty"`

	// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
	PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty"`

	// PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
	PortworxVolume *PortworxVolumeSource `json:"portworxVolume,omitempty"`

	// Items for all in one resources secrets, configmaps, and downward API
	Projected *ProjectedVolumeSource `json:"projected,omitempty"`

	// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
	Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty"`

	// 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
	Rbd *RBDVolumeSource `json:"rbd,omitempty"`

	// ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
	ScaleIO *ScaleIOVolumeSource `json:"scaleIO,omitempty"`

	// Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
	Secret *SecretVolumeSource `json:"secret,omitempty"`

	// StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
	Storageos *StorageOSVolumeSource `json:"storageos,omitempty"`

	// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
	VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty"`
}

Volume Volume represents a named volume in a pod that may be accessed by any container in the pod.

swagger:model Volume

func (Volume) MarshalEasyJSON ¶

func (v Volume) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Volume) MarshalJSON ¶

func (v Volume) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Volume) UnmarshalEasyJSON ¶

func (v *Volume) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Volume) UnmarshalJSON ¶

func (v *Volume) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type VolumeDevice ¶

type VolumeDevice struct {

	// devicePath is the path inside of the container that the device will be mapped to.
	// Required: true
	DevicePath *string `json:"devicePath"`

	// name must match the name of a persistentVolumeClaim in the pod
	// Required: true
	Name *string `json:"name"`
}

VolumeDevice volumeDevice describes a mapping of a raw block device within a container.

swagger:model VolumeDevice

func (VolumeDevice) MarshalEasyJSON ¶

func (v VolumeDevice) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (VolumeDevice) MarshalJSON ¶

func (v VolumeDevice) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*VolumeDevice) UnmarshalEasyJSON ¶

func (v *VolumeDevice) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*VolumeDevice) UnmarshalJSON ¶

func (v *VolumeDevice) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type VolumeMount ¶

type VolumeMount struct {

	// Path within the container at which the volume should be mounted.  Must not contain ':'.
	// Required: true
	MountPath *string `json:"mountPath"`

	// mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.
	MountPropagation string `json:"mountPropagation,omitempty"`

	// This must match the Name of a Volume.
	// Required: true
	Name *string `json:"name"`

	// Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.
	ReadOnly bool `json:"readOnly,omitempty"`

	// Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).
	SubPath string `json:"subPath,omitempty"`

	// Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. This field is beta in 1.15.
	SubPathExpr string `json:"subPathExpr,omitempty"`
}

VolumeMount VolumeMount describes a mounting of a Volume within a container.

swagger:model VolumeMount

func (VolumeMount) MarshalEasyJSON ¶

func (v VolumeMount) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (VolumeMount) MarshalJSON ¶

func (v VolumeMount) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*VolumeMount) UnmarshalEasyJSON ¶

func (v *VolumeMount) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*VolumeMount) UnmarshalJSON ¶

func (v *VolumeMount) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type VolumeNodeAffinity ¶

type VolumeNodeAffinity struct {

	// Required specifies hard node constraints that must be met.
	Required *NodeSelector `json:"required,omitempty"`
}

VolumeNodeAffinity VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.

swagger:model VolumeNodeAffinity

func (VolumeNodeAffinity) MarshalEasyJSON ¶

func (v VolumeNodeAffinity) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (VolumeNodeAffinity) MarshalJSON ¶

func (v VolumeNodeAffinity) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*VolumeNodeAffinity) UnmarshalEasyJSON ¶

func (v *VolumeNodeAffinity) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*VolumeNodeAffinity) UnmarshalJSON ¶

func (v *VolumeNodeAffinity) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type VolumeProjection ¶

type VolumeProjection struct {

	// information about the configMap data to project
	ConfigMap *ConfigMapProjection `json:"configMap,omitempty"`

	// information about the downwardAPI data to project
	DownwardAPI *DownwardAPIProjection `json:"downwardAPI,omitempty"`

	// information about the secret data to project
	Secret *SecretProjection `json:"secret,omitempty"`

	// information about the serviceAccountToken data to project
	ServiceAccountToken *ServiceAccountTokenProjection `json:"serviceAccountToken,omitempty"`
}

VolumeProjection Projection that may be projected along with other supported volume types

swagger:model VolumeProjection

func (VolumeProjection) MarshalEasyJSON ¶

func (v VolumeProjection) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (VolumeProjection) MarshalJSON ¶

func (v VolumeProjection) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*VolumeProjection) UnmarshalEasyJSON ¶

func (v *VolumeProjection) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*VolumeProjection) UnmarshalJSON ¶

func (v *VolumeProjection) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type VsphereVirtualDiskVolumeSource ¶

type VsphereVirtualDiskVolumeSource struct {

	// 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.
	FsType string `json:"fsType,omitempty"`

	// Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.
	StoragePolicyID string `json:"storagePolicyID,omitempty"`

	// Storage Policy Based Management (SPBM) profile name.
	StoragePolicyName string `json:"storagePolicyName,omitempty"`

	// Path that identifies vSphere volume vmdk
	// Required: true
	VolumePath *string `json:"volumePath"`
}

VsphereVirtualDiskVolumeSource Represents a vSphere volume resource.

swagger:model VsphereVirtualDiskVolumeSource

func (VsphereVirtualDiskVolumeSource) MarshalEasyJSON ¶

func (v VsphereVirtualDiskVolumeSource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (VsphereVirtualDiskVolumeSource) MarshalJSON ¶

func (v VsphereVirtualDiskVolumeSource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*VsphereVirtualDiskVolumeSource) UnmarshalEasyJSON ¶

func (v *VsphereVirtualDiskVolumeSource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*VsphereVirtualDiskVolumeSource) UnmarshalJSON ¶

func (v *VsphereVirtualDiskVolumeSource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type WeightedPodAffinityTerm ¶

type WeightedPodAffinityTerm struct {

	// Required. A pod affinity term, associated with the corresponding weight.
	// Required: true
	PodAffinityTerm *PodAffinityTerm `json:"podAffinityTerm"`

	// weight associated with matching the corresponding podAffinityTerm, in the range 1-100.
	// Required: true
	Weight *int32 `json:"weight"`
}

WeightedPodAffinityTerm The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

swagger:model WeightedPodAffinityTerm

func (WeightedPodAffinityTerm) MarshalEasyJSON ¶

func (v WeightedPodAffinityTerm) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (WeightedPodAffinityTerm) MarshalJSON ¶

func (v WeightedPodAffinityTerm) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*WeightedPodAffinityTerm) UnmarshalEasyJSON ¶

func (v *WeightedPodAffinityTerm) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*WeightedPodAffinityTerm) UnmarshalJSON ¶

func (v *WeightedPodAffinityTerm) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type WindowsSecurityContextOptions ¶

type WindowsSecurityContextOptions struct {

	// GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.
	GmsaCredentialSpec string `json:"gmsaCredentialSpec,omitempty"`

	// GMSACredentialSpecName is the name of the GMSA credential spec to use. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.
	GmsaCredentialSpecName string `json:"gmsaCredentialSpecName,omitempty"`
}

WindowsSecurityContextOptions WindowsSecurityContextOptions contain Windows-specific options and credentials.

swagger:model WindowsSecurityContextOptions

func (WindowsSecurityContextOptions) MarshalEasyJSON ¶

func (v WindowsSecurityContextOptions) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (WindowsSecurityContextOptions) MarshalJSON ¶

func (v WindowsSecurityContextOptions) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*WindowsSecurityContextOptions) UnmarshalEasyJSON ¶

func (v *WindowsSecurityContextOptions) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*WindowsSecurityContextOptions) UnmarshalJSON ¶

func (v *WindowsSecurityContextOptions) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL