1
0
mirror of https://github.com/rancher/types.git synced 2025-06-24 20:51:33 +00:00

Add private registries

This commit is contained in:
moelsayed 2018-01-29 20:48:04 +02:00
parent 36927d4c64
commit 04cf104cb2

View File

@ -21,6 +21,17 @@ type RancherKubernetesEngineConfig struct {
IgnoreDockerVersion bool `yaml:"ignore_docker_version" json:"ignoreDockerVersion"`
// Kubernetes version to use (overrides individual Images)
Version string `yaml:"kubernetesVersion"`
// List of private registries and their credentials
PrivateRegistries []PrivateRegistry `yaml:"private_registries" json:"privateRegistries,omitempty"`
}
type PrivateRegistry struct {
// URL for the registry
URL string `yaml:"url" json:"url,omitempty"`
// User name for registry acces
User string `yaml:"user" json:"user,omitempty"`
// Password for registry access
Password string `yaml:"password" json:"password,omitempty"`
}
type RKEConfigNode struct {