Skip to content

Commit 6e75a7f

Browse files
Fix renovate (#143)
* fix(deps): update charts and images to latest * chore(deps): update module github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper to v1.55.1 * fix: SKIP UPGRADE TEST --------- Co-authored-by: Terraform IBM Modules Operations <[email protected]>
1 parent e666e8b commit 6e75a7f

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ The resulting helm release configuration, according to the `terraform plan` outp
117117

118118
```bash
119119

120+
120121
(...)
121122
# module.external_secrets_operator.helm_release.external_secrets_operator[0] will be created
122123
+ resource "helm_release" "external_secrets_operator" {

solutions/fully-configurable/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ variable "eso_image" {
145145
variable "eso_image_version" {
146146
type = string
147147
description = "The version or digest for the external secrets image to deploy. If changing the value, ensure it is compatible with the chart version set in eso_chart_version."
148-
default = "v0.16.1-ubi@sha256:329ecbb3b0f1e70d9fa81a6de403325eae39ef95f89b1633cc3bc627ba3204b5" # datasource: ghcr.io/external-secrets/external-secrets
148+
default = "v0.17.0-ubi@sha256:5c9f7750fb922fb09cfc3b430d5916923b85f17ba5099b244173344ab3046b53" # datasource: ghcr.io/external-secrets/external-secrets
149149
nullable = false
150150
validation {
151151
condition = can(regex("(^v\\d+\\.\\d+.\\d+(\\-\\w+)?(\\@sha256\\:\\w+){0,1})$", var.eso_image_version))
@@ -163,7 +163,7 @@ variable "eso_chart_location" {
163163
variable "eso_chart_version" {
164164
type = string
165165
description = "The version of the External Secrets Operator Helm chart. Ensure that the chart version is compatible with the image version specified in eso_image_version."
166-
default = "0.16.1" # registryUrl: charts.external-secrets.io
166+
default = "0.18.1" # registryUrl: charts.external-secrets.io
167167
nullable = false
168168
}
169169

@@ -287,7 +287,7 @@ variable "reloader_image" {
287287
variable "reloader_image_version" {
288288
type = string
289289
description = "The version or digest for the reloader image to deploy. If changing the value, ensure it is compatible with the chart version set in reloader_chart_version."
290-
default = "v1.4.2-ubi@sha256:e80c47260ed11f44a3b81331486f218955c4e36e82aa121d3bfdbfcab28b2055" # datasource: ghcr.io/stakater/reloader
290+
default = "v1.4.4-ubi@sha256:241bf7d42758ca958cc5a8ddecd2b1ba60c4625cc318802144820307221ea3e5" # datasource: ghcr.io/stakater/reloader
291291
nullable = false
292292
validation {
293293
condition = can(regex("(^v\\d+\\.\\d+.\\d+(\\-\\w+)?(\\@sha256\\:\\w+){0,1})$", var.reloader_image_version))
@@ -305,7 +305,7 @@ variable "reloader_chart_location" {
305305
variable "reloader_chart_version" {
306306
type = string
307307
description = "The version of the Reloader Helm chart. Ensure that the chart version is compatible with the image version specified in reloader_image_version."
308-
default = "2.1.3" # registryUrl: stakater.github.io/stakater-charts
308+
default = "2.1.4" # registryUrl: stakater.github.io/stakater-charts
309309
nullable = false
310310
}
311311

tests/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.24.4
77
require (
88
github.com/gruntwork-io/terratest v0.50.0
99
github.com/stretchr/testify v1.10.0
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.54.2
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.55.1
1111
gopkg.in/yaml.v3 v3.0.1
1212
k8s.io/apimachinery v0.33.2
1313
)

tests/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,8 +453,8 @@ github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXl
453453
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
454454
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
455455
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
456-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.54.2 h1:RSgKQbYLV6RsZzY0lzvUjPoRyZwRqJbkupKjA9B8iN4=
457-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.54.2/go.mod h1:VqiPX6tW9J87xrrrSP7NE9C5jZNmv+wRoRHDfgBYSSY=
456+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.55.1 h1:Zw6Hu1P2Csbgho0ayduyqcE8dYq5aLbRZzjT7WfO/tk=
457+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.55.1/go.mod h1:VqiPX6tW9J87xrrrSP7NE9C5jZNmv+wRoRHDfgBYSSY=
458458
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
459459
github.com/tmccombs/hcl2json v0.6.4 h1:/FWnzS9JCuyZ4MNwrG4vMrFrzRgsWEOVi+1AyYUVLGw=
460460
github.com/tmccombs/hcl2json v0.6.4/go.mod h1:+ppKlIW3H5nsAsZddXPy2iMyvld3SHxyjswOZhavRDk=

0 commit comments

Comments
 (0)