[contrib/terraform/openstack] Add supplementary node groups

* Add supplementary node groups

  To add additional ansible groups to the k8s nodes, such as
  `kube-ingress` for running ingress controller pods. Empty by default.
This commit is contained in:
Andreas Holmsten
2018-06-28 16:32:59 +02:00
parent e24f888bc4
commit b900bd6e94
5 changed files with 13 additions and 2 deletions

View File

@@ -116,3 +116,8 @@ variable "supplementary_master_groups" {
description = "supplementary kubespray ansible groups for masters, such kube-node"
default = ""
}
variable "supplementary_node_groups" {
description = "supplementary kubespray ansible groups for worker nodes, such as kube-ingress"
default = ""
}