oc-k8s/clone_opencloud_microservices.sh

48 lines
992 B
Bash
Raw Normal View History

2025-01-22 14:21:31 +01:00
#!/bin/bash
REPOS=(
2025-03-27 13:10:23 +01:00
"oc-auth"
"oc-catalog"
"oc-datacenter"
"oc-front"
"oc-monitord"
"oc-peer"
"oc-shared"
"oc-scheduler"
"oc-schedulerd"
"oc-workflow"
"oc-workspace"
2025-01-22 14:21:31 +01:00
)
# Function to clone repositories
clone_repo() {
2025-03-27 13:04:29 +01:00
local branch=${2:-main}
2025-03-27 13:10:23 +01:00
local repo_url="https://cloud.o-forge.io/core/$1.git"
2025-01-22 14:21:31 +01:00
local repo_name=$(basename "$repo_url" .git)
echo "Processing repository: $repo_name"
2025-03-28 13:24:06 +01:00
if [ ! -d "$1" ]; then
2025-01-22 14:21:31 +01:00
echo "Cloning repository: $repo_name"
git clone "$repo_url"
if [ $? -ne 0 ]; then
echo "Error cloning $repo_url"
exit 1
fi
fi
2025-03-27 13:12:23 +01:00
echo "Repository '$repo_name' already exists. Pulling latest changes..."
cd "$repo_name" && git checkout $branch && git pull && cd ..
2025-01-22 14:21:31 +01:00
}
2025-03-27 13:04:29 +01:00
branch=${1:-main}
2025-03-28 13:24:06 +01:00
cd ..
2025-01-22 14:21:31 +01:00
# Iterate through each repository in the list
for repo in "${REPOS[@]}"; do
2025-03-27 13:04:29 +01:00
clone_repo "$repo" "$branch"
2025-01-22 14:21:31 +01:00
done
echo "All repositories processed successfully."