-
Notifications
You must be signed in to change notification settings - Fork 0
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
Scaffold project and generate alertmanager dashboard #1
Conversation
return fmt.Errorf("failed to convert json to yaml: %w", err) | ||
} | ||
|
||
err = os.WriteFile(fmt.Sprint(dashboardPath, filename), b, 0644) |
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.
I'd do a os.mkdir, just in case
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.
this actually fails in terms of idempotency when i added it
|
||
err = writeDashboardFile(fileOut, j) | ||
if err != nil { | ||
return fmt.Errorf("failed to write dashboard file: %w", err) |
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.
Let's just panic everywhere. I don't really think returning errors anywhere would help if something were broken
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.
from my understand, from reading the mage docs this s the preferred way because if we start to chain things together then, in targets like mage dashboards
we can still build the majority of the work without having to bomb 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.
I see, yeah we can follow mage best practices. Although, in our case, would it really matter. Majority of work is the final jsonnet gen step I guess. I'm fine either way
0c9ec0d
to
a6451ab
Compare
The result of
mage dashboards:alertmanager
is output toresources/dashboard/alertmanager.yaml
and is exact as rhobs/configuration#723