Skip to content

Commit

Permalink
feat(installer): add kube webhook image (#1862)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo Ryu committed Apr 24, 2022
1 parent 5d961f5 commit 2fb3534
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions cmd/tke-installer/app/installer/images/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@ type BaseComponents struct {
}

type ExComponents struct {
Registry containerregistry.Image
Busybox containerregistry.Image
InfluxDB containerregistry.Image
Thanos containerregistry.Image
NginxIngress containerregistry.Image
Registry containerregistry.Image
Busybox containerregistry.Image
InfluxDB containerregistry.Image
Thanos containerregistry.Image
NginxIngress containerregistry.Image
KebeWebhookCertgen containerregistry.Image

TKEBusinessAPI containerregistry.Image
TKEBusinessController containerregistry.Image
Expand Down Expand Up @@ -88,11 +89,12 @@ func (c Components) Get(name string) *containerregistry.Image {
var Version = version.Get().GitVersion

var exComponents = ExComponents{
Registry: containerregistry.Image{Name: "registry", Tag: "2.7.1"},
Busybox: containerregistry.Image{Name: "busybox", Tag: "1.31.1"},
InfluxDB: containerregistry.Image{Name: "influxdb", Tag: "1.7.9"},
Thanos: containerregistry.Image{Name: "thanos", Tag: "v0.15.0"},
NginxIngress: containerregistry.Image{Name: "ingress-nginx-controller", Tag: "v1.1.3"},
Registry: containerregistry.Image{Name: "registry", Tag: "2.7.1"},
Busybox: containerregistry.Image{Name: "busybox", Tag: "1.31.1"},
InfluxDB: containerregistry.Image{Name: "influxdb", Tag: "1.7.9"},
Thanos: containerregistry.Image{Name: "thanos", Tag: "v0.15.0"},
NginxIngress: containerregistry.Image{Name: "ingress-nginx-controller", Tag: "v1.1.3"},
KebeWebhookCertgen: containerregistry.Image{Name: "kube-webhook-certgen", Tag: "v1.1.1"},

TKEBusinessAPI: containerregistry.Image{Name: "tke-business-api", Tag: Version},
TKEBusinessController: containerregistry.Image{Name: "tke-business-controller", Tag: Version},
Expand Down

0 comments on commit 2fb3534

Please sign in to comment.