feat(argo-cd): Upgrade argo-cd image to 2.1.1 (#903)
* reenable static assets for argo-cd server Signed-off-by: Geisler, James D <geislerjamesd@gmail.com> * add fix to changelog Signed-off-by: Geisler, James D <geislerjamesd@gmail.com> * feat(argo-cd): Upgrade argo-cd image to 2.1.1 Signed-off-by: Petr Drastil <petr.drastil@gmail.com> * Bump chart version Signed-off-by: Petr Drastil <petr.drastil@gmail.com> * Bump fix version Signed-off-by: Petr Drastil <petr.drastil@gmail.com> Co-authored-by: Geisler, James D <geislerjamesd@gmail.com>
This commit is contained in:
parent
e099ab38b4
commit
1b7d63fde9
3 changed files with 13 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 2.1.0
|
appVersion: 2.1.1
|
||||||
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: 3.17.1
|
version: 3.17.2
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argoproj.github.io/argo-cd/assets/logo.png
|
icon: https://argoproj.github.io/argo-cd/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -21,4 +21,5 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Fixed]: Add missing parameter 'server.extraContainers' to README.md"
|
- "[Changed]: Upgrade argo-cd image to 2.1.1"
|
||||||
|
- "[Fixed]: Reenabling static assets for the argo-cd server"
|
||||||
|
|
|
@ -40,6 +40,10 @@ spec:
|
||||||
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.server.image.imagePullPolicy }}
|
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.server.image.imagePullPolicy }}
|
||||||
command:
|
command:
|
||||||
- argocd-server
|
- argocd-server
|
||||||
|
{{ if .Values.server.staticAssets.enabled }}
|
||||||
|
- --staticassets
|
||||||
|
- /shared/app
|
||||||
|
{{ end }}
|
||||||
- --repo-server
|
- --repo-server
|
||||||
- {{ template "argo-cd.repoServer.fullname" . }}:{{ .Values.repoServer.service.port }}
|
- {{ template "argo-cd.repoServer.fullname" . }}:{{ .Values.repoServer.service.port }}
|
||||||
{{- if .Values.dex.enabled }}
|
{{- if .Values.dex.enabled }}
|
||||||
|
|
|
@ -8,7 +8,7 @@ kubeVersionOverride: ""
|
||||||
global:
|
global:
|
||||||
image:
|
image:
|
||||||
repository: quay.io/argoproj/argocd
|
repository: quay.io/argoproj/argocd
|
||||||
tag: v2.1.0
|
tag: v2.1.1
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
## Annotations applied to all pods
|
## Annotations applied to all pods
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
|
@ -462,6 +462,10 @@ server:
|
||||||
extraArgs: []
|
extraArgs: []
|
||||||
# - --insecure
|
# - --insecure
|
||||||
|
|
||||||
|
# This flag is used to either remove or pass the CLI flag --staticassets /shared/app to the argocd-server app
|
||||||
|
staticAssets:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
## Environment variables to pass to argocd-server
|
## Environment variables to pass to argocd-server
|
||||||
##
|
##
|
||||||
env: []
|
env: []
|
||||||
|
|
Loading…
Reference in a new issue