From 9edd2ea2c7ab2e31e9afefba91d183a505d44bd8 Mon Sep 17 00:00:00 2001 From: Jesper Svendsen <99078145+jesper7@users.noreply.github.com> Date: Sat, 18 Mar 2023 22:15:51 +0100 Subject: [PATCH] Remove deprecated ENABLE_SSL_FOR_WEBHOOK variable (#87) * Remove deprecated ENABLE_SSL_FOR_WEBHOOK variable * Bump chart version to 0.1.23 --- charts/studio/Chart.yaml | 2 +- charts/studio/templates/configmap-studio.yaml | 2 -- charts/studio/values.yaml | 3 --- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/charts/studio/Chart.yaml b/charts/studio/Chart.yaml index 01e89f55..f8cfcd2a 100644 --- a/charts/studio/Chart.yaml +++ b/charts/studio/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.22 +version: 0.1.23 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/studio/templates/configmap-studio.yaml b/charts/studio/templates/configmap-studio.yaml index 48c5730b..5ce44a93 100644 --- a/charts/studio/templates/configmap-studio.yaml +++ b/charts/studio/templates/configmap-studio.yaml @@ -11,8 +11,6 @@ data: API_URL: "http{{ if $.Values.global.ingress.tlsEnabled }}s{{ end }}://{{.Values.global.host }}/api" UI_URL: "http{{ if $.Values.global.ingress.tlsEnabled }}s{{ end }}://{{.Values.global.host }}/" - ENABLE_SSL_FOR_WEBHOOK: {{ .Values.global.scmProviders.enableWebhookSSL | quote | title }} - {{- if .Values.global.scmProviders.bitbucket.url }} BITBUCKET_URL: {{.Values.global.scmProviders.bitbucket.url | quote }} {{- end }} diff --git a/charts/studio/values.yaml b/charts/studio/values.yaml index c2eabd77..99f6cd84 100644 --- a/charts/studio/values.yaml +++ b/charts/studio/values.yaml @@ -71,9 +71,6 @@ global: databasePassword: "postgres" scmProviders: - # Enable SSL for webhooks - enableWebhookSSL: true - github: # -- GitHub enabled enabled: false