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
Anders F Björklund 2019-10-20 16:06:25 +02:00
parent 56a23cab4a
commit a41ac45fcc
1 changed files with 1 additions and 1 deletions

View File

@ -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