Add example-app .

This commit is contained in:
2025-06-07 09:30:14 -07:00
parent c03e37bb44
commit 35d88fac2c
8 changed files with 195 additions and 81 deletions

12
bin/wild-app-install Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
if [ $# -ne 1 ]; then
echo "Usage: $0 <app_name>"
exit 1
fi
APP_NAME="$1"
kubectl apply -k "apps/${APP_NAME}"