-
-
Notifications
You must be signed in to change notification settings - Fork 22
Migration of microcks-cli using cobra cli and viper. #112
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
Conversation
Signed-off-by: Arthur Broudoux <[email protected]> Signed-off-by: Luxxgit2k4 <[email protected]>
Signed-off-by: Laurent Broudoux <[email protected]> Signed-off-by: Luxxgit2k4 <[email protected]>
…ft for the BOM Signed-off-by: Laurent Broudoux <[email protected]> Signed-off-by: Luxxgit2k4 <[email protected]>
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.10.0 to 6.13.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6.10.0...v6.13.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Luxxgit2k4 <[email protected]>
Signed-off-by: Laurent Broudoux <[email protected]> Signed-off-by: Luxxgit2k4 <[email protected]>
Signed-off-by: Luxxgit2k4 <[email protected]>
…ver. Signed-off-by: Luxxgit2k4 <[email protected]>
… of the existing commands Signed-off-by: Luxxgit2k4 <[email protected]>
Signed-off-by: Luxxgit2k4 <[email protected]>
Signed-off-by: Luxxgit2k4 <[email protected]>
Signed-off-by: Luxxgit2k4 <[email protected]>
Signed-off-by: Luxxgit2k4 <[email protected]>
Signed-off-by: Luxxgit2k4 <[email protected]>
Signed-off-by: Luxxgit2k4 <[email protected]>
142622b to
1772b60
Compare
|
This pull request has been automatically marked as stale because it has not had recent activity 😴 It will be closed in 30 days if no further activity occurs. To unstale this pull request, add a comment with detailed explanation. There can be many reasons why some specific pull request has no activity. The most probable cause is lack of time, not lack of interest. Microcks is a Cloud Native Computing Foundation project not owned by a single for-profit company. It is a community-driven initiative ruled under open governance model. Let us figure out together how to push this pull request forward. Connect with us through one of many communication channels we established here. Thank you for your patience ❤️ |
|
Now done in |
Used cobra-cli for proper structure of the commands. And added viper for configuration management. For example: start command uses viper for port configuration and import command uses it in retreiving the flag values.
new commands added:
microcks-cli start --port port_number : Starts the microcks server on your desired port by pulling the docker image.
microcks-cli start: Run the server on default port 8585.
microcks-cli stop: Stops the docker container thereby stopping the server.
The other commands are structured and slightly changed using the cobra cli.