123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- #
- # Licensed to the Apache Software Foundation (ASF) under one or more
- # contributor license agreements. See the NOTICE file distributed with
- # this work for additional information regarding copyright ownership.
- # The ASF licenses this file to You under the Apache License, Version 2.0
- # (the "License"); you may not use this file except in compliance with
- # the License. You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- # Default values for dolphinscheduler-chart.
- # This is a YAML-formatted file.
- # Declare variables to be passed into your templates.
- nameOverride: ""
- fullnameOverride: ""
- timezone: "Asia/Shanghai"
- image:
- registry: "apache"
- repository: "dolphinscheduler"
- tag: "latest"
- pullPolicy: "IfNotPresent"
- imagePullSecrets: []
- # If not exists external postgresql, by default, Dolphinscheduler's database will use it.
- postgresql:
- enabled: true
- postgresqlUsername: "root"
- postgresqlPassword: "root"
- postgresqlDatabase: "dolphinscheduler"
- persistence:
- enabled: false
- size: "20Gi"
- storageClass: "-"
- # If exists external postgresql, and set postgresql.enable value to false.
- # If postgresql.enable is false, Dolphinscheduler's database will use it.
- externalDatabase:
- host: "localhost"
- port: "5432"
- username: "root"
- password: "root"
- database: "dolphinscheduler"
- # If not exists external zookeeper, by default, Dolphinscheduler's zookeeper will use it.
- zookeeper:
- enabled: true
- taskQueue: "zookeeper"
- config:
- ZOO_4LW_COMMANDS_WHITELIST: srvr,ruok,wchs,cons
- service:
- port: "2181"
- persistence:
- enabled: false
- size: "20Gi"
- storageClass: "-"
- # If exists external zookeeper, and set zookeeper.enable value to false.
- # If zookeeper.enable is false, Dolphinscheduler's zookeeper will use it.
- externalZookeeper:
- taskQueue: "zookeeper"
- zookeeperQuorum: "127.0.0.1:2181"
- master:
- podManagementPolicy: "Parallel"
- replicas: "3"
- # NodeSelector is a selector which must be true for the pod to fit on a node.
- # Selector which must match a node's labels for the pod to be scheduled on that node.
- # More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
- nodeSelector: {}
- # Tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission,
- # effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.
- tolerations: []
- # Affinity is a group of affinity scheduling rules.
- # If specified, the pod's scheduling constraints.
- # More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#affinity-v1-core
- affinity: {}
- ## Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- configmap:
- MASTER_EXEC_THREADS: "100"
- MASTER_EXEC_TASK_NUM: "20"
- MASTER_HEARTBEAT_INTERVAL: "10"
- MASTER_TASK_COMMIT_RETRYTIMES: "5"
- MASTER_TASK_COMMIT_INTERVAL: "1000"
- MASTER_MAX_CPULOAD_AVG: "100"
- MASTER_RESERVED_MEMORY: "0.1"
- MASTER_LISTEN_PORT: "5678"
- livenessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- ## Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- readinessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- ## volumeClaimTemplates is a list of claims that pods are allowed to reference.
- ## The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod.
- ## Every claim in this list must have at least one matching (by name) volumeMount in one container in the template.
- ## A claim in this list takes precedence over any volumes in the template, with the same name.
- persistentVolumeClaim:
- enabled: false
- accessModes:
- - "ReadWriteOnce"
- storageClassName: "-"
- storage: "20Gi"
- worker:
- podManagementPolicy: "Parallel"
- replicas: "3"
- # NodeSelector is a selector which must be true for the pod to fit on a node.
- # Selector which must match a node's labels for the pod to be scheduled on that node.
- # More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
- nodeSelector: {}
- # Tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission,
- # effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.
- tolerations: []
- # Affinity is a group of affinity scheduling rules.
- # If specified, the pod's scheduling constraints.
- # More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#affinity-v1-core
- affinity: {}
- ## Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- livenessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- ## Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- readinessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- configmap:
- WORKER_EXEC_THREADS: "100"
- WORKER_HEARTBEAT_INTERVAL: "10"
- WORKER_FETCH_TASK_NUM: "3"
- WORKER_MAX_CPULOAD_AVG: "100"
- WORKER_RESERVED_MEMORY: "0.1"
- WORKER_LISTEN_PORT: "1234"
- WORKER_GROUP: "default"
- DOLPHINSCHEDULER_DATA_BASEDIR_PATH: "/tmp/dolphinscheduler"
- DOLPHINSCHEDULER_ENV:
- - "export HADOOP_HOME=/opt/soft/hadoop"
- - "export HADOOP_CONF_DIR=/opt/soft/hadoop/etc/hadoop"
- - "export SPARK_HOME1=/opt/soft/spark1"
- - "export SPARK_HOME2=/opt/soft/spark2"
- - "export PYTHON_HOME=/opt/soft/python"
- - "export JAVA_HOME=/opt/soft/java"
- - "export HIVE_HOME=/opt/soft/hive"
- - "export FLINK_HOME=/opt/soft/flink"
- - "export PATH=$HADOOP_HOME/bin:$SPARK_HOME1/bin:$SPARK_HOME2/bin:$PYTHON_HOME:$JAVA_HOME/bin:$HIVE_HOME/bin:$FLINK_HOME/bin:$PATH"
- ## volumeClaimTemplates is a list of claims that pods are allowed to reference.
- ## The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod.
- ## Every claim in this list must have at least one matching (by name) volumeMount in one container in the template.
- ## A claim in this list takes precedence over any volumes in the template, with the same name.
- persistentVolumeClaim:
- enabled: false
- ## dolphinscheduler data volume
- dataPersistentVolume:
- enabled: false
- accessModes:
- - "ReadWriteOnce"
- storageClassName: "-"
- storage: "20Gi"
- ## dolphinscheduler logs volume
- logsPersistentVolume:
- enabled: false
- accessModes:
- - "ReadWriteOnce"
- storageClassName: "-"
- storage: "20Gi"
- alert:
- strategy:
- type: "RollingUpdate"
- rollingUpdate:
- maxSurge: "25%"
- maxUnavailable: "25%"
- replicas: "1"
- # NodeSelector is a selector which must be true for the pod to fit on a node.
- # Selector which must match a node's labels for the pod to be scheduled on that node.
- # More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
- nodeSelector: {}
- # Tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission,
- # effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.
- tolerations: []
- # Affinity is a group of affinity scheduling rules.
- # If specified, the pod's scheduling constraints.
- # More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#affinity-v1-core
- affinity: {}
- ## Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- configmap:
- XLS_FILE_PATH: "/tmp/xls"
- MAIL_SERVER_HOST: ""
- MAIL_SERVER_PORT: ""
- MAIL_SENDER: ""
- MAIL_USER: ""
- MAIL_PASSWD: ""
- MAIL_SMTP_STARTTLS_ENABLE: false
- MAIL_SMTP_SSL_ENABLE: false
- MAIL_SMTP_SSL_TRUST: ""
- ENTERPRISE_WECHAT_ENABLE: false
- ENTERPRISE_WECHAT_CORP_ID: ""
- ENTERPRISE_WECHAT_SECRET: ""
- ENTERPRISE_WECHAT_AGENT_ID: ""
- ENTERPRISE_WECHAT_USERS: ""
- livenessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- ## Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- readinessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- ## volumeClaimTemplates is a list of claims that pods are allowed to reference.
- ## The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod.
- ## Every claim in this list must have at least one matching (by name) volumeMount in one container in the template.
- ## A claim in this list takes precedence over any volumes in the template, with the same name.
- persistentVolumeClaim:
- enabled: false
- accessModes:
- - "ReadWriteOnce"
- storageClassName: "-"
- storage: "20Gi"
- api:
- strategy:
- type: "RollingUpdate"
- rollingUpdate:
- maxSurge: "25%"
- maxUnavailable: "25%"
- replicas: "1"
- # NodeSelector is a selector which must be true for the pod to fit on a node.
- # Selector which must match a node's labels for the pod to be scheduled on that node.
- # More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
- nodeSelector: {}
- # Tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission,
- # effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.
- tolerations: []
- # Affinity is a group of affinity scheduling rules.
- # If specified, the pod's scheduling constraints.
- # More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#affinity-v1-core
- affinity: {}
- ## Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- livenessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- ## Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- readinessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- ## volumeClaimTemplates is a list of claims that pods are allowed to reference.
- ## The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod.
- ## Every claim in this list must have at least one matching (by name) volumeMount in one container in the template.
- ## A claim in this list takes precedence over any volumes in the template, with the same name.
- persistentVolumeClaim:
- enabled: false
- accessModes:
- - "ReadWriteOnce"
- storageClassName: "-"
- storage: "20Gi"
- frontend:
- strategy:
- type: "RollingUpdate"
- rollingUpdate:
- maxSurge: "25%"
- maxUnavailable: "25%"
- replicas: "1"
- # NodeSelector is a selector which must be true for the pod to fit on a node.
- # Selector which must match a node's labels for the pod to be scheduled on that node.
- # More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
- nodeSelector: {}
- # Tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission,
- # effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.
- tolerations: []
- # Affinity is a group of affinity scheduling rules.
- # If specified, the pod's scheduling constraints.
- # More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#affinity-v1-core
- affinity: {}
- ## Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- livenessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- ## Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated.
- ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
- readinessProbe:
- enabled: true
- initialDelaySeconds: "30"
- periodSeconds: "30"
- timeoutSeconds: "5"
- failureThreshold: "3"
- successThreshold: "1"
- ## volumeClaimTemplates is a list of claims that pods are allowed to reference.
- ## The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod.
- ## Every claim in this list must have at least one matching (by name) volumeMount in one container in the template.
- ## A claim in this list takes precedence over any volumes in the template, with the same name.
- persistentVolumeClaim:
- enabled: false
- accessModes:
- - "ReadWriteOnce"
- storageClassName: "-"
- storage: "20Gi"
- ingress:
- enabled: false
- host: "dolphinscheduler.org"
- path: "/"
- tls:
- enabled: false
- hosts:
- - "dolphinscheduler.org"
- secretName: "dolphinscheduler-tls"
|