diff --git a/docs/guides/gcp-to-aws.md b/docs/guides/gcp-to-aws.md index 35cfef89fe911..950db68e77292 100644 --- a/docs/guides/gcp-to-aws.md +++ b/docs/guides/gcp-to-aws.md @@ -2,7 +2,7 @@
- Your Name + Eric Paulsen
diff --git a/docs/guides/image-pull-secret.md b/docs/guides/image-pull-secret.md index 661f104ebea9e..1d1451a5c30f7 100644 --- a/docs/guides/image-pull-secret.md +++ b/docs/guides/image-pull-secret.md @@ -2,7 +2,7 @@
- Your Name + Eric Paulsen
@@ -66,6 +66,11 @@ The output should look similar to this: ## 3. Define ImagePullSecret in Terraform template +With the ImagePullSecret now created, we can add the secret into the workspace +template. In the example below, we define the secret via the +`image_pull_secrets` argument. Note that this argument is nested at the same +level as the `container` argument: + ```hcl resource "kubernetes_pod" "dev" { metadata { @@ -84,3 +89,12 @@ resource "kubernetes_pod" "dev" { } } ``` + +## 4. Push New Template Version + +Update your template by running the following commands: + +```console +coder login +coder templates push +```