From 3f54341f27905aa45735f6e7d4093699c22ee667 Mon Sep 17 00:00:00 2001 From: disposab1e <48065501+disposab1e@users.noreply.github.com> Date: Wed, 6 Nov 2019 07:51:01 +0100 Subject: [PATCH] OpenShift Route default values --- charts/argo-cd/README.md | 2 ++ charts/argo-cd/values.yaml | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/charts/argo-cd/README.md b/charts/argo-cd/README.md index b63ae9e0..e0a7e1fc 100644 --- a/charts/argo-cd/README.md +++ b/charts/argo-cd/README.md @@ -147,6 +147,8 @@ $ helm install --name my-release argo/argo-cd | server.ingress.hosts | List of ingress hosts | `[]` | | server.ingress.labels | Additional ingress labels. | `{}` | | server.ingress.tls | Ingress TLS configuration. | `[]` | +| server.route.enabled | Enable a OpenShift route for the server | `false` | +| server.route.hostname | Hostname of OpenShift route | `""` | | server.livenessProbe.failureThreshold | int | `3` | | server.livenessProbe.initialDelaySeconds | int | `10` | | server.livenessProbe.periodSeconds | int | `10` | diff --git a/charts/argo-cd/values.yaml b/charts/argo-cd/values.yaml index 9cd31ba3..6f962a10 100644 --- a/charts/argo-cd/values.yaml +++ b/charts/argo-cd/values.yaml @@ -304,6 +304,14 @@ server: # hosts: # - argocd.example.com + # Create a OpenShift Route with SSL passthrough for UI and CLI + # Consider setting 'hostname' e.g. https://argocd.apps-crc.testing/ using your Default Ingress Controller Domain + # Find your domain with: kubectl describe --namespace=openshift-ingress-operator ingresscontroller/default | grep Domain: + # If 'hostname' is an empty string "" OpenShift will create a hostname for you. + route: + enabled: false + hostname: "" + ## ArgoCD config ## reference https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/argocd-cm.yaml config: