-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
roachprod: azure destroy cluster returns error if no resource group was found #128969
Conversation
pkg/roachprod/vm/azure/azure.go
Outdated
@@ -495,6 +495,10 @@ func (p *Provider) DeleteCluster(l *logger.Logger, name string) error { | |||
} | |||
} | |||
|
|||
if len(futures) == 0 { | |||
return errors.Newf("DeleteCluster: Found no azure resource groups with tag cluster: %s", name) |
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.
How will this error show up in the slack channel? E.g., will it be lots of flashing red signs, so we won't miss it? :)
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.
Maybe we can add a **** MANUAL INTERVENTION REQUIRED ****
banner here so it's harder to miss. My understanding is that this error would be printed every hour, so there's a good chance we would notice soon.
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.
b369dc5
to
7ce7cde
Compare
TFTRs! bors r=renatolabs, srosenberg |
Fixes: none
Release note: none
Epic: none