-
Notifications
You must be signed in to change notification settings - Fork 1
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 support for teleport and improve doc #19
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,20 @@ How to run integration test: | |
./test_final_exec.sh | ||
``` | ||
|
||
## How to use behind teleport | ||
|
||
First login to your teleport proxy, for example: | ||
``` | ||
tsh login --proxy=teleport-01.prd.tooling.cdkt.dev --auth=github | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please don't give our teleport server url to in a repo that will end up public There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Guess we will clean the doc when we make it public no? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we don't forget ... |
||
``` | ||
|
||
``` | ||
conduktor get application --cert $(tsh apps config --format=cert) --key $(tsh apps config --format=key) | ||
``` | ||
|
||
Or: | ||
``` | ||
export CDK_CERT=$(tsh apps config --format=cert) | ||
export CDK_KEY=$(tsh apps config --format=key) | ||
conduktor get application | ||
``` |
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.
This only work if people have like us a console instance declared as teleport application, not sure that there are many
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.
I propose we remove this section when we make this README.md public
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.
It still can be useful to know that you can use cert and key to access a console behind a secured proxy