k8s-csi-s3/Makefile

42 lines
1.6 KiB
Makefile
Raw Normal View History

2018-07-14 10:48:22 +02:00
# Copyright 2017 The Kubernetes Authors.
#
# 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.
.PHONY: test build container push clean
2021-08-24 12:56:08 +03:00
REGISTRY_NAME=cr.yandex/crp9ftr22d26age3hulg
REGISTRY_NAME2=cr.il.nebius.cloud/crll7us9n6i5j3v4n92m
2018-07-29 14:49:35 +02:00
IMAGE_NAME=csi-s3
2022-02-10 15:29:56 +03:00
IMAGE_NAME2=yandex-cloud/csi-s3/csi-s3-driver
VERSION ?= 0.35.1
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(VERSION)
2021-08-24 12:56:08 +03:00
TEST_IMAGE_TAG=$(IMAGE_NAME):test
2018-07-14 10:48:22 +02:00
build:
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o _output/s3driver ./cmd/s3driver
test:
2018-07-27 13:03:12 +02:00
docker build -t $(TEST_IMAGE_TAG) -f test/Dockerfile .
2021-10-27 21:54:18 +03:00
docker run --rm --privileged -v $(PWD):/build --device /dev/fuse $(TEST_IMAGE_TAG)
2021-04-06 20:52:15 +02:00
container:
2022-08-05 15:20:29 +03:00
docker build -t $(IMAGE_TAG) .
2018-07-14 10:48:22 +02:00
push: container
2021-08-24 14:03:09 +03:00
docker tag $(IMAGE_TAG) $(REGISTRY_NAME)/$(IMAGE_NAME):latest
2022-02-10 15:29:56 +03:00
docker tag $(IMAGE_TAG) $(REGISTRY_NAME)/$(IMAGE_NAME2):$(VERSION)
docker tag $(IMAGE_TAG) $(REGISTRY_NAME)/$(IMAGE_NAME2):latest
2018-07-14 10:48:22 +02:00
docker push $(IMAGE_TAG)
2021-08-24 14:03:09 +03:00
docker push $(REGISTRY_NAME)/$(IMAGE_NAME)
2022-02-10 15:29:56 +03:00
docker push $(REGISTRY_NAME)/$(IMAGE_NAME2)
2022-06-27 02:16:26 +03:00
docker push $(REGISTRY_NAME)/$(IMAGE_NAME2):$(VERSION)
2018-07-14 10:48:22 +02:00
clean:
go clean -r -x
-rm -rf _output