Newer
Older
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
## meepctl deploy
Deploy containers on the K8s cluster
### Synopsis
Deploy containers on the K8s cluster
AdvantEDGE is composed of a collection of micro-services (a.k.a the groups).
Deploy command starts a group of containers the in the K8s cluster.
Optional registry & tag parameters allows to specify a shared registry & tag for core images.
Default registry/tag are: local registry & latest
Valid groups:
* core: AdvantEDGE core containers
* dep: Dependency containers
* all: All containers
```
meepctl deploy <group> [registry] [tag] [flags]
```
### Examples
```
# Deploy all containers
meep deploy all
# Delete and re-deploy only AdvantEDGE core containers
meep deploy core --force
# Deploy AdvantEDGE version 1.0.0 from my.registry.com
meep deploy core my.registry.com 1.0.0
```
### Options
```
-f, --force Deployed components are deleted and deployed
-h, --help help for deploy
```
### Options inherited from parent commands
```
-t, --time Display timing information
-v, --verbose Display debug information
```
### SEE ALSO
* [meepctl](meepctl.md) - meepctl - CLI application to control the AdvantEDGE platform
###### Auto generated by spf13/cobra on 1-Apr-2019