Skip to content

Commit a21286c

Browse files
authored
Merge 0e0460e into b7ca0df
2 parents b7ca0df + 0e0460e commit a21286c

File tree

22 files changed

+55
-17
lines changed

22 files changed

+55
-17
lines changed

charts/operator-wandb/Chart.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies:
44
version: 0.1.0
55
- name: wandb-base
66
repository: file://../wandb-base
7-
version: 0.4.0
7+
version: 0.4.1
88
- name: console
99
repository: file://charts/console
1010
version: 0.1.0
@@ -58,9 +58,9 @@ dependencies:
5858
version: 0.1.0
5959
- name: wandb-base
6060
repository: file://../wandb-base
61-
version: 0.4.0
61+
version: 0.4.1
6262
- name: wandb-base
6363
repository: file://../wandb-base
64-
version: 0.4.0
65-
digest: sha256:d9e104084992aaca36330a56d4a5b825fd20f0bdf995070bf93f46a883375169
66-
generated: "2025-01-29T12:38:09.214239-06:00"
64+
version: 0.4.1
65+
digest: sha256:d6b5ef46b80814179a954ed674dc248c65cdc8192ead7a11f1df3861da29feed
66+
generated: "2025-02-04T16:15:12.09375+05:30"

charts/operator-wandb/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: operator-wandb
33
description: A Helm chart for deploying W&B to Kubernetes
44
type: application
5-
version: 0.25.0
5+
version: 0.26.0
66
appVersion: 1.0.0
77
icon: https://wandb.ai/logo.svg
88

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ spec:
4646
# Extend the pods shutdown grace period from the default of 30s to 60s.
4747
# This goes in the pod template spec.
4848
terminationGracePeriodSeconds: 60
49+
imagePullSecrets:
50+
{{- include "wandb.imagePullSecrets" . }}
4951
initContainers:
5052
- name: init-db
5153
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,8 @@ spec:
3636
{{- toYaml . | nindent 8 }}
3737
{{- end }}
3838
spec:
39-
{{- with .Values.imagePullSecrets }}
40-
imagePullSecrets:
41-
{{- toYaml . | nindent 8 }}
39+
imagePullSecrets:
40+
{{- include "wandb.imagePullSecrets" . }}
4241
{{- end }}
4342
{{ if .Values.bufstream.deployment.shareProcessNamespace }}
4443
shareProcessNamespace: true

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ spec:
4545
# Extend the pods shutdown grace period from the default of 30s to 60s.
4646
# This goes in the pod template spec.
4747
terminationGracePeriodSeconds: 60
48+
imagePullSecrets:
49+
{{- include "wandb.imagePullSecrets" . }}
4850
containers:
4951
- name: {{ .Chart.Name }}
5052
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ spec:
4747
{{- include "wandb.podSecurityContext" .Values.pod.securityContext | nindent 6 }}
4848
# needed to ensure ensure Kafka consumers handle pod termination gracefully and avoid data loss
4949
terminationGracePeriodSeconds: 60
50+
imagePullSecrets:
51+
{{- include "wandb.imagePullSecrets" . }}
5052
containers:
5153
- name: {{ .Chart.Name }}
5254
{{- include "wandb.containerSecurityContext" .Values.container.securityContext | nindent 10 }}

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ spec:
3838
{{- include "filestream.podLabels" . | nindent 8 }}
3939
spec:
4040
{{- with .Values.imagePullSecrets }}
41-
imagePullSecrets:
42-
{{- toYaml . | nindent 8 }}
43-
{{- end }}
41+
imagePullSecrets:
42+
{{- include "wandb.imagePullSecrets" . }}
4443
serviceAccountName: {{ include "filestream.serviceAccountName" . }}
4544
{{- include "wandb.nodeSelector" . | nindent 6 }}
4645
{{- include "wandb.priorityClassName" . | nindent 6 }}

charts/operator-wandb/charts/flat-run-fields-updater/templates/deployment.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ spec:
3838
{{- include "flat-run-fields-updater.podLabels" . | nindent 8 }}
3939
spec:
4040
{{- with .Values.imagePullSecrets }}
41-
imagePullSecrets:
42-
{{- toYaml . | nindent 8 }}
43-
{{- end }}
41+
imagePullSecrets:
42+
{{- include "wandb.imagePullSecrets" . }}
4443
serviceAccountName: {{ include "flat-run-fields-updater.serviceAccountName" . }}
4544
{{- include "wandb.nodeSelector" . | nindent 6 }}
4645
{{- include "wandb.priorityClassName" . | nindent 6 }}

charts/operator-wandb/charts/mysql/templates/statefulset.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ spec:
2929
{{- include "wandb.nodeSelector" . | nindent 6 }}
3030
{{- include "wandb.priorityClassName" . | nindent 6 }}
3131
{{- include "wandb.podSecurityContext" .Values.pod.securityContext | nindent 6 }}
32+
imagePullSecrets:
33+
{{- include "wandb.imagePullSecrets" . }}
3234
containers:
3335
- name: mysql
3436
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
@@ -89,4 +91,4 @@ spec:
8991
- name: data
9092
persistentVolumeClaim:
9193
claimName: {{ include "mysql.fullname" . }}-data
92-
{{- end }}
94+
{{- end }}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ spec:
3636
{{- toYaml .tolerations | nindent 8 }}
3737
{{- end }}
3838
{{- include "nginx.podSecurityContext" .Values.pod.securityContext | nindent 6 }}
39+
imagePullSecrets:
40+
{{- include "wandb.imagePullSecrets" . }}
3941
containers:
4042
- image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
4143
name: {{ .Chart.Name }}

0 commit comments

Comments
 (0)