Skip to content

Commit 9f18f2e

Browse files
committed
fix(helm): need to be fixed to 2x branch or to use a breaking change
1 parent b16479d commit 9f18f2e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ repos:
5757
- id: tfupdate
5858
name: Autoupdate helm provider versions
5959
args:
60-
- --args=provider helm --version ">= 3.0.0, < 4.0.0"
60+
- --args=provider helm --version ">= 2.17.0, < 3.0.0"
6161
- id: tfupdate
6262
name: Autoupdate pass provider versions
6363
args:

k8s/helm-release/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ Deploy a kubernetes application trough helm
88
| Name | Version |
99
|------|---------|
1010
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.3 |
11-
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 3.0.0, < 4.0.0 |
11+
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.17.0, < 3.0.0 |
1212
| <a name="requirement_time"></a> [time](#requirement\_time) | ~> 0.9.1 |
1313

1414
## Providers
1515

1616
| Name | Version |
1717
|------|---------|
18-
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 3.0.0, < 4.0.0 |
18+
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 2.17.0, < 3.0.0 |
1919
| <a name="provider_time"></a> [time](#provider\_time) | ~> 0.9.1 |
2020

2121
## Modules

k8s/helm-release/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
helm = {
55
source = "hashicorp/helm",
6-
version = ">= 3.0.0, < 4.0.0"
6+
version = ">= 2.17.0, < 3.0.0"
77
}
88
time = {
99
source = "hashicorp/time",

0 commit comments

Comments
 (0)