-
Notifications
You must be signed in to change notification settings - Fork 14
install: added support install TCM #1159
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
Open
dmyger
wants to merge
6
commits into
master
Choose a base branch
from
dmyger/tntp-1095_tcm_install
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or 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
63d2c8d
to
456ebb4
Compare
The representation of program types as plain strings has been refactored into a strongly-typed enum. Methods were added to retrieve string representations matching the previous values and to obtain the corresponding executable file name for each program type. Part of #TNTP-1095
Fixed an issue where running the TcS server in the current directory created database files that were not removed after tests finished. This occasionally caused problems when running subsequent tests. The solution was to use the testing wrapper for TcS provided by the go-tarantool library. Part of #TNTP-1095
This commit adds the ability to install Tarantool cluster manager (TCM), using the command `tt install tcm`. The TCM installation process is similar to the installation of Tarantool EE. @TarantoolBot Title: added `tt install tcm` The command searches for the specified version and installs it. If no version is specified, the latest TCM version will be installed. A list of available TCM versions can be obtained using the `tt search tcm` command. **Usage Example**: ```bash tt install tcm 1.2.3-0-geae7e7d49 ``` Closes #TNTP-1095
456ebb4
to
edd9178
Compare
The handling of User Credentials for connecting to EE has been moved to the `lib/connect` package. This had little to do with the installation process, and secondly it created a dependency include loop between `cli/install_ee` and `cli/search`. Part of #TNTP-1095
Closes #TNTP-1095
43fcd4d
to
57f171f
Compare
Part of #TNTP-1095
57f171f
to
c6687a6
Compare
func newInstallTcmCmd() *cobra.Command { | ||
var tntCmd = &cobra.Command{ | ||
Use: search.ProgramTcm.String() + " [version]", | ||
Short: "Install tarantool claster manager", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggested change
Short: "Install tarantool claster manager", | |
Short: "Install tarantool cluster manager", |
Misprint.
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.
This commit adds the ability to install Tarantool cluster manager (TCM),
using the command
tt install tcm
. The TCM installation process issimilar to the installation of Tarantool EE.
@TarantoolBot
Title: added
tt install tcm
The command searches for the specified version and installs it.
If no version is specified, the latest TCM version will be installed.
A list of available TCM versions can be obtained using the
tt search tcm
command.Usage Example:
I didn't forget about (remove if it is not applicable):
Closes #TNTP-1095