Skip to content

Commit

Permalink
Merge pull request #12 from sparkfabrik/fix/remove_quotes
Browse files Browse the repository at this point in the history
fix: remove quotes from boolean value
  • Loading branch information
Monska85 authored May 15, 2024
2 parents 82afa5e + 855d7c6 commit f762b6c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.5.2] - 2024-05-15

[Compare with previous version](https://github.com/sparkfabrik/terraform-helm-ingress-nginx/compare/0.5.1...0.5.2)

### Changed

- Fix `controller.autoscaling.enabled` default value removing quotes.

## [0.5.1] - 2024-05-13

[Compare with previous version](https://github.com/sparkfabrik/terraform-helm-ingress-nginx/compare/0.5.0...0.5.1)
Expand Down
2 changes: 1 addition & 1 deletion files/values.yaml.tftpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ controller:
cpu: 50m
memory: 64Mi
autoscaling:
enabled: "true"
enabled: true
minReplicas: ${ingress_nginx_controller_min_replicas}
maxReplicas: ${ingress_nginx_controller_max_replicas}
targetCPUUtilizationPercentage: 80
Expand Down

0 comments on commit f762b6c

Please sign in to comment.