1
0
mirror of https://github.com/rancher/types.git synced 2025-08-01 13:07:05 +00:00

Add kube-api-auth image to k8s_defaults

Needed for generated list of images for air-gap.

For rancher/rancher/issues/18755
This commit is contained in:
Erik Wilson 2019-03-12 14:10:49 -07:00 committed by Craig Jellick
parent 09af2e530b
commit 3622f2d0ec
2 changed files with 8 additions and 0 deletions

View File

@ -315,3 +315,7 @@ type KeyCloakConfig struct {
type OKTAConfig struct {
SamlConfig `json:",inline" mapstructure:",squash"`
}
type AuthSystemImages struct {
KubeAPIAuth string `json:"kubeAPIAuth,omitempty"`
}

View File

@ -92,6 +92,7 @@ var (
AlertSystemImages AlertSystemImages
PipelineSystemImages projectv3.PipelineSystemImages
LoggingSystemImages LoggingSystemImages
AuthSystemImages AuthSystemImages
}{
AlertSystemImages: AlertSystemImages{
AlertManager: m("prom/alertmanager:v0.15.2"),
@ -112,6 +113,9 @@ var (
FluentdHelper: m("rancher/fluentd-helper:v0.1.2"),
LogAggregatorFlexVolumeDriver: m("rancher/log-aggregator:v0.1.4"),
},
AuthSystemImages: AuthSystemImages{
KubeAPIAuth: m("rancher/kube-api-auth:v0.1.3"),
},
}
AllK8sVersions = map[string]RKESystemImages{