mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
53 lines
1.7 KiB
Makefile
53 lines
1.7 KiB
Makefile
# 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.
|
|
|
|
.PHONY: all rbdplugin
|
|
|
|
RBD_IMAGE_NAME=quay.io/cephcsi/rbdplugin
|
|
RBD_IMAGE_VERSION=v0.2.0
|
|
|
|
CEPHFS_IMAGE_NAME=cephfsplugin
|
|
CEPHFS_IMAGE_VERSION=latest
|
|
|
|
all: rbdplugin cephfsplugin
|
|
|
|
test:
|
|
go test github.com/ceph/ceph-csi/pkg/... -cover
|
|
go vet github.com/ceph/ceph-csi/pkg/...
|
|
|
|
rbdplugin:
|
|
if [ ! -d ./vendor ]; then dep ensure; fi
|
|
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o _output/rbdplugin ./rbd
|
|
|
|
rbdplugin-container: rbdplugin
|
|
cp _output/rbdplugin deploy/rbd/docker
|
|
docker build -t $(IMAGE_NAME):$(IMAGE_VERSION) deploy/rbd/docker
|
|
|
|
cephfsplugin:
|
|
if [ ! -d ./vendor ]; then dep ensure; fi
|
|
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o _output/cephfsplugin ./cephfs
|
|
|
|
cephfsplugin-container: cephfsplugin
|
|
cp _output/cephfsplugin deploy/cephfs/docker
|
|
docker build -t $(CEPHFS_IMAGE_NAME):$(CEPHFS_IMAGE_VERSION) deploy/cephfs/docker
|
|
|
|
push-container: rbdplugin-container
|
|
docker push $(RBD_IMAGE_NAME):$(RBD_IMAGE_VERSION)
|
|
|
|
clean:
|
|
go clean -r -x
|
|
rm -f deploy/rbd/docker/rbdplugin
|
|
rm -f deploy/cephfs/docker/rbdplugin
|
|
-rm -rf _output
|