feat(argo-cd): Add support for argocd-extensions resources (#1053)
* add support for extensions resource Signed-off-by: Yevhen Luhovtsov <yevhen.luhovtsov@intapp.com> * fix documentation for extensions resource Signed-off-by: Yevhen Luhovtsov <yevhen.luhovtsov@intapp.com> Co-authored-by: Yevhen Luhovtsov <yevhen.luhovtsov@intapp.com>pull/1055/head argo-cd-3.28.1
parent
7033883914
commit
103914446e
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
appVersion: v2.1.7
|
||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 3.28.0
|
||||
version: 3.28.1
|
||||
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: |
|
||||
- "[Added]: add extensions support"
|
||||
- "[Added]: add argocd-extensions resources support"
|
||||
|
|
|
@ -399,6 +399,7 @@ NAME: my-release
|
|||
| server.extensions.image.imagePullPolicy | string | `"IfNotPresent"` | Image pull policy for extensions |
|
||||
| server.extensions.image.repository | string | `"ghcr.io/argoproj-labs/argocd-extensions"` | Repository to use for extensions image |
|
||||
| server.extensions.image.tag | string | `"v0.1.0"` | Tag to use for extensions image |
|
||||
| server.extensions.resources | object | `{}` | Resource limits and requests for the argocd-extensions container |
|
||||
| server.extraArgs | list | `[]` | Additional command line arguments to pass to Argo CD server |
|
||||
| server.extraContainers | list | `[]` | Additional containers to be added to the server pod |
|
||||
| server.image.imagePullPolicy | string | `""` (defaults to global.image.imagePullPolicy) | Image pull policy for the Argo CD server |
|
||||
|
|
|
@ -143,6 +143,8 @@ spec:
|
|||
volumeMounts:
|
||||
- name: extensions
|
||||
mountPath: /tmp/extensions/
|
||||
resources:
|
||||
{{- toYaml .Values.server.extensions.resources | nindent 10 }}
|
||||
{{- end }}
|
||||
{{- if .Values.server.nodeSelector }}
|
||||
nodeSelector:
|
||||
|
|
|
@ -1289,6 +1289,15 @@ server:
|
|||
# -- Image pull policy for extensions
|
||||
imagePullPolicy: IfNotPresent
|
||||
|
||||
# -- Resource limits and requests for the argocd-extensions container
|
||||
resources: {}
|
||||
# limits:
|
||||
# cpu: 50m
|
||||
# memory: 128Mi
|
||||
# requests:
|
||||
# cpu: 10m
|
||||
# memory: 64Mi
|
||||
|
||||
# -- Extensions to be loaded into the server
|
||||
contents: []
|
||||
# - name: argo-rollouts
|
||||
|
|
Loading…
Reference in New Issue