From 351df7ec9f5ece626d42da5104be51f46ac37e71 Mon Sep 17 00:00:00 2001 From: Mateusz Kubaczyk Date: Thu, 3 Jan 2019 09:41:53 +0100 Subject: [PATCH] Set horizontal_pod_autoscaling to true by default --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 13ee276d24..9d9d8338c5 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ Then perform the following commands on the root folder: | Name | Description | Type | Default | Required | |------|-------------|:----:|:-----:|:-----:| | description | The description of the cluster | string | `` | no | -| horizontal_pod_autoscaling | Enable horizontal pod autoscaling addon | string | `false` | no | +| horizontal_pod_autoscaling | Enable horizontal pod autoscaling addon | string | `true` | no | | http_load_balancing | Enable httpload balancer addon | string | `true` | no | | ip_masq_link_local | Whether to masquerade traffic to the link-local prefix (169.254.0.0/16). | string | `false` | no | | ip_masq_resync_interval | The interval at which the agent attempts to sync its ConfigMap file from the disk. | string | `60s` | no | diff --git a/variables.tf b/variables.tf index c0d6a0a977..606557914c 100644 --- a/variables.tf +++ b/variables.tf @@ -86,7 +86,7 @@ variable "master_authorized_networks_config" { variable "horizontal_pod_autoscaling" { description = "Enable horizontal pod autoscaling addon" - default = false + default = true } variable "http_load_balancing" {