-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
64 lines (43 loc) · 2.02 KB
/
Makefile
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
SHELL := /bin/bash
export DOCKER_BUILDKIT=1
build-ipxe-binaries:
mkdir -p roles/dhcp/files/ipxe
docker build -t sys-ipxe -o roles/dhcp/files/ipxe ipxe/
cumulus-dev-prod:
ansible-playbook -i inventories/hosts cumulus_dev_prod.yaml --diff --check $(ARGS)
cumulus-dev-prod-execute:
ansible-playbook -i inventories/hosts cumulus_dev_prod.yaml --diff $(ARGS)
cumulus-exp:
ansible-playbook -i inventories/hosts cumulus_exp.yaml --diff --check $(ARGS)
cumulus-exp-execute:
ansible-playbook -i inventories/hosts cumulus_exp.yaml --diff $(ARGS)
dhcp-dev:
ansible-playbook -i inventories/hosts dhcp_dev.yaml --diff --check $(ARGS)
dhcp-dev-execute:
ansible-playbook -i inventories/hosts dhcp_dev.yaml --diff $(ARGS)
dhcp-exp:
ansible-playbook -i inventories/hosts dhcp_exp.yaml --diff --check $(ARGS)
dhcp-exp-execute:
ansible-playbook -i inventories/hosts dhcp_exp.yaml --diff $(ARGS)
dhcp-prod:
ansible-playbook -i inventories/hosts dhcp_prod.yaml --diff --check $(ARGS)
dhcp-prod-execute:
ansible-playbook -i inventories/hosts dhcp_prod.yaml --diff $(ARGS)
netapp-cluster:
ansible-playbook -i inventories/hosts netapp_prod.yaml --diff --check $(ARGS) --tags=cluster
netapp-cluster-execute:
ansible-playbook -i inventories/hosts netapp_prod.yaml --diff $(ARGS) --tags=cluster
netapp-dev:
ansible-playbook -i inventories/hosts netapp_dev.yaml --diff --check $(ARGS) --skip-tags=cluster
netapp-dev-execute:
ansible-playbook -i inventories/hosts netapp_dev.yaml --diff $(ARGS) --skip-tags=cluster
netapp-exp:
ansible-playbook -i inventories/hosts netapp_exp.yaml --diff --check $(ARGS) --skip-tags=matchbox,cluster
netapp-exp-execute:
ansible-playbook -i inventories/hosts netapp_exp.yaml --diff $(ARGS) --skip-tags=matchbox,cluster
netapp-prod:
ansible-playbook -i inventories/hosts netapp_prod.yaml --diff --check $(ARGS) --skip-tags=cluster
netapp-prod-execute:
ansible-playbook -i inventories/hosts netapp_prod.yaml --diff $(ARGS) --skip-tags=cluster
netapp-collections-install:
ansible-galaxy collection install --upgrade netapp.ontap