bare-metal: Add support for Calico networking

* Add variable networking with "flannel" or "calico"
This commit is contained in:
Dalton Hubble
2017-09-01 14:23:25 -07:00
parent 64435adbc3
commit 6ef326a872
3 changed files with 9 additions and 1 deletions

View File

@ -62,6 +62,12 @@ variable "asset_dir" {
type = "string"
}
variable "networking" {
description = "Choice of networking provider (flannel or calico)"
type = "string"
default = "flannel"
}
variable "pod_cidr" {
description = "CIDR IP range to assign Kubernetes pods"
type = "string"