Skip to content

Commit 00f09e2

Browse files
authored
Merge pull request #54 from egnyte/ops-31508
Set horizontal_pod_autoscaling to true by default
2 parents 4640076 + 34c882d commit 00f09e2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99
### Changed
10+
* Set `horizontal_pod_autoscaling` to `true` by default. #42
1011

1112
## [v0.4.0] - 2018-12-19
1213
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Then perform the following commands on the root folder:
9090
| Name | Description | Type | Default | Required |
9191
|------|-------------|:----:|:-----:|:-----:|
9292
| description | The description of the cluster | string | `` | no |
93-
| horizontal_pod_autoscaling | Enable horizontal pod autoscaling addon | string | `false` | no |
93+
| horizontal_pod_autoscaling | Enable horizontal pod autoscaling addon | string | `true` | no |
9494
| http_load_balancing | Enable httpload balancer addon | string | `true` | no |
9595
| ip_masq_link_local | Whether to masquerade traffic to the link-local prefix (169.254.0.0/16). | string | `false` | no |
9696
| ip_masq_resync_interval | The interval at which the agent attempts to sync its ConfigMap file from the disk. | string | `60s` | no |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ variable "master_authorized_networks_config" {
8686

8787
variable "horizontal_pod_autoscaling" {
8888
description = "Enable horizontal pod autoscaling addon"
89-
default = false
89+
default = true
9090
}
9191

9292
variable "http_load_balancing" {

0 commit comments

Comments
 (0)