-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
38 lines (31 loc) · 827 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
.PHONY:
install \
clean
# Deploys the partner and test pods and the operator
install:
./scripts/fix-minikube-labels.sh
./scripts/deploy-partner-pods.sh
./scripts/deploy-test-pods.sh
./scripts/deploy-operator.sh
./scripts/deploy-test-crds.sh
./scripts/deploy-debug-ds.sh
# creates a minikube instance
rebuild-minikube:
./scripts/deploy-minikube.sh
# deploys the partner pods
install-partner-pods:
./scripts/deploy-partner-pods.sh
./scripts/deploy-debug-ds.sh
# Instal operator requires OLM and operator SDK
install-operator:
./scripts/deploy-operator.sh
# Install test CRDs
install-crds:
./scripts/deploy-test-crds.sh
# deletes the namespace completely
clean-all:
./scripts/clean-all.sh
# deletes, the partner and test pods and the operator
# pre-existing objects are preserved
clean:
./scripts/clean.sh