From c0621d375d68723b5ea22d029c56b24ee99380de Mon Sep 17 00:00:00 2001 From: Kent Ross Date: Thu, 23 Jan 2025 15:36:33 -0800 Subject: [PATCH] fix: pass a port number to glue that doesn't collide with nginx (#325) --- charts/operator-wandb/Chart.yaml | 2 +- charts/operator-wandb/charts/app/templates/deployment.yaml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/charts/operator-wandb/Chart.yaml b/charts/operator-wandb/Chart.yaml index 169aa421..8da50a7c 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.24.1 +version: 0.24.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 596f78ea..f63b0202 100644 --- a/charts/operator-wandb/charts/app/templates/deployment.yaml +++ b/charts/operator-wandb/charts/app/templates/deployment.yaml @@ -115,6 +115,8 @@ spec: # - name: PROXY_PASS_BACKEND_HOST # value: "$({{.Release.Name | upper | replace "-" "_" }}_API_SERVICE_HOST):$({{.Release.Name | upper | replace "-" "_" }}_API_SERVICE_PORT)" # {{- end }} + - name: GORILLA_GLUE_CONTAINER_PORT + value: "9173" - name: BUCKET_ACCESS_KEY valueFrom: secretKeyRef: @@ -212,7 +214,7 @@ spec: optional: true {{- end }} {{- if ne .Values.global.auth.oidc.clientId "" }} - - name: OIDC_CLIENT_ID + - name: OIDC_CLIENT_ID value: {{ .Values.global.auth.oidc.clientId }} - name: OIDC_AUTH_METHOD value: {{ .Values.global.auth.oidc.authMethod }}