Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,14 @@ jobs:
- name: Fetch Teleport binaries
uses: teleport-actions/setup@v1
with:
version: (=teleport.version=)
version: auto
# Replace with the address of your Teleport Proxy Service.
proxy: example.teleport.sh:443
- name: Fetch credentials using Machine ID
id: auth
uses: teleport-actions/auth@v2
with:
# Use the address of the auth/proxy server for your own cluster.
# Replace with the address of your Teleport Proxy Service.
proxy: example.teleport.sh:443
# Use the name of the join token resource you created in step 1.
token: example-bot
Expand Down Expand Up @@ -313,11 +315,13 @@ jobs:
- name: Fetch Teleport binaries
uses: teleport-actions/setup@v1
with:
version: (=teleport.version=)
version: auto
# Replace with the address of your Teleport Proxy Service.
proxy: example.teleport.sh:443
- name: Fetch credentials using Machine ID
uses: teleport-actions/auth-k8s@v2
with:
# Use the address of the auth/proxy server for your own cluster.
# Replace with the address of your Teleport Proxy Service.
proxy: example.teleport.sh:443
# Use the name of the join token resource you created in step 1.
token: example-bot
Expand All @@ -333,8 +337,7 @@ jobs:

Replace:

- `example.teleport.sh:443` with the address of your Teleport Proxy or cloud
tenant.
- `example.teleport.sh:443` with the address of your Teleport Proxy Service.
- `example-bot` with the name of the token you created in a previous step.
- `my-kubernetes-cluster` with the name of your Kubernetes cluster.

Expand Down Expand Up @@ -376,8 +379,7 @@ outputs: []

Replace:

- `example.teleport.sh:443` with the address of your Teleport Proxy or
Auth Service. Prefer using the address of a Teleport Proxy.
- `example.teleport.sh:443` with the address of your Teleport Proxy Service.
- `example-bot` with the name of the token you created in the first step.

Now you can define a GitHub Actions workflow that will start `tbot` with this
Expand Down Expand Up @@ -409,7 +411,9 @@ jobs:
- name: Fetch Teleport binaries
uses: teleport-actions/setup@v1
with:
version: (=teleport.version=)
version: auto
# Replace with the address of your Teleport Proxy Service.
proxy: example.teleport.sh:443
- name: Execute Machine ID
env:
# TELEPORT_ANONYMOUS_TELEMETRY enables the submission of anonymous
Expand Down
Loading