Skip to content

Commit 47c2b3f

Browse files
committed
fix: Change labels from 'jupyterhub.matchLabels' to 'jupyterhub.labels"
1 parent b3fb34b commit 47c2b3f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

jupyterhub/templates/hub/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
metadata:
1919
labels:
2020
{{- /* Changes here will cause the Deployment to restart the pods. */}}
21-
{{- include "jupyterhub.matchLabels" . | nindent 8 }}
21+
{{- include "jupyterhub.labels" . | nindent 8 }}
2222
hub.jupyter.org/network-access-proxy-api: "true"
2323
hub.jupyter.org/network-access-proxy-http: "true"
2424
hub.jupyter.org/network-access-singleuser: "true"

jupyterhub/templates/image-puller/_helpers-daemonset.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
template:
4141
metadata:
4242
labels:
43-
{{- include "jupyterhub.matchLabels" . | nindent 8 }}
43+
{{- include "jupyterhub.labels" . | nindent 8 }}
4444
{{- with .Values.prePuller.annotations }}
4545
annotations:
4646
{{- . | toYaml | nindent 8 }}

jupyterhub/templates/image-puller/job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec:
2727
metadata:
2828
labels:
2929
{{- /* Changes here will cause the Job to restart the pods. */}}
30-
{{- include "jupyterhub.matchLabels" . | nindent 8 }}
30+
{{- include "jupyterhub.labels" . | nindent 8 }}
3131
{{- with .Values.prePuller.labels }}
3232
{{- . | toYaml | nindent 8 }}
3333
{{- end }}

jupyterhub/templates/proxy/autohttps/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
template:
1919
metadata:
2020
labels:
21-
{{- include "jupyterhub.matchLabels" . | nindent 8 }}
21+
{{- include "jupyterhub.labels" . | nindent 8 }}
2222
hub.jupyter.org/network-access-proxy-http: "true"
2323
{{- with .Values.proxy.traefik.labels }}
2424
{{- . | toYaml | nindent 8 }}

jupyterhub/templates/proxy/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
metadata:
2121
labels:
2222
{{- /* Changes here will cause the Deployment to restart the pods. */}}
23-
{{- include "jupyterhub.matchLabels" . | nindent 8 }}
23+
{{- include "jupyterhub.labels" . | nindent 8 }}
2424
hub.jupyter.org/network-access-hub: "true"
2525
hub.jupyter.org/network-access-singleuser: "true"
2626
{{- with .Values.proxy.labels }}

jupyterhub/templates/scheduling/user-placeholder/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
{{- end }}
3333
labels:
3434
{{- /* Changes here will cause the Deployment to restart the pods. */}}
35-
{{- include "jupyterhub.matchLabels" . | nindent 8 }}
35+
{{- include "jupyterhub.labels" . | nindent 8 }}
3636
{{- with .Values.scheduling.userPlaceholder.labels }}
3737
{{- . | toYaml | nindent 8 }}
3838
{{- end }}

jupyterhub/templates/scheduling/user-scheduler/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
template:
1717
metadata:
1818
labels:
19-
{{- include "jupyterhub.matchLabels" . | nindent 8 }}
19+
{{- include "jupyterhub.labels" . | nindent 8 }}
2020
{{- with .Values.scheduling.userScheduler.labels }}
2121
{{- . | toYaml | nindent 8 }}
2222
{{- end }}

0 commit comments

Comments
 (0)