Skip to content
This repository was archived by the owner on Sep 6, 2022. It is now read-only.

Commit febd436

Browse files
committed
Do not require confirmation to adjust mysql settings
1 parent 119c291 commit febd436

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function setup_mysql_database() {
105105
--enable-bin-log
106106

107107
gcloud sql instances patch "${MYSQL_INSTANCE_NAME}" --database-flags \
108-
explicit_defaults_for_timestamp=off
108+
explicit_defaults_for_timestamp=off --quiet
109109

110110
echo "Creating gitpod Mysql database..."
111111
gcloud sql databases create gitpod --instance="${MYSQL_INSTANCE_NAME}"
@@ -359,7 +359,7 @@ function install() {
359359
install_jaeger_operator
360360
install_gitpod
361361

362-
LB_IP_ADDRESS=$(kubectl get ingress gitpod -o json | jq -r .status.loadBalancer.ingress[0].ip)
362+
LB_IP_ADDRESS=$(kubectl get service proxy -o json | jq -r .status.loadBalancer.ingress[0].ip)
363363
if [ -n "${LB_IP_ADDRESS}" ];then
364364
printf '\nLoad balancer IP address: %s\n' "${LB_IP_ADDRESS}"
365365
fi

0 commit comments

Comments
 (0)