-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeploy.yaml
38 lines (31 loc) · 1.26 KB
/
deploy.yaml
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
- import_playbook: server-groups.yaml
- import_playbook: manifests.yaml
- import_playbook: security-groups.yaml
- import_playbook: pingdom-security-groups.yaml
when:
- (apiAllowedSources[0] is defined and apiAllowedSources[0] != "0.0.0.0/0") or
(ingressAllowedSources[0] is defined and ingressAllowedSources[0] != "0.0.0.0/0")
- pingdomAllowed | default(true) | bool
- import_playbook: network.yaml
- import_playbook: net2-security-groups.yaml
when: net2 | default(false) | bool
- import_playbook: net2-network.yaml
when: net2 | default(false) | bool
- import_playbook: net2-ingress.yaml
when: net2 | default(false) | bool
- import_playbook: eg-security-groups.yaml
when: extraGateway | default(false) | bool
- import_playbook: eg-network.yaml
when: extraGateway | default(false) | bool
- import_playbook: eg-ingress.yaml
when: extraGateway | default(false) | bool
- import_playbook: eg-net2-routes.yaml
when:
- net2 | default(false) | bool
- extraGateway | default(false) | bool
- import_playbook: bootstrap.yaml
- import_playbook: control-plane.yaml
- import_playbook: nodeport-loadbalance-network.yaml
when: nodePortLb | default(false) | bool
- import_playbook: nodeport-loadbalance-ingress.yaml
when: nodePortLb | default(false) | bool