Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(installer): add pause for kubeadm job #1568

Merged
merged 1 commit into from
Sep 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkg/platform/provider/baremetal/images/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ type Components struct {
ETCD containerregistry.Image
CoreDNS containerregistry.Image
Pause containerregistry.Image
Pause4KubeadmJob containerregistry.Image
NvidiaDevicePlugin containerregistry.Image
Keepalived containerregistry.Image

Expand Down Expand Up @@ -62,6 +63,7 @@ var components = Components{
ETCD: containerregistry.Image{Name: "etcd", Tag: "v3.4.7"},
CoreDNS: containerregistry.Image{Name: "coredns", Tag: "1.7.0"},
Pause: containerregistry.Image{Name: "pause", Tag: "3.2"},
Pause4KubeadmJob: containerregistry.Image{Name: "pause", Tag: "3.4.1"},
NvidiaDevicePlugin: containerregistry.Image{Name: "nvidia-device-plugin", Tag: "1.0.0-beta4"},
Keepalived: containerregistry.Image{Name: "keepalived", Tag: "2.0.16-r0"},

Expand Down