-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathContainerResourceBuilder.cs
More file actions
397 lines (360 loc) · 12.5 KB
/
Copy pathContainerResourceBuilder.cs
File metadata and controls
397 lines (360 loc) · 12.5 KB
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
392
393
394
395
396
397
using System;
using System.Collections.Generic;
using System.Diagnostics;
namespace Squadron;
/// <summary>
/// Builder for container settings
/// </summary>
public class ContainerResourceBuilder
{
protected readonly ContainerResourceSettings _options = new ContainerResourceSettings();
private readonly List<string> _cmd = new List<string>();
private SourceLevels _logLevel = SourceLevels.Information;
/// <summary>
/// Craeates an new empty builder
/// </summary>
/// <returns></returns>
public static ContainerResourceBuilder New() => new ContainerResourceBuilder();
public ContainerResourceBuilder AddKeyValue(string key, object value)
{
_options.KeyValueStore.Add(key, value);
return this;
}
/// <summary>
/// Container name
/// </summary>
/// <param name="name">The name.</param>
/// <returns></returns>
public ContainerResourceBuilder Name(string name)
{
_options.Name = name;
_options.UniqueContainerName = UniqueNameGenerator.CreateContainerName(name);
return this;
}
/// <summary>
/// Container image
/// </summary>
/// <param name="image">The image.</param>
/// <returns></returns>
public ContainerResourceBuilder Image(string image)
{
var parts = image.Split(':');
if (parts.Length > 1)
{
_options.Image = parts[0];
_options.Tag = parts[1];
}
else
_options.Image = image;
return this;
}
/// <summary>
/// Adds an environment variable.
/// </summary>
/// <param name="variable">The variable.</param>
/// <returns></returns>
public ContainerResourceBuilder AddEnvironmentVariable(string variable)
{
_options.EnvironmentVariables.Add(variable);
return this;
}
public ContainerResourceBuilder AddVolume(string mapping)
{
_options.Volumes.Add(mapping);
return this;
}
/// <summary>
/// Container image tag
/// </summary>
/// <param name="tag">The tag.</param>
/// <returns></returns>
public ContainerResourceBuilder Tag(string tag)
{
_options.Tag = tag;
return this;
}
public ContainerResourceBuilder AddCmd(params string[] cmd)
{
_cmd.AddRange(cmd);
return this;
}
/// <summary>
/// Username
/// </summary>
/// <param name="username">The username.</param>
/// <returns></returns>
public ContainerResourceBuilder Username(string username)
{
_options.Username = username;
return this;
}
/// <summary>
/// Passwords
/// </summary>
/// <param name="password">The password.</param>
/// <returns></returns>
public ContainerResourceBuilder Password(string password)
{
_options.Password = password;
return this;
}
/// <summary>
/// Sets the allowed host IP address to use the external port.
/// Per default all IPs are allowed (0.0.0.0).
/// Example usage: if only localhost shall be allowed, then use 127.0.0.1
/// </summary>
/// <param name="hostIp">The allowed host IP for which the external port is exposed.</param>
public ContainerResourceBuilder HostIp(string? hostIp)
{
_options.HostIp = hostIp;
return this;
}
/// <summary>
/// Sets the main internal port of this container to the given value.
///
/// If you want to expose multiple ports, you can use the <see cref="AddPortMapping"/>
/// method, to register additional port mappings.
/// </summary>
/// <param name="port">The internal port of a container that shall be exposed. </param>
public ContainerResourceBuilder InternalPort(int port)
{
_options.InternalPort = port;
return this;
}
/// <summary>
/// Sets the main external port of this container to the given value.
/// Use this setting only if a static external port is required.
/// If the given port is already in use by a container, the creation will fail.
///
/// If you want to expose multiple ports, you can use the <see cref="AddPortMapping"/>
/// method, to register additional port mappings
/// </summary>
/// <param name="port">
/// The main external static port, to which the main internal port
/// of the container will be mapped.
/// </param>
public ContainerResourceBuilder ExternalPort(int port)
{
_options.ExternalPort = port;
return this;
}
/// <summary>
/// If you only want to expose one port, please use <see cref="InternalPort"/> and
/// <see cref="ExternalPort"/> to so do!
/// Exposes additional port mappings for this container.
/// </summary>
/// <param name="internalPort">
/// The internal port of a container that shall be exposed.
/// </param>
/// <param name="externalPort">
/// The external static port of a container that the internal port will be mapped to.
/// Defaults to 0, which will let the OS choose a free port for you.
///
/// Only provide an external port if a static external port is required.
/// When the given external port is already in use by a container, the creation will fail.
/// </param>
/// <param name="hostIp">
/// Allowed host IP. Default all IPs are allowed
/// </param>
/// <returns></returns>
public ContainerResourceBuilder AddPortMapping(
int internalPort,
int externalPort = 0,
string? hostIp = null)
{
_options.AdditionalPortMappings.Add(
new ContainerPortMapping()
{
ExternalPort = externalPort,
InternalPort = internalPort,
HostIp = hostIp
});
return this;
}
/// <summary>
/// If you only want to expose one port, please use <see cref="InternalPort"/> and
/// <see cref="ExternalPort"/> to so do!
/// Exposes additional port mappings for this container.
/// </summary>
/// <param name="internalPort">
/// The internal port of a container that shall be exposed.
/// </param>
/// <param name="externalPortVariableName">
/// The external port number will be resolved before the container creation and stored in
/// variable.
/// Only provide an external port if a static external port is required.
/// When the given external port is already in use by a container, the creation will fail.
/// </param>
/// <param name="hostIp">
/// Allowed host IP. Default all IPs are allowed
/// </param>
/// <returns></returns>
public ContainerResourceBuilder AddPortMapping(
int internalPort,
string externalPortVariableName,
string? hostIp = null)
{
_options.AdditionalPortMappings.Add(
new ContainerPortMapping()
{
InternalPort = internalPort,
ExternalPortVariableName = externalPortVariableName,
HostIp = hostIp
});
return this;
}
/// <summary>
/// If you only want to expose one port, please use <see cref="InternalPort"/> and
/// <see cref="ExternalPort"/> to so do!
/// Exposes additional port mappings for this container.
/// </summary>
/// <param name="internalPortVariableName">
/// The internal port number will be resolved before the container creation and stored
/// in variable.
/// </param>
/// <param name="externalPort">
/// The external static port of a container that the internal port will be mapped to.
/// Defaults to 0, which will let the OS choose a free port for you.
///
/// Only provide an external port if a static external port is required.
/// When the given external port is already in use by a container, the creation will fail.
/// </param>
/// <param name="hostIp">
/// Allowed host IP. Default all IPs are allowed
/// </param>
/// <returns></returns>
public ContainerResourceBuilder AddPortMapping(
string internalPortVariableName,
int externalPort = 0,
string? hostIp = null)
{
_options.AdditionalPortMappings.Add(
new ContainerPortMapping()
{
InternalPortVariableName = internalPortVariableName,
ExternalPort = externalPort,
HostIp = hostIp
});
return this;
}
/// <summary>
/// If you only want to expose one port, please use <see cref="InternalPort"/> and
/// <see cref="ExternalPort"/> to so do!
/// Exposes additional port mappings for this container.
/// </summary>
/// <param name="internalPortVariableName">
/// The internal port number will be resolved before the container creation and stored
/// in variable.
/// </param>
/// <param name="externalPortVariableName">
/// The external port number will be resolved before the container creation and stored in
/// variable.
/// Only provide an external port if a static external port is required.
/// When the given external port is already in use by a container, the creation will fail.
/// </param>
/// <param name="hostIp">
/// Allowed host IP. Default all IPs are allowed
/// </param>
/// <returns></returns>
public ContainerResourceBuilder AddPortMapping(
string internalPortVariableName,
string externalPortVariableName,
string? hostIp = null)
{
_options.AdditionalPortMappings.Add(
new ContainerPortMapping()
{
InternalPortVariableName = internalPortVariableName,
ExternalPortVariableName = externalPortVariableName,
HostIp = hostIp
});
return this;
}
/// <summary>
/// Variables that will be resolved before container is created. They can be then
/// used in port AdditionalPortMappings and EnvironmentVariables (referenced between
/// '{}' brackets eg. {RUNTIME_VARIABLE_1}.)
/// </summary>
/// <param name="name"></param>
/// <param name="type"></param>
/// <returns></returns>
public ContainerResourceBuilder AddVariable(string name, VariableType type)
{
_options.Variables.Add(new Variable(name, type));
return this;
}
/// <summary>
/// Wait timeout in seconds
/// </summary>
/// <param name="seconds">The seconds.</param>
/// <returns></returns>
public ContainerResourceBuilder WaitTimeout(int seconds)
{
_options.WaitTimeout = TimeSpan.FromSeconds(seconds);
return this;
}
/// <summary>
/// Adds a network of which the container should be part of.
/// </summary>
/// <param name="network">The network name.</param>
/// <returns></returns>
public ContainerResourceBuilder AddNetwork(
string network)
{
_options.Networks.Add(network);
return this;
}
/// <summary>
/// Sets the setting, wheter squadron should pull the image or look for a local image first.
/// If not set, squadron will always pull the image
/// </summary>
/// <returns></returns>
public ContainerResourceBuilder PreferLocalImage()
{
_options.PreferLocalImage = true;
return this;
}
/// <summary>
/// Copies a file from the host to the container
/// </summary>
/// <param name="pathToLocalFile">Path to the file on the host</param>
/// <param name="destinationOnContainer">Destination of the file in the container</param>
/// <returns></returns>
public ContainerResourceBuilder CopyFileToContainer(string pathToLocalFile, string destinationOnContainer)
{
_options.FilesToCopy.Add(new CopyContext(pathToLocalFile, destinationOnContainer));
return this;
}
/// <summary>
/// Sets the memory in Bytes
/// </summary>
/// <returns></returns>
public ContainerResourceBuilder Memory(long memory)
{
_options.Memory = memory;
return this;
}
/// <summary>
/// Sets Squadron logging level
/// </summary>
public ContainerResourceBuilder WithLogLevel(SourceLevels level)
{
_logLevel = level;
return this;
}
/// <summary>
/// Builds the settings
/// </summary>
/// <returns></returns>
public virtual ContainerResourceSettings Build()
{
var logLevel = Environment.GetEnvironmentVariable("SQUADRON_LOG_LEVEL");
if (Enum.TryParse(logLevel, true, out SourceLevels overriddenLogLevel))
{
_logLevel = overriddenLogLevel;
}
_options.Logger = new Logger(_logLevel, _options);
_options.Cmd = _cmd;
return _options;
}
}