Skip to content

Commit e1493b2

Browse files
authored
fix: guide naming (#11613)
1 parent 8b10d21 commit e1493b2

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

docs/guides/gcp-to-aws.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div>
44
<a href="https://github.com/ericpaulsen" style="text-decoration: none; color: inherit;">
5-
<span style="vertical-align:middle;">Your Name</span>
5+
<span style="vertical-align:middle;">Eric Paulsen</span>
66
<img src="https://github.com/ericpaulsen.png" width="24px" height="24px" style="vertical-align:middle; margin: 0px;"/>
77
</a>
88
</div>

docs/guides/image-pull-secret.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div>
44
<a href="https://github.com/ericpaulsen" style="text-decoration: none; color: inherit;">
5-
<span style="vertical-align:middle;">Your Name</span>
5+
<span style="vertical-align:middle;">Eric Paulsen</span>
66
<img src="https://github.com/ericpaulsen.png" width="24px" height="24px" style="vertical-align:middle; margin: 0px;"/>
77
</a>
88
</div>
@@ -66,6 +66,11 @@ The output should look similar to this:
6666

6767
## 3. Define ImagePullSecret in Terraform template
6868

69+
With the ImagePullSecret now created, we can add the secret into the workspace
70+
template. In the example below, we define the secret via the
71+
`image_pull_secrets` argument. Note that this argument is nested at the same
72+
level as the `container` argument:
73+
6974
```hcl
7075
resource "kubernetes_pod" "dev" {
7176
metadata {
@@ -84,3 +89,12 @@ resource "kubernetes_pod" "dev" {
8489
}
8590
}
8691
```
92+
93+
## 4. Push New Template Version
94+
95+
Update your template by running the following commands:
96+
97+
```console
98+
coder login <access-url>
99+
coder templates push <template-name>
100+
```

0 commit comments

Comments
 (0)