fix(argo-cd): Revert initContainers copyUtil param (#1063)
* fix(argo-cd): Revert initContainers copyUtil param Signed-off-by: Marko Bevc <marko@scalefactory.com> * Use correct keyword in annotations Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
0dc0b845a3
commit
e6a0802f4f
4 changed files with 2 additions and 10 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
appVersion: v2.2.1
|
||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 3.29.2
|
||||
version: 3.29.3
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
keywords:
|
||||
|
@ -21,4 +21,4 @@ dependencies:
|
|||
condition: redis-ha.enabled
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- "[Fix]: repo-server: merge initContainer to one section"
|
||||
- "[Fixed]: repo-server: revert initContainer copyutil param"
|
||||
|
|
|
@ -316,7 +316,6 @@ NAME: my-release
|
|||
| repoServer.clusterRoleRules.rules | list | `[]` | List of custom rules for the Repo server's Cluster Role resource |
|
||||
| repoServer.containerPort | int | `8081` | Configures the repo server port |
|
||||
| repoServer.containerSecurityContext | object | `{}` | Repo server container-level security context |
|
||||
| repoServer.enableCopyutilInitContainer | bool | `true` | Enable the copyutil init container |
|
||||
| repoServer.env | list | `[]` | Environment variables to pass to repo server |
|
||||
| repoServer.envFrom | list | `[]` (See [values.yaml]) | envFrom to pass to repo server |
|
||||
| repoServer.extraArgs | list | `[]` | Additional command line arguments to pass to repo server |
|
||||
|
|
|
@ -183,9 +183,7 @@ spec:
|
|||
name: var-files
|
||||
- emptyDir: {}
|
||||
name: plugins
|
||||
{{- if or .Values.repoServer.initContainers .Values.repoServer.enableCopyutilInitContainer }}
|
||||
initContainers:
|
||||
{{- if .Values.repoServer.enableCopyutilInitContainer }}
|
||||
- command:
|
||||
- cp
|
||||
- -n
|
||||
|
@ -196,11 +194,9 @@ spec:
|
|||
volumeMounts:
|
||||
- mountPath: /var/run/argocd
|
||||
name: var-files
|
||||
{{- end }}
|
||||
{{- if .Values.repoServer.initContainers }}
|
||||
{{- toYaml .Values.repoServer.initContainers | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.repoServer.priorityClassName }}
|
||||
priorityClassName: {{ .Values.repoServer.priorityClassName }}
|
||||
{{- end }}
|
||||
|
|
|
@ -1530,9 +1530,6 @@ repoServer:
|
|||
# name: custom-tools
|
||||
# subPath: helm
|
||||
|
||||
# -- Enable the copyutil init container
|
||||
enableCopyutilInitContainer: true
|
||||
|
||||
## Argo Configs
|
||||
configs:
|
||||
# -- Provide one or multiple [external cluster credentials]
|
||||
|
|
Loading…
Reference in a new issue