Skip to content

Commit aa2a3af

Browse files
authored
Disable helm experiments by default, block Kubernetes provider 2.21.0 (cloudposse/terraform-aws-components#712)
1 parent 1f424fe commit aa2a3af

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ Consult [actions-runner-controller](https://github.com/actions-runner-controller
387387
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
388388
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.9.0 |
389389
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.0 |
390-
| <a name="requirement_kubernetes"></a> [kubernetes](#requirement\_kubernetes) | >= 2.0 |
390+
| <a name="requirement_kubernetes"></a> [kubernetes](#requirement\_kubernetes) | >= 2.0, != 2.21.0 |
391391
392392
## Providers
393393
@@ -436,7 +436,7 @@ Consult [actions-runner-controller](https://github.com/actions-runner-controller
436436
| <a name="input_existing_kubernetes_secret_name"></a> [existing\_kubernetes\_secret\_name](#input\_existing\_kubernetes\_secret\_name) | If you are going to create the Kubernetes Secret the runner-controller will use<br>by some means (such as SOPS) outside of this component, set the name of the secret<br>here and it will be used. In this case, this component will not create a secret<br>and you can leave the secret-related inputs with their default (empty) values.<br>The same secret will be used by both the runner-controller and the webhook-server. | `string` | `""` | no |
437437
| <a name="input_github_app_id"></a> [github\_app\_id](#input\_github\_app\_id) | The ID of the GitHub App to use for the runner controller. | `string` | `""` | no |
438438
| <a name="input_github_app_installation_id"></a> [github\_app\_installation\_id](#input\_github\_app\_installation\_id) | The "Installation ID" of the GitHub App to use for the runner controller. | `string` | `""` | no |
439-
| <a name="input_helm_manifest_experiment_enabled"></a> [helm\_manifest\_experiment\_enabled](#input\_helm\_manifest\_experiment\_enabled) | Enable storing of the rendered manifest for helm\_release so the full diff of what is changing can been seen in the plan | `bool` | `true` | no |
439+
| <a name="input_helm_manifest_experiment_enabled"></a> [helm\_manifest\_experiment\_enabled](#input\_helm\_manifest\_experiment\_enabled) | Enable storing of the rendered manifest for helm\_release so the full diff of what is changing can been seen in the plan | `bool` | `false` | no |
440440
| <a name="input_id_length_limit"></a> [id\_length\_limit](#input\_id\_length\_limit) | Limit `id` to this many characters (minimum 6).<br>Set to `0` for unlimited length.<br>Set to `null` for keep the existing setting, which defaults to `0`.<br>Does not affect `id_full`. | `number` | `null` | no |
441441
| <a name="input_import_profile_name"></a> [import\_profile\_name](#input\_import\_profile\_name) | AWS Profile name to use when importing a resource | `string` | `null` | no |
442442
| <a name="input_import_role_arn"></a> [import\_role\_arn](#input\_import\_role\_arn) | IAM Role ARN to use when importing a resource | `string` | `null` | no |

src/provider-helm.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ variable "kubeconfig_exec_auth_api_version" {
8585

8686
variable "helm_manifest_experiment_enabled" {
8787
type = bool
88-
default = true
88+
default = false
8989
description = "Enable storing of the rendered manifest for helm_release so the full diff of what is changing can been seen in the plan"
9090
}
9191

src/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
kubernetes = {
1414
source = "hashicorp/kubernetes"
15-
version = ">= 2.0"
15+
version = ">= 2.0, != 2.21.0"
1616
}
1717
}
1818
}

0 commit comments

Comments
 (0)