If you need increased security for your Coder deployments, you can set up an air-gapped deployment.
To do so, you must:
- Pull all Coder deployment resources into your air-gapped workspace
- Push the images to your Docker registry,
- Deploy Coder from within your air-gapped workspace
Coder licenses issued as part of the trial program do not support air-gapped deployments.
Dependencies
Before proceeding, please ensure that you've installed the following software dependencies:
Next, configure the following items in the same network as the Kubernetes cluster that will run Coder (we've provided links to a suggested option for each item type, but you're welcome to use the alternatives of your choice):
- Docker Registry
- A DNS server (or you can use HostAliases)
- A certificate authority or self-signed certificates
Network configuration
Coder requires several preliminary steps to be performed on your network before you can deploy Coder. If you don't already have the following on your network, please see our infrastructure setup guide:
- A certificate authority
- A domain name service
- A local Docker Registry
Version controlling your changes to the Coder install files
Throughout this article, we will suggest changes to the Helm chart that you'll
obtain from the .tgz
that's returned when you run helm pull
. We recommend
version controlling your files.
Step 1: Pull all Coder resources into your air-gapped workspace
Coder is deployed through helm, and the platform images are hosted in Coder's Docker Hub repo.
-
Pull down the Coder helm charts by running the following in a non-air-gapped workspace:
helm repo add coder https://helm.coder.com helm pull coder/coder
These commands will add Coder's helm charts and pull the latest stable release into a tarball file whose name uses the following format:
coder-X.Y.Z.tgz
(X.Y.Z is the Coder release number). -
Pull the images for the Coder platform from the following Docker Hub locations:
Timescale is an internal database meant for evaluation deployments. It is not It is not recommended to run this service in production. Connect to an external Postgres database for production deployments.
timescale (Note: We recommend you only use timescale for evaluation purposes if you don't have an external PostgreSQL database available. For production workspaces, we strong recommend that you use an external PostgreSQL database; the installation section will cover more on updating your Helm chart with your database information.)
You can pull each of these images from their
coderenvs/<img-name>:<version>
registry location using the image's name and Coder version:docker pull coderenvs/coder-service:<version>
To access Coder, you'll need an ingress controller; you can use nginx-ingress-controller, or you can use your own.
The following images are optional, though you're welcome to take advantage of Coder's versions instead of building your own:
When building images for your workspaces that rely on a custom certificate authority, be sure to follow the docs for adding certificates to images.
-
Tag and push all of the images that you've downloaded in the previous step to your internal registry; this registry must be accessible from your air-gapped workspace. For example, to push
coder-service
:docker tag coderenvs/coder-service:<version> my-registry.com/coderenvs/coder-service:<version> docker push my-registry.com/coderenvs/coder-service:<version>
-
Modify the image used for the ingress controller. In
coder-X.Y.Z.tgz
, which you obtained by runninghelm pull
, find thetemplates/ingress.yaml
file. You'll see that this file has only one instance ofimage:
. Replace this line:quay.io/kubernetes-ingress-controller/nginx-ingress-controller:<version>
with the image for your local ingress controller image:
<your_registry>/nginx-ingress-controller:<version>
-
Once all of the resources are in your air-gapped network, run the following to deploy Coder to your Kubernetes cluster:
kubectl create namespace coder helm --namespace coder install coder /path/to/coder-X.Y.Z.tgz \ --set cemanager.image=my-registry.com/coderenvs/coder-service:<version> \ --set envproxy.image=my-registry.com/coderenvs/coder-service:<version> \ --set timescale.image=my-registry.com/coderenvs/timescale:<version> \ --set dashboard.image=my-registry.com/coderenvs/dashboard:<version> \ --set envbox.image=my-registry.com/coderenvs/envbox:<version>
If you'd like to run this command after navigating into the
coder.tgz
directory, you can replace thecoder.tgz
path with a period:helm install --wait --atomic --debug --namespace coder coder . \ --set cemanager.image=$REGISTRY_DOMAIN_NAME/coderenvs/coder-service:<version> \ --set envproxy.image=$REGISTRY_DOMAIN_NAME/coderenvs/coder-service:<version> \ --set envbox.image=$REGISTRY_DOMAIN_NAME/coderenvs/envbox:<version> \ --set timescale.image=$REGISTRY_DOMAIN_NAME/coderenvs/timescale:<version> \ --set dashboard.image=$REGISTRY_DOMAIN_NAME/coderenvs/dashboard:<version> \ -f registry-cert-values.yml
-
Next, follow the Installation guide beginning with step 6 to get the access URL and the temporary admin password, which allows you to proceed with setting up and configuring Coder.
Extensions marketplace
Coder users in an air-gapped workspace cannot access the public VS Code marketplace. However, you can point Coder to an air-gapped instance of OpenVSX to serve assets to users. For instructions on implementing this, see Extensions.
You can also review the OpenVSX deployment wiki for more information.