Add missing dash before the image arch
This character (-) was removed by mistake, in 5fa6714
It is supposed to be "" for amd64, "-arm64" for arm64.
pull/5671/head
parent
56a23cab4a
commit
a41ac45fcc
|
@ -420,7 +420,7 @@ func GenerateTemplateData(cfg config.KubernetesConfig) interface{} {
|
|||
// for less common architectures blank suffix for amd64
|
||||
ea := ""
|
||||
if runtime.GOARCH != "amd64" {
|
||||
ea = runtime.GOARCH
|
||||
ea = "-" + runtime.GOARCH
|
||||
}
|
||||
opts := struct {
|
||||
Arch string
|
||||
|
|
Loading…
Reference in New Issue