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