- Introduced Aggregator.sol for Chainlink-compatible oracle functionality, including round-based updates and access control. - Added OracleWithCCIP.sol to extend Aggregator with CCIP cross-chain messaging capabilities. - Created .gitmodules to include OpenZeppelin contracts as a submodule. - Developed a comprehensive deployment guide in NEXT_STEPS_COMPLETE_GUIDE.md for Phase 2 and smart contract deployment. - Implemented Vite configuration for the orchestration portal, supporting both Vue and React frameworks. - Added server-side logic for the Multi-Cloud Orchestration Portal, including API endpoints for environment management and monitoring. - Created scripts for resource import and usage validation across non-US regions. - Added tests for CCIP error handling and integration to ensure robust functionality. - Included various new files and directories for the orchestration portal and deployment scripts.
88 lines
2.6 KiB
Bash
Executable File
88 lines
2.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Canary deployment for a single workload region.
|
|
# - Applies Terraform only for one region's AKS + networking + storage
|
|
# - Uses lock timeouts (no -lock=false)
|
|
# - Runs basic health checks on the AKS cluster and Besu pods
|
|
#
|
|
# Usage:
|
|
# scripts/deployment/canary-region.sh <region-name>
|
|
# scripts/deployment/canary-region.sh northeurope
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
|
TERRAFORM_DIR="$PROJECT_ROOT/terraform"
|
|
|
|
REGION="${1:-northeurope}"
|
|
|
|
echo "=== Canary deployment for region: ${REGION} ==="
|
|
|
|
cd "$TERRAFORM_DIR"
|
|
|
|
echo "Running Terraform plan for canary region (AKS + networking + storage)..."
|
|
terraform plan \
|
|
-lock-timeout=5m \
|
|
-compact-warnings \
|
|
-target="module.aks_global_multi_region[\"${REGION}\"]" \
|
|
-target="module.networking_global_multi_region[\"${REGION}\"]" \
|
|
-target="module.storage_global_multi_region[\"${REGION}\"]" \
|
|
-out="tfplan.canary.${REGION}"
|
|
|
|
echo
|
|
echo "Applying Terraform canary plan for ${REGION}..."
|
|
terraform apply \
|
|
-lock-timeout=5m \
|
|
"tfplan.canary.${REGION}"
|
|
|
|
echo
|
|
echo "Fetching cluster info for ${REGION} from Terraform outputs..."
|
|
|
|
CLUSTERS_JSON="$(terraform output -json global_multi_region_clusters || echo '{}')"
|
|
|
|
if [[ "$CLUSTERS_JSON" == "null" || -z "$CLUSTERS_JSON" ]]; then
|
|
echo "ERROR: global_multi_region_clusters output is empty or null."
|
|
exit 1
|
|
fi
|
|
|
|
CLUSTER_NAME="$(echo "$CLUSTERS_JSON" | jq -r --arg R "$REGION" '.[$R].cluster_name')"
|
|
CLUSTER_LOCATION="$(echo "$CLUSTERS_JSON" | jq -r --arg R "$REGION" '.[$R].location')"
|
|
|
|
if [[ -z "$CLUSTER_NAME" || "$CLUSTER_NAME" == "null" ]]; then
|
|
echo "ERROR: could not resolve cluster_name for region ${REGION} from Terraform outputs."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Cluster name: ${CLUSTER_NAME}"
|
|
echo "Cluster location: ${CLUSTER_LOCATION}"
|
|
|
|
echo
|
|
echo "Getting AKS credentials..."
|
|
az aks get-credentials \
|
|
--resource-group "$(terraform output -raw resource_group_name)" \
|
|
--name "${CLUSTER_NAME}" \
|
|
--overwrite-existing
|
|
|
|
echo
|
|
echo "=== Health checks for canary region: ${REGION} ==="
|
|
|
|
echo "- AKS provisioning state:"
|
|
az aks show \
|
|
--resource-group "$(terraform output -raw resource_group_name)" \
|
|
--name "${CLUSTER_NAME}" \
|
|
--query "provisioningState" \
|
|
-o tsv
|
|
|
|
echo
|
|
echo "- Nodes summary:"
|
|
kubectl get nodes -o wide
|
|
|
|
echo
|
|
echo "- Besu pods (if deployed) in namespace besu-network:"
|
|
kubectl get pods -n besu-network || echo "Namespace besu-network not yet deployed."
|
|
|
|
echo
|
|
echo "Canary deployment for ${REGION} completed. Review the above health checks before rolling out to all regions."
|
|
|
|
|