From 96df5377b0f2aa173a8ca375f0a3ea00a3cb604c Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Wed, 26 Jun 2024 09:22:15 +0200
Subject: [PATCH] chore(deps): update minor-grouped (#24)
* chore(deps): update minor-grouped
| datasource | package | from | to |
| -------------- | ---------------------------- | -------- | -------- |
| endoflife-date | red-hat-openshift | 4.14.21 | 4.15.17 |
| github-tags | renovatebot/pre-commit-hooks | 37.414.1 | 37.417.1 |
* upgrade openshift version to 4.15.17
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Leo J. <153937047+leiicamundi@users.noreply.github.com>
---
.pre-commit-config.yaml | 2 +-
modules/rosa-hcp/README.md | 2 +-
modules/rosa-hcp/vars.tf | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 7dc9bb2..1b83d06 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -22,7 +22,7 @@ repos:
- id: actionlint-docker
- repo: https://github.com/renovatebot/pre-commit-hooks
- rev: 37.414.1
+ rev: 37.417.1
hooks:
- id: renovate-config-validator
args: ["--strict"]
diff --git a/modules/rosa-hcp/README.md b/modules/rosa-hcp/README.md
index 0a41949..15fa0c0 100644
--- a/modules/rosa-hcp/README.md
+++ b/modules/rosa-hcp/README.md
@@ -24,7 +24,7 @@
| [htpasswd\_password](#input\_htpasswd\_password) | htpasswd password | `string` | n/a | yes |
| [htpasswd\_username](#input\_htpasswd\_username) | htpasswd username | `string` | `"kubeadmin"` | no |
| [offline\_access\_token](#input\_offline\_access\_token) | The Red Hat OCM API access token for your account | `string` | n/a | yes |
-| [openshift\_version](#input\_openshift\_version) | The version of ROSA to be deployed | `string` | `"4.14.21"` | no |
+| [openshift\_version](#input\_openshift\_version) | The version of ROSA to be deployed | `string` | `"4.15.17"` | no |
| [replicas](#input\_replicas) | The number of computer nodes to create. Must be a minimum of 2 for a single-AZ cluster, 3 for multi-AZ. | `string` | `"2"` | no |
| [url](#input\_url) | Provide OCM environment by setting a value to url | `string` | `"https://api.openshift.com"` | no |
| [vpc\_cidr\_block](#input\_vpc\_cidr\_block) | value of the CIDR block to use for the VPC | `string` | `"10.66.0.0/16"` | no |
diff --git a/modules/rosa-hcp/vars.tf b/modules/rosa-hcp/vars.tf
index 572ee2c..5f04f35 100644
--- a/modules/rosa-hcp/vars.tf
+++ b/modules/rosa-hcp/vars.tf
@@ -9,7 +9,7 @@ variable "openshift_version" {
type = string
description = "The version of ROSA to be deployed"
# renovate: datasource=endoflife-date depName=red-hat-openshift versioning=semver
- default = "4.14.21"
+ default = "4.15.17"
validation {
condition = can(regex("^[0-9]*[0-9]+.[0-9]*[0-9]+.[0-9]*[0-9]+$", var.openshift_version))
error_message = "openshift_version must be with structure .. (for example 4.13.6)."