Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigMapVolumeSource ¶
type ConfigMapVolumeSource struct {
LocalObjectReference `json:",inline"`
}
type Container ¶
type Container struct {
Name string
Image string
VolumeMounts []VolumeMount
}
type Deployment ¶
type Deployment struct {
Spec DeploymentSpec
}
type DeploymentSpec ¶
type DeploymentSpec struct {
Replicas int
Template PodTemplateSpec
}
type LocalObjectReference ¶
type LocalObjectReference struct {
Name string
}
type PodTemplateSpec ¶
type PodTemplateSpec struct {
Spec PodSpec
}
type SecretVolumeSource ¶
type SecretVolumeSource struct {
SecretName string
}
type StatefulSet ¶
type StatefulSet struct {
Spec DeploymentSpec
}
type StatefulSetSpec ¶
type StatefulSetSpec struct {
Replicas int
Template PodTemplateSpec
}
type Volume ¶
type Volume struct {
Name string
VolumeSource `json:",inline"`
}
type VolumeMount ¶
type VolumeMount struct {
Name string
}
type VolumeSource ¶
type VolumeSource struct {
Secret *SecretVolumeSource
ConfigMap *ConfigMapVolumeSource
}
Click to show internal directories.
Click to hide internal directories.