123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- spark:
- install:
- enabled: false
- image:
- repository: SXKJ:32775/sxkj
- pullPolicy: Always
- # Overrides the image tag whose default is the chart appVersion.
- tag: "spark"
- imagePullSecrets: []
- nameOverride: ""
- fullnameOverride: ""
- nodeSelector:
- kubernetes.io/hostname: h110
- podAnnotations: {}
- podSecurityContext: {}
- # fsGroup: 2000
- securityContext: {}
- # capabilities:
- # drop:
- # - ALL
- # readOnlyRootFilesystem: true
- # runAsNonRoot: true
- # runAsUser: 1000
- service:
- type: NodePort
- port: 22
- nodePort: 32022
- resources: {}
- # We usually recommend not to specify default resources and to leave this as a conscious
- # choice for the user. This also increases chances charts run on environments with little
- # resources, such as Minikube. If you do want to specify resources, uncomment the following
- # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
- # limits:
- # cpu: 100m
- # memory: 128Mi
- # requests:
- # cpu: 100m
- # memory: 128Mi
- tolerations: []
- affinity: {}
- livy:
- install:
- enabled: false
- image:
- repository: SXKJ:32775/livy-0.7
- pullPolicy: Always
- # Overrides the image tag whose default is the chart appVersion.
- tag: "sxkj"
- imagePullSecrets: []
- nodeSelector:
- kubernetes.io/hostname: h153
- podAnnotations: {}
- podSecurityContext: {}
- # fsGroup: 2000
- securityContext: {}
- # capabilities:
- # drop:
- # - ALL
- # readOnlyRootFilesystem: true
- # runAsNonRoot: true
- # runAsUser: 1000
- service:
- type: NodePort
- nodePort: 31889
- resources: {}
- # We usually recommend not to specify default resources and to leave this as a conscious
- # choice for the user. This also increases chances charts run on environments with little
- # resources, such as Minikube. If you do want to specify resources, uncomment the following
- # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
- # limits:
- # cpu: 100m
- # memory: 128Mi
- # requests:
- # cpu: 100m
- # memory: 128Mi
- tolerations: []
- affinity: {}
- jupyterlab:
- install:
- enabled: true
- config:
- baseUrl: /nbs
- livyUrl: http://10.138.143.10:8998
- image:
- repository: registry.cn-hangzhou.aliyuncs.com/sxtest/jupyterlab
- pullPolicy: Always
- tag: "idctest"
- imagePullSecrets: []
- nameOverride: ""
- fullnameOverride: ""
- podAnnotations: {}
- resources: {}
- nodeSelector:
- aihub-dag: aihub-dag
- persistence:
- # Enable persistent volume for storing dags
- enabled: true
- # Volume size for dags
- size: 20Gi
- # If using a custom storageClass, pass name here
- storageClassName: 'nfs-storage'
- # access mode of the persistent volume
- accessMode: ReadWriteMany
- ingress:
- jupyterlab:
- annotations:
- kubernetes.io/ingress.class: public
- hosts:
- - host: aihub-dag-idctest.digitalyili.com
- paths:
- - path: /nbs
- pathType: ImplementationSpecific
|