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