fix(argo-cd): Fix breaking dex change in argocd 2.0 (#645)
Co-authored-by: David J. M. Karlsen <david@davidkarlsen.com>
This commit is contained in:
parent
37cd1ef042
commit
1d96f80dac
7 changed files with 22 additions and 18 deletions
6
charts/argo-cd/Chart.lock
Normal file
6
charts/argo-cd/Chart.lock
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
dependencies:
|
||||||
|
- name: redis-ha
|
||||||
|
repository: https://dandydeveloper.github.io/charts/
|
||||||
|
version: 4.10.1
|
||||||
|
digest: sha256:e1e0526ad009ecc065df937b48c4e0e5877e5194242c7888b1dc4467775f2663
|
||||||
|
generated: "2021-04-01T08:36:01.324672-07:00"
|
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v1
|
apiVersion: v2
|
||||||
appVersion: 1.8.4
|
appVersion: 2.0.0
|
||||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 2.17.5
|
version: 3.0.0
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -14,3 +14,8 @@ maintainers:
|
||||||
- name: alexmt
|
- name: alexmt
|
||||||
- name: jessesuen
|
- name: jessesuen
|
||||||
- name: seanson
|
- name: seanson
|
||||||
|
dependencies:
|
||||||
|
- name: redis-ha
|
||||||
|
version: 4.10.1
|
||||||
|
repository: https://dandydeveloper.github.io/charts/
|
||||||
|
condition: redis-ha.enabled
|
||||||
|
|
|
@ -14,6 +14,10 @@ This chart currently installs the non-HA version of ArgoCD.
|
||||||
|
|
||||||
## Upgrading
|
## Upgrading
|
||||||
|
|
||||||
|
### 3.0.0 and above
|
||||||
|
|
||||||
|
Helm apiVersion switched to `v2`. Requires Helm `3.0.0` or above to install. [Read More](https://helm.sh/blog/migrate-from-helm-v2-to-helm-v3/) on how to migrate your release from Helm 2 to Helm 3.
|
||||||
|
|
||||||
### 2.14.7 and above
|
### 2.14.7 and above
|
||||||
|
|
||||||
The `matchLabels` key in the ArgoCD Appliaction Controller is no longer hard-coded. Note that labels are immutable so caution should be exercised when making changes to this resource.
|
The `matchLabels` key in the ArgoCD Appliaction Controller is no longer hard-coded. Note that labels are immutable so caution should be exercised when making changes to this resource.
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
dependencies:
|
|
||||||
- name: redis-ha
|
|
||||||
repository: https://dandydeveloper.github.io/charts/
|
|
||||||
version: 4.10.4
|
|
||||||
digest: sha256:e36321520ffd6f91962b0bcfeae947a86983d6b6d273eb616f08425e2b8ab9c2
|
|
||||||
generated: "2021-03-03T10:13:21.0955491+01:00"
|
|
|
@ -1,5 +0,0 @@
|
||||||
dependencies:
|
|
||||||
- name: redis-ha
|
|
||||||
version: 4.10.4
|
|
||||||
repository: https://dandydeveloper.github.io/charts/
|
|
||||||
condition: redis-ha.enabled
|
|
|
@ -44,8 +44,8 @@ spec:
|
||||||
command:
|
command:
|
||||||
- cp
|
- cp
|
||||||
- -n
|
- -n
|
||||||
- /usr/local/bin/argocd-util
|
- /usr/local/bin/argocd
|
||||||
- /shared
|
- /shared/argocd-dex
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /shared
|
- mountPath: /shared
|
||||||
name: static-files
|
name: static-files
|
||||||
|
@ -54,7 +54,7 @@ spec:
|
||||||
image: {{ .Values.dex.image.repository }}:{{ .Values.dex.image.tag }}
|
image: {{ .Values.dex.image.repository }}:{{ .Values.dex.image.tag }}
|
||||||
imagePullPolicy: {{ .Values.dex.image.imagePullPolicy }}
|
imagePullPolicy: {{ .Values.dex.image.imagePullPolicy }}
|
||||||
command:
|
command:
|
||||||
- /shared/argocd-util
|
- /shared/argocd-dex
|
||||||
- rundex
|
- rundex
|
||||||
{{- if .Values.dex.containerSecurityContext }}
|
{{- if .Values.dex.containerSecurityContext }}
|
||||||
securityContext: {{- toYaml .Values.dex.containerSecurityContext | nindent 10 }}
|
securityContext: {{- toYaml .Values.dex.containerSecurityContext | nindent 10 }}
|
||||||
|
|
|
@ -10,7 +10,7 @@ installCRDs: true
|
||||||
global:
|
global:
|
||||||
image:
|
image:
|
||||||
repository: argoproj/argocd
|
repository: argoproj/argocd
|
||||||
tag: v1.8.4
|
tag: v2.0.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext: {}
|
securityContext: {}
|
||||||
# runAsUser: 999
|
# runAsUser: 999
|
||||||
|
|
Loading…
Reference in a new issue