Skip to content

Commit 09e81b6

Browse files
Feat: promote api/glue to stable
1 parent 928f12a commit 09e81b6

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

charts/operator-wandb/Chart.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ dependencies:
6565
- name: reloader
6666
repository: https://stakater.github.io/stakater-charts
6767
version: 1.3.0
68-
digest: sha256:623a191c29e06b4e6f4341ab4ad067c612297ef11384cbf8c4082c9f9a0f81fd
69-
generated: "2025-03-18T13:04:16.507165-05:00"
68+
digest: sha256:6cf1147d8398d55b21cdb5a9be3e1e084b418659add9e499ce1b84204d14d5ec
69+
generated: "2025-03-29T13:55:35.90503-05:00"

charts/operator-wandb/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies:
1818
condition: app.install
1919
- name: wandb-base
2020
alias: api
21-
condition: global.beta.api.enabled
21+
condition: global.api.enabled
2222
repository: file://../wandb-base
2323
version: "*.*.*"
2424
- name: console
@@ -91,7 +91,7 @@ dependencies:
9191
condition: yace.install
9292
- name: wandb-base
9393
alias: glue
94-
condition: global.beta.glue.enabled
94+
condition: global.glue.enabled
9595
repository: file://../wandb-base
9696
version: "*.*.*"
9797
- name: wandb-base

charts/operator-wandb/charts/app/templates/deployment.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ spec:
117117
resourceFieldRef:
118118
resource: limits.memory
119119
- name: GLUE_ENABLED
120-
value: "{{ not .Values.global.beta.glue.enabled }}"
120+
value: "{{ not .Values.global.glue.enabled }}"
121121
## TODO: Turn this on when we are ready to remove the gorilla service from wandb/local
122-
# {{- if .Values.global.beta.api.enabled }}
122+
# {{- if .Values.global.api.enabled }}
123123
# - name: GORILLA_ENABLED
124-
# value: "{{ not .Values.global.beta.api.enabled }}"
124+
# value: "{{ not .Values.global.api.enabled }}"
125125
# - name: PROXY_PASS_BACKEND_HOST
126126
# value: "$({{.Release.Name | upper | replace "-" "_" }}_API_SERVICE_HOST):$({{.Release.Name | upper | replace "-" "_" }}_API_SERVICE_PORT)"
127127
# {{- end }}
@@ -336,7 +336,7 @@ spec:
336336
{{- include "app.extraEnv" (dict "global" $.Values.global "local" .Values) | nindent 12 }}
337337
{{- include "wandb.extraEnvFrom" (dict "root" $ "local" .) | nindent 12 }}
338338
## TODO: If we want to remove the api service from wandb/local, we can uncomment this if else block
339-
# {{- if not .Values.global.beta.api.enabled }}
339+
# {{- if not .Values.global.api.enabled }}
340340
livenessProbe:
341341
httpGet:
342342
path: /healthz

charts/operator-wandb/templates/_ingress.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ It expects a dictionary with two entries:
5454
port:
5555
number: 8080
5656
{{- end }}
57-
{{- if .Values.global.beta.api.enabled }}
57+
{{- if .Values.global.api.enabled }}
5858
- pathType: Prefix
5959
path: /api
6060
backend:

charts/operator-wandb/values.yaml

+6-5
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,12 @@ global:
204204
weave-trace:
205205
enabled: false
206206

207+
api:
208+
enabled: false
209+
glue:
210+
enabled: false
211+
207212
beta:
208-
glue:
209-
enabled: false
210-
api:
211-
enabled: false
212213
bufstream:
213214
enabled: false
214215

@@ -664,7 +665,7 @@ glue:
664665
optional: true
665666

666667
api:
667-
# install: false
668+
install: false
668669
autoscaling:
669670
horizontal:
670671
enabled: true

0 commit comments

Comments
 (0)