commit
d17ce3987f
4 changed files with 27 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v2.9-2024.2.8-8ba4b03d4
|
appVersion: v2.9-2024.2.15-cc783d89f
|
||||||
kubeVersion: ">=1.23.0-0"
|
kubeVersion: ">=1.23.0-0"
|
||||||
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.53.12-2-cap-2.9-2024.2.8-8ba4b03d4
|
version: 5.53.12-3-cap-2.9-2024.2.15-cc783d89f
|
||||||
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:
|
||||||
|
@ -27,4 +27,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: changed
|
- kind: changed
|
||||||
description: Upgrade Argo CD to v2.9-2024.2.8-8ba4b03d4. With critical vulnerability fixes revert and argo-cd reporter project name bypassing
|
description: Upgrade Argo CD to v2.9-2024.2.15-cc783d89f. Getting application version configuration from the Codefresh API.
|
||||||
|
|
|
@ -400,6 +400,8 @@ NAME: my-release
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| apiVersionOverrides.cloudgoogle | string | `""` | String to override apiVersion of GKE resources rendered by this helm chart |
|
| apiVersionOverrides.cloudgoogle | string | `""` | String to override apiVersion of GKE resources rendered by this helm chart |
|
||||||
|
| applicationVersioning.enabled | bool | `true` | enables the Codefresh application versioning feature |
|
||||||
|
| applicationVersioning.useApplicationConfiguration | bool | `true` | use ApplicationConfiguration CRD to manage application versioning |
|
||||||
| crds.additionalLabels | object | `{}` | Addtional labels to be added to all CRDs |
|
| crds.additionalLabels | object | `{}` | Addtional labels to be added to all CRDs |
|
||||||
| crds.annotations | object | `{}` | Annotations to be added to all CRDs |
|
| crds.annotations | object | `{}` | Annotations to be added to all CRDs |
|
||||||
| crds.install | bool | `true` | Install and upgrade CRDs |
|
| crds.install | bool | `true` | Install and upgrade CRDs |
|
||||||
|
|
|
@ -93,6 +93,10 @@ spec:
|
||||||
- name: USER_NAME
|
- name: USER_NAME
|
||||||
value: argocd
|
value: argocd
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
- name: CODEFRESH_APPVERSION_ENABLED
|
||||||
|
value: {{ .Values.applicationVersioning.enabled | quote }}
|
||||||
|
- name: CODEFRESH_APPVERSION_USE_APPCONFIG
|
||||||
|
value: {{ .Values.applicationVersioning.useApplicationConfiguration | quote }}
|
||||||
- name: ARGOCD_RECONCILIATION_TIMEOUT
|
- name: ARGOCD_RECONCILIATION_TIMEOUT
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
@ -249,6 +253,18 @@ spec:
|
||||||
key: reposerver.enable.git.submodule
|
key: reposerver.enable.git.submodule
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: CODEFRESH_URL
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: codefresh-cm
|
||||||
|
key: base-url
|
||||||
|
optional: true
|
||||||
|
- name: CODEFRESH_TOKEN
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
key: token
|
||||||
|
name: codefresh-token
|
||||||
|
optional: true
|
||||||
{{- if .Values.repoServer.useEphemeralHelmWorkingDir }}
|
{{- if .Values.repoServer.useEphemeralHelmWorkingDir }}
|
||||||
- name: HELM_CACHE_HOME
|
- name: HELM_CACHE_HOME
|
||||||
value: /helm-working-dir
|
value: /helm-working-dir
|
||||||
|
|
|
@ -26,6 +26,12 @@ openshift:
|
||||||
# -- enables using arbitrary uid for argo repo server
|
# -- enables using arbitrary uid for argo repo server
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
|
applicationVersioning:
|
||||||
|
# -- enables the Codefresh application versioning feature
|
||||||
|
enabled: true
|
||||||
|
# -- use ApplicationConfiguration CRD to manage application versioning
|
||||||
|
useApplicationConfiguration: true
|
||||||
|
|
||||||
## Custom resource configuration
|
## Custom resource configuration
|
||||||
crds:
|
crds:
|
||||||
# -- Install and upgrade CRDs
|
# -- Install and upgrade CRDs
|
||||||
|
|
Loading…
Reference in a new issue