oracle-terraform-modules/terraform-oci-oke

OKE Cluster Add-ons and Configuration

matkam opened this issue ยท 1 comments

Community Note

  • Please vote on this issue by adding a ๐Ÿ‘ reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

There are several add-ons available for OKE clusters in the web dashboard, as well as configuration options for each add-on. This is a feature request to add the ability to enable/disable all available add-ons, and to be able to configure them as well.

New or Affected Resource(s)

oci_containerengine_cluster

Potential Terraform Configuration

resource "oci_containerengine_cluster" "test_cluster" {
    options {
        add_ons {
            core_dns = {
                enabled = true
                configuration = {
                    min_replica = 2
                    nodes_per_replica = 25
                }
            }
        }
    }
}

References

https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/containerengine_cluster#add_ons

image image

Duplicate of #787