mirror of
https://github.com/fluxcd/flux2.git
synced 2026-04-11 06:30:04 +00:00
Add support for ARMv7
This commit is contained in:
parent
0e969bbaad
commit
101e7bbce0
5 changed files with 15 additions and 8 deletions
|
|
@ -275,7 +275,7 @@ images:
|
|||
{{- if eq $arch "amd64" }}
|
||||
newName: {{$registry}}/{{$component}}
|
||||
{{- else }}
|
||||
newName: {{$registry}}/{{$component}}-{{$arch}}
|
||||
newName: {{$registry}}/{{$component}}-arm64
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
|
|
|||
|
|
@ -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"}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue