File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ func templatePlan() *cobra.Command {
8
8
return & cobra.Command {
9
9
Use : "plan <directory>" ,
10
10
Args : cobra .MinimumNArgs (1 ),
11
- Short : "Plan a template update from the current directory" ,
11
+ Short : "Plan a template push from the current directory" ,
12
12
RunE : func (cmd * cobra.Command , args []string ) error {
13
13
return nil
14
14
},
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ You can edit the Terraform template as follows:
62
62
coder templates init
63
63
cd gcp-linux # modify this line as needed to access the template
64
64
vim main.tf
65
- coder templates update gcp-linux # updates the template
65
+ coder templates push gcp-linux # updates the template
66
66
```
67
67
68
68
## Up Next
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ practices:
297
297
298
298
We recommend source controlling your templates as you would other code.
299
299
300
- CI is as simple as running ` coder templates update ` with the appropriate
300
+ CI is as simple as running ` coder templates push ` with the appropriate
301
301
credentials.
302
302
303
303
---
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ resource "docker_image" "coder_image" {
88
88
Update the template:
89
89
90
90
``` sh
91
- coder template update docker-image-builds
91
+ coder template push docker-image-builds
92
92
```
93
93
94
94
You can also remove images from the validation list. Workspaces using older template versions will continue using
@@ -136,7 +136,7 @@ resource "docker_image" "coder_image" {
136
136
Update the template:
137
137
138
138
``` sh
139
- coder template update docker-image-builds
139
+ coder template push docker-image-builds
140
140
```
141
141
142
142
Optional: Update workspaces to the latest template version
Original file line number Diff line number Diff line change 1
1
---
2
2
name : Develop in Docker
3
- description : Run workspaces on a Docker host using registry images
3
+ description : Run workspaces on a Docker host using registry images
4
4
tags : [local, docker]
5
5
---
6
6
@@ -37,7 +37,7 @@ variable "docker_image" {
37
37
Update the template:
38
38
39
39
``` sh
40
- coder template update docker
40
+ coder template push docker
41
41
```
42
42
43
43
You can also remove images from the validation list. Workspaces using older template versions will continue using
You can’t perform that action at this time.
0 commit comments