We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example, if you run vagrant boxes, you can do:
$ vagrant ssh-config core-02 Host core-02 HostName 127.0.0.1 User core Port 2200 UserKnownHostsFile /dev/null StrictHostKeyChecking no PasswordAuthentication no IdentityFile /Users/kimmo/Projects/go/src/github.com/k0sproject/k0sctl/.vagrant/machines/core-02/virtualbox/private_key IdentitiesOnly yes LogLevel FATAL
If you put this into your ~/.ssh/config, it would be nice if you could do something like this in rig-using apps:
hosts: - ssh: address: core-02
As an alternative, something like this could be nice too:
hosts: - ssh: config: | Host core-02 HostName 127.0.0.1 User core Port 2200
The text was updated successfully, but these errors were encountered:
Solved in #145
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
For example, if you run vagrant boxes, you can do:
If you put this into your ~/.ssh/config, it would be nice if you could do something like this in rig-using apps:
As an alternative, something like this could be nice too:
The text was updated successfully, but these errors were encountered: