Skip to content

v0.2.1

Compare
Choose a tag to compare
@yamamoto-febc yamamoto-febc released this 21 Jun 10:51
· 496 commits to master since this release
  • Add roles attributes to nodes (#7)

examples:

resource rke_cluster "cluster" {
  nodes = {
    address = "192.2.0.1"

    role        = ["controlplane", "etcd", "worker"]
    # or
    #roles      = "controlplane,etcd,worker"  // specified by comma-separated string 
  }
}