jupyterlab-service.yaml 379 B

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