Skip to content

Commit

Permalink
Merge pull request #255 from hollaex/testnet
Browse files Browse the repository at this point in the history
HollaEx CLI v2.4.7 Release
  • Loading branch information
kycfeel authored Sep 26, 2022
2 parents 045036f + b8a1a97 commit 6e0a65e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
7 changes: 6 additions & 1 deletion hollaex
Original file line number Diff line number Diff line change
Expand Up @@ -1441,6 +1441,11 @@ elif [[ "$1" == "setup" ]]; then
echo "Skipping the command confirmation."
shift; continue
;;
--no_db_init)
NO_DB_INIT=true
echo "Skipping to initialize the db."
shift; continue
;;
--ignore_compatibility_check)
IGNORE_COMPATIBILITY_CHECK=true
echo "Warning: HollaEx CLI will ignore all compatibility checkes for HollaEx Core and Kit."
Expand Down Expand Up @@ -1767,7 +1772,7 @@ elif [[ "$1" == "setup" ]]; then

run_and_upgrade_hollaex_on_kubernetes

fi
fi

if [[ "$ENVIRONMENT_KUBERNETES_S3_BACKUP_CRONJOB_ACCESSKEY" ]] && [[ "$ENVIRONMENT_KUBERNETES_S3_BACKUP_CRONJOB_SECRETKEY" ]]; then

Expand Down
12 changes: 10 additions & 2 deletions tools_generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4905,8 +4905,16 @@ function run_and_upgrade_hollaex_on_kubernetes() {

if [[ "$HOLLAEX_IS_SETUP" == true ]]; then

# Running database job for Kubernetes
kubernetes_database_init launch;
if [[ "$NO_DB_INIT" ]]; then

echo "Skipping the db initialization"

else

# Running database job for Kubernetes
kubernetes_database_init launch;

fi

else

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.6
2.4.7

0 comments on commit 6e0a65e

Please sign in to comment.