mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-12-15 20:37:39 +00:00
14 lines
284 B
Makefile
14 lines
284 B
Makefile
all: kube2sky
|
|
|
|
kube2sky: kube2sky.go
|
|
CGO_ENABLED=0 go build -a -installsuffix cgo --ldflags '-w' ./kube2sky.go
|
|
|
|
container: kube2sky
|
|
sudo docker build -t gcr.io/google_containers/kube2sky .
|
|
|
|
push:
|
|
gcloud preview docker push gcr.io/google_containers/kube2sky
|
|
|
|
clean:
|
|
rm -f kube2sky
|