diff --git a/bitnami/argo-cd/templates/repo-server/deployment.yaml b/bitnami/argo-cd/templates/repo-server/deployment.yaml index 7ae3d48e67273c..4fa7623db53952 100644 --- a/bitnami/argo-cd/templates/repo-server/deployment.yaml +++ b/bitnami/argo-cd/templates/repo-server/deployment.yaml @@ -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 diff --git a/bitnami/argo-cd/values.yaml b/bitnami/argo-cd/values.yaml index 3090fcd1fd77fa..36c1a15e979adf 100644 --- a/bitnami/argo-cd/values.yaml +++ b/bitnami/argo-cd/values.yaml @@ -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.