Skip to content

Commit a977b89

Browse files
committed
docs(helm): add image_registry docs
1 parent 75b5640 commit a977b89

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

src/installing-workflow/index.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
6695
Helm will install a variety of Kubernetes resources in the `drycc` namespace.
6796
Wait for the pods that Helm launched to be ready. Monitor their status by running:
6897

0 commit comments

Comments
 (0)