Skip to content
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

[v16] docs: simplify machine-id getting started and k8s note #47571

Merged
merged 4 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
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 @@ -277,6 +277,13 @@ spec:
- editor
```

<Admonition type="note">
This example assumes the role is version `v6`. If you are using a `v7`+ role
you will need to include `verbs: ["get", "list"]` for the `kind: pod` section
in `kubernetes_resources`. Otherwise the example `kubectl get pods -A` execution
will be denied.
</Admonition>

With that privileges granted, you can now create the GitHub Actions workflow.
Create `.github/workflows/example.yaml`:

Expand Down
40 changes: 1 addition & 39 deletions docs/pages/enroll-resources/machine-id/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,8 @@ Before you create a bot user, you need to determine which role(s) you want to
assign to it. You can use the `tctl` command below to examine what roles exist
on your system.

<Tabs>
<TabItem scope={["cloud"]} label="Teleport Enterprise Cloud">
On your client machine, log in to Teleport using `tsh`, then use `tctl` to examine
what roles exist on your system.
</TabItem>
<TabItem scope={["oss","enterprise"]} label="Self-Hosted">
Connect to the Teleport Auth Server and use `tctl` to examine what roles exist on
your system.
</TabItem>

</Tabs>

```code
$ tctl get roles --format=text
Expand Down Expand Up @@ -179,29 +170,10 @@ this by omitting this.

Replace the following fields with values from your own cluster.

<Tabs>
<TabItem scope={["cloud"]} label="Teleport Enterprise Cloud">

- `token` is the token output by the `tctl bots add` command or the name of your IAM method token.
- `destination-dir` is where Machine ID writes user certificates that can be used by applications and tools.
- `data-dir` is where Machine ID writes its private data, including its own short-lived renewable certificates. These should not be used by applications and tools.
- `auth-server` is the address of your Teleport Cloud Proxy Server, for example `example.teleport.sh:443`.

</TabItem>
<TabItem scope={["oss","enterprise"]} label="Self-Hosted">

- `token` is the token output by the `tctl bots add` command or the name of your IAM method token.
- `ca-pin` is the CA Pin for your Teleport cluster, and is output by the `tctl bots add` command.
- `destination-dir` is where Machine ID writes user certificates that can be used by applications and tools.
- `data-dir` is where Machine ID writes its private data, including its own short-lived renewable certificates. These should not be used by applications and tools.
- `auth-server` is typically the address of your Teleport Proxy Server
(`teleport.example.com:443`), but can also be the address of the
Auth Server is direct connectivity is available.
`teleport.example.com:443`.

</TabItem>

</Tabs>
- `proxy-server` is the address of your Teleport Proxy service, for example `example.teleport.sh:443`.

Now that Machine ID has successfully started, let's investigate the
`/opt/machine-id` directory to see what was written to disk.
Expand Down Expand Up @@ -257,19 +229,9 @@ $ ssh -F /opt/machine-id/ssh_config root@node-name.example.com
In addition to the `ssh` client you can use `tsh`. Replace the `--proxy` parameter
with your proxy address.

<Tabs>
<TabItem scope={["oss","enterprise"]} label="Self-Hosted">
```code
$ tsh ssh --proxy=teleport.example.com -i /opt/machine-id/identity root@node-name
```
</TabItem>
<TabItem scope={["cloud"]} label="Teleport Enterprise Cloud">
```code
$ tsh ssh --proxy=mytenant.teleport.sh -i /opt/machine-id/identity root@node-name
```
</TabItem>

</Tabs>

<Admonition type="note" title="Roles must have logins defined">
The below error can occur when the bot does not have permission to log in to
Expand Down
Loading