forked from GoogleCloudPlatform/flink-on-k8s-operator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
155 lines (126 loc) · 5.47 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# Image URL to use all building/pushing image targets
IMG ?= gcr.io/flink-operator/flink-operator:latest
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
CRD_OPTIONS ?= "crd:maxDescLen=0,trivialVersions=true"
# The Kubernetes namespace in which the operator will be deployed.
FLINK_OPERATOR_NAMESPACE ?= flink-operator-system
# Prefix for Kubernetes resource names. When deploying multiple operators, make sure that the names of cluster-scoped resources are not duplicated.
RESOURCE_PREFIX ?= flink-operator-
# The Kubernetes namespace to limit watching.
WATCH_NAMESPACE ?=
GREEN=\033[1;32m
RED=\033[1;31m
RESET=\033[0m
#################### Local build and test ####################
# Build the flink-operator binary
build: generate fmt
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -o bin/flink-operator main.go
go mod tidy
# Run tests.
test: generate fmt manifests
#go test ./... -coverprofile cover.out
go mod tidy
echo $(FLINK_OPERATOR_NAMESPACE)
# Run tests in the builder container.
test-in-docker: builder-image
docker run flink-operator-builder make test
# Run against the configured Kubernetes cluster in ~/.kube/config
run: generate fmt vet
go run ./main.go
go mod tidy
# Generate manifests e.g. CRD, RBAC etc.
manifests: controller-gen
$(CONTROLLER_GEN) $(CRD_OPTIONS) rbac:roleName=manager-role webhook paths="./api/v1beta1/..." output:crd:artifacts:config=config/crd/bases
go mod tidy
# Run go fmt against code
fmt:
go fmt ./...
# Run go vet against code
vet:
go vet ./...
# Generate code
generate: controller-gen
$(CONTROLLER_GEN) object:headerFile=./hack/boilerplate.go.txt paths=./api/v1beta1/...
# find or download controller-gen
# download controller-gen if necessary
controller-gen:
ifeq (, $(shell which controller-gen))
@{ \
set -e ;\
CONTROLLER_GEN_TMP_DIR=$$(mktemp -d) ;\
cd $$CONTROLLER_GEN_TMP_DIR ;\
go mod init tmp ;\
go get sigs.k8s.io/controller-tools/cmd/[email protected] ;\
rm -rf $$CONTROLLER_GEN_TMP_DIR ;\
}
CONTROLLER_GEN=$(shell go env GOPATH)/bin/controller-gen
else
CONTROLLER_GEN=$(shell which controller-gen)
endif
#################### Docker image ####################
# Builder image which builds the flink-operator binary from the source code.
builder-image:
docker build -t flink-operator-builder -f Dockerfile.builder .
# Build the Flink Operator docker image
operator-image: builder-image test-in-docker
docker build -t ${IMG} --label git-commit=$(shell git rev-parse HEAD) .
@echo "updating kustomize image patch file for Flink Operator resource"
# Push the Flink Operator docker image to container registry.
push-operator-image:
docker push ${IMG}
#################### Deployment ####################
# Install CRDs into a cluster
install: manifests
kubectl apply -f config/crd/bases
# Deploy cert-manager which is required by webhooks of the operator.
webhook-cert:
bash scripts/generate_cert.sh --service $(RESOURCE_PREFIX)webhook-service --secret webhook-server-cert -n $(FLINK_OPERATOR_NAMESPACE)
config/default/manager_image_patch.yaml:
cp config/default/manager_image_patch.template config/default/manager_image_patch.yaml
# Build kustomize overlay for deploy/undeploy.
build-overlay:
rm -rf config/deploy && cp -rf config/default config/deploy && cd config/deploy \
&& kustomize edit set nameprefix $(RESOURCE_PREFIX) \
&& kustomize edit set namespace $(FLINK_OPERATOR_NAMESPACE)
ifneq ($(WATCH_NAMESPACE),)
cd config/deploy \
&& sed -E -i.bak "s/(\-\-watch\-namespace\=)/\1$(WATCH_NAMESPACE)/" manager_auth_proxy_patch.yaml \
&& kustomize edit add patch webhook_namespace_selector_patch.yaml \
|| true
endif
sed -E -i.bak "s/resources:/bases:/" config/deploy/kustomization.yaml
rm config/deploy/*.bak
# Generate deploy template.
template: build-overlay
kubectl kustomize config/deploy \
| sed -e "s/$(RESOURCE_PREFIX)system/$(FLINK_OPERATOR_NAMESPACE)/g"
# Deploy the operator in the configured Kubernetes cluster in ~/.kube/config
deploy: install webhook-cert config/default/manager_image_patch.yaml build-overlay
sed -e 's#image: .*#image: '"$(IMG)"'#' ./config/deploy/manager_image_patch.template >./config/deploy/manager_image_patch.yaml
@echo "Getting webhook server certificate"
$(eval CA_BUNDLE := $(shell kubectl get secrets/webhook-server-cert -n $(FLINK_OPERATOR_NAMESPACE) -o jsonpath="{.data.tls\.crt}"))
kubectl kustomize config/deploy \
| sed -e "s/$(RESOURCE_PREFIX)system/$(FLINK_OPERATOR_NAMESPACE)/g" \
| sed -e "s/Cg==/$(CA_BUNDLE)/g" \
| kubectl apply -f -
ifneq ($(WATCH_NAMESPACE),)
# Set the label on watch-target namespace to support webhook namespaceSelector.
kubectl label ns $(WATCH_NAMESPACE) flink-operator-namespace=$(FLINK_OPERATOR_NAMESPACE)
endif
@printf "$(GREEN)Flink Operator deployed, image=$(IMG), operator_namespace=$(FLINK_OPERATOR_NAMESPACE), watch_namespace=$(WATCH_NAMESPACE)$(RESET)\n"
undeploy-crd:
kubectl delete -f config/crd/bases
undeploy-controller: build-overlay
kubectl kustomize config/deploy \
| sed -e "s/$(RESOURCE_PREFIX)system/$(FLINK_OPERATOR_NAMESPACE)/g" \
| kubectl delete -f - \
|| true
ifneq ($(WATCH_NAMESPACE),)
# Remove the label, which is set when operator is deployed to support webhook namespaceSelector
kubectl label ns $(WATCH_NAMESPACE) flink-operator-namespace-
endif
undeploy: undeploy-controller undeploy-crd
@printf "$(GREEN)Flink Operator undeployed, namespace=$(FLINK_OPERATOR_NAMESPACE)$(RESET)\n"
# Deploy the sample Flink clusters in the Kubernetes cluster
samples:
kubectl apply -f config/samples/