typhoon/bare-metal/container-linux/kubernetes/cl
Dalton Hubble ab7913a061 Accept initial worker node labels and taints map on bare-metal
* Add `worker_node_labels` map from node name to a list of initial
node label strings
* Add `worker_node_taints` map from node name to a list of initial
node taint strings
* Unlike cloud platforms, bare-metal node labels and taints
are defined via a map from node name to list of labels/taints.
Bare-metal clusters may have heterogeneous hardware so per node
labels and taints are accepted
* Only worker node names are allowed. Workloads are not scheduled
on controller nodes so altering their labels/taints isn't suitable

```
module "mercury" {
  ...

  worker_node_labels = {
    "node2" = ["role=special"]
  }

  worker_node_taints = {
    "node2" = ["role=special:NoSchedule"]
  }
}
```

Related: https://github.com/poseidon/typhoon/issues/429
2020-03-09 00:12:02 -07:00
..
controller.yaml Change Container Linux etcd-member to fetch with docker:// 2020-03-02 19:57:45 -08:00
install.yaml Rename CLC files and favor Terraform list index syntax 2019-12-28 12:14:01 -08:00
worker.yaml Accept initial worker node labels and taints map on bare-metal 2020-03-09 00:12:02 -07:00