Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit d240581

Browse files
authored
feat: added support for ocp v4.16 (#330)
1 parent f24b18f commit d240581

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ You need the following permissions to run this module.
165165
| Name | Source | Version |
166166
|------|--------|---------|
167167
| <a name="module_observability_agents"></a> [observability\_agents](#module\_observability\_agents) | terraform-ibm-modules/observability-agents/ibm | 1.29.1 |
168-
| <a name="module_ocp_base"></a> [ocp\_base](#module\_ocp\_base) | terraform-ibm-modules/base-ocp-vpc/ibm | 3.31.1 |
168+
| <a name="module_ocp_base"></a> [ocp\_base](#module\_ocp\_base) | terraform-ibm-modules/base-ocp-vpc/ibm | 3.32.0 |
169169

170170
### Resources
171171

examples/end-to-end-example/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ module "key_protect_all_inclusive" {
206206

207207
locals {
208208
addons = {
209-
"cluster-autoscaler" = "1.2.0"
209+
"cluster-autoscaler" = "1.2.1"
210210
}
211211

212212
cluster_vpc_subnets = {

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ locals {
2323

2424
module "ocp_base" {
2525
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
26-
version = "3.31.1"
26+
version = "3.32.0"
2727
cluster_name = var.cluster_name
2828
ocp_version = var.ocp_version
2929
resource_group_id = var.resource_group_id

tests/pr_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func TestRunCompleteExample(t *testing.T) {
8888
t.Parallel()
8989

9090
// This test should always test the latest and the earliest supported OCP versions.
91-
versions := []string{"4.15"}
91+
versions := []string{"4.16"}
9292
for _, version := range versions {
9393
t.Run(version, func(t *testing.T) { testRunComplete(t, version) })
9494
}
@@ -99,7 +99,7 @@ func TestRunUpgradeCompleteExample(t *testing.T) {
9999

100100
terraformVars := map[string]interface{}{
101101
// This test should always test the OCP version not tested in the "TestRunCompleteExample" test.
102-
"ocp_version": "4.14",
102+
"ocp_version": "4.15",
103103
}
104104
options := setupOptions(t, "ocp-all-upg", terraformVars)
105105

variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ variable "ocp_version" {
5858
var.ocp_version == "4.13",
5959
var.ocp_version == "4.14",
6060
var.ocp_version == "4.15",
61+
var.ocp_version == "4.16",
6162
])
6263
error_message = "The specified ocp_version is not one of the validated versions."
6364
}

0 commit comments

Comments
 (0)