You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
501 B
21 lines
501 B
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "jupyterlab.name" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "jupyterlab.labels" . | nindent 4 }}
|
|
{{- with .Values.service.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: {{ include "jupyterlab.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
ports:
|
|
- name: http
|
|
port: 8888
|
|
targetPort: 8888
|
|
protocol: TCP
|
|
|