k8s integration

This commit is contained in:
plm
2025-01-15 16:32:12 +01:00
parent 2f2a3bf250
commit 50758a7efe
5 changed files with 77 additions and 88 deletions

24
Makefile Normal file
View File

@@ -0,0 +1,24 @@
.DEFAULT_GOAL := all
build: clean
bee pack
run:
./oc-discovery
clean:
rm -rf oc-discovery
docker:
DOCKER_BUILDKIT=1 docker build -t oc/oc-discovery:0.0.1 -f Dockerfile .
docker tag oc/oc-discovery:0.0.1 oc/oc-discovery:latest
publish-kind:
kind load docker-image oc/oc-discovery:0.0.1 --name opencloud
publish-registry:
@echo "TODO"
all: docker publish-kind publish-registry
.PHONY: build run clean docker publish-kind publish-registry