Skip to content

ability to define taints for node pool #1010

@ddevadat

Description

@ddevadat

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

This is a common customer request to define taints for the worker node pool. Currently there is no intuitive way to do this. We can ofcourse create a customized cloud init script, but suggesting a more user friendly way to do this.

New or Affected Resource(s)

Potential Terraform Configuration

# Copy-paste any Terraform configurations for how the requested feature may be used. 

  worker_pools = {
    workload = {
      mode   = "node-pool",
      size   = 3
      shape  = local.worker_shape,
      create = true
    },
    rook = {
      mode   = "node-pool",
      size   = 3,
      shape  = local.worker_shape,
      os_version = 8
      create = true
      node_labels = {
        "storage" = "rook",
        "oke.oraclecloud.com/pool.name" = "rook"
      },
      taints = {
       storage=rook:NoSchedule
      "oke.oraclecloud.com/pool.name" = "rook:NoSchedule"
      }

}

References

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions