- 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.
73 lines
1.6 KiB
Bash
Executable File
73 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Optional: set your subscription first if needed:
|
|
# az account set --subscription "$SUB"
|
|
|
|
REGIONS=(
|
|
australiacentral
|
|
australiaeast
|
|
australiasoutheast
|
|
austriaeast
|
|
belgiumcentral
|
|
brazilsouth
|
|
canadacentral
|
|
canadaeast
|
|
centralindia
|
|
chilecentral
|
|
eastasia
|
|
francecentral
|
|
germanywestcentral
|
|
indonesiacentral
|
|
israelcentral
|
|
italynorth
|
|
japaneast
|
|
japanwest
|
|
koreacentral
|
|
koreasouth
|
|
malaysiawest
|
|
mexicocentral
|
|
newzealandnorth
|
|
northeurope
|
|
polandcentral
|
|
qatarcentral
|
|
southafricanorth
|
|
southafricawest
|
|
southeastasia
|
|
southindia
|
|
spaincentral
|
|
switzerlandnorth
|
|
switzerlandwest
|
|
uaecentral
|
|
uaenorth
|
|
uksouth
|
|
ukwest
|
|
westeurope
|
|
westindia
|
|
)
|
|
|
|
OUT_DIR=$(dirname "$0")/../reports
|
|
OUT_FILE="$OUT_DIR/dplsv6_usage.tsv"
|
|
mkdir -p "$OUT_DIR"
|
|
printf "Region\tName\tUsage\tLimit\n" > "$OUT_FILE"
|
|
|
|
for region in "${REGIONS[@]}"; do
|
|
echo "Checking ${region}..." 1>&2
|
|
# Use legacy VM usage API; filter any rows whose name contains Dpl and v6 (covers Dplsv6/Dpldsv6, etc.)
|
|
# Output as TSV with columns: Name (localized), Usage, Limit
|
|
az vm list-usage --location "${region}" \
|
|
--output tsv \
|
|
--query "[].{Name:name.localizedValue,Usage:currentValue,Limit:limit}" \
|
|
| awk -v R="${region}" -F $'\t' 'tolower($1) ~ /dpl/ && tolower($1) ~ /v6/ { print R"\t"$1"\t"$2"\t"$3 }' \
|
|
>> "${OUT_FILE}" || true
|
|
# be gentle with API
|
|
sleep 0.2
|
|
done
|
|
|
|
echo "Saved Dplsv6 usage report to: ${OUT_FILE}"
|
|
echo
|
|
echo "--- Dplsv6 usage per region (first 80 lines) ---"
|
|
column -t -s $'\t' "${OUT_FILE}" | sed -n '1,80p'
|
|
|
|
|