From 7756ac1d70de8bfe36d8c8e8d1457afce9a33977 Mon Sep 17 00:00:00 2001 From: Yann Soubeyrand Date: Sun, 19 Jan 2020 23:47:11 +0100 Subject: [PATCH 1/2] fix: remove spec.subdomain field from OpenShift route (#209) This spec.subdomain field is not part of OpenShift 3.11 route OpenAPI specification and since it's empty it can safely be removed without impacting OpenShift 4. --- charts/argo-cd/Chart.yaml | 2 +- charts/argo-cd/templates/argocd-server/route.yaml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml index 1867cece..ce668df5 100644 --- a/charts/argo-cd/Chart.yaml +++ b/charts/argo-cd/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: "1.3.6" description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes. name: argo-cd -version: 1.6.2 +version: 1.6.3 home: https://github.com/argoproj/argo-helm icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png keywords: diff --git a/charts/argo-cd/templates/argocd-server/route.yaml b/charts/argo-cd/templates/argocd-server/route.yaml index 6473fd16..f5952a13 100644 --- a/charts/argo-cd/templates/argocd-server/route.yaml +++ b/charts/argo-cd/templates/argocd-server/route.yaml @@ -16,7 +16,6 @@ metadata: {{- end }} spec: host: {{ .Values.server.route.hostname | quote }} - subdomain: '' to: kind: Service name: {{ template "argo-cd.server.fullname" . }} From 54278a8ecd5f268aca2e4179575186dd272a3b27 Mon Sep 17 00:00:00 2001 From: Bruno Clermont Date: Wed, 22 Jan 2020 06:17:21 +0800 Subject: [PATCH 2/2] feat: Update argo-cd image to version v1.4.0 (#210) --- charts/argo-cd/Chart.yaml | 4 ++-- charts/argo-cd/README.md | 2 +- charts/argo-cd/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml index ce668df5..24464bc2 100644 --- a/charts/argo-cd/Chart.yaml +++ b/charts/argo-cd/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: "1.3.6" +appVersion: "1.4.0" description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes. name: argo-cd -version: 1.6.3 +version: 1.6.4 home: https://github.com/argoproj/argo-helm icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png keywords: diff --git a/charts/argo-cd/README.md b/charts/argo-cd/README.md index 614f2eb9..861ba878 100644 --- a/charts/argo-cd/README.md +++ b/charts/argo-cd/README.md @@ -36,7 +36,7 @@ Helm v3 has removed the `install-crds` hook so CRDs are now populated by files i |-----|------|---------| | global.image.imagePullPolicy | If defined, a imagePullPolicy applied to all ArgoCD deployments. | `"IfNotPresent"` | | global.image.repository | If defined, a repository applied to all ArgoCD deployments. | `"argoproj/argocd"` | -| global.image.tag | If defined, a tag applied to all ArgoCD deployments. | `"v1.3.6"` | +| global.image.tag | If defined, a tag applied to all ArgoCD deployments. | `"v1.4.0"` | | global.securityContext | Toggle and define securityContext | See [values.yaml](values.yaml) |  | nameOverride | Provide a name in place of `argocd` | `"argocd"` | | installCRDs | bool | `true` | Install CRDs if you are using Helm2. | diff --git a/charts/argo-cd/values.yaml b/charts/argo-cd/values.yaml index 0d4ae2de..18a30d72 100755 --- a/charts/argo-cd/values.yaml +++ b/charts/argo-cd/values.yaml @@ -10,7 +10,7 @@ installCRDs: true global: image: repository: argoproj/argocd - tag: v1.3.6 + tag: v1.4.0 imagePullPolicy: IfNotPresent securityContext: {} # runAsUser: 999