Skip to content

Commit

Permalink
fix: Change 'enable_csr_approval' to be true by default (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrmr33 authored Jul 9, 2024
1 parent f743bb9 commit 2971c4e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<a name="unreleased"></a>
## [Unreleased]

- fix: Change 'enable_csr_approval' to be true by default
- chore: Update changelog for refs/heads/main ([#30](https://github.com/spotinst/terraform-ocean-kubernetes-controller/issues/30))


<a name="v0.0.7"></a>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module "kubernetes-controller" {
| <a name="input_deploy_metrics_server"></a> [deploy\_metrics\_server](#input\_deploy\_metrics\_server) | Controls whether the metrics server should be deployed | `bool` | `false` | no |
| <a name="input_disable_auto_update"></a> [disable\_auto\_update](#input\_disable\_auto\_update) | Controls whether the auto-update feature should be disabled | `bool` | `true` | no |
| <a name="input_disable_rightsizing"></a> [disable\_rightsizing](#input\_disable\_rightsizing) | Controls whether the rightsizing feature should be disabled | `bool` | `false` | no |
| <a name="input_enable_csr_approval"></a> [enable\_csr\_approval](#input\_enable\_csr\_approval) | Controls whether the CSR approval feature should be enabled | `bool` | `false` | no |
| <a name="input_enable_csr_approval"></a> [enable\_csr\_approval](#input\_enable\_csr\_approval) | Controls whether the CSR approval feature should be enabled | `bool` | `true` | no |
| <a name="input_image_pull_policy"></a> [image\_pull\_policy](#input\_image\_pull\_policy) | Specifies the image pull policy (one of: Always, Never, IfNotPresent) | `string` | `"Always"` | no |
| <a name="input_image_pull_secrets"></a> [image\_pull\_secrets](#input\_image\_pull\_secrets) | Specifies a list of references to secrets in the same namespace to use for pulling the image | `list(string)` | `[]` | no |
| <a name="input_namespace"></a> [namespace](#input\_namespace) | Specifies the namespace where the Ocean Controller should be deployed | `string` | `"spot-system"` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ variable "proxy_url" {
variable "enable_csr_approval" {
type = bool
description = "Controls whether the CSR approval feature should be enabled"
default = false
default = true
}

variable "disable_auto_update" {
Expand Down

0 comments on commit 2971c4e

Please sign in to comment.