Skip to content

Commit

Permalink
[bitnami/argo-cd] Remove option to download additional binaries with …
Browse files Browse the repository at this point in the history
…a custom script

Signed-off-by: Max Nitze <[email protected]>
  • Loading branch information
Max Nitze committed Aug 20, 2024
1 parent 5982c1d commit e993020
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions bitnami/argo-cd/templates/repo-server/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,15 +162,10 @@ spec:
args:
- |-
{{- range $additionalBinary := .Values.repoServer.configManagementPlugins.additionalBinaries }}
{{- if $additionalBinary.customScript }}
# downloading {{ $additionalBinary.name }}
{{ $additionalBinary.customScript | nindent 14 }}
{{- else }}
# downloading {{ $additionalBinary.name }}
curl -L {{ $additionalBinary.url }} -o /additional-binaries/{{ $additionalBinary.name }}
chmod +x /additional-binaries/{{ $additionalBinary.name }}
{{- end }}
{{- end }}
volumeMounts:
- mountPath: /additional-binaries
name: cmp-additional-binaries
Expand Down
3 changes: 0 additions & 3 deletions bitnami/argo-cd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3161,13 +3161,10 @@ repoServer:
enabled: false
## @param repoServer.configManagementPlugins.additionalBinaries Additional binaries necessary for the config management plugins.
## Will be downloaded from the given URL and made available as `name` in the configured `additionalBinariesDir` of the plugin.
## If a custom script is used to download the binary, make sure to eventually provide your binary in an executable format in the
## shared volume mounted to `/additional-binaries`.`
## E.g.
## additionalBinaries:
## - name: my-custom-binary
## url: https://www.example.com/my-custom-binary-1.2.3
## customScript: ""
additionalBinaries: []
## @param repoServer.configManagementPlugins.plugins The config management plugins to be provided as sidecars alongside the repo server.
## E.g.
Expand Down

0 comments on commit e993020

Please sign in to comment.