forked from argoproj/argo-helm
fix(argo-cd applicationset): add extraContainers to deployment (#1125)
Signed-off-by: AJ Christensen <aj@junglistheavy.industries> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>main argocd-applicationset-1.11.0
parent
ae13c65229
commit
f8803d52d1
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
name: argocd-applicationset
|
||||
description: A Helm chart for installing ArgoCD ApplicationSet
|
||||
type: application
|
||||
version: 1.10.0
|
||||
version: 1.11.0
|
||||
appVersion: "v0.3.0"
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argocd-applicationset.readthedocs.io/en/stable/assets/logo.png
|
||||
|
@ -14,4 +14,4 @@ maintainers:
|
|||
- name: maruina
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- "[Added]: Ability to define custom env variables for ArgoCD applicationset"
|
||||
- "[Added]: extraContainers support in Deployment resource"
|
||||
|
|
|
@ -67,6 +67,7 @@ kubectl apply -k https://github.com/argoproj-labs/applicationset.git/manifests/c
|
|||
| args.policy | string | `"sync"` | How application is synced between the generator and the cluster |
|
||||
| args.probeBindAddr | string | `":8081"` | The default health check port |
|
||||
| extraArgs | list | `[]` | List of extra cli args to add |
|
||||
| extraContainers | list | `[]` | Additional containers to be added to the applicationset controller pod |
|
||||
| extraEnv | list | `[]` | Environment variables to pass to the controller |
|
||||
| extraEnvFrom | list | `[]` (See [values.yaml]) | envFrom to pass to the controller |
|
||||
| extraVolumeMounts | list | `[]` | List of extra mounts to add (normally used with extraVolumes) |
|
||||
|
|
|
@ -91,6 +91,9 @@ spec:
|
|||
{{- with .Values.extraVolumeMounts }}
|
||||
{{- toYaml . | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- with .Values.extraContainers }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
volumes:
|
||||
- emptyDir: {}
|
||||
name: tmp-dir
|
||||
|
|
|
@ -31,6 +31,9 @@ args:
|
|||
# -- Enable dry run mode
|
||||
dryRun: false
|
||||
|
||||
# -- Additional containers to be added to the applicationset controller pod
|
||||
extraContainers: []
|
||||
|
||||
## Metrics service configuration
|
||||
metrics:
|
||||
# -- Deploy metrics service
|
||||
|
|
Loading…
Reference in New Issue