File tree 1 file changed +22
-5
lines changed
1 file changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -117,15 +117,32 @@ platform images are hosted in Coder's Docker Hub repo.
117
117
docker push my-registry.com/coderenvs/coder-service:<version>
118
118
```
119
119
120
+ 1 . If necessary, create an ` offline.values.yaml ` file that includes the image
121
+ paths for each of the Coder containers and proxy configuration similar to the
122
+ following:
123
+
124
+ ``` yaml
125
+ coderd :
126
+ image : my-registry.com/coderenvs/coder-service:<version>
127
+ # Coder will use this proxy for all outbound HTTP/HTTPS connections
128
+ # such as when checking for updated images in the image registry.
129
+ # However, note that images are pulled from the Kubernetes container runtime,
130
+ # and may require a different setting.
131
+ proxy :
132
+ http : http://proxy.internal:8888
133
+ exempt : cluster.local
134
+ postgres :
135
+ default :
136
+ image : my-registry.com/coderenvs/timescale:<version>
137
+ envbox :
138
+ image : my-registry.com/coderenvs/envbox:<version>
139
+ ` ` `
140
+
120
141
1. Once all of the resources are in your air-gapped network, run the following
121
142
to deploy Coder to your Kubernetes cluster:
122
143
123
144
` ` ` console
124
- kubectl create namespace coder
125
- helm --namespace coder install coder /path/to/coder-X.Y.Z.tgz \
126
- --set postgres.default.image=my-registry.com/coderenvs/coder-service:<version> \
127
- --set timescale.image=my-registry.com/coderenvs/timescale:<version> \
128
- --set envbox.image=my-registry.com/coderenvs/envbox:<version>
145
+ helm install coder . --create-namespace --namespace coder --values=offline.values.yaml
129
146
```
130
147
131
148
If you'd like to run this command after navigating _ into_ the ` coder.tgz `
You can’t perform that action at this time.
0 commit comments