-
Notifications
You must be signed in to change notification settings - Fork 1
/
stack.go
205 lines (162 loc) · 4.44 KB
/
stack.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// Code generated by lesiw.io/ctrctl. DO NOT EDIT.
package ctrctl
import (
"fmt"
"os/exec"
)
type StackConfigOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Path to a Compose file, or `-` to read from stdin.
ComposeFile string
// Print usage.
Help bool
// Orchestrator to use (swarm|all).
Orchestrator string
// Skip interpolation and output only merged config.
SkipInterpolation bool
}
// Outputs the final config file, after doing merges and interpolations.
func StackConfig(opts *StackConfigOpts) (string, error) {
return runCtrCmd(
[]string{"stack", "config"},
[]string{},
opts,
0,
)
}
type StackDeployOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Path to a Compose file, or `-` to read from stdin.
ComposeFile string
// Exit immediately instead of waiting for the stack services to converge.
Detach bool
// Print usage.
Help bool
// Orchestrator to use (swarm|all).
Orchestrator string
// Prune services that are no longer referenced.
Prune bool
// Suppress progress output.
Quiet bool
// Query the registry to resolve image digest and supported platforms (`always`, `changed`, `never`).
ResolveImage string
// Send registry authentication details to Swarm agents.
WithRegistryAuth bool
}
// Deploy a new stack or update an existing stack.
func StackDeploy(opts *StackDeployOpts, stack string) (string, error) {
return runCtrCmd(
[]string{"stack", "deploy"},
[]string{stack},
opts,
0,
)
}
type StackLsOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Format output using a custom template:
// 'table': Print output in table format with column headers (default).
// 'table TEMPLATE': Print output in table format using the given Go template.
// 'json': Print in JSON format.
// 'TEMPLATE': Print output using the given Go template.
// Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates.
Format string
// Print usage.
Help bool
// Orchestrator to use (swarm|all).
Orchestrator string
}
// List stacks.
func StackLs(opts *StackLsOpts) (string, error) {
return runCtrCmd(
[]string{"stack", "ls"},
[]string{},
opts,
0,
)
}
type StackPsOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Filter output based on conditions provided.
Filter string
// Format output using a custom template:
// 'table': Print output in table format with column headers (default).
// 'table TEMPLATE': Print output in table format using the given Go template.
// 'json': Print in JSON format.
// 'TEMPLATE': Print output using the given Go template.
// Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates.
Format string
// Print usage.
Help bool
// Do not map IDs to Names.
NoResolve bool
// Do not truncate output.
NoTrunc bool
// Orchestrator to use (swarm|all).
Orchestrator string
// Only display task IDs.
Quiet bool
}
// List the tasks in the stack.
func StackPs(opts *StackPsOpts, stack string) (string, error) {
return runCtrCmd(
[]string{"stack", "ps"},
[]string{stack},
opts,
0,
)
}
type StackRmOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Do not wait for stack removal.
Detach bool
// Print usage.
Help bool
// Orchestrator to use (swarm|all).
Orchestrator string
}
// Remove one or more stacks.
func StackRm(opts *StackRmOpts, stack ...string) (string, error) {
if len(stack) == 0 {
return "", fmt.Errorf("stack must have at least one value")
}
return runCtrCmd(
[]string{"stack", "rm"},
stack,
opts,
0,
)
}
type StackServicesOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Filter output based on conditions provided.
Filter string
// Format output using a custom template:
// 'table': Print output in table format with column headers (default).
// 'table TEMPLATE': Print output in table format using the given Go template.
// 'json': Print in JSON format.
// 'TEMPLATE': Print output using the given Go template.
// Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates.
Format string
// Print usage.
Help bool
// Orchestrator to use (swarm|all).
Orchestrator string
// Only display IDs.
Quiet bool
}
// List the services in the stack.
func StackServices(opts *StackServicesOpts, stack string) (string, error) {
return runCtrCmd(
[]string{"stack", "services"},
[]string{stack},
opts,
0,
)
}