Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve error message #1205

Merged
merged 2 commits into from
Sep 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rancher2/resource_rancher2_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func resourceRancher2ClusterCreate(d *schema.ResourceData, meta interface{}) err
newCluster := &Cluster{}
if cluster.EKSConfig != nil && !cluster.EKSConfig.Imported {
if !checkClusterEKSConfigV2NodeGroupsDesiredSize(cluster) {
return fmt.Errorf("[ERROR] can't create %s EKS cluster with node group desired_size = 0", cluster.Name)
return fmt.Errorf("[ERROR] can't create %s EKS cluster with node group desired_size = 0. desired_size must be >=1. After initial provisioning, desired_size may be scaled down to 0 at any time", cluster.Name)
}
clusterStr, _ := interfaceToJSON(cluster)
clusterMap, _ := jsonToMapInterface(clusterStr)
Expand Down