Move to overlay
This commit is contained in:
parent
6c8e8b9bb3
commit
386fc6f345
|
@ -33,9 +33,6 @@ spec:
|
||||||
{{- . | toYaml | nindent 8 }}
|
{{- . | toYaml | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
{{- with .Values.hub.hostAliases }}
|
|
||||||
{{- . | toYaml | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.scheduling.podPriority.enabled }}
|
{{- if .Values.scheduling.podPriority.enabled }}
|
||||||
priorityClassName: {{ include "jupyterhub.priority.fullname" . }}
|
priorityClassName: {{ include "jupyterhub.priority.fullname" . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -214,8 +211,6 @@ spec:
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: 8081
|
containerPort: 8081
|
||||||
- name: refresh-token
|
|
||||||
containerPort: 8082
|
|
||||||
{{- if .Values.hub.livenessProbe.enabled }}
|
{{- if .Values.hub.livenessProbe.enabled }}
|
||||||
{{- /* NOTE:
|
{{- /* NOTE:
|
||||||
We don't know how long hub database upgrades could take so having a
|
We don't know how long hub database upgrades could take so having a
|
||||||
|
|
File diff suppressed because one or more lines are too long
15
jupyter/overlays/test/deployment.yml
Normal file
15
jupyter/overlays/test/deployment.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
ports:
|
||||||
|
- containerPort: 8081
|
||||||
|
name: http
|
||||||
|
protocol: TCP
|
||||||
|
- containerPort: 8082
|
||||||
|
name: refresh-token
|
||||||
|
protocol: TCP
|
||||||
|
hostAliases:
|
||||||
|
- hostnames:
|
||||||
|
- hub
|
||||||
|
ip: 127.0.0.1
|
|
@ -5,3 +5,4 @@ resources:
|
||||||
patches:
|
patches:
|
||||||
- path: jupyterhub-ingress.yml
|
- path: jupyterhub-ingress.yml
|
||||||
- path: jupyterhub-service.yml
|
- path: jupyterhub-service.yml
|
||||||
|
- path: deployment.yml
|
||||||
|
|
Loading…
Reference in a new issue