-
Notifications
You must be signed in to change notification settings - Fork 3
feat(cli): add ansible inventory #1764
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
fl64
wants to merge
4
commits into
main
Choose a base branch
from
feat/cli/ansible-inventory
base: main
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
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,61 +1,103 @@ | ||
| # Virtualization | ||
|
|
||
| Subcommand for the command line client for Deckhouse. | ||
| Manages virtual machine-related operations in your Kubernetes cluster. | ||
|
|
||
| ### Available Commands: | ||
| * console - Connect to a console of a virtual machine. | ||
| * port-forward - Forward local ports to a virtual machine | ||
| * scp - SCP files from/to a virtual machine. | ||
| * ssh - Open an ssh connection to a virtual machine. | ||
| * vnc - Open a vnc connection to a virtual machine. | ||
| * start - Start a virtual machine. | ||
| * stop - Stop a virtual machine. | ||
| * restart - Restart a virtual machine. | ||
| * evict - Evict a virtual machine. | ||
| ### Available Commands | ||
|
|
||
| | Command | Description | | ||
| |--------------------|------------------------------------------------------------------------| | ||
| | ansible-inventory | Generate ansible inventory from virtual machines | | ||
| | console | Connect to a console of a virtual machine. | | ||
| | port-forward | Forward local ports to a virtual machine. | | ||
| | scp | SCP files from/to a virtual machine. | | ||
| | ssh | Open an SSH connection to a virtual machine. | | ||
| | vnc | Open a VNC connection to a virtual machine. | | ||
| | start | Start a virtual machine. | | ||
| | stop | Stop a virtual machine. | | ||
| | restart | Restart a virtual machine. | | ||
| | evict | Evict a virtual machine. | | ||
|
|
||
| ### Examples | ||
|
|
||
| #### ansible-inventory | ||
|
|
||
| ```shell | ||
| # Get inventory (default: YAML format) | ||
| d8 virtualization ansible-inventory | ||
| d8 virtualization ansible-inventory --list | ||
|
|
||
| # Get host variables | ||
| d8 virtualization ansible-inventory --host myvm.mynamespace | ||
|
|
||
| # Specify namespace | ||
| d8 virtualization ansible-inventory -n mynamespace | ||
|
|
||
| # Specify output format (json, ini, yaml) | ||
| d8 virtualization ansible-inventory -o json | ||
| d8 virtualization ansible-inventory -o yaml | ||
| d8 virtualization ansible-inventory -o ini | ||
| ``` | ||
|
|
||
| #### console | ||
|
|
||
| ```shell | ||
| d8 virtualization console myvm | ||
| d8 virtualization console myvm.mynamespace | ||
| ``` | ||
|
|
||
| #### port-forward | ||
|
|
||
| ```shell | ||
| d8 virtualization port-forward myvm tcp/8080:8080 | ||
| d8 virtualization port-forward --stdio=true myvm.mynamespace 22 | ||
| ``` | ||
|
|
||
| #### scp | ||
|
|
||
| ```shell | ||
| d8 virtualization scp myfile.bin user@myvm:myfile.bin | ||
| d8 virtualization scp user@myvm:myfile.bin ~/myfile.bin | ||
| ``` | ||
|
|
||
| #### ssh | ||
|
|
||
| ```shell | ||
| d8 virtualization --identity-file=/path/to/ssh_key ssh [email protected] | ||
| d8 virtualization ssh --local-ssh=true --namespace=mynamespace --username=user myvm | ||
| ``` | ||
|
|
||
| #### vnc | ||
|
|
||
| ```shell | ||
| d8 virtualization vnc myvm.mynamespace | ||
| d8 virtualization vnc myvm -n mynamespace | ||
| ``` | ||
|
|
||
| #### start | ||
|
|
||
| ```shell | ||
| d8 virtualization start myvm.mynamespace --wait | ||
| d8 virtualization start myvm.mynamespace --wait | ||
| d8 virtualization start myvm -n mynamespace | ||
| ``` | ||
|
|
||
| #### stop | ||
|
|
||
| ```shell | ||
| d8 virtualization stop myvm.mynamespace --force | ||
| d8 virtualization stop myvm -n mynamespace | ||
| d8 virtualization stop myvm.mynamespace --force | ||
| d8 virtualization stop myvm -n mynamespace | ||
| ``` | ||
|
|
||
| #### restart | ||
|
|
||
| ```shell | ||
| d8 virtualization restart myvm.mynamespace --timeout=1m | ||
| d8 virtualization restart myvm -n mynamespace | ||
| ``` | ||
|
|
||
| #### evict | ||
|
|
||
| ```shell | ||
| d8 virtualization evict myvm.mynamespace | ||
| d8 virtualization evict myvm -n mynamespace | ||
| ``` | ||
| ``` | ||
Oops, something went wrong.
Oops, something went wrong.
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.
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.