Remove controller_preemptible option on Google Cloud

* Controller preemption is not safe or covered in documentation. Delete
the option, the variable is a holdover from old experiments
* Note, worker_preemeptible is still a great feature that's supported
This commit is contained in:
Dalton Hubble
2017-11-04 11:48:50 -07:00
parent 251a14519f
commit 26a291aef4
6 changed files with 3 additions and 20 deletions

View File

@ -45,11 +45,6 @@ resource "google_compute_instance_template" "controller" {
user-data = "${data.ct_config.controller_ign.rendered}"
}
scheduling {
automatic_restart = "${var.preemptible ? false : true}"
preemptible = "${var.preemptible}"
}
disk {
auto_delete = true
boot = true