From a391c2c9a79d39d0516effb43d1d24f96fb5c407 Mon Sep 17 00:00:00 2001 From: Vipin Kumar <77929205+Vipin654@users.noreply.github.com> Date: Wed, 13 Aug 2025 14:36:49 +0530 Subject: [PATCH 1/2] fix: Use RHCOS for creating OCP cluster --- examples/logs-agent-ocp/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/logs-agent-ocp/main.tf b/examples/logs-agent-ocp/main.tf index 33a25869..b89c4d58 100644 --- a/examples/logs-agent-ocp/main.tf +++ b/examples/logs-agent-ocp/main.tf @@ -96,7 +96,7 @@ locals { subnet_prefix = "default" pool_name = "default" # ibm_container_vpc_cluster automatically names default pool "default" (See https://github.com/IBM-Cloud/terraform-provider-ibm/issues/2849) machine_type = "bx2.4x16" - operating_system = "REDHAT_8_64" + operating_system = "RHCOS" workers_per_zone = 2 # minimum of 2 is allowed when using single zone } ] From 28f3f61e96039b8b778536631d596c8e79b9b59c Mon Sep 17 00:00:00 2001 From: Vipin Kumar <77929205+Vipin654@users.noreply.github.com> Date: Wed, 13 Aug 2025 14:37:43 +0530 Subject: [PATCH 2/2] Update main.tf --- tests/resources/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/resources/main.tf b/tests/resources/main.tf index 745d5540..6238ed0d 100644 --- a/tests/resources/main.tf +++ b/tests/resources/main.tf @@ -63,7 +63,7 @@ locals { pool_name = "default" # ibm_container_vpc_cluster automatically names default pool "default" (See https://github.com/IBM-Cloud/terraform-provider-ibm/issues/2849) machine_type = "bx2.4x16" workers_per_zone = 2 # minimum of 2 is allowed when using single zone - operating_system = "REDHAT_8_64" + operating_system = "RHCOS" } ] }