From 54f8fd90387ef9c58cf8cc2989e73385f94f3fa8 Mon Sep 17 00:00:00 2001 From: jbard1 <30892667+jbard1@users.noreply.github.com> Date: Fri, 6 Aug 2021 15:28:35 +0100 Subject: [PATCH] Add missing Minio PORT and USE_SSL configurations to Director deployment (#65) * Add missing Minio PORT and USE_SSL configurations to Director deployment * bump --- charts/sorry-cypress/Chart.yaml | 2 +- charts/sorry-cypress/templates/deployment-director.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/charts/sorry-cypress/Chart.yaml b/charts/sorry-cypress/Chart.yaml index 94683ab..f38c1e8 100644 --- a/charts/sorry-cypress/Chart.yaml +++ b/charts/sorry-cypress/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: sorry-cypress description: A Helm chart for Sorry Cypress type: application -version: 1.0.4 +version: 1.0.5 appVersion: 1.1.0 home: https://sorry-cypress.dev/ sources: diff --git a/charts/sorry-cypress/templates/deployment-director.yml b/charts/sorry-cypress/templates/deployment-director.yml index 93a62ed..a1329ea 100644 --- a/charts/sorry-cypress/templates/deployment-director.yml +++ b/charts/sorry-cypress/templates/deployment-director.yml @@ -92,6 +92,12 @@ spec: value: {{ .Values.minio.endpoint }} - name: MINIO_URL value: {{ .Values.minio.url }} + - name: MINIO_PORT + value: {{ .Values.minio.service.port }} + {{- if eq .Values.minio.service.port "443" }} + - name: MINIO_USESSL + value: "true" + {{- end }} {{- end }} image: "{{ .Values.director.image.repository }}:{{ .Values.director.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.director.image.pullPolicy }}