Pushing modifications for k8s integration

This commit is contained in:
plm
2025-01-15 09:40:55 +01:00
parent 3b65fb934b
commit 90ac9b4d44
5 changed files with 59 additions and 105 deletions

27
Makefile Normal file
View File

@@ -0,0 +1,27 @@
.DEFAULT_GOAL := all
build: clean
bee pack
run:
bee run -gendoc=true -downdoc=true
debug:
bee run -downdebug -gendebug
clean:
rm -rf oc-shared.tar.gz
docker:
DOCKER_BUILDKIT=1 docker build -t oc/oc-shared:0.0.1 -f Dockerfile .
docker tag oc/oc-shared:0.0.1 oc/oc-shared:latest
publish-kind:
kind load docker-image oc/oc-shared:0.0.1 --name opencloud
publish-registry:
@echo "TODO"
all: docker publish-kind publish-registry
.PHONY: build run clean docker publish-kind publish-registry