Skip to content

Commit

Permalink
docs: fix typos in Akamai and AWS platform docs
Browse files Browse the repository at this point in the history
Fix typos in Akamai Connected Cloud (Linode) and AWS platform docs.

Signed-off-by: Grzegorz Rozniecki <[email protected]>
Signed-off-by: Andrey Smirnov <[email protected]>
  • Loading branch information
Xaerxess authored and smira committed Apr 16, 2024
1 parent 3dd1f4e commit 7ba1855
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: "Akamai"
description: "Creating a cluster via the CLI on Akamai Cloud(Linode)."
description: "Creating a cluster via the CLI on Akamai Cloud (Linode)."
aliases:
- ../../../cloud-platforms/akamai
---

## Creating a Talos Linux Cluster on Akamai Connected Cloud via the CLI

This guide will demonstrate how to create a highly-available Kubernetes cluster with one worker using the [Akamai Connected Cloud](https://www.linode.com/) provider.
This guide will demonstrate how to create a highly available Kubernetes cluster with one worker using the [Akamai Connected Cloud](https://www.linode.com/) provider.

[Akamai Connected Cloud](https://www.linode.com/) has a very well documented [REST API](https://www.linode.com/docs/api/), and an open-source [CLI](https://www.linode.com/docs/products/tools/cli/get-started/) tool to interact with the API which will be used in this guide.
[Akamai Connected Cloud](https://www.linode.com/) has a very well-documented [REST API](https://www.linode.com/docs/api/), and an open-source [CLI](https://www.linode.com/docs/products/tools/cli/get-started/) tool to interact with the API which will be used in this guide.
Make sure to follow [installation](https://www.linode.com/docs/products/tools/cli/get-started/#installing-the-linode-cli) and authentication instructions for the `linode-cli` tool.

[jq](https://stedolan.github.io/jq/) and [talosctl]({{< relref "../../../introduction/quickstart#talosctl" >}}) also needs to be installed
Expand Down Expand Up @@ -117,8 +117,8 @@ linode-cli linodes create \
--metadata.user_data "$(base64 -i ./worker.yaml)"

linode_id=$(linode-cli linodes list --label ${LINODE_LABEL} --format id --text --no-headers)
confiig_id=$(linode-cli linodes configs-list ${linode_id} --format id --text --no-headers)
linode-cli linodes config-update ${linode_id} ${confiig_id} --kernel "linode/direct-disk"
config_id=$(linode-cli linodes configs-list ${linode_id} --format id --text --no-headers)
linode-cli linodes config-update ${linode_id} ${config_id} --kernel "linode/direct-disk"
```

### Bootstrap Etcd
Expand All @@ -140,7 +140,7 @@ talosctl --talosconfig talosconfig bootstrap

### Retrieve the `kubeconfig`

At this point we can retrieve the admin `kubeconfig` by running:
At this point, we can retrieve the admin `kubeconfig` by running:

```bash
talosctl --talosconfig talosconfig kubeconfig .
Expand All @@ -151,3 +151,9 @@ We can also watch the cluster bootstrap via:
```bash
talosctl --talosconfig talosconfig health
```

Alternatively, we can also watch the node overview, logs and real-time metrics dashboard via:

```bash
talosctl --talosconfig talosconfig dashboard
```
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ talosctl --talosconfig talosconfig health
You can also watch the performance of a node, via:

```bash
talosctl --talosconfig talosconfig dashboard
talosctl --talosconfig talosconfig dashboard
```

And use standard `kubectl` commands.

0 comments on commit 7ba1855

Please sign in to comment.