Skip to content

Commit

Permalink
fix: Banner templating (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
adityachoudhari26 authored Apr 12, 2024
1 parent 322daf4 commit 3ac58c3
Show file tree
Hide file tree
Showing 3 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.12.5
version: 0.12.6
appVersion: 1.0.0
icon: https://wandb.ai/logo.svg

Expand Down
2 changes: 1 addition & 1 deletion charts/operator-wandb/charts/app/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ spec:
fieldPath: status.hostIP

- name: BANNERS
value: "{{ toJson .Values.global.banners }}"
value: {{ toJson .Values.global.banners | quote }}

{{- if ne .Values.traceRatio 0.0 }}
- name: GORILLA_TRACER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
- name: PROMETHEUS_SERVER
value: "http://{{ $.Release.Name }}-prometheus-server"
- name: BANNERS
value: "{{ toJson .Values.global.banners }}"
value: {{ toJson .Values.global.banners | quote }}

- name: G_HOST_IP
valueFrom:
Expand Down

0 comments on commit 3ac58c3

Please sign in to comment.