Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(openshift): update patch release #45

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/rosa-create-cluster/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ inputs:
description: 'Version of the OpenShift to install'
required: true
# renovate: datasource=endoflife-date depName=red-hat-openshift versioning=semver
default: "4.16.5"
default: "4.16.6"
replicas:
description: 'Number of replicas for the ROSA cluster'
required: true
Expand Down
2 changes: 1 addition & 1 deletion modules/rosa-hcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
| <a name="input_htpasswd_username"></a> [htpasswd\_username](#input\_htpasswd\_username) | htpasswd username | `string` | `"kubeadmin"` | no |
| <a name="input_machine_cidr_block"></a> [machine\_cidr\_block](#input\_machine\_cidr\_block) | value of the CIDR block to use for the machine | `string` | `"10.0.0.0/18"` | no |
| <a name="input_offline_access_token"></a> [offline\_access\_token](#input\_offline\_access\_token) | The Red Hat OCM API access token for your account | `string` | n/a | yes |
| <a name="input_openshift_version"></a> [openshift\_version](#input\_openshift\_version) | The version of ROSA to be deployed | `string` | `"4.16.5"` | no |
| <a name="input_openshift_version"></a> [openshift\_version](#input\_openshift\_version) | The version of ROSA to be deployed | `string` | `"4.16.6"` | no |
| <a name="input_pod_cidr_block"></a> [pod\_cidr\_block](#input\_pod\_cidr\_block) | value of the CIDR block to use for the pods | `string` | `"10.0.64.0/18"` | no |
| <a name="input_replicas"></a> [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 |
| <a name="input_service_cidr_block"></a> [service\_cidr\_block](#input\_service\_cidr\_block) | value of the CIDR block to use for the services | `string` | `"10.0.128.0/18"` | no |
Expand Down
2 changes: 1 addition & 1 deletion modules/rosa-hcp/vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.5"
default = "4.16.6"
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 <major>.<minor>.<patch> (for example 4.13.6)."
Expand Down
Loading