Skip to content

Commit

Permalink
fix: fix azure storage key syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpanzella committed Dec 16, 2024
1 parent dffc58c commit 4cd7034
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ spec:
secretKeyRef:
name: {{ include "wandb.redis.passwordSecret" . }}
optional: true
key: REDIS_PASSWORD
key: {{ .Values.global.redis.secret.secretKey }}
- name: REDIS_PORT
value: "{{ include "wandb.redis.port" . }}"
- name: REDIS_HOST
Expand Down Expand Up @@ -137,9 +137,11 @@ spec:
- name: AZURE_STORAGE_KEY
valueFrom:
secretKeyRef:
name: "{{ include "wandb.bucket.secret" . }}"
key: {{ .Values.global.bucket.accessKeyName }}
{{- with include "wandb.bucket" . | fromYaml }}
name: "{{ .secretName }}"
key: {{ .accessKeyName }}
optional: true
{{- end }}

- name: G_HOST_IP
valueFrom:
Expand Down

0 comments on commit 4cd7034

Please sign in to comment.