feat: add base things

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-03-30 00:09:34 +01:00
commit 02b2c986ed
17 changed files with 2541 additions and 0 deletions

19
scripts/render.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
set -eou pipefail
echo "rendering folder"
cuddle render folder \
--source $TMP/kustomize \
--destination $TMP/rendered/kustomize \
--extra-var cluster=$CLUSTER \
--extra-var image_tag=$IMAGE_TAG
echo "rendering kustomize"
cuddle render kustomize \
--kustomize-folder $TMP/rendered/kustomize/base \
--destination $TMP/k8s
echo "done"