@@ -63,6 +63,35 @@ $ helm install --namespace drycc \
6363 drycc/workflow
6464```
6565
66+ By default, registry uses docker hub, at present, we support three registries. They are:
67+
68+ * redhat quay ` quay.io `
69+ * docker hub ` docker.io `
70+ * aliyun cr ` registry.cn-hangzhou.aliyuncs.com `
71+
72+ If you want to change it, set the variable when using helm.
73+
74+ ```
75+ $ helm install --namespace drycc \
76+ --set builder.image_registry=quay.io/ \
77+ --set slugbuilder.image_registry=quay.io/ \
78+ --set imagebuilder.image_registry=quay.io/ \
79+ --set controller.image_registry=quay.io/ \
80+ --set slugrunner.image_registry=quay.io/ \
81+ --set database.image_registry=quay.io/ \
82+ --set fluentd.image_registry=quay.io/ \
83+ --set redis.image_registry=quay.io/ \
84+ --set influxdb.image_registry=quay.io/ \
85+ --set logger.image_registry=quay.io/ \
86+ --set minio.image_registry=quay.io/ \
87+ --set monitor.image_registry=quay.io/ \
88+ --set nsqd.image_registry=quay.io/ \
89+ --set registry.image_registry=quay.io/ \
90+ --set registry-proxy.image_registry=quay.io/ \
91+ --set global.platform_domain=drycc.cc \
92+ drycc/workflow
93+ ```
94+
6695Helm will install a variety of Kubernetes resources in the ` drycc ` namespace.
6796Wait for the pods that Helm launched to be ready. Monitor their status by running:
6897
0 commit comments