82ab4b0983
This also adds some generic handling of stale umounts. Fuse returns immediately and does not indicate that the mounter has finished writing to the backend. The process finding is sort of hacky as I could not find a better way to get to the PID from a fuse mount.
35 lines
1.3 KiB
Makefile
35 lines
1.3 KiB
Makefile
# 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
|
|
|
|
PROJECT_DIR=/go/src/github.com/ctrox/csi-s3-driver
|
|
REGISTRY_NAME=ctrox
|
|
IMAGE_NAME=csi-s3-driver
|
|
IMAGE_VERSION=0.2.0
|
|
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(IMAGE_VERSION)
|
|
TEST_IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):test
|
|
|
|
build:
|
|
if [ ! -d ./vendor ]; then dep ensure -vendor-only; fi
|
|
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o _output/s3driver ./cmd/s3driver
|
|
test:
|
|
docker build -t $(TEST_IMAGE_TAG) -f test/Dockerfile.s3backer .
|
|
docker run --rm --privileged -v $(PWD):$(PROJECT_DIR):ro -v /dev:/dev $(TEST_IMAGE_TAG)
|
|
container: build
|
|
docker build -t $(IMAGE_TAG) -f cmd/s3driver/Dockerfile.s3ql .
|
|
push: container
|
|
docker push $(IMAGE_TAG)
|
|
clean:
|
|
go clean -r -x
|
|
-rm -rf _output
|