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
pkg/minikube/assets
|
@ -420,7 +420,7 @@ func GenerateTemplateData(cfg config.KubernetesConfig) interface{} {
|
||||||
// for less common architectures blank suffix for amd64
|
// for less common architectures blank suffix for amd64
|
||||||
ea := ""
|
ea := ""
|
||||||
if runtime.GOARCH != "amd64" {
|
if runtime.GOARCH != "amd64" {
|
||||||
ea = runtime.GOARCH
|
ea = "-" + runtime.GOARCH
|
||||||
}
|
}
|
||||||
opts := struct {
|
opts := struct {
|
||||||
Arch string
|
Arch string
|
||||||
|
|
Loading…
Reference in New Issue