first commit

This commit is contained in:
2026-05-28 07:21:15 +00:00
commit 6465520041
57 changed files with 942 additions and 0 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
.PHONY: validate list
KUSTOMIZE ?= kubectl kustomize
TEST_OVERLAYS := \
tests/kustomize/code-server-nodeport \
tests/kustomize/vllm-server-loadbalancer \
tests/kustomize/litellm-ingress
list:
@printf '%s\n' $(TEST_OVERLAYS)
validate:
@set -eu; \
for dir in $(TEST_OVERLAYS); do \
printf '==> %s\n' "$$dir"; \
$(KUSTOMIZE) "$$dir" >/dev/null; \
done