Skip to content

Commit d615463

Browse files
author
Katie Horne
committed
chore: fix air-gap install command
1 parent 122c415 commit d615463

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

setup/air-gapped/infrastructure.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,17 @@ certs:
127127
key: "registry.crt"
128128
```
129129
130-
Then, add the flag `-f registry-cert-values.yml` to the end of the secret
131-
verification immediately above:
130+
Then, add the flag `-f registry-cert-values.yml` to the end of the `helm
131+
install` or `helm upgrade` command to include the new secrets file:
132132

133133
```console
134-
kubectl -n coder get secret local-registry-cert -o yaml -f registry-cert-values.yml
134+
helm install --wait --atomic --debug --namespace coder coder . \
135+
--set cemanager.image=$REGISTRY_DOMAIN_NAME/coderenvs/coder-service:<version> \
136+
--set envproxy.image=$REGISTRY_DOMAIN_NAME/coderenvs/coder-service:<version> \
137+
--set envbox.image=$REGISTRY_DOMAIN_NAME/coderenvs/envbox:<version> \
138+
--set timescale.image=$REGISTRY_DOMAIN_NAME/coderenvs/timescale:<version> \
139+
--set dashboard.image=$REGISTRY_DOMAIN_NAME/coderenvs/dashboard:<version> \
140+
-f registry-cert-values.yml
135141
```
136142

137143
### Resolving the registry using the cluster's DNS or hostAliases

0 commit comments

Comments
 (0)