-
Notifications
You must be signed in to change notification settings - Fork 7
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
Fix AKS failure #234
Fix AKS failure #234
Conversation
Signed-off-by: Parthvi Vala <[email protected]>
hosted/aks/helper/helper_cluster.go
Outdated
|
||
out, err := proc.RunW("az", rgargs...) | ||
if err != nil { | ||
return errors.Wrap(err, "Failed to create cluster: "+out) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return errors.Wrap(err, "Failed to create cluster: "+out) | |
return errors.Wrap(err, "Failed to create resource group: "+out) |
AfterEach(func() { | ||
if ctx.ClusterCleanup && (cluster != nil && cluster.ID != "") { | ||
GinkgoLogr.Info(fmt.Sprintf("Cleaning up resources %s %s", cluster.Name, cluster.ID)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GinkgoLogr.Info(fmt.Sprintf("Cleaning up resources %s %s", cluster.Name, cluster.ID)) | |
GinkgoLogr.Info(fmt.Sprintf("Cleaning up resources, cluster: %s %s", cluster.Name, cluster.ID)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good based on the CI runs, thanks
Co-authored-by: Parthvi Vala <[email protected]> Co-authored-by: Chandan Pinjani <[email protected]> Signed-off-by: Parthvi Vala <[email protected]>
Signed-off-by: Parthvi Vala <[email protected]>
What does this PR do?
Which issue(s) this PR fixes (optional, in fixes #(, fixes #<issue_number>, ...) format, will close the issue(s) when PR gets merged):
Fixes #192
Checklist:
Special notes for your reviewer: