Brings /opt/kubernetes in line with config that was applied directly on the server: catalogue DB and S3 credentials/config in nearle-config.yaml and nearle-app-secrets.yaml, and deploy scripts switched to kubectl apply -k against the kustomize manifests. Also dedupes USE_S3/S3_ENDPOINT/S3_BUCKET/S3_REGION which were listed twice in nearle-config.yaml. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
17 lines
344 B
Bash
Executable File
17 lines
344 B
Bash
Executable File
#!/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}"
|