-
Notifications
You must be signed in to change notification settings - Fork 1.9k
docs: Convert text links to TileGrid for MWI configuration and deployment #59775
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,46 +42,129 @@ authentication methods: | |
|
||
## Deployment guides | ||
|
||
The guides in this section show you how to deploy Machine ID and join it | ||
to your cluster. Choose a guide based on the platform where you intend to run | ||
Machine ID. | ||
The guides in this section show you how to deploy Machine ID and join it to your cluster. | ||
Choose a guide based on the platform where you intend to run Machine ID. | ||
|
||
If a specific guide does not exist for your platform, the [Linux | ||
guide](linux.mdx) is compatible with most platforms. For | ||
custom approaches, you can also read the [Machine ID Reference](../../../reference/machine-workload-identity/machine-id/machine-id.mdx) | ||
and [Architecture](../../../reference/architecture/machine-id-architecture.mdx) to plan your deployment. | ||
|
||
### Self-hosted infrastructure | ||
|
||
Read the following guides for how to deploy Machine ID on your cloud platform or | ||
on-prem infrastructure. | ||
|
||
| Platform | Installation method | Join method | | ||
|----------------------------------------|-------------------------------------------------|-----------------------------------------------------| | ||
| [Linux](linux.mdx) | Package manager or TAR archive | Static join token | | ||
| [Linux (TPM)](linux-tpm.mdx) | Package manager or TAR archive | Attestation from TPM 2.0 | | ||
| [Linux (Bound Keypair)][bound-keypair] | Package manager or TAR archive | Bound Keypair | | ||
| [GCP](gcp.mdx) | Package manager, TAR archive, or Kubernetes pod | Identity document signed by GCP | | ||
| [AWS](aws.mdx) | Package manager, TAR archive, or Kubernetes pod | Identity document signed by AWS | | ||
| [Azure](azure.mdx) | Package manager or TAR archive | Identity document signed by Azure | | ||
| [Kubernetes](kubernetes.mdx) | Kubernetes pod | Identity document signed by your Kubernetes cluster | | ||
| [Kubernetes OIDC](kubernetes-oidc.mdx) | Kubernetes pod on a cloud provider with OIDC | Identity document signed by your cloud provider | | ||
<TileGrid | ||
tiles={[ | ||
{ | ||
icon: <Icon name="aws" size="xl" />, | ||
to: "./aws", | ||
name: "AWS", | ||
}, | ||
{ | ||
icon: <Icon name="azure" size="xl" />, | ||
to: "./azure", | ||
name: "Azure", | ||
}, | ||
{ | ||
icon: <Icon name="azureDevops" size="xl" />, | ||
to: "./azure-devops", | ||
name: "Azure DevOps", | ||
}, | ||
{ | ||
icon: <Icon name="bitbucket" size="xl" />, | ||
to: "./bitbucket", | ||
name: "BitBucket Pipelines", | ||
}, | ||
{ | ||
icon: <Icon name="circleci" size="xl" />, | ||
to: "./circleci", | ||
name: "CircleCI", | ||
}, | ||
{ | ||
icon: <Icon name="gitlab" size="xl" />, | ||
to: "./gitlab", | ||
name: "GitLab CI", | ||
}, | ||
{ | ||
icon: <Icon name="githubActions" size="xl" />, | ||
to: "./github-actions", | ||
name: "GitHub Actions", | ||
}, | ||
{ | ||
icon: <Icon name="googleCloud" size="xl" />, | ||
to: "./gcp", | ||
name: "Google Cloud", | ||
}, | ||
{ | ||
icon: <Icon name="kubernetes2" size="xl" />, | ||
to: "./kubernetes", | ||
name: "Kubernetes", | ||
}, | ||
{ | ||
icon: <Icon name="kubernetes" size="xl" />, | ||
to: "./kubernetes-oidc", | ||
name: "Kubernetes OIDC", | ||
}, | ||
{ | ||
icon: <Icon name="linux" size="xl" />, | ||
to: "./linux", | ||
name: "Linux", | ||
}, | ||
{ | ||
icon: <Icon name="linux-servers" size="xl" />, | ||
to: "./linux-tpm", | ||
name: "Linux TPM", | ||
}, | ||
{ | ||
icon: <Icon name="lock" size="xl" />, | ||
to: "../../reference/machine-workload-identity/machine-id/bound-keypair/getting-started", | ||
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. Hmm, looks like this link is broken? I think it needs one more |
||
name: "Bound Keypair Joining", | ||
} | ||
]} | ||
/> | ||
|
||
### CI/CD | ||
|
||
Read the following guides for how to deploy Machine ID on a continuous | ||
integration and continuous deployment platform | ||
|
||
| Platform | Installation method | Join method | | ||
|--------------------------------------------------------------------------------------------------------|---------------------------------------------------------------|------------------------------------------| | ||
| [Azure DevOps](azure-devops.mdx) | TAR archive | Azure DevOps-signed identity document | | ||
| [Bitbucket Pipelines](bitbucket.mdx) | TAR archive | Bitbucket-signed identity document | | ||
| [CircleCI](circleci.mdx) | TAR archive | CircleCI-signed identity document | | ||
| [GitLab](gitlab.mdx) | TAR archive | GitLab-signed identity document | | ||
| [GitHub Actions](github-actions.mdx) | Teleport job available through the GitHub Actions marketplace | GitHub-signed identity document. | | ||
| [Jenkins](jenkins.mdx) | Package manager or TAR archive | Static join token | | ||
| [Spacelift](../../../zero-trust-access/infrastructure-as-code/terraform-provider/spacelift.mdx) | Docker Image | Spacelift-signed identity document | | ||
| [Terraform Cloud](../../../zero-trust-access/infrastructure-as-code/terraform-provider/terraform-cloud.mdx) | Teleport Terraform Provider via Teleport's Terraform Registry | Terraform Cloud-signed identity document | | ||
|
||
|
||
[bound-keypair]: ../../../reference/machine-workload-identity/machine-id/bound-keypair/getting-started.mdx | ||
Read the following guides for how to deploy Machine ID on a continuous integration and continuous deployment platform. | ||
|
||
<TileGrid | ||
tiles={[ | ||
{ | ||
icon: <Icon name="azureDevops" size="xl" />, | ||
to: "./azure-devops", | ||
name: "Azure DevOps", | ||
}, | ||
{ | ||
icon: <Icon name="bitbucket" size="xl" />, | ||
to: "./bitbucket", | ||
name: "BitBucket Pipelines", | ||
}, | ||
{ | ||
icon: <Icon name="circleci" size="xl" />, | ||
to: "./circleci", | ||
name: "CircleCI", | ||
}, | ||
{ | ||
icon: <Icon name="gitlab" size="xl" />, | ||
to: "./gitlab", | ||
name: "GitLab CI", | ||
}, | ||
{ | ||
icon: <Icon name="githubActions" size="xl" />, | ||
to: "./github-actions", | ||
name: "GitHub Actions", | ||
}, | ||
{ | ||
icon: <Icon name="jenkins" size="xl" />, | ||
to: "./jenkins", | ||
name: "Jenkins", | ||
}, | ||
{ | ||
icon: <Icon name="spacelift" size="xl" />, | ||
to: "../../zero-trust-access/infrastructure-as-code/terraform-provider/spacelift", | ||
name: "Spacelift", | ||
}, | ||
{ | ||
icon: <Icon name="terraform" size="xl" />, | ||
to: "../../zero-trust-access/infrastructure-as-code/terraform-provider/terraform-cloud", | ||
name: "Terraform Cloud", | ||
} | ||
]} | ||
/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.