-
Notifications
You must be signed in to change notification settings - Fork 15
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
Merged
Merged
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
43fcd4d
to
57f171f
Compare
57f171f
to
c6687a6
Compare
cae4a59
to
51c77de
Compare
oleg-jukovec
requested changes
May 13, 2025
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.
Please correct the non-critical comments below.
AlexandrLitkevich
approved these changes
May 14, 2025
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
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
51c77de
to
622b4bc
Compare
Part of #TNTP-1095
622b4bc
to
58570fb
Compare
oleg-jukovec
approved these changes
May 15, 2025
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