Skip to content

Commit

Permalink
fix: Fix bucket queue env var (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
flamarion authored Nov 3, 2023
1 parent bfca087 commit d027bbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/wandb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: wandb
description: A Helm chart for deploying W&B to Kubernetes
type: application
version: 0.3.1
appVersion: "0.44.1"
version: 0.3.2
appVersion: "0.45.0"
icon: https://wandb.ai/logo.svg
maintainers:
- name: wandb
Expand Down
2 changes: 1 addition & 1 deletion charts/wandb/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ spec:
- name: AWS_S3_KMS_ID
value: {{ .Values.bucketKmsKeyArn }}
- name: BUCKET_QUEUE
value: {{ default "internal://" .Values.bucketQueue }}
value: {{ .Values.bucketQueue | default "internal://" }}
{{- end }}
- name: MYSQL
value: {{ "mysql://$(DB_USER):$(DB_PASSWORD)@$(DB_HOST)/$(DB)" }}
Expand Down

0 comments on commit d027bbd

Please sign in to comment.