feat: add explicit website-production namespace manifest

This commit is contained in:
jv 2026-05-19 08:46:33 -05:00
parent 69ae88a416
commit abf3d6ce8c
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: website-production

13
lab.sh
View File

@ -62,3 +62,16 @@ EOF
echo "Destruction complete! Your hardware is completely sanitized." echo "Destruction complete! Your hardware is completely sanitized."
} }
case "$1" in
up)
up
;;
nuke)
nuke
;;
*)
echo "Usage: $0 {up|nuke}"
exit 1
;;
esac