1
0
mirror of synced 2026-02-06 19:05:55 +00:00

Add support for ARMv7

This commit is contained in:
stefanprodan
2020-09-21 10:37:55 +03:00
parent 0e969bbaad
commit 101e7bbce0
5 changed files with 15 additions and 8 deletions

View File

@@ -275,7 +275,7 @@ images:
{{- if eq $arch "amd64" }}
newName: {{$registry}}/{{$component}}
{{- else }}
newName: {{$registry}}/{{$component}}-{{$arch}}
newName: {{$registry}}/{{$component}}-arm64
{{- end }}
{{- end }}
{{- end }}

View File

@@ -110,7 +110,7 @@ var (
defaultVersion = "latest"
defaultNamespace = "gitops-system"
defaultNotification = "notification-controller"
supportedArch = []string{"arm64", "amd64"}
supportedArch = []string{"amd64", "arm", "arm64"}
supportedDecryptionProviders = []string{"sops"}
supportedHelmChartSourceKinds = []string{sourcev1.HelmRepositoryKind, sourcev1.GitRepositoryKind}
supportedLogLevels = []string{"debug", "info", "error"}