Documentation ¶
Index ¶
Constants ¶
View Source
const ( // HubValuesKey values key for the Docker image hub. HubValuesKey = "global.hub" // TagValuesKey values key for the Docker image tag. TagValuesKey = "global.tag" // ImagePullPolicyValuesKey values key for the Docker image pull policy. ImagePullPolicyValuesKey = "global.imagePullPolicy" // LatestTag value LatestTag = "latest" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Instance ¶
type Instance interface { resource.Resource // Name of the deployment, for debugging purposes. Name() string // Namespace of the deployment, if any. Namespace() namespace.Instance }
Instance of a deployment. Wraps over pkg/test/deployment instances for test framework integration purposes.
type Settings ¶
type Settings struct { // Hub value to use in Helm templates Hub string // Tag value to use in Helm templates Tag string // Image pull policy to use for deployments. If not specified, the defaults of each deployment will be used. PullPolicy string }
Settings provide kube-specific Settings from flags.
func SettingsFromCommandLine ¶
SettingsFromCommandLine returns Settings obtained from command-line flags. flag.Parse must be called before calling this function.
Click to show internal directories.
Click to hide internal directories.