File tree 6 files changed +18
-5
lines changed
6 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -63,4 +63,4 @@ dependencies:
63
63
repository: file://../wandb-base
64
64
version: 0.4.1
65
65
digest: sha256:d6b5ef46b80814179a954ed674dc248c65cdc8192ead7a11f1df3861da29feed
66
- generated: "2025-02-04T18:10:09.463049-08 :00"
66
+ generated: "2025-02-05T11:05:02.905698-06 :00"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : operator-wandb
3
3
description : A Helm chart for deploying W&B to Kubernetes
4
4
type : application
5
- version : 0.25.1
5
+ version : 0.25.2
6
6
appVersion : 1.0.0
7
7
icon : https://wandb.ai/logo.svg
8
8
Original file line number Diff line number Diff line change 93
93
- name : anaconda
94
94
containerPort : 8082
95
95
protocol : TCP
96
+ - name : local
97
+ containerPort : 8083
98
+ protocol : TCP
96
99
- name : gorilla-statsd
97
100
containerPort : 8125
98
101
protocol : TCP
Original file line number Diff line number Diff line change 48
48
- port : 8082
49
49
protocol : TCP
50
50
name : anaconda
51
+ - port : 8083
52
+ protocol : TCP
53
+ name : local
51
54
selector :
52
55
{{- include "app.labels" . | nindent 4 }}
Original file line number Diff line number Diff line change 14
14
# Set $gorillaSessionKey to existing secret data or generate a random one when not exists
15
15
{{- $gorillaSessionKey := (get $secretData "GORILLA_SESSION_KEY") | default (randAlphaNum 32 | b64enc) }}
16
16
GORILLA_SESSION_KEY : {{ $gorillaSessionKey | quote }}
17
+ {{- $jwkUrl := ( .Values.global.auth.jwkUrl | default (printf "http://%s-app:8083/api/jwks.json" .Release.Name)) | b64enc }}
18
+ GORILLA_AUTH_JWK_URL : {{ $jwkUrl | quote }}
Original file line number Diff line number Diff line change @@ -73,9 +73,12 @@ global:
73
73
74
74
otel :
75
75
traces :
76
- host : " " # defaults to the otel-daemonset service
77
- port : 4317 # grpc default is 4317, http default is 4318
78
- proto : " grpc" # grpc, http
76
+ # defaults to the otel-daemonset service
77
+ host : " "
78
+ # grpc default is 4317, http default is 4318
79
+ port : 4317
80
+ # grpc, http
81
+ proto : " grpc"
79
82
80
83
clickhouse :
81
84
install : false
@@ -97,6 +100,8 @@ global:
97
100
98
101
auth :
99
102
sessionLengthHours : 720
103
+ # Internal URL for the auth service should be using oidc or auth0
104
+ jwkUrl : " "
100
105
oidc :
101
106
clientId : " "
102
107
secret : " "
You can’t perform that action at this time.
0 commit comments