Skip to content

Commit 75d3c0a

Browse files
authored
feat: added support for OCP version 4.19 (#64)
1 parent e36860d commit 75d3c0a

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ module "ocp_base" {
9393
addons = {
9494
"vpc-file-csi-driver" = { version = "2.0" }
9595
"openshift-data-foundation" = {
96-
version = "4.17.0"
96+
version = "4.19.0"
9797
parameters_json = <<PARAMETERS_JSON
9898
{
9999
"osdStorageClassName":"localblock",

ibm_catalog.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,10 @@
205205
{
206206
"displayname": "4.18",
207207
"value": "4.18"
208+
},
209+
{
210+
"displayname": "4.19",
211+
"value": "4.19"
208212
}
209213
]
210214
},
@@ -946,7 +950,7 @@
946950
"reference_version": true
947951
}
948952
],
949-
"version": "v3.66.0"
953+
"version": "v3.71.3"
950954
}
951955
],
952956
"dependency_version_2": true,

solutions/quickstart/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ variable "cluster_name" {
9797
variable "openshift_version" {
9898
type = string
9999
description = "Version of the OCP cluster to provision."
100-
default = "4.18"
100+
default = "4.19"
101101

102102
validation {
103103
condition = tonumber(var.openshift_version) >= 4.17

tests/resources/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@ module "ocp_base" {
8989
cluster_name = local.cluster_name
9090
force_delete_storage = true
9191
vpc_id = ibm_is_vpc.vpc.id
92-
ocp_version = "4.18"
92+
ocp_version = "4.19"
9393
vpc_subnets = local.cluster_vpc_subnets
9494
worker_pools = local.worker_pools
9595
access_tags = []
9696
disable_outbound_traffic_protection = true # set as True to enable outbound traffic; required for accessing Operator Hub in the OpenShift console.
9797
addons = {
9898
openshift-data-foundation = {
99-
version = "4.18.0"
99+
version = "4.19.0"
100100
parameters_json = <<PARAMETERS_JSON
101101
{
102102
"osdStorageClassName":"localblock",

0 commit comments

Comments
 (0)