From ce85d87946624f492ea87ac9ea390ab64531d1b5 Mon Sep 17 00:00:00 2001 From: Adw8 Date: Tue, 29 Oct 2024 09:38:25 +0530 Subject: [PATCH 1/2] Set min required payment to 0 in during undeploy --- scripts/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run.sh b/scripts/run.sh index a9bdb4e..46e2b4e 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -135,7 +135,7 @@ while true; do --include-tags "$INCLUDE_TAGS" \ --exclude-tags "$EXCLUDE_TAGS" \ --lrn "$LRN" \ - --min-required-payment ${MIN_REQUIRED_PAYMENT:-0} \ + --min-required-payment 0 \ $EXTRA_UNDEPLOY_OPTS \ $UPDATE_OPTS \ --discover -- 2.45.2 From 220b069dd662a1cbd8a41c1e6a8eb714a8cd144f Mon Sep 17 00:00:00 2001 From: Adw8 Date: Tue, 29 Oct 2024 11:33:39 +0530 Subject: [PATCH 2/2] Set recreate on deploy to true to update dns deployment after config change --- scripts/run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/run.sh b/scripts/run.sh index 46e2b4e..f759f7b 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -165,6 +165,7 @@ while true; do --config-upload-dir "$UPLOAD_DIRECTORY" \ --private-key-file "$OPENPGP_PRIVATE_KEY_FILE" \ --private-key-passphrase "$OPENPGP_PASSPHRASE" \ + --recreate-on-deploy true \ $AUCTION_OPTS \ $LOG_OPTS \ $EXTRA_DEPLOY_OPTS \ -- 2.45.2