Skip to content

Commit

Permalink
fix cluster name generation
Browse files Browse the repository at this point in the history
  • Loading branch information
rifelpet committed Oct 27, 2020
1 parent 6802b2d commit 2611915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/kubetest2-kops/deployer/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func defaultClusterName(cloudProvider string) (string, error) {
suffix = "k8s.local"
}

return fmt.Sprintf("e2e-%v-%v.%v", buildIDHash[:10], jobHash[:5], suffix), nil
return fmt.Sprintf("e2e-%v-%v.%v", string(buildIDHash[:10]), string(jobHash[:5]), suffix), nil
}

// stateStore returns the kops state store to use
Expand Down

0 comments on commit 2611915

Please sign in to comment.