chore(argo-cd): Use same resources for repo-server copyutil (#1531)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>pull/1542/head argo-cd-5.5.21
parent
6b523e3b0b
commit
3351b30ee6
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.4.14
|
appVersion: v2.4.14
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 5.5.20
|
version: 5.5.21
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -22,5 +22,5 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: API version override for PDB and Google Cloud."
|
- "[Fixed]: Init container for repo-server should use main container resources"
|
||||||
- "[Changed]: Moved all API versions in dedicated helper."
|
- "[Removed]: Section repoServer.copyutil that is no longer needed"
|
||||||
|
|
|
@ -490,7 +490,6 @@ NAME: my-release
|
||||||
| repoServer.clusterRoleRules.rules | list | `[]` | List of custom rules for the Repo server's Cluster Role resource |
|
| 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.containerPort | int | `8081` | Configures the repo server port |
|
||||||
| repoServer.containerSecurityContext | object | `{}` | Repo server container-level security context |
|
| repoServer.containerSecurityContext | object | `{}` | Repo server container-level security context |
|
||||||
| repoServer.copyutil.resources | object | `{}` | Resource limits and requests for the copyutil initContainer |
|
|
||||||
| repoServer.env | list | `[]` | Environment variables to pass to repo server |
|
| repoServer.env | list | `[]` | Environment variables to pass to repo server |
|
||||||
| repoServer.envFrom | list | `[]` (See [values.yaml]) | envFrom 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 |
|
| repoServer.extraArgs | list | `[]` | Additional command line arguments to pass to repo server |
|
||||||
|
|
|
@ -34,6 +34,9 @@ DEPRECATED option repoServer.logFormat - Use configs.params.repoServer.log.forma
|
||||||
{{- if .Values.repoServer.logLevel }}
|
{{- if .Values.repoServer.logLevel }}
|
||||||
DEPRECATED option repoServer.logLevel - Use configs.params.repoServer.log.level
|
DEPRECATED option repoServer.logLevel - Use configs.params.repoServer.log.level
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.repoServer.copyutil }}
|
||||||
|
REMOVED option repoSever.copyutil.resources - Use repoServer.resources
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
In order to access the server UI you have the following options:
|
In order to access the server UI you have the following options:
|
||||||
|
|
||||||
|
|
|
@ -306,7 +306,7 @@ spec:
|
||||||
image: {{ default .Values.global.image.repository .Values.repoServer.image.repository }}:{{ default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag }}
|
image: {{ default .Values.global.image.repository .Values.repoServer.image.repository }}:{{ default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag }}
|
||||||
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.repoServer.image.imagePullPolicy }}
|
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.repoServer.image.imagePullPolicy }}
|
||||||
name: copyutil
|
name: copyutil
|
||||||
{{- with .Values.repoServer.copyutil.resources }}
|
{{- with .Values.repoServer.resources }}
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -1957,17 +1957,6 @@ repoServer:
|
||||||
# - list
|
# - list
|
||||||
# - watch
|
# - watch
|
||||||
|
|
||||||
# Init container to copy argocd binary
|
|
||||||
copyutil:
|
|
||||||
# -- Resource limits and requests for the copyutil initContainer
|
|
||||||
resources: {}
|
|
||||||
# limits:
|
|
||||||
# cpu: 50m
|
|
||||||
# memory: 64Mi
|
|
||||||
# requests:
|
|
||||||
# cpu: 10m
|
|
||||||
# memory: 32Mi
|
|
||||||
|
|
||||||
# -- Init containers to add to the repo server pods
|
# -- Init containers to add to the repo server pods
|
||||||
initContainers: []
|
initContainers: []
|
||||||
# - name: download-tools
|
# - name: download-tools
|
||||||
|
|
Loading…
Reference in New Issue