-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
108 lines (80 loc) · 3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Image URL to use all building/pushing image targets
IMG ?= owend/es-controller:latest
SIDECAR_IMG ?= owend/es-sidecar:latest
ELASTIC_IMG ?= owend/es-k8s:latest
CLUSTER_ENDPOINT ?= $$(minikube ip):$$(kubectl get svc mycluster -o jsonpath='{.spec.ports[0].nodePort}')
SAMPLE_DATA_FILE ?= $$HOME/Downloads/shakespeare_6.0.json
all: test manager
echo-cluster:
@echo $(CLUSTER_ENDPOINT)
ping:
curl $(CLUSTER_ENDPOINT)/_cluster/health | jq '.'
clean-pvc:
kubectl get pvc | tail -n +2 | awk '{print $$1}' | xargs -n 1 kubectl delete pvc
# Compile but don't run tests
build: generate fmt vet
# Run tests
test: generate fmt vet manifests
go test ./pkg/... ./cmd/... -coverprofile cover.out
# Build manager binary
manager: generate fmt vet
go build -o bin/manager github.com/owen-d/es-operator/cmd/manager
sidecar:
go build -o bin/reloader github.com/owen-d/es-operator/cmd/reloader
handler:
go build -o bin/handler github.com/owen-d/es-operator/cmd/handler
seed:
go build -o bin/es-seed github.com/owen-d/es-operator/cmd/seed
# Run against the configured Kubernetes cluster in ~/.kube/config
run: generate fmt vet
go run ./cmd/manager/main.go
# Install CRDs into a cluster
install: manifests
kubectl apply -f config/crds
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
deploy: manifests
kubectl apply -f config/crds
kustomize build config/default | kubectl apply -f -
# Generate manifests e.g. CRD, RBAC etc.
manifests:
go run vendor/sigs.k8s.io/controller-tools/cmd/controller-gen/main.go all
# Run go fmt against code
fmt:
go fmt ./pkg/... ./cmd/...
# Run go vet against code
vet:
go vet ./pkg/... ./cmd/...
# Generate code
generate:
ifndef GOPATH
$(error GOPATH not defined, please define GOPATH. Run "go help gopath" to learn more about GOPATH)
endif
go generate ./pkg/... ./cmd/...
# Build the docker image
docker-build: docker-build-controller docker-build-sidecar docker-build-elastic
docker-build-controller:
docker build . -t ${IMG} -f controller.Dockerfile
@echo "updating kustomize image patch file for manager resource"
# sed -i'' 's@image: .*@image: '"${IMG}"'@' ./config/default/manager_image_patch.yaml
docker-build-sidecar:
docker build . -t ${SIDECAR_IMG} -f sidecar.Dockerfile
docker-build-elastic:
docker build . -t ${ELASTIC_IMG} -f elastic.Dockerfile
# Push the docker images
docker-push:
docker push ${IMG}
docker push ${SIDECAR_IMG}
docker push ${ELASTIC_IMG}
test-data:
curl -XPUT -H 'Content-Type: application/json' "$(CLUSTER_ENDPOINT)/asoiaf?pretty" -d "$$(cat hack/sample-data/asoiaf.json)"
./bin/es-seed -v -b 500 -f ./scratch/asoiaf.txt -i asoiaf -t doc -u "http://$(CLUSTER_ENDPOINT)"
curl -XPUT -H 'Content-Type: application/json' "$(CLUSTER_ENDPOINT)/asoiaf/_settings?pretty" -d '{"index":{"number_of_replicas":1}}'
hq:
docker run -p 5000:5000 --name=hq -d -e "HQ_DEFAULT_URL=http://$(CLUSTER_ENDPOINT)" elastichq/elasticsearch-hq
open http://localhost:5000
rm-hq:
docker stop hq && docker rm hq || :
cleanup: rm-hq
minikube stop
teardown: rm-hq
minikube delete