2018-01-09 18:59:50 +00:00
|
|
|
# Copyright 2018 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.
|
|
|
|
|
2018-09-21 14:07:14 +00:00
|
|
|
.PHONY: all rbdplugin cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
|
2018-09-19 14:21:21 +00:00
|
|
|
RBD_IMAGE_NAME=$(if $(ENV_RBD_IMAGE_NAME),$(ENV_RBD_IMAGE_NAME),quay.io/cephcsi/rbdplugin)
|
2018-11-29 18:07:47 +00:00
|
|
|
RBD_IMAGE_VERSION=$(if $(ENV_RBD_IMAGE_VERSION),$(ENV_RBD_IMAGE_VERSION),v1.0.0)
|
2018-01-09 18:59:50 +00:00
|
|
|
|
2018-09-19 14:21:21 +00:00
|
|
|
CEPHFS_IMAGE_NAME=$(if $(ENV_CEPHFS_IMAGE_NAME),$(ENV_CEPHFS_IMAGE_NAME),quay.io/cephcsi/cephfsplugin)
|
2018-11-29 18:07:47 +00:00
|
|
|
CEPHFS_IMAGE_VERSION=$(if $(ENV_CEPHFS_IMAGE_VERSION),$(ENV_CEPHFS_IMAGE_VERSION),v1.0.0)
|
2018-09-19 14:21:21 +00:00
|
|
|
|
|
|
|
$(info rbd image settings: $(RBD_IMAGE_NAME) version $(RBD_IMAGE_VERSION))
|
|
|
|
$(info cephfs image settings: $(CEPHFS_IMAGE_NAME) version $(CEPHFS_IMAGE_VERSION))
|
2018-03-05 11:59:47 +00:00
|
|
|
|
|
|
|
all: rbdplugin cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
go test github.com/ceph/ceph-csi/pkg/... -cover
|
|
|
|
go vet github.com/ceph/ceph-csi/pkg/...
|
|
|
|
|
|
|
|
rbdplugin:
|
2019-01-16 12:44:58 +00:00
|
|
|
if [ ! -d ./vendor ]; then dep ensure -vendor-only; fi
|
2018-02-15 13:51:23 +00:00
|
|
|
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o _output/rbdplugin ./rbd
|
2018-01-09 18:59:50 +00:00
|
|
|
|
2018-07-18 14:48:43 +00:00
|
|
|
image-rbdplugin: rbdplugin
|
2018-03-05 11:59:47 +00:00
|
|
|
cp _output/rbdplugin deploy/rbd/docker
|
2018-04-24 09:02:46 +00:00
|
|
|
docker build -t $(RBD_IMAGE_NAME):$(RBD_IMAGE_VERSION) deploy/rbd/docker
|
2018-03-05 11:59:47 +00:00
|
|
|
|
|
|
|
cephfsplugin:
|
2019-01-16 12:44:58 +00:00
|
|
|
if [ ! -d ./vendor ]; then dep ensure -vendor-only; fi
|
2018-03-05 11:59:47 +00:00
|
|
|
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o _output/cephfsplugin ./cephfs
|
|
|
|
|
2018-07-18 14:48:43 +00:00
|
|
|
image-cephfsplugin: cephfsplugin
|
2018-03-05 11:59:47 +00:00
|
|
|
cp _output/cephfsplugin deploy/cephfs/docker
|
|
|
|
docker build -t $(CEPHFS_IMAGE_NAME):$(CEPHFS_IMAGE_VERSION) deploy/cephfs/docker
|
|
|
|
|
2018-07-18 14:48:43 +00:00
|
|
|
push-image-rbdplugin: image-rbdplugin
|
2018-03-05 11:59:47 +00:00
|
|
|
docker push $(RBD_IMAGE_NAME):$(RBD_IMAGE_VERSION)
|
2018-01-09 18:59:50 +00:00
|
|
|
|
2018-07-18 14:48:43 +00:00
|
|
|
push-image-cephfsplugin: image-cephfsplugin
|
2018-03-09 16:00:53 +00:00
|
|
|
docker push $(CEPHFS_IMAGE_NAME):$(CEPHFS_IMAGE_VERSION)
|
|
|
|
|
2018-01-09 18:59:50 +00:00
|
|
|
clean:
|
|
|
|
go clean -r -x
|
2018-03-05 11:59:47 +00:00
|
|
|
rm -f deploy/rbd/docker/rbdplugin
|
2018-07-26 09:19:20 +00:00
|
|
|
rm -f deploy/cephfs/docker/cephfsplugin
|
2019-01-16 12:45:42 +00:00
|
|
|
rm -f _output/rbdplugin
|
|
|
|
rm -f _output/cephfsplugin
|