forked from oracle/oci-cloud-controller-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
199 lines (161 loc) · 5.64 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# Copyright 2018 Oracle and/or its affiliates. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
PKG := github.com/oracle/oci-cloud-controller-manager
ifeq "$(CI_IMAGE_REGISTRY)" ""
CI_IMAGE_REGISTRY ?= iad.ocir.io/oracle
else
CI_IMAGE_REGISTRY ?= ${CI_IMAGE_REGISTRY}
endif
ifeq "$(OSS_REGISTRY)" ""
OSS_REGISTRY ?= iad.ocir.io/oracle
else
OSS_REGISTRY ?= ${OSS_REGISTRY}
endif
IMAGE ?= $(OSS_REGISTRY)/cloud-provider-oci
COMPONENT ?= oci-cloud-controller-manager oci-volume-provisioner oci-flexvolume-driver oci-csi-controller-driver oci-csi-node-driver
ALL_ARCH = amd64 arm64
ifeq "$(VERSION)" ""
BUILD := $(shell git describe --exact-match 2> /dev/null || git describe --match=$(git rev-parse --short=8 HEAD) --always --dirty --abbrev=8)
# Allow overriding for release versions else just equal the build (git hash)
VERSION ?= ${BUILD}
else
VERSION ?= ${VERSION}
endif
RELEASE = v1.22.0
GOOS ?= linux
ARCH ?= amd64
SRC_DIRS := cmd pkg # directories which hold app source (not vendored)
# Allows overriding where the CCM should look for the cloud provider config
# when running via make run-dev.
CLOUD_PROVIDER_CFG ?= $$(pwd)/cloud-provider.yaml
RETURN_CODE := $(shell sed --version >/dev/null 2>&1; echo $$?)
ifeq ($(RETURN_CODE),1)
SED_INPLACE = -i ''
else
SED_INPLACE = -i
endif
.PHONY: all
all: check test build
.PHONY: gofmt
gofmt:
@./hack/check-gofmt.sh $(SRC_DIRS)
.PHONY: golint
golint:
@./hack/check-golint.sh $(SRC_DIRS)
.PHONY: govet
govet:
@./hack/check-govet.sh $(SRC_DIRS)
.PHONY: check
check: gofmt govet golint
.PHONY: build-dirs
build-dirs:
@mkdir -p dist/
.PHONY: build
build: build-dirs
@for component in $(COMPONENT); do \
GOOS=$(GOOS) GOARCH=$(ARCH) CGO_ENABLED=0 go build -o dist/$$component -ldflags "-X main.version=$(VERSION) -X main.build=$(BUILD)" ./cmd/$$component ; \
done
.PHONY: manifests
manifests: build-dirs
@mkdir -p ${RELEASE}
@cp -a manifests/**/*.yaml ${RELEASE}
@sed $(SED_INPLACE) \
's#${IMAGE}:${VERSION}#${IMAGE}:${RELEASE}#g' \
${RELEASE}/*.yaml
.PHONY: vendor
vendor:
@GO111MODULE=on go mod vendor -v
.PHONY: test
test:
@./hack/test.sh $(SRC_DIRS)
# Run the canary tests - in single run mode.
.PHONY: canary-run-once
canary-run-once:
@./hack/test-canary.sh run-once
# Run the canary tests - in monitor (infinite loop) mode.
.PHONY: canary-monitor
canary-monitor:
@./hack/test-canary.sh monitor
# Validate the generated canary test image. Runs test once
# and monitors from sidecar.
.PHONY: validate-canary
validate-canary:
@./hack/validate-canary.sh run
.PHONY: clean
clean:
@rm -rf dist
.PHONY: run-ccm-dev
run-ccm-dev:
@go run cmd/oci-cloud-controller-manager/main.go \
--kubeconfig=$(KUBECONFIG) \
--cloud-config=$(CLOUD_PROVIDER_CFG) \
--cluster-cidr=10.244.0.0/16 \
--leader-elect-resource-lock=configmaps \
--cloud-provider=oci \
-v=4
.PHONY: run-volume-provisioner-dev
run-volume-provisioner-dev:
@NODE_NAME=$(shell hostname) \
CONFIG_YAML_FILENAME=cloud-provider.yaml \
go run cmd/oci-volume-provisioner/main.go \
--kubeconfig=$(KUBECONFIG) \
-v=4
.PHONY: image
BUILD_ARGS = --build-arg CI_IMAGE_REGISTRY="$(CI_IMAGE_REGISTRY)" --build-arg COMPONENT="$(COMPONENT)"
image:
docker build $(BUILD_ARGS) \
-t $(IMAGE)-amd64:$(VERSION) .
docker build $(BUILD_ARGS) \
-t $(IMAGE)-arm64:$(VERSION) -f Dockerfile_arm_all .
.PHONY: push
push: image
docker login --username="${oss_docker_username}" --password="${oss_docker_password}" $(OSS_REGISTRY)
docker push $(IMAGE):$(VERSION)
.PHONY: build
build-arm-all: build-dirs
@for component in $(COMPONENT); do \
GOOS=$(GOOS) GOARCH=arm64 CGO_ENABLED=0 go build -o dist/arm/$$component -ldflags "-X main.version=$(VERSION) -X main.build=$(BUILD)" ./cmd/$$component ; \
done
.PHONY: docker-push
docker-push: ## Push the docker image
docker push $(IMAGE)-$(ARCH):$(VERSION)
docker-push-%:
$(MAKE) ARCH=$* docker-push
.PHONY: docker-push-all ## Push all the architecture docker images
docker-push-all: $(addprefix docker-push-,$(ALL_ARCH))
$(MAKE) docker-push-manifest
.PHONY: docker-push-manifest
docker-push-manifest: ## Push the fat manifest docker image.
## Minimum docker version 18.06.0 is required for creating and pushing manifest images.
docker manifest create --amend $(IMAGE):$(VERSION) $(shell echo $(ALL_ARCH) | sed -e "s~[^ ]*~$(IMAGE)\-&:$(VERSION)~g")
@for arch in $(ALL_ARCH); do docker manifest annotate --arch $${arch} ${IMAGE}:${VERSION} ${IMAGE}-$${arch}:${VERSION}; done
docker manifest push --purge ${IMAGE}:${VERSION}
.PHONY: version
version:
@echo $(VERSION)
.PHONY: build-local
build-local: build
.PHONY: test-local
test-local: build-dirs
@docker run --rm \
--privileged \
-w $(DOCKER_REPO_ROOT) \
-v $(PWD):$(DOCKER_REPO_ROOT) \
-e COMPONENT="$(COMPONENT)" \
-e GOPATH=/go/ \
odo-docker-signed-local.artifactory.oci.oraclecorp.com/odx-oke/oke/k8-manager-base:go1.16.1-1.0.9 \
make coverage image
.PHONY: run-ccm-e2e-tests-local
run-ccm-e2e-tests-local:
./hack/run_e2e_test.sh