diff --git a/.secrets.baseline b/.secrets.baseline index fe6ec24f..c67b4856 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -3,7 +3,7 @@ "files": "go.sum|^.secrets.baseline$", "lines": null }, - "generated_at": "2025-10-04T03:47:26Z", + "generated_at": "2025-10-10T12:27:13Z", "plugins_used": [ { "name": "AWSKeyDetector" diff --git a/ibm_catalog.json b/ibm_catalog.json index d69a9006..0e85fd5d 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -36,8 +36,12 @@ "description": "Provides multiple configuration paths for provisioning [Red Hat OpenShift clusters](https://cloud.ibm.com/docs/openshift) on IBM Cloud VPC. Supports use cases ranging from quick experimentation to production-grade deployments in regulated environments. Capabilities vary by variation, with some offering simplified onboarding and others enabling advanced integrations and compliance alignment." }, { - "title": "OpenShift Cluster with Scalable Access and Worker Management", - "description": "Deploys a Red Hat OpenShift cluster with Kubernetes-native orchestration and automated lifecycle management. All variations support [public and private access endpoints](https://cloud.ibm.com/docs/openshift?topic=openshift-access_cluster) and [worker pool](https://cloud.ibm.com/docs/openshift?topic=openshift-add-workers-vpc) configurations, enabling secure connectivity and scalable workload deployment." + "title": "Cluster connectivity", + "description": "Supports both [public and private access endpoints](https://cloud.ibm.com/docs/openshift?topic=openshift-access_cluster), enabling secure and flexible connectivity to the cluster based on your requirements." + }, + { + "title": "Custom worker pools", + "description": "Supports configurable [worker pools](https://cloud.ibm.com/docs/openshift?topic=openshift-add-workers-vpc) to scale the cluster's compute capacity. Enables efficient management of worker nodes to support application growth, high availability, and workload distribution." }, { "title": "Infrastructure Setup", diff --git a/solutions/fully-configurable/variables.tf b/solutions/fully-configurable/variables.tf index c7987401..e7d5a7e6 100644 --- a/solutions/fully-configurable/variables.tf +++ b/solutions/fully-configurable/variables.tf @@ -268,7 +268,7 @@ variable "use_private_endpoint" { variable "allow_public_access_to_cluster_management" { type = bool - description = "Set to true to allow public access to master node of the cluster by enabling public endpoint." + description = "Set to true to access the cluster through a public cloud service endpoint. [Learn More](https://cloud.ibm.com/docs/openshift?topic=openshift-access_cluster)." default = false } diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 451ae113..39c4813f 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -93,7 +93,7 @@ variable "size" { variable "allow_public_access_to_cluster_management" { type = bool - description = "Set to true to allow public access to master node of the cluster by enabling public endpoint." + description = "Set to true to access the cluster through a public cloud service endpoint. [Learn More](https://cloud.ibm.com/docs/openshift?topic=openshift-access_cluster)." default = true }