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

Commit

Permalink
packet: Add docs for hardware reservation ids
Browse files Browse the repository at this point in the history
  • Loading branch information
rata committed Apr 16, 2020
1 parent d4c3591 commit ae57e78
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/configuration-reference/platforms/packet.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ node_type = var.custom_default_worker_type
| `service_cidr` | CIDR IPv4 range to assign Kubernetes services. | "10.3.0.0/16" | false |
| `cluster_domain_suffix` | Cluster's DNS domain. | "cluster.local" | false |
| `enable_reporting` | Enables usage or analytics reporting to upstream. | false | false |
| `reservation_ids` | Specify Packet hardware reservation ID for instances. | - | false |
| `reservation_ids_default` | Default reservation ID for nodes not listed in the `reservation_ids`. The value`next-available` will choose any reservation that matches the pool's device type and facility. | "" | false |
| `reservation_ids` | Block with Packet hardware reservation IDs for controller nodes. Each key must have the format `controller-${index}` and the value is the reservation UUID. Can't be combined with `reservation_ids_default`. Example: `reservation_ids = { controller-0 = "<reservation_id>" }`. | - | false |
| `reservation_ids_default` | Default reservation ID for controllers. The value`next-available` will choose any reservation that matches the pool's device type and facility. Can't be combined with `reservation_ids` | - | false |
| `certs_validity_period_hours` | Validity of all the certificates in hours. | 8760 | false |
| `worker_pool` | Configuration block for worker pools. There can be more than one. | - | true |
| `worker_pool.count` | Number of workers in the worker pool. Can be changed afterwards to add or delete workers. | 1 | true |
Expand All @@ -220,6 +220,8 @@ node_type = var.custom_default_worker_type
| `worker_pool.node_type` | Packet instance type for worker nodes. | "baremetal_0" | false |
| `worker_pool.labels` | Custom labels to assign to worker nodes. | - | false |
| `worker_pool.taints` | Taints to assign to worker nodes. | - | false |
| `worker_pool.reservation_ids` | Block with Packet hardware reservation IDs for worker nodes. Each key must have the format `worker-${index}` and the value is the reservation UUID. Can't be combined with `reservation_ids_default`. Example: `reservation_ids = { worker-0 = "<reservation_id>" }`. | - | false |
| `worker_pool.reservation_ids_default` | Default reservation ID for workers. The value`next-available` will choose any reservation that matches the pool's device type and facility. Can't be combined with `reservation_ids`. | - | false |
| `worker_pool.setup_raid` | Attempt to create a RAID 0 from extra disks to be used for persistent container storage. Can't be used with `setup_raid_hdd` nor `setup_raid_sdd`. | false | false |
| `worker_pool.setup_raid_hdd` | Attempt to create a RAID 0 from extra Hard Disk drives only, to be used for persistent container storage. Can't be used with `setup_raid` nor `setup_raid_sdd`. | false | false |
| `worker_pool.setup_raid_ssd` | Attempt to create a RAID 0 from extra Solid State Drives only, to be used for persistent container storage. Can't be used with `setup_raid` nor `setup_raid_hdd`. | false | false |
Expand Down

0 comments on commit ae57e78

Please sign in to comment.