Initial commit
This commit is contained in:
16
shfiles/deploy-core-stack.sh
Normal file
16
shfiles/deploy-core-stack.sh
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
# Deploy "core" stack to Kubernetes
|
||||
# Usage: ./deploy-core-stack.sh
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
NAMESPACE="core"
|
||||
|
||||
echo "🚀 Deploying Core Stack..."
|
||||
kubectl apply -k manifests/core
|
||||
|
||||
echo ""
|
||||
echo "✅ Core stack deployment applied."
|
||||
echo "📋 Current status:"
|
||||
echo " kubectl get all -n ${NAMESPACE}"
|
||||
kubectl get all -n "${NAMESPACE}"
|
||||
Reference in New Issue
Block a user