-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Get installer working with testnet-5 [DEV-2001] #490
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* remove configureCmd * remove post_install method from installer.py * remove add-observer.sh from upgrade/cosmovisor * remove add-observer.sh from interactive-install * remove post_install method usage * keep post_install method empty * Update config.toml and app.toml defaults * Bump alpine image version to latest * Update default persistent flags * Set --gas flag correctly * Delete legacy interactive test folder * Add installer test to workflow * Update package-lock.json * Fix workflow syntax error in interactive-installer job * add questionary to bump cosmovisor * move bump logic to setup_cosmovisor * Check for success * Change existing install check * Update existing installation check * Update installer check * Fix linter issue * Update test.yml * Fix linter error * Update test.yml * Debugging installer flow * Update build.yml * Set up tmate on failure * Try Andrew's technique * Change home path * Fix home path * Update installer.py * auto detect os arch for cosmovisor binary * set default bump cosmovisor to yes * set correct OS arch * keep first install steps only in setup_cosmovisor * set cosmovisor ENV vars * remove sudo from export * write to .profile using python * Move filesx * fix path to .profile * log cosmovisor version when upgrade * update .profile for current session * exec source ~/.profile without stdout * add execute permission * Update installer.py * add try/except * get version anyway * suppress err in bash * add new line * Delete outdated Cosmovisor check * Create answers.txt * Disable tmate * use v1.2.0 instead * try appending to .bashrc * try with os.environ * compare version and ask for bump * rename function * suppress error * wrap std output in triple quotes * add logs * fix getting current version * handle edge case * add more info * fix typo * remove logs * semantics * add bump logic * avoid fresh install during upgrade * Debug only * Update build.yml * move new binary to installation directory * try cosmovisor init * extract to methods * set ENV vars right after cosmovisor install * edit upgrade steps * add logs * keep only interview logic at ask * add fixes * move info log * minor fix * stop and reload cosmovisor systemd during bump * fix fresh install * add logs * more logs * more log * logs * more logs * add try except * logs * fix * logs * logs * logs * logs * logs * fix * fix * fix env var check * remove unused function * move getting cosmovisor download url to its own function * check if .bashrc is writable or not * fix syntax issues * change ~ ownership to cheqd * fix quotes syntax * temporarily disable editing current user .bashrc * remove is_file_writable * write to file and read version for it * remove using os * add logs * use tee * remove debug logs * write to bashrc python way * add fix * update installer.py * Check default shell * extract download and unzip to its own method * reuse download_and_unzip * add logs * revert changes * fix wrap in directory issue for versions lower than 1.0.1 * Update build.yml * First we should check all existing different OS release, then we should report about failure * Add cosmovisor path to default PATH * Remove previous commit code * Reverse code * Change runner from ubuntu-latest to ubuntu-20.04 * Fix linter mistakes * Reset to version in develop * Reset more correctly to develop branch * Fix merge errors * Delete Dockerfile approach * Move installer test to test pipeline * Rename to install from scratch * Create upgrade-existing.txt * Add upgrade path test Co-authored-by: Benyam Seifu <[email protected]> Co-authored-by: Alexander Kolesov <[email protected]> Co-authored-by: Benyam Seifu <[email protected]> Co-authored-by: Filip Djokic <[email protected]> Co-authored-by: abdulla-ashurov <[email protected]> Co-authored-by: abdulla-ashurov <[email protected]>
Task linked: DEV-2001 Fix interactive installer |
ankurdotb
changed the title
fix: Get installer working with testnet-5 [DEV-2001]
chore: Get installer working with testnet-5 [DEV-2001]
Dec 21, 2022
ankurdotb
changed the title
chore: Get installer working with testnet-5 [DEV-2001]
fix: Get installer working with testnet-5 [DEV-2001]
Dec 21, 2022
Toktar
pushed a commit
to canow-co/cheqd-node
that referenced
this pull request
Dec 28, 2022
* Update legacy version in test pipeline * Update comment in app.gox * Provide github token * Remove strip components * ci: Execute interactive installer test [DEV-1944] (cheqd#460) * remove configureCmd * remove post_install method from installer.py * remove add-observer.sh from upgrade/cosmovisor * remove add-observer.sh from interactive-install * remove post_install method usage * keep post_install method empty * Update config.toml and app.toml defaults * Bump alpine image version to latest * Update default persistent flags * Set --gas flag correctly * Delete legacy interactive test folder * Add installer test to workflow * Update package-lock.json * Fix workflow syntax error in interactive-installer job * add questionary to bump cosmovisor * move bump logic to setup_cosmovisor * Check for success * Change existing install check * Update existing installation check * Update installer check * Fix linter issue * Update test.yml * Fix linter error * Update test.yml * Debugging installer flow * Update build.yml * Set up tmate on failure * Try Andrew's technique * Change home path * Fix home path * Update installer.py * auto detect os arch for cosmovisor binary * set default bump cosmovisor to yes * set correct OS arch * keep first install steps only in setup_cosmovisor * set cosmovisor ENV vars * remove sudo from export * write to .profile using python * Move filesx * fix path to .profile * log cosmovisor version when upgrade * update .profile for current session * exec source ~/.profile without stdout * add execute permission * Update installer.py * add try/except * get version anyway * suppress err in bash * add new line * Delete outdated Cosmovisor check * Create answers.txt * Disable tmate * use v1.2.0 instead * try appending to .bashrc * try with os.environ * compare version and ask for bump * rename function * suppress error * wrap std output in triple quotes * add logs * fix getting current version * handle edge case * add more info * fix typo * remove logs * semantics * add bump logic * avoid fresh install during upgrade * Debug only * Update build.yml * move new binary to installation directory * try cosmovisor init * extract to methods * set ENV vars right after cosmovisor install * edit upgrade steps * add logs * keep only interview logic at ask * add fixes * move info log * minor fix * stop and reload cosmovisor systemd during bump * fix fresh install * add logs * more logs * more log * logs * more logs * add try except * logs * fix * logs * logs * logs * logs * logs * fix * fix * fix env var check * remove unused function * move getting cosmovisor download url to its own function * check if .bashrc is writable or not * fix syntax issues * change ~ ownership to cheqd * fix quotes syntax * temporarily disable editing current user .bashrc * remove is_file_writable * write to file and read version for it * remove using os * add logs * use tee * remove debug logs * write to bashrc python way * add fix * update installer.py * Check default shell * extract download and unzip to its own method * reuse download_and_unzip * add logs * revert changes * fix wrap in directory issue for versions lower than 1.0.1 * Update build.yml * First we should check all existing different OS release, then we should report about failure * Add cosmovisor path to default PATH * Remove previous commit code * Reverse code * Change runner from ubuntu-latest to ubuntu-20.04 * Fix linter mistakes * Reset to version in develop * Reset more correctly to develop branch * Fix merge errors * Delete Dockerfile approach * Move installer test to test pipeline * Rename to install from scratch * Create upgrade-existing.txt * Add upgrade path test Co-authored-by: Benyam Seifu <[email protected]> Co-authored-by: Alexander Kolesov <[email protected]> Co-authored-by: Benyam Seifu <[email protected]> Co-authored-by: Filip Djokic <[email protected]> Co-authored-by: abdulla-ashurov <[email protected]> Co-authored-by: abdulla-ashurov <[email protected]> * Remove github token * Fix shields Co-authored-by: Benyam Seifu <[email protected]> Co-authored-by: Alexander Kolesov <[email protected]> Co-authored-by: Benyam Seifu <[email protected]> Co-authored-by: Filip Djokic <[email protected]> Co-authored-by: abdulla-ashurov <[email protected]> Co-authored-by: abdulla-ashurov <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.