Skip to content

Releases: terraform-ibm-modules/terraform-ibm-base-ocp-vpc

v3.1.1

02 May 18:57
v3.1.1
5019315
Compare
Choose a tag to compare

3.1.1 (2023-05-02)

Bug Fixes

  • scope the ibm_container_cluster_versions data lookup by region to enhance performance and ensure consistent results (#160) (5019315)

v3.1.0

26 Apr 15:50
v3.1.0
d78d671
Compare
Choose a tag to compare

3.1.0 (2023-04-26)

Features

v3.0.1

30 Mar 09:02
5f11656
Compare
Choose a tag to compare

3.0.1 (2023-03-30)

Bug Fixes

  • Added example to add rules to security groups (#110) (5f11656)

v3.0.0

29 Mar 14:09
v3.0.0
c1f831e
Compare
Choose a tag to compare

3.0.0 (2023-03-29)

Refactoring

  • This change updates some of the examples (under the 'examples' folder) to create worker pools spread across availability zones, as opposed to multiple single zone worker pool. This capability always existed in the root module, but was not demonstrated specifically by the examples. The actual logic in the root module to create the worker pools has not changed.

BREAKING CHANGES

  • The defaults in the worker_pools input variable have been removed, as they were making assumptions on the value passed to the vpc_subnets input variable. The naming in the worker_pools defaults were also giving the false impression that the worker pools were defined by availability zone. worker_pools is now a mandatory input. If you relied on the defaults in version 2.X.X of the module, simply set the value worker_pools to the following when moving up to version 3.0.0
[
    {
      subnet_prefix    = "zone-1"
      pool_name        = "default"
      machine_type     = "bx2.4x16"
      workers_per_zone = 2
    },
    {
      subnet_prefix    = "zone-2"
      pool_name        = "zone-2"
      machine_type     = "bx2.4x16"
      workers_per_zone = 2
    },
    {
      subnet_prefix    = "zone-3"
      pool_name        = "zone-3"
      machine_type     = "bx2.4x16"
      workers_per_zone = 2
    }
  ]

v2.3.1

24 Mar 15:06
v2.3.1
208eb88
Compare
Choose a tag to compare

2.3.1 (2023-03-24)

Bug Fixes

  • add count to the data block so that it does not execute when var.verify_worker_network_readiness is set to false (#91) (208eb88)

v2.3.0

20 Mar 18:18
affe05f
Compare
Choose a tag to compare

2.3.0 (2023-03-20)

Features

v2.2.0

16 Mar 09:55
b2cc2c8
Compare
Choose a tag to compare

2.2.0 (2023-03-16)

Features

  • added the ability to skip the worker network readiness check using the verify_worker_network_readiness variable (#68) (b2cc2c8)

v2.1.3

15 Mar 16:01
69de277
Compare
Choose a tag to compare

2.1.3 (2023-03-15)

Bug Fixes

  • add_validation_block_in_ocp_version (#75) (69de277)

v2.1.2

15 Mar 12:08
v2.1.2
15a9160
Compare
Choose a tag to compare

2.1.2 (2023-03-15)

Bug Fixes

  • worker node timeout updated to 2 hours (#55) (15a9160)

v2.1.1

10 Mar 18:49
b9e8183
Compare
Choose a tag to compare

2.1.1 (2023-03-10)

Bug Fixes

  • update comment in code around apikey reset workaround (#64) (b9e8183)