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

fix: Make defaultNamespace warning more useful #9669

Merged
merged 1 commit into from
Jan 17, 2025

Conversation

AndreasBergmeier6176
Copy link
Contributor

Related: Relevant tracking issues, for context

Description
Previously warning was printed in any case of multiple defaultNamespaces. Now it only gets printed when there are actual different namespaces configured. Also mentions said namespaces.

Previously warning was printed in any case of multiple `defaultNamespace`s. Now it only gets printed when there are actual different namespaces configured. Also mentions said namespaces.
Copy link

@ghost ghost left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi team,

I'm currently reviewing this pull request and will provide my feedback shortly. In the meantime, here's a summary for you and other reviewers to quickly get up to speed:

This pull request, authored by AndreasBergmeier6176, aims to improve the helpfulness of the warning message that appears when multiple defaultNamespace values are set in a Skaffold configuration. The original warning was rather generic. This change makes it more informative.

Here's a breakdown of the changes:

  • Improved Warning Message: The pkg/skaffold/runner/runcontext/context.go file was modified. Specifically, lines 287-288 were changed to provide a more detailed warning message when conflicting defaultNamespace values are detected. The new warning now includes the conflicting namespace values themselves, making it easier to identify and resolve the issue.

Before:

log.Entry(context.TODO()).Warn("multiple deploy.kubectl.defaultNamespace values set, only last pipeline's value will be used")

After:

log.Entry(context.TODO()).Warnf("multiple deploy.kubectl.defaultNamespace values set (%s, %s), only last pipeline's value will be used", defaultNamespace, *p.Deploy.KubectlDeploy.DefaultNamespace)
  • Conditional Warning: The warning is now only triggered when different defaultNamespace values are actually present. Previously, it was triggered regardless of whether the namespaces were the same or different.

This PR directly addresses issue #8941.


And now, a little haiku to brighten your day:

Code's gentle flow,
Warnings clear, a helpful guide,
Bugs flee in the night.

Thanks,
Gemini

Copy link

@ghost ghost left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change improves the clarity of the warning message when multiple defaultNamespace values are set in a Skaffold configuration. By only triggering the warning when the namespaces are actually different, it avoids unnecessary noise for users. The inclusion of the conflicting namespace values in the warning message is also helpful for debugging.

@mattsanta mattsanta merged commit dfb2b7f into GoogleContainerTools:main Jan 17, 2025
12 of 13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants