mirror of https://github.com/k3s-io/k3s
48 lines
1.5 KiB
Makefile
48 lines
1.5 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.
|
|
|
|
# Build the etcd-version-monitor image
|
|
#
|
|
# Usage:
|
|
# [GOLANG_VERSION=1.8.3] [REGISTRY=staging-k8s.gcr.io] [TAG=test] make (build|push)
|
|
# TODO(shyamjvs): Support architectures other than amd64 if needed.
|
|
ARCH:=amd64
|
|
GOLANG_VERSION?=1.8.3
|
|
REGISTRY?=staging-k8s.gcr.io
|
|
TAG?=0.1.2
|
|
IMAGE:=$(REGISTRY)/etcd-version-monitor:$(TAG)
|
|
CURRENT_DIR:=$(pwd)
|
|
TEMP_DIR:=$(shell mktemp -d)
|
|
|
|
build:
|
|
# Copy the necessary files for building the image to TEMP_DIR.
|
|
cp etcd-version-monitor.go Dockerfile $(TEMP_DIR)
|
|
|
|
# Compile etcd-version-monitor.
|
|
docker run -it \
|
|
-v $(shell pwd)/../../../:/go/src/k8s.io/kubernetes \
|
|
-v $(TEMP_DIR):/build \
|
|
-e GOARCH=$(ARCH) \
|
|
golang:$(GOLANG_VERSION) \
|
|
/bin/bash -c "CGO_ENABLED=0 go build -o /build/etcd-version-monitor k8s.io/kubernetes/cluster/images/etcd-version-monitor"
|
|
|
|
docker build -t $(IMAGE) $(TEMP_DIR)
|
|
|
|
push: build
|
|
docker push $(IMAGE)
|
|
|
|
all: build
|
|
|
|
.PHONY: build push
|