forked from openshift-metal3/dev-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (27 loc) · 777 Bytes
/
Makefile
File metadata and controls
41 lines (27 loc) · 777 Bytes
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
.PHONY: default all requirements configure ironic ocp_run register_hosts clean ocp_cleanup ironic_cleanup host_cleanup bell csr_hack
default: requirements configure build_installer ironic ocp_run register_hosts csr_hack bell
all: default
redeploy: ocp_cleanup ironic_cleanup build_installer ironic ocp_run register_hosts csr_hack bell
requirements:
./01_install_requirements.sh
configure:
./02_configure_host.sh
build_installer:
./03_build_installer.sh
ironic:
./04_setup_ironic.sh
ocp_run:
./06_create_cluster.sh
register_hosts:
./11_register_hosts.sh
csr_hack:
./12_csr_hack.sh
clean: ocp_cleanup ironic_cleanup host_cleanup
ocp_cleanup:
./ocp_cleanup.sh
ironic_cleanup:
./ironic_cleanup.sh
host_cleanup:
./host_cleanup.sh
bell:
@echo "Done!" $$'\a'