This commit is contained in:
mr 2025-03-28 13:24:06 +01:00
parent 16eb38ca06
commit 8487b3c43d
6 changed files with 6 additions and 4 deletions

View File

@ -7,7 +7,7 @@ find .. -mindepth 2 -maxdepth 2 -name 'Makefile' | while read -r makefile; do
dir=$(dirname "$makefile")
echo "Running 'make $TARGET' in $dir"
(
cd "$dir" && make "$TARGET"
cd "$dir" && export HOST="${2:-http://beta.opencloud.com/}" && make "$TARGET"
)
if [ $? -ne 0 ]; then
echo "Error: make $TARGET failed in $dir"

View File

@ -23,7 +23,7 @@ clone_repo() {
echo "Processing repository: $repo_name"
if [ !-d "$repo_name" ]; then
if [ ! -d "$1" ]; then
echo "Cloning repository: $repo_name"
git clone "$repo_url"
if [ $? -ne 0 ]; then
@ -35,6 +35,7 @@ clone_repo() {
cd "$repo_name" && git checkout $branch && git pull && cd ..
}
branch=${1:-main}
cd ..
# Iterate through each repository in the list
for repo in "${REPOS[@]}"; do
clone_repo "$repo" "$branch"

View File

@ -1,5 +1,5 @@
#!/bin/bash
./delete_kind_cluster.sh | true
cat <<EOF | kind create cluster --name opencloud --config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4

View File

@ -1,3 +1,3 @@
#!/bin/bash
kind delete cluster --name opencloud
kind delete cluster --name opencloud | true

1
install.sh Normal file → Executable file
View File

@ -1,4 +1,5 @@
#!/bin/bash
./uninstall.sh | true
RELEASE_NAME=${1:-dev}
RELEASE_NAMESPACE=${1:-dev}

0
upgrade.sh Normal file → Executable file
View File