From 8269ab3900ab7ad7dcbcdd49efffafc3d067ad22 Mon Sep 17 00:00:00 2001 From: Maarten de Waard Date: Tue, 5 Oct 2021 16:41:56 +0200 Subject: [PATCH] move values-local.yaml to values-local.yaml.example and give it exarmple values --- .gitignore | 3 +++ deployment/helmchart/values-local.yaml | 20 ------------------- .../helmchart/values-local.yaml.example | 12 +++++++++++ 3 files changed, 15 insertions(+), 20 deletions(-) delete mode 100644 deployment/helmchart/values-local.yaml create mode 100644 deployment/helmchart/values-local.yaml.example diff --git a/.gitignore b/.gitignore index 59d0f65..0498d9c 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,6 @@ cypress/videos/ # Helm dependencies deployment/helmchart/charts/ + +# Helm values +deployment/helmchart/values-local.yaml diff --git a/deployment/helmchart/values-local.yaml b/deployment/helmchart/values-local.yaml deleted file mode 100644 index d9d12f6..0000000 --- a/deployment/helmchart/values-local.yaml +++ /dev/null @@ -1,20 +0,0 @@ -frontend: - host: dashboard.oas-test2.maartendewaard.nl - livenessProbe: - enabled: false - readinessProbe: - enabled: false - image: - tag: 2-add-helm-chart - -backend: - secretKey: tnsreaiotnau48pl329aftnreisaed - livenessProbe: - enabled: false - readinessProbe: - enabled: false - -ingress: - enabled: true - certManager: true - hostname: dashboard.oas-test2.maartendewaard.nl diff --git a/deployment/helmchart/values-local.yaml.example b/deployment/helmchart/values-local.yaml.example new file mode 100644 index 0000000..d1e0bb7 --- /dev/null +++ b/deployment/helmchart/values-local.yaml.example @@ -0,0 +1,12 @@ +# Values you're likely to want to override. See values.yaml for their meanings + +frontend: + host: dashboard.oas.example.com + +backend: + secretKey: My random secret key + +ingress: + enabled: true + certManager: true + hostname: dashboard.oas.example.com