nebula/modules/bootkube/variables.tf
Nemo 7214355a89 [k8s] Adds kubelet, start stitching things together
Challenges:

1. etcd booting before bootkube meant I missed certs
2. etcd can run without certs, but managing docker network
   over static pod manifests might be tricky :fingers_crossed:
2019-01-27 02:49:55 +05:30

36 lines
489 B
HCL

// Based on https://github.com/v1k0d3n/dockerfiles/tree/master/bootkube
variable "k8s_host" {
description = "kubenetes hostname"
}
variable "host_port" {
default = "8443"
}
variable "network_provider" {
default = "flannel"
}
variable "host_ip" {}
variable "pod_cidr" {
default = "10.25.0.0/16"
}
variable "service_cidr" {
default = "10.96.0.0/16"
}
variable "mode" {}
variable "version" {
default = "0.14.0"
}
variable "depends_on" {
default = []
type = "list"
}