-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
48 lines (36 loc) · 1.05 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
shutdown:
vagrant halt
power-on:
vagrant up
all: vm pki kubeconfig encryption-config bootstrap-etcd bootstrap-control-plane bootstrap-nlb bootstrap-worker-node misc
vm:
vagrant destroy -f
vagrant up
pki:
make -C scripts/pki clean
make -C scripts/pki all
kubeconfig:
make -C scripts/kubeconfig clean
make -C scripts/kubeconfig all
encryption-config:
make -C scripts/encryption-config clean
make -C scripts/encryption-config all
bootstrap-etcd:
make -C scripts/bootstrap-etcd all
bootstrap-control-plane:
make -C scripts/bootstrap-control-plane all
bootstrap-nlb:
make -C scripts/bootstrap-nlb all
bootstrap-worker-node:
make -C scripts/bootstrap-worker-node all
misc:
make -C scripts/configure-kubectl all
make -C scripts/provision-pod-network all
make -C scripts/rbac-apiserver-to-kubelet all
make -C scripts/deploy-dns-addon all
make -C scripts/k8s-dashboard all
make -C scripts/setup-ingress-controller all
download-binaries:
make -C scripts/bootstrap-control-plane dl
make -C scripts/bootstrap-etcd dl
make -C scripts/bootstrap-worker-node dl