From ee534175bab79503d2b05e0ff9a362c6496e28d2 Mon Sep 17 00:00:00 2001 From: Flamarion Jorge <29267749+flamarion@users.noreply.github.com> Date: Thu, 1 Aug 2024 19:44:13 +0200 Subject: [PATCH] fix: Fix CACert value reference (#195) Co-authored-by: Zachary Blasczyk <77289967+zacharyblasczyk@users.noreply.github.com> --- charts/operator-wandb/Chart.yaml | 2 +- charts/operator-wandb/charts/app/templates/deployment.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/operator-wandb/Chart.yaml b/charts/operator-wandb/Chart.yaml index 9a1412d7..dcb5e2e3 100644 --- a/charts/operator-wandb/Chart.yaml +++ b/charts/operator-wandb/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: operator-wandb description: A Helm chart for deploying W&B to Kubernetes type: application -version: 0.16.1 +version: 0.16.2 appVersion: 1.0.0 icon: https://wandb.ai/logo.svg diff --git a/charts/operator-wandb/charts/app/templates/deployment.yaml b/charts/operator-wandb/charts/app/templates/deployment.yaml index 72e4ce19..aff87222 100644 --- a/charts/operator-wandb/charts/app/templates/deployment.yaml +++ b/charts/operator-wandb/charts/app/templates/deployment.yaml @@ -73,7 +73,7 @@ spec: mountPath: /etc/ssl/certs/redis_ca.pem subPath: redis_ca.pem {{- end }} - {{- range $index, $v := .Values.customCACerts }} + {{- range $index, $v := .Values.global.customCACerts }} - name: wandb-ca-certs mountPath: /usr/local/share/ca-certificates/customCA{{$index}}.crt subPath: customCA{{$index}}.crt @@ -286,7 +286,7 @@ spec: - key: REDIS_CA_CERT path: redis_ca.pem {{- end }} - {{- if .Values.customCACerts }} + {{- if .Values.global.customCACerts }} - name: wandb-ca-certs configMap: name: {{ include "wandb.fullname" . }}-ca-certs