values.yaml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. # Default values for dolphinscheduler-chart.
  18. # This is a YAML-formatted file.
  19. # Declare variables to be passed into your templates.
  20. timezone: "Asia/Shanghai"
  21. image:
  22. registry: "dolphinscheduler.docker.scarf.sh/apache"
  23. tag: "dev-SNAPSHOT"
  24. pullPolicy: "IfNotPresent"
  25. pullSecret: ""
  26. master: dolphinscheduler-master
  27. worker: dolphinscheduler-worker
  28. api: dolphinscheduler-api
  29. alert: dolphinscheduler-alert-server
  30. tools: dolphinscheduler-tools
  31. ## If not exists external database, by default, Dolphinscheduler's database will use it.
  32. postgresql:
  33. enabled: true
  34. postgresqlUsername: "root"
  35. postgresqlPassword: "root"
  36. postgresqlDatabase: "dolphinscheduler"
  37. params: "characterEncoding=utf8"
  38. persistence:
  39. enabled: false
  40. size: "20Gi"
  41. storageClass: "-"
  42. mysql:
  43. enabled: false
  44. auth:
  45. username: "ds"
  46. password: "ds"
  47. database: "dolphinscheduler"
  48. params: "characterEncoding=utf8"
  49. primary:
  50. persistence:
  51. enabled: false
  52. size: "20Gi"
  53. storageClass: "-"
  54. minio:
  55. enabled: false
  56. auth:
  57. rootUser: minioadmin
  58. rootPassword: minioadmin
  59. persistence:
  60. enabled: false
  61. defaultBuckets: "dolphinscheduler"
  62. ## If exists external database, and set postgresql.enable value to false.
  63. ## external database will be used, otherwise Dolphinscheduler's database will be used.
  64. externalDatabase:
  65. type: "postgresql"
  66. host: "localhost"
  67. port: "5432"
  68. username: "root"
  69. password: "root"
  70. database: "dolphinscheduler"
  71. params: "characterEncoding=utf8"
  72. ## If not exists external registry, the zookeeper registry will be used by default.
  73. zookeeper:
  74. enabled: true
  75. service:
  76. port: 2181
  77. fourlwCommandsWhitelist: "srvr,ruok,wchs,cons"
  78. persistence:
  79. enabled: false
  80. size: "20Gi"
  81. storageClass: "-"
  82. ## If exists external registry and set zookeeper.enable value to false, the external registry will be used.
  83. externalRegistry:
  84. registryPluginDir: "lib/plugin/registry"
  85. registryPluginName: "zookeeper"
  86. registryServers: "127.0.0.1:2181"
  87. conf:
  88. common:
  89. # user data local directory path, please make sure the directory exists and have read write permissions
  90. data.basedir.path: /tmp/dolphinscheduler
  91. # resource storage type: HDFS, S3, NONE
  92. resource.storage.type: NONE
  93. # resource store on HDFS/S3 path, resource file will store to this base path, self configuration, please make sure the directory exists on hdfs and have read write permissions. "/dolphinscheduler" is recommended
  94. resource.storage.upload.base.path: /dolphinscheduler
  95. # The AWS access key. if resource.storage.type=S3 or use EMR-Task, This configuration is required
  96. resource.aws.access.key.id: minioadmin
  97. # The AWS secret access key. if resource.storage.type=S3 or use EMR-Task, This configuration is required
  98. resource.aws.secret.access.key: minioadmin
  99. # The AWS Region to use. if resource.storage.type=S3 or use EMR-Task, This configuration is required
  100. resource.aws.region: ca-central-1
  101. # The name of the bucket. You need to create them by yourself. Otherwise, the system cannot start. All buckets in Amazon S3 share a single namespace; ensure the bucket is given a unique name.
  102. resource.aws.s3.bucket.name: dolphinscheduler
  103. # You need to set this parameter when private cloud s3. If S3 uses public cloud, you only need to set resource.aws.region or set to the endpoint of a public cloud such as S3.cn-north-1.amazonaws.com.cn
  104. resource.aws.s3.endpoint: http://minio:9000
  105. # alibaba cloud access key id, required if you set resource.storage.type=OSS
  106. resource.alibaba.cloud.access.key.id: <your-access-key-id>
  107. # alibaba cloud access key secret, required if you set resource.storage.type=OSS
  108. resource.alibaba.cloud.access.key.secret: <your-access-key-secret>
  109. # alibaba cloud region, required if you set resource.storage.type=OSS
  110. resource.alibaba.cloud.region: cn-hangzhou
  111. # oss bucket name, required if you set resource.storage.type=OSS
  112. resource.alibaba.cloud.oss.bucket.name: dolphinscheduler
  113. # oss bucket endpoint, required if you set resource.storage.type=OSS
  114. resource.alibaba.cloud.oss.endpoint: https://oss-cn-hangzhou.aliyuncs.com
  115. # if resource.storage.type=HDFS, the user must have the permission to create directories under the HDFS root path
  116. resource.hdfs.root.user: hdfs
  117. # if resource.storage.type=S3, the value like: s3a://dolphinscheduler; if resource.storage.type=HDFS and namenode HA is enabled, you need to copy core-site.xml and hdfs-site.xml to conf dir
  118. resource.hdfs.fs.defaultFS: hdfs://mycluster:8020
  119. # whether to startup kerberos
  120. hadoop.security.authentication.startup.state: false
  121. # java.security.krb5.conf path
  122. java.security.krb5.conf.path: /opt/krb5.conf
  123. # login user from keytab username
  124. login.user.keytab.username: hdfs-mycluster@ESZ.COM
  125. # login user from keytab path
  126. login.user.keytab.path: /opt/hdfs.headless.keytab
  127. # kerberos expire time, the unit is hour
  128. kerberos.expire.time: 2
  129. # resourcemanager port, the default value is 8088 if not specified
  130. resource.manager.httpaddress.port: 8088
  131. # if resourcemanager HA is enabled, please set the HA IPs; if resourcemanager is single, keep this value empty
  132. yarn.resourcemanager.ha.rm.ids: 192.168.xx.xx,192.168.xx.xx
  133. # if resourcemanager HA is enabled or not use resourcemanager, please keep the default value; If resourcemanager is single, you only need to replace ds1 to actual resourcemanager hostname
  134. yarn.application.status.address: http://ds1:%s/ws/v1/cluster/apps/%s
  135. # job history status url when application number threshold is reached(default 10000, maybe it was set to 1000)
  136. yarn.job.history.status.address: http://ds1:19888/ws/v1/history/mapreduce/jobs/%s
  137. # datasource encryption enable
  138. datasource.encryption.enable: false
  139. # datasource encryption salt
  140. datasource.encryption.salt: '!@#$%^&*'
  141. # data quality option
  142. data-quality.jar.name: dolphinscheduler-data-quality-dev-SNAPSHOT.jar
  143. # Whether hive SQL is executed in the same session
  144. support.hive.oneSession: false
  145. # use sudo or not, if set true, executing user is tenant user and deploy user needs sudo permissions; if set false, executing user is the deploy user and doesn't need sudo permissions
  146. sudo.enable: true
  147. # development state
  148. development.state: false
  149. # rpc port
  150. alert.rpc.port: 50052
  151. # set path of conda.sh
  152. conda.path: /opt/anaconda3/etc/profile.d/conda.sh
  153. # Task resource limit state
  154. task.resource.limit.state: false
  155. # mlflow task plugin preset repository
  156. ml.mlflow.preset_repository: https://github.com/apache/dolphinscheduler-mlflow
  157. # mlflow task plugin preset repository version
  158. ml.mlflow.preset_repository_version: "main"
  159. # way to collect applicationId: log, aop
  160. appId.collect: log
  161. common:
  162. ## Configmap
  163. configmap:
  164. DOLPHINSCHEDULER_OPTS: ""
  165. DATA_BASEDIR_PATH: "/tmp/dolphinscheduler"
  166. RESOURCE_UPLOAD_PATH: "/dolphinscheduler"
  167. # dolphinscheduler env
  168. HADOOP_HOME: "/opt/soft/hadoop"
  169. HADOOP_CONF_DIR: "/opt/soft/hadoop/etc/hadoop"
  170. SPARK_HOME: "/opt/soft/spark"
  171. PYTHON_HOME: "/usr/bin/python"
  172. JAVA_HOME: "/opt/java/openjdk"
  173. HIVE_HOME: "/opt/soft/hive"
  174. FLINK_HOME: "/opt/soft/flink"
  175. DATAX_HOME: "/opt/soft/datax"
  176. ## Shared storage persistence mounted into api, master and worker, such as Hadoop, Spark, Flink and DataX binary package
  177. sharedStoragePersistence:
  178. enabled: false
  179. mountPath: "/opt/soft"
  180. accessModes:
  181. - "ReadWriteMany"
  182. ## storageClassName must support the access mode: ReadWriteMany
  183. storageClassName: "-"
  184. storage: "20Gi"
  185. ## If RESOURCE_STORAGE_TYPE is HDFS and FS_DEFAULT_FS is file:///, fsFileResourcePersistence should be enabled for resource storage
  186. fsFileResourcePersistence:
  187. enabled: false
  188. accessModes:
  189. - "ReadWriteMany"
  190. ## storageClassName must support the access mode: ReadWriteMany
  191. storageClassName: "-"
  192. storage: "20Gi"
  193. master:
  194. ## PodManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down.
  195. podManagementPolicy: "Parallel"
  196. ## Replicas is the desired number of replicas of the given Template.
  197. replicas: "3"
  198. ## You can use annotations to attach arbitrary non-identifying metadata to objects.
  199. ## Clients such as tools and libraries can retrieve this metadata.
  200. annotations: {}
  201. ## Affinity is a group of affinity scheduling rules. If specified, the pod's scheduling constraints.
  202. ## More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#affinity-v1-core
  203. affinity: {}
  204. ## NodeSelector is a selector which must be true for the pod to fit on a node.
  205. ## Selector which must match a node's labels for the pod to be scheduled on that node.
  206. ## More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
  207. nodeSelector: {}
  208. ## Tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission,
  209. ## effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.
  210. tolerations: []
  211. ## Compute Resources required by this container. Cannot be updated.
  212. ## More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container
  213. resources: {}
  214. # resources:
  215. # limits:
  216. # memory: "8Gi"
  217. # cpu: "4"
  218. # requests:
  219. # memory: "2Gi"
  220. # cpu: "500m"
  221. ## Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated.
  222. ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
  223. livenessProbe:
  224. enabled: true
  225. initialDelaySeconds: "30"
  226. periodSeconds: "30"
  227. timeoutSeconds: "5"
  228. failureThreshold: "3"
  229. successThreshold: "1"
  230. ## Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated.
  231. ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
  232. readinessProbe:
  233. enabled: true
  234. initialDelaySeconds: "30"
  235. periodSeconds: "30"
  236. timeoutSeconds: "5"
  237. failureThreshold: "3"
  238. successThreshold: "1"
  239. ## PersistentVolumeClaim represents a reference to a PersistentVolumeClaim in the same namespace.
  240. ## The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod.
  241. ## Every claim in this list must have at least one matching (by name) volumeMount in one container in the template.
  242. ## A claim in this list takes precedence over any volumes in the template, with the same name.
  243. persistentVolumeClaim:
  244. enabled: false
  245. accessModes:
  246. - "ReadWriteOnce"
  247. storageClassName: "-"
  248. storage: "20Gi"
  249. env:
  250. JAVA_OPTS: "-Xms1g -Xmx1g -Xmn512m"
  251. MASTER_EXEC_THREADS: "100"
  252. MASTER_EXEC_TASK_NUM: "20"
  253. MASTER_DISPATCH_TASK_NUM: "3"
  254. MASTER_HOST_SELECTOR: "LowerWeight"
  255. MASTER_HEARTBEAT_INTERVAL: "10s"
  256. MASTER_HEARTBEAT_ERROR_THRESHOLD: "5"
  257. MASTER_TASK_COMMIT_RETRYTIMES: "5"
  258. MASTER_TASK_COMMIT_INTERVAL: "1s"
  259. MASTER_STATE_WHEEL_INTERVAL: "5s"
  260. MASTER_MAX_CPU_LOAD_AVG: "-1"
  261. MASTER_RESERVED_MEMORY: "0.3"
  262. MASTER_FAILOVER_INTERVAL: "10m"
  263. MASTER_KILL_YARN_JOB_WHEN_HANDLE_FAILOVER: "true"
  264. worker:
  265. ## PodManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down.
  266. podManagementPolicy: "Parallel"
  267. ## Replicas is the desired number of replicas of the given Template.
  268. replicas: "3"
  269. ## You can use annotations to attach arbitrary non-identifying metadata to objects.
  270. ## Clients such as tools and libraries can retrieve this metadata.
  271. annotations: {}
  272. ## Affinity is a group of affinity scheduling rules. If specified, the pod's scheduling constraints.
  273. ## More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#affinity-v1-core
  274. affinity: {}
  275. ## NodeSelector is a selector which must be true for the pod to fit on a node.
  276. ## Selector which must match a node's labels for the pod to be scheduled on that node.
  277. ## More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
  278. nodeSelector: {}
  279. ## Tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission,
  280. ## effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.
  281. tolerations: []
  282. ## Compute Resources required by this container. Cannot be updated.
  283. ## More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container
  284. resources: {}
  285. # resources:
  286. # limits:
  287. # memory: "8Gi"
  288. # cpu: "4"
  289. # requests:
  290. # memory: "2Gi"
  291. # cpu: "500m"
  292. ## Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated.
  293. ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
  294. livenessProbe:
  295. enabled: true
  296. initialDelaySeconds: "30"
  297. periodSeconds: "30"
  298. timeoutSeconds: "5"
  299. failureThreshold: "3"
  300. successThreshold: "1"
  301. ## Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated.
  302. ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
  303. readinessProbe:
  304. enabled: true
  305. initialDelaySeconds: "30"
  306. periodSeconds: "30"
  307. timeoutSeconds: "5"
  308. failureThreshold: "3"
  309. successThreshold: "1"
  310. ## PersistentVolumeClaim represents a reference to a PersistentVolumeClaim in the same namespace.
  311. ## The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod.
  312. ## Every claim in this list must have at least one matching (by name) volumeMount in one container in the template.
  313. ## A claim in this list takes precedence over any volumes in the template, with the same name.
  314. persistentVolumeClaim:
  315. enabled: false
  316. ## dolphinscheduler data volume
  317. dataPersistentVolume:
  318. enabled: false
  319. accessModes:
  320. - "ReadWriteOnce"
  321. storageClassName: "-"
  322. storage: "20Gi"
  323. ## dolphinscheduler logs volume
  324. logsPersistentVolume:
  325. enabled: false
  326. accessModes:
  327. - "ReadWriteOnce"
  328. storageClassName: "-"
  329. storage: "20Gi"
  330. env:
  331. WORKER_GROUPS_0: default
  332. WORKER_MAX_CPU_LOAD_AVG: "-1"
  333. WORKER_RESERVED_MEMORY: "0.3"
  334. WORKER_EXEC_THREADS: "100"
  335. WORKER_HEARTBEAT_INTERVAL: "10s"
  336. WORKER_HEART_ERROR_THRESHOLD: "5"
  337. WORKER_HOST_WEIGHT: "100"
  338. WORKER_GROUPS: "default"
  339. alert:
  340. ## Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
  341. replicas: 1
  342. ## The deployment strategy to use to replace existing pods with new ones.
  343. strategy:
  344. type: "RollingUpdate"
  345. rollingUpdate:
  346. maxSurge: "25%"
  347. maxUnavailable: "25%"
  348. ## You can use annotations to attach arbitrary non-identifying metadata to objects.
  349. ## Clients such as tools and libraries can retrieve this metadata.
  350. annotations: {}
  351. ## NodeSelector is a selector which must be true for the pod to fit on a node.
  352. ## Selector which must match a node's labels for the pod to be scheduled on that node.
  353. ## More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
  354. affinity: {}
  355. ## Compute Resources required by this container. Cannot be updated.
  356. ## More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container
  357. nodeSelector: {}
  358. ## Tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission,
  359. ## effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.
  360. tolerations: []
  361. ## Affinity is a group of affinity scheduling rules. If specified, the pod's scheduling constraints.
  362. ## More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#affinity-v1-core
  363. resources: {}
  364. # resources:
  365. # limits:
  366. # memory: "2Gi"
  367. # cpu: "1"
  368. # requests:
  369. # memory: "1Gi"
  370. # cpu: "500m"
  371. ## Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated.
  372. ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
  373. livenessProbe:
  374. enabled: true
  375. initialDelaySeconds: "30"
  376. periodSeconds: "30"
  377. timeoutSeconds: "5"
  378. failureThreshold: "3"
  379. successThreshold: "1"
  380. ## Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated.
  381. ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
  382. readinessProbe:
  383. enabled: true
  384. initialDelaySeconds: "30"
  385. periodSeconds: "30"
  386. timeoutSeconds: "5"
  387. failureThreshold: "3"
  388. successThreshold: "1"
  389. ## PersistentVolumeClaim represents a reference to a PersistentVolumeClaim in the same namespace.
  390. ## More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
  391. persistentVolumeClaim:
  392. enabled: false
  393. accessModes:
  394. - "ReadWriteOnce"
  395. storageClassName: "-"
  396. storage: "20Gi"
  397. env:
  398. JAVA_OPTS: "-Xms512m -Xmx512m -Xmn256m"
  399. api:
  400. ## Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
  401. replicas: "1"
  402. ## The deployment strategy to use to replace existing pods with new ones.
  403. strategy:
  404. type: "RollingUpdate"
  405. rollingUpdate:
  406. maxSurge: "25%"
  407. maxUnavailable: "25%"
  408. ## You can use annotations to attach arbitrary non-identifying metadata to objects.
  409. ## Clients such as tools and libraries can retrieve this metadata.
  410. annotations: {}
  411. ## NodeSelector is a selector which must be true for the pod to fit on a node.
  412. ## Selector which must match a node's labels for the pod to be scheduled on that node.
  413. ## More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
  414. affinity: {}
  415. ## Compute Resources required by this container. Cannot be updated.
  416. ## More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container
  417. nodeSelector: {}
  418. ## Tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission,
  419. ## effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.
  420. tolerations: []
  421. ## Affinity is a group of affinity scheduling rules. If specified, the pod's scheduling constraints.
  422. ## More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#affinity-v1-core
  423. resources: {}
  424. # resources:
  425. # limits:
  426. # memory: "2Gi"
  427. # cpu: "1"
  428. # requests:
  429. # memory: "1Gi"
  430. # cpu: "500m"
  431. ## Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated.
  432. ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
  433. livenessProbe:
  434. enabled: true
  435. initialDelaySeconds: "30"
  436. periodSeconds: "30"
  437. timeoutSeconds: "5"
  438. failureThreshold: "3"
  439. successThreshold: "1"
  440. ## Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated.
  441. ## More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
  442. readinessProbe:
  443. enabled: true
  444. initialDelaySeconds: "30"
  445. periodSeconds: "30"
  446. timeoutSeconds: "5"
  447. failureThreshold: "3"
  448. successThreshold: "1"
  449. ## PersistentVolumeClaim represents a reference to a PersistentVolumeClaim in the same namespace.
  450. ## More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
  451. persistentVolumeClaim:
  452. enabled: false
  453. accessModes:
  454. - "ReadWriteOnce"
  455. storageClassName: "-"
  456. storage: "20Gi"
  457. service:
  458. ## type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer
  459. type: "ClusterIP"
  460. ## clusterIP is the IP address of the service and is usually assigned randomly by the master
  461. clusterIP: ""
  462. ## nodePort is the port on each node on which this api service is exposed when type=NodePort
  463. nodePort: ""
  464. ## pythonNodePort is the port on each node on which this python api service is exposed when type=NodePort
  465. pythonNodePort: ""
  466. ## externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service
  467. externalIPs: []
  468. ## externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service, requires Type to be ExternalName
  469. externalName: ""
  470. ## loadBalancerIP when service.type is LoadBalancer. LoadBalancer will get created with the IP specified in this field
  471. loadBalancerIP: ""
  472. ## annotations may need to be set when service.type is LoadBalancer
  473. ## service.beta.kubernetes.io/aws-load-balancer-ssl-cert: arn:aws:acm:us-east-1:EXAMPLE_CERT
  474. annotations: {}
  475. env:
  476. JAVA_OPTS: "-Xms512m -Xmx512m -Xmn256m"
  477. ingress:
  478. enabled: false
  479. host: "dolphinscheduler.org"
  480. path: "/dolphinscheduler"
  481. annotations: {}
  482. tls:
  483. enabled: false
  484. secretName: "dolphinscheduler-tls"