1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

Merge pull request #92 from nirmata/add-makefile

- add Makefile
This commit is contained in:
shuting 2019-05-22 21:42:36 -07:00 committed by GitHub
commit a4fcb05cbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 4 deletions

2
.gitignore vendored
View file

@ -1,6 +1,4 @@
certs
Gopkg.lock
Dockerfile
.vscode
gh-pages/public
/cmd/kyverno/kyverno

3
Dockerfile Normal file
View file

@ -0,0 +1,3 @@
FROM scratch
ADD kyverno /kyverno
ENTRYPOINT ["/kyverno"]

24
Makefile Normal file
View file

@ -0,0 +1,24 @@
.DEFAULT_GOAL: build
PACKAGE ?=github.com/nirmata/kyverno
MAIN ?=$(PACKAGE)
LD_FLAGS ="-s -w"
REPO=nirmata/kyverno
TAG=0.1
build:
GOOS=linux go build -ldflags=$(LD_FLAGS) $(MAIN)
local:
go build -ldflags=$(LD_FLAGS) $(MAIN)
image:
docker build -t $(REPO):$(TAG) .
docker tag $(REPO):$(TAG) $(REPO):latest
push:
docker push $(REPO):$(TAG)
docker push $(REPO):latest
clean:
go clean

View file

@ -187,5 +187,4 @@ spec:
- containerPort: 443
securityContext:
privileged: true
imagePullSecrets:
- name: docker-registry-key