jupyterlab-service.yaml 439 B

123456789101112131415161718192021
  1. {{- if .Values.jupyterlab.install.enabled }}
  2. apiVersion: v1
  3. kind: Service
  4. metadata:
  5. name: {{ .Release.Name }}-jupyterlab
  6. labels:
  7. tier: aihub-spark
  8. component: jupyterlab
  9. release: {{ .Release.Name }}
  10. spec:
  11. clusterIP: None
  12. ports:
  13. - port: 8888
  14. targetPort: 8888
  15. protocol: TCP
  16. name: jupyterlab-port
  17. selector:
  18. tier: aihub-spark
  19. component: jupyterlab
  20. release: {{ .Release.Name }}
  21. {{- end }}