-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
45 lines (35 loc) · 891 Bytes
/
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
.PHONY: test install
install:
go get -t -v ./...
test: install
go test -race -cover ./...
.PHONY: eksctl-install
eksctl-install:
chmod +x ./eksctl/install.sh
./eksctl/install.sh
.PHONY: configure-credential
configure-credential:
chmod +x ./eks/aws-credentials.sh
./eks/aws-credentials.sh
.PHONY: create-cluster
create-cluster:
chmod +x ./eks/create.sh
./eks/create.sh
.PHONY: install-kubera
install-kubera:
chmod +x ./kubera/install/install_kubera_on_eks.sh
./kubera/install/install_kubera_on_eks.sh
.PHONY: d-operators
d-operators:
kubectl create -f ./ci/ci.yml
.PHONY: sanity-check
sanity-check:
chmod +x ./scenarios/sanity/suite.sh
./scenarios/sanity/suite.sh
.PHONY: kubera-cleanup
kubera-cleanup:
chmod +x ./kubera/uninstall/dop-cleanup.sh
./kubera/uninstall/dop-cleanup.sh
.PHONY: cluster-cleanup
cluster-cleanup:
eksctl delete cluster -f ./eks/cluster.yml