Skip to content

Commit

Permalink
fix: Fix CACert value reference (#195)
Browse files Browse the repository at this point in the history
Co-authored-by: Zachary Blasczyk <77289967+zacharyblasczyk@users.noreply.github.com>
  • Loading branch information
flamarion and zacharyblasczyk committed Aug 1, 2024
1 parent ee421fe commit ee53417
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/operator-wandb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions charts/operator-wandb/charts/app/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit ee53417

Please sign in to comment.