-
Notifications
You must be signed in to change notification settings - Fork 14
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
add ssh forwarding to tild yp step and correct undeploy command indoc #334
base: main
Are you sure you want to change the base?
Conversation
docs/src/developers/tilt-setup.md
Outdated
We need SSH forwarding in Tilt to securely relay authentication credentials from your local machine to containers running in the Kubernetes cluster managed by Tilt. | ||
This enables you to access remote resources that require SSH authentication | ||
|
||
Run on your local terminal : |
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.
Because it's not the only way to do ssh forwarding, I would say something like:
A way to enable SSH forwarding in a single line is to do so:
ssh -f -N -i <private_key_file> <username>@<remote_host> -L <local_port>:<destination_host>:<destination_port>
Also please use the ```sh markdown for this.
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.
done
Signed-off-by: hanenMizouni <[email protected]>
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.
Commit 3817bf0 is not signed
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.
To correct the sentence for accuracy and clarity:
"This enables access to remote resources requiring SSH authentication."
No description provided.