forked from gambol99/go-marathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker.go
391 lines (329 loc) · 11.7 KB
/
docker.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
/*
Copyright 2014 The go-marathon Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package marathon
import (
"errors"
"fmt"
)
// Container is the definition for a container type in marathon
type Container struct {
Type string `json:"type,omitempty"`
Docker *Docker `json:"docker,omitempty"`
Volumes *[]Volume `json:"volumes,omitempty"`
}
// PortMapping is the portmapping structure between container and mesos
type PortMapping struct {
ContainerPort int `json:"containerPort,omitempty"`
HostPort int `json:"hostPort"`
Labels *map[string]string `json:"labels,omitempty"`
Name string `json:"name,omitempty"`
ServicePort int `json:"servicePort,omitempty"`
Protocol string `json:"protocol,omitempty"`
}
// Parameters is the parameters to pass to the docker client when creating the container
type Parameters struct {
Key string `json:"key,omitempty"`
Value string `json:"value,omitempty"`
}
// Volume is the docker volume details associated to the container
type Volume struct {
ContainerPath string `json:"containerPath,omitempty"`
HostPath string `json:"hostPath,omitempty"`
External *ExternalVolume `json:"external,omitempty"`
Mode string `json:"mode,omitempty"`
Persistent *PersistentVolume `json:"persistent,omitempty"`
}
type PersistentVolumeType string
const (
PersistentVolumeTypeRoot PersistentVolumeType = "root"
PersistentVolumeTypePath PersistentVolumeType = "path"
PersistentVolumeTypeMount PersistentVolumeType = "mount"
)
// PersistentVolume declares a Volume to be Persistent, and sets
// the size (in MiB) and optional type, max size (MiB) and constraints for the Volume.
type PersistentVolume struct {
Type PersistentVolumeType `json:"type,omitempty"`
Size int `json:"size"`
MaxSize int `json:"maxSize,omitempty"`
Constraints *[][]string `json:"constraints,omitempty"`
}
// SetType sets the type of mesos disk resource to use
// type: PersistentVolumeType enum
func (p *PersistentVolume) SetType(tp PersistentVolumeType) *PersistentVolume {
p.Type = tp
return p
}
// SetSize sets size of the persistent volume
// size: size in MiB
func (p *PersistentVolume) SetSize(size int) *PersistentVolume {
p.Size = size
return p
}
// SetMaxSize sets maximum size of an exclusive mount-disk resource to consider;
// does not apply to root or path disk resource types
// maxSize: size in MiB
func (p *PersistentVolume) SetMaxSize(maxSize int) *PersistentVolume {
p.MaxSize = maxSize
return p
}
// AddConstraint adds a new constraint
// constraints: the constraint definition, one constraint per array element
func (p *PersistentVolume) AddConstraint(constraints ...string) *PersistentVolume {
if p.Constraints == nil {
p.EmptyConstraints()
}
c := *p.Constraints
c = append(c, constraints)
p.Constraints = &c
return p
}
// EmptyConstraints explicitly empties constraints -- use this if you need to empty
// constraints of an application that already has constraints set (setting constraints to nil will
// keep the current value)
func (p *PersistentVolume) EmptyConstraints() *PersistentVolume {
p.Constraints = &[][]string{}
return p
}
// ExternalVolume is an external volume definition
type ExternalVolume struct {
Name string `json:"name,omitempty"`
Provider string `json:"provider,omitempty"`
Options *map[string]string `json:"options,omitempty"`
Size int `json:"size,omitempty"`
}
// Docker is the docker definition from a marathon application
type Docker struct {
ForcePullImage *bool `json:"forcePullImage,omitempty"`
Image string `json:"image,omitempty"`
Network string `json:"network,omitempty"`
Parameters *[]Parameters `json:"parameters,omitempty"`
PortMappings *[]PortMapping `json:"portMappings,omitempty"`
Privileged *bool `json:"privileged,omitempty"`
}
// SetUCRContainerType sets the container type to "MESOS" which denotes the
// Universal Container Runtime in DC/OS. This can be used in conjunction with the Docker struct
// to create a UCR based application, which uses a Docker image. In addition, it also sets
// the currently unsupported fields for UCR to null/false.
func (container *Container) SetContainerTypeUCR() *Container {
container.Type = "MESOS"
container.Docker.EmptyPortMappings()
container.Docker.EmptyParameters()
container.Docker.Network = ""
falseVariable := false
container.Docker.ForcePullImage = &falseVariable
container.Docker.Privileged = &falseVariable
return container
}
// Volume attachs a volume to the container
// host_path: the path on the docker host to map
// container_path: the path inside the container to map the host volume
// mode: the mode to map the container
func (container *Container) Volume(hostPath, containerPath, mode string) *Container {
if container.Volumes == nil {
container.EmptyVolumes()
}
volumes := *container.Volumes
volumes = append(volumes, Volume{
ContainerPath: containerPath,
HostPath: hostPath,
Mode: mode,
})
container.Volumes = &volumes
return container
}
// EmptyVolumes explicitly empties the volumes -- use this if you need to empty
// volumes of an application that already has volumes set (setting volumes to nil will
// keep the current value)
func (container *Container) EmptyVolumes() *Container {
container.Volumes = &[]Volume{}
return container
}
// SetPersistentVolume defines persistent properties for volume
func (v *Volume) SetPersistentVolume() *PersistentVolume {
ev := &PersistentVolume{}
v.Persistent = ev
return ev
}
// EmptyPersistentVolume empties the persistent volume definition
func (v *Volume) EmptyPersistentVolume() *Volume {
v.Persistent = &PersistentVolume{}
return v
}
// SetExternalVolume define external elements for a volume
// name: the name of the volume
// provider: the provider of the volume (e.g. dvdi)
func (v *Volume) SetExternalVolume(name, provider string) *ExternalVolume {
ev := &ExternalVolume{
Name: name,
Provider: provider,
}
v.External = ev
return ev
}
// EmptyExternalVolume emptys the external volume definition
func (v *Volume) EmptyExternalVolume() *Volume {
v.External = &ExternalVolume{}
return v
}
// AddOption adds an option to an ExternalVolume
// name: the name of the option
// value: value for the option
func (ev *ExternalVolume) AddOption(name, value string) *ExternalVolume {
if ev.Options == nil {
ev.EmptyOptions()
}
(*ev.Options)[name] = value
return ev
}
// EmptyOptions explicitly empties the options
func (ev *ExternalVolume) EmptyOptions() *ExternalVolume {
ev.Options = &map[string]string{}
return ev
}
// SetSize adds a size to an ExternalVolume
// size: The size to set in Gigabytes
func (ev *ExternalVolume) SetSize(size int) *ExternalVolume {
ev.Size = size
return ev
}
// NewDockerContainer creates a default docker container for you
func NewDockerContainer() *Container {
container := &Container{}
container.Type = "DOCKER"
container.Docker = &Docker{}
return container
}
// SetForcePullImage sets whether the docker image should always be force pulled before
// starting an instance
// forcePull: true / false
func (docker *Docker) SetForcePullImage(forcePull bool) *Docker {
docker.ForcePullImage = &forcePull
return docker
}
// SetPrivileged sets whether the docker image should be started
// with privilege turned on
// priv: true / false
func (docker *Docker) SetPrivileged(priv bool) *Docker {
docker.Privileged = &priv
return docker
}
// Container sets the image of the container
// image: the image name you are using
func (docker *Docker) Container(image string) *Docker {
docker.Image = image
return docker
}
// Bridged sets the networking mode to bridged
func (docker *Docker) Bridged() *Docker {
docker.Network = "BRIDGE"
return docker
}
// Host sets the networking mode to host
func (docker *Docker) Host() *Docker {
docker.Network = "HOST"
return docker
}
// Expose sets the container to expose the following TCP ports
// ports: the TCP ports the container is exposing
func (docker *Docker) Expose(ports ...int) *Docker {
for _, port := range ports {
docker.ExposePort(PortMapping{
ContainerPort: port,
HostPort: 0,
ServicePort: 0,
Protocol: "tcp"})
}
return docker
}
// ExposeUDP sets the container to expose the following UDP ports
// ports: the UDP ports the container is exposing
func (docker *Docker) ExposeUDP(ports ...int) *Docker {
for _, port := range ports {
docker.ExposePort(PortMapping{
ContainerPort: port,
HostPort: 0,
ServicePort: 0,
Protocol: "udp"})
}
return docker
}
// ExposePort exposes an port in the container
func (docker *Docker) ExposePort(portMapping PortMapping) *Docker {
if docker.PortMappings == nil {
docker.EmptyPortMappings()
}
portMappings := *docker.PortMappings
portMappings = append(portMappings, portMapping)
docker.PortMappings = &portMappings
return docker
}
// EmptyPortMappings explicitly empties the port mappings -- use this if you need to empty
// port mappings of an application that already has port mappings set (setting port mappings to nil will
// keep the current value)
func (docker *Docker) EmptyPortMappings() *Docker {
docker.PortMappings = &[]PortMapping{}
return docker
}
// AddLabel adds a label to a PortMapping
// name: the name of the label
// value: value for this label
func (p *PortMapping) AddLabel(name, value string) *PortMapping {
if p.Labels == nil {
p.EmptyLabels()
}
(*p.Labels)[name] = value
return p
}
// EmptyLabels explicitly empties the labels -- use this if you need to empty
// the labels of a port mapping that already has labels set (setting labels to
// nil will keep the current value)
func (p *PortMapping) EmptyLabels() *PortMapping {
p.Labels = &map[string]string{}
return p
}
// AddParameter adds a parameter to the docker execution line when creating the container
// key: the name of the option to add
// value: the value of the option
func (docker *Docker) AddParameter(key string, value string) *Docker {
if docker.Parameters == nil {
docker.EmptyParameters()
}
parameters := *docker.Parameters
parameters = append(parameters, Parameters{
Key: key,
Value: value})
docker.Parameters = ¶meters
return docker
}
// EmptyParameters explicitly empties the parameters -- use this if you need to empty
// parameters of an application that already has parameters set (setting parameters to nil will
// keep the current value)
func (docker *Docker) EmptyParameters() *Docker {
docker.Parameters = &[]Parameters{}
return docker
}
// ServicePortIndex finds the service port index of the exposed port
// port: the port you are looking for
func (docker *Docker) ServicePortIndex(port int) (int, error) {
if docker.PortMappings == nil || len(*docker.PortMappings) == 0 {
return 0, errors.New("The docker does not contain any port mappings to search")
}
// step: iterate and find the port
for index, containerPort := range *docker.PortMappings {
if containerPort.ContainerPort == port {
return index, nil
}
}
// step: we didn't find the port in the mappings
return 0, fmt.Errorf("The container port required was not found in the container port mappings")
}