Skip to content

Commit

Permalink
Fix missing kube version for vpc clusters (#195)
Browse files Browse the repository at this point in the history
Co-authored-by: eugene-koo <[email protected]>
Co-authored-by: Hilton Lem <[email protected]>
  • Loading branch information
3 people authored Sep 20, 2024
1 parent f04e24f commit af0e44b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions internal/providers/terraform/ibm/container_vpc_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ func newContainerVpcCluster(d *schema.ResourceData, u *schema.UsageData) *schema

region := d.Get("region").String()
kubeVersion := d.Get("kube_version").String()
if kubeVersion == "" {
kubeVersion = "4.15.25_openshift"
}
flavor := d.Get("flavor").String()
workerCount := d.Get("worker_count").Int()

Expand Down

0 comments on commit af0e44b

Please sign in to comment.