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

Scaffold project and generate alertmanager dashboard #1

Merged
merged 6 commits into from
Jan 24, 2025

Conversation

philipgough
Copy link
Contributor

The result of mage dashboards:alertmanager is output to resources/dashboard/alertmanager.yaml and is exact as rhobs/configuration#723

return fmt.Errorf("failed to convert json to yaml: %w", err)
}

err = os.WriteFile(fmt.Sprint(dashboardPath, filename), b, 0644)
Copy link
Member

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

Copy link
Contributor Author

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)
Copy link
Member

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

Copy link
Contributor Author

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

Copy link
Member

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants