|
@@ -514,6 +514,31 @@ common:
|
|
|
SW_GRPC_LOG_SERVER_PORT: "11800"
|
|
|
```
|
|
|
|
|
|
+### How to deploy specific components separately?
|
|
|
+
|
|
|
+Modify the `api.enabled`, `alert.enabled`, `master.enabled`, or `worker.enabled` configuration items in the `values.yaml` file.
|
|
|
+
|
|
|
+For example, if you need to deploy worker to both CPU and GPU servers in a cluster, and the worker uses different images, you can do the following:
|
|
|
+
|
|
|
+```bash
|
|
|
+# Install master, api-server, alert-server, and other default components, but do not install worker
|
|
|
+helm install dolphinscheduler . --set worker.enabled=false
|
|
|
+# Disable the installation of other components, only install worker, use the self-built CPU image, deploy to CPU servers with the `x86` label through nodeselector, and use zookeeper as the external registry center
|
|
|
+helm install dolphinscheduler-cpu-worker . \
|
|
|
+ --set minio.enabled=false --set postgresql.enabled=false --set zookeeper.enabled=false \
|
|
|
+ --set master.enabled=false --set api.enabled=false --set alert.enabled=false \
|
|
|
+ --set worker.enabled=true --set image.tag=latest-cpu --set worker.nodeSelector.cpu="x86" \
|
|
|
+ --set externalRegistry.registryPluginName=zookeeper --set externalRegistry.registryServers=dolphinscheduler-zookeeper:2181
|
|
|
+# Disable the installation of other components, only install worker, use the self-built GPU image, deploy to GPU servers with the `a100` label through nodeselector, and use zookeeper as the external registry center
|
|
|
+helm install dolphinscheduler-gpu-worker . \
|
|
|
+ --set minio.enabled=false --set postgresql.enabled=false --set zookeeper.enabled=false \
|
|
|
+ --set master.enabled=false --set api.enabled=false --set alert.enabled=false \
|
|
|
+ --set worker.enabled=true --set image.tag=latest-gpu --set worker.nodeSelector.gpu="a100" \
|
|
|
+ --set externalRegistry.registryPluginName=zookeeper --set externalRegistry.registryServers=dolphinscheduler-zookeeper:2181
|
|
|
+```
|
|
|
+
|
|
|
+Please note that the above steps are for reference only, and specific operations need to be adjusted according to the actual situation.
|
|
|
+
|
|
|
## Appendix-Configuration
|
|
|
|
|
|
| Parameter | Description | Default |
|