scripted
This commit is contained in:
parent
16eb38ca06
commit
8487b3c43d
@ -7,7 +7,7 @@ find .. -mindepth 2 -maxdepth 2 -name 'Makefile' | while read -r makefile; do
|
|||||||
dir=$(dirname "$makefile")
|
dir=$(dirname "$makefile")
|
||||||
echo "Running 'make $TARGET' in $dir"
|
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
|
if [ $? -ne 0 ]; then
|
||||||
echo "Error: make $TARGET failed in $dir"
|
echo "Error: make $TARGET failed in $dir"
|
||||||
|
@ -23,7 +23,7 @@ clone_repo() {
|
|||||||
|
|
||||||
echo "Processing repository: $repo_name"
|
echo "Processing repository: $repo_name"
|
||||||
|
|
||||||
if [ !-d "$repo_name" ]; then
|
if [ ! -d "$1" ]; then
|
||||||
echo "Cloning repository: $repo_name"
|
echo "Cloning repository: $repo_name"
|
||||||
git clone "$repo_url"
|
git clone "$repo_url"
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
@ -35,6 +35,7 @@ clone_repo() {
|
|||||||
cd "$repo_name" && git checkout $branch && git pull && cd ..
|
cd "$repo_name" && git checkout $branch && git pull && cd ..
|
||||||
}
|
}
|
||||||
branch=${1:-main}
|
branch=${1:-main}
|
||||||
|
cd ..
|
||||||
# Iterate through each repository in the list
|
# Iterate through each repository in the list
|
||||||
for repo in "${REPOS[@]}"; do
|
for repo in "${REPOS[@]}"; do
|
||||||
clone_repo "$repo" "$branch"
|
clone_repo "$repo" "$branch"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
./delete_kind_cluster.sh | true
|
||||||
cat <<EOF | kind create cluster --name opencloud --config=-
|
cat <<EOF | kind create cluster --name opencloud --config=-
|
||||||
kind: Cluster
|
kind: Cluster
|
||||||
apiVersion: kind.x-k8s.io/v1alpha4
|
apiVersion: kind.x-k8s.io/v1alpha4
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
kind delete cluster --name opencloud
|
kind delete cluster --name opencloud | true
|
||||||
|
1
install.sh
Normal file → Executable file
1
install.sh
Normal file → Executable file
@ -1,4 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
./uninstall.sh | true
|
||||||
RELEASE_NAME=${1:-dev}
|
RELEASE_NAME=${1:-dev}
|
||||||
RELEASE_NAMESPACE=${1:-dev}
|
RELEASE_NAMESPACE=${1:-dev}
|
||||||
|
|
||||||
|
0
upgrade.sh
Normal file → Executable file
0
upgrade.sh
Normal file → Executable file
Loading…
Reference in New Issue
Block a user