From e1493b220a25f30c2c1a5f76dcad46817a1be639 Mon Sep 17 00:00:00 2001 From: Eric Paulsen Date: Mon, 15 Jan 2024 05:29:43 -0500 Subject: [PATCH] fix: guide naming (#11613) --- docs/guides/gcp-to-aws.md | 2 +- docs/guides/image-pull-secret.md | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/guides/gcp-to-aws.md b/docs/guides/gcp-to-aws.md index 35cfef89fe..950db68e77 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 661f104ebe..1d1451a5c3 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 +```