@@ -8,9 +8,9 @@ air-gapped deployment.
8
8
9
9
To do so, you must:
10
10
11
- - Pull all Coder deployment resources into your air-gapped workspace
11
+ - Pull all Coder deployment resources into your air-gapped environment
12
12
- Push the images to your Docker registry,
13
- - Deploy Coder from within your air-gapped workspace
13
+ - Deploy Coder from within your air-gapped environment
14
14
15
15
> Coder licenses issued as part of the trial program do not support air-gapped
16
16
> deployments.
@@ -50,13 +50,13 @@ Throughout this article, we will suggest changes to the Helm chart that you'll
50
50
obtain from the ` .tgz ` that's returned when you run ` helm pull ` . We recommend
51
51
version controlling your files.
52
52
53
- ## Step 1: Pull all Coder resources into your air-gapped workspace
53
+ ## Step 1: Pull all Coder resources into your air-gapped environment
54
54
55
55
Coder is deployed through [ helm] ( https://helm.sh/docs/intro/install/ ) , and the
56
56
platform images are hosted in Coder's Docker Hub repo.
57
57
58
- 1 . Pull down the Coder helm charts by running the following in a non-air-gapped
59
- workspace :
58
+ 1 . Download the Coder Helm charts by running the following command _ outside _ of
59
+ the air-gapped environment :
60
60
61
61
``` console
62
62
helm repo add coder https://helm.coder.com
@@ -80,10 +80,10 @@ platform images are hosted in Coder's Docker Hub repo.
80
80
81
81
[ timescale] ( https://hub.docker.com/r/coderenvs/timescale ) (** Note** : We
82
82
recommend you only use timescale for evaluation purposes if you don't have an
83
- external PostgreSQL database available. For production workspaces , we strong
84
- recommend that you use an external PostgreSQL database; the installation
85
- section will cover more on updating your Helm chart with your database
86
- information.)
83
+ external PostgreSQL database available. For production environments , we
84
+ strongly recommend that you use an external PostgreSQL database; the
85
+ installation section will cover more on updating your Helm values with your
86
+ database information.)
87
87
88
88
You can pull each of these images from their ` coderenvs/<img-name>:<version> `
89
89
registry location using the image's name and Coder version:
@@ -103,14 +103,14 @@ platform images are hosted in Coder's Docker Hub repo.
103
103
104
104
[ ubuntu] ( https://hub.docker.com/_/ubuntu )
105
105
106
- When building images for your workspaces that rely on a custom certificate
106
+ When building images for your environments that rely on a custom certificate
107
107
authority, be sure to follow the
108
108
[ docs for adding certificates] ( ../../images/tls-certificates#adding-certificates-for-coder )
109
109
to images.
110
110
111
111
1 . Tag and push all of the images that you've downloaded in the previous step to
112
112
your internal registry; this registry must be accessible from your air-gapped
113
- workspace . For example, to push ` coder-service ` :
113
+ environment . For example, to push ` coder-service ` :
114
114
115
115
``` console
116
116
docker tag coderenvs/coder-service:<version> my-registry.com/coderenvs/coder-service:<version>
@@ -162,7 +162,7 @@ platform images are hosted in Coder's Docker Hub repo.
162
162
163
163
## Extensions marketplace
164
164
165
- Coder users in an air-gapped workspace cannot access the public VS Code
165
+ Coder users in an air-gapped environment cannot access the public VS Code
166
166
marketplace. However, you can point Coder to an air-gapped instance of
167
167
[ OpenVSX] ( https://github.com/eclipse/openvsx ) to serve assets to users. For
168
168
instructions on implementing this, see
0 commit comments