package
Version:
v1.14.0
Opens a new window with list of versions in this module.
Published: Mar 30, 2020
License: Apache-2.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Container struct {
Image string `yaml:"image"`
}
type Doc struct {
APIVersion string `yaml:"apiVersion"`
Kind string `yaml:"kind"`
Metadata Metadata `yaml:"metadata"`
Spec Spec `yaml:"spec"`
}
type Metadata struct {
Name string `yaml:"name"`
Namespace string `yaml:"namespace,omitempty"`
Labels map[string]string `yaml:"labels,omitempty"`
}
type PodSpec struct {
Containers []Container `yaml:"containers,omitempty"`
InitContainers []Container `yaml:"initContainers,omitempty"`
ImagePullSecrets []ImagePullSecret `yaml:"imagePullSecrets"`
}
type Spec struct {
Template Template `yaml:"template"`
}
type Template struct {
Spec PodSpec `yaml:"spec"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.