Skip to content

Commit ec4a1f9

Browse files
Adding Makefile target for worker image creation (kubernetes-sigs#532) (kubernetes-sigs#728)
1) add target for worker image creation 2) add worker exe to .gitignore 3) update skipper configuration
1 parent 6d6b574 commit ec4a1f9

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Operator's binaries
22
/manager
33
/manager-hub
4+
/worker
45

56
# Binaries for programs and plugins
67
*.exe

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -360,4 +360,8 @@ catalog-push: ## Push a catalog image.
360360
signimage-build: ## Build docker image with the signer.
361361
docker build -f Dockerfile.signimage -t $(SIGNER_IMG) .
362362

363+
.PHONY: workerimage-build
364+
workerimage-build: ## Build docker image for worker app.
365+
docker build -f Dockerfile.worker -t $(WORKER_IMG) .
366+
363367
include docs.mk

skipper.env

+1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ KUBECONFIG
1313
VERSION
1414
REPO
1515
IMG
16+
WORKER_IMG
1617
TEST
1718
SIGNER_IMG

0 commit comments

Comments
 (0)