Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
docs/aws: Add custom labels and taints
Browse files Browse the repository at this point in the history
Signed-off-by: knrt10 <kautilya@kinvolk.io>
  • Loading branch information
knrt10 committed Aug 24, 2020
1 parent 8fa0afc commit 9b0ed9b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/configuration-reference/platforms/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ cluster "aws" {
os_version = "current"
labels = "foo=bar,baz=zab"
taints = "nodeType=storage:NoSchedule"
disk_size = var.worker_disk_size
disk_type = var.worker_disk_type
Expand Down Expand Up @@ -228,6 +232,8 @@ worker_pool "my-worker-pool" {
| `worker_pool.ssh_pubkeys` | List of SSH public keys for user `core`. Each element must be specified in a valid OpenSSH public key format, as defined in RFC 4253 Section 6.6, e.g. "ssh-rsa AAAAB3N...". | - | list(string) | true |
| `worker_pool.os_channel` | Flatcar Container Linux channel to install from (stable, beta, alpha, edge). | "stable" | string | false |
| `worker_pool.os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | string | false |
| `worker_pool.labels` | Custom labels to assign to worker nodes such as `foo=bar,baz=zab`. | - | string | false |
| `worker_pool.taints` | Taints to assign to worker nodes such as `nodeType=storage:NoSchedule`. | - | string | false |
| `worker_pool.disk_size` | Size of the EBS volume in GB. | 40 | number | false |
| `worker_pool.disk_type` | Type of the EBS volume (e.g. standard, gp2, io1). | "gp2" | string | false |
| `worker_pool.disk_iops` | IOPS of the EBS volume (e.g 100). | 0 | number | false |
Expand Down

0 comments on commit 9b0ed9b

Please sign in to comment.