Skip to content

Commit cf78c98

Browse files
committed
Merge branch 'main' of github.com:drycc/workflow into main
2 parents 7e1975a + 9b9bebe commit cf78c98

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

_scripts/install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,9 @@ function install_metallb() {
202202
--namespace metallb \
203203
--create-namespace
204204

205-
sleep 30s
205+
echo -e "\\033[32m--->Waiting metallb pods ready...\\033[0m"
206+
kubectl wait pods -n metallb --all --for condition=Ready --timeout=600s
207+
206208
if [[ -z "${METALLB_CONFIG_FILE}" ]] ; then
207209
echo -e "\\033[32m---> Metallb using the default configuration.\\033[0m"
208210
kubectl apply -n metallb -f - <<EOF

charts/workflow/values.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,9 @@ storage:
106106
accesskey: ""
107107
secretkey: ""
108108
# The following three bucket name parameters are valid only in cluster-off
109-
# In the case of cluster-on, they are hard coded and named: builder, registry, database
109+
# In the case of cluster-on, they are hard coded and named: builder, registry
110110
builderBucket: "drycc-builder-bucket"
111111
registryBucket: "drycc-registry-bucket"
112-
databaseBucket: "drycc-database-bucket"
113112
# Configure the following ONLY if you want persistence for on-cluster storage
114113
persistence:
115114
enabled: false # Set to true to enable persistence

0 commit comments

Comments
 (0)