-
Notifications
You must be signed in to change notification settings - Fork 0
Fix Helm chart indentation and formatting issues #11
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
Conversation
Co-authored-by: phrocker <[email protected]>
|
[WARNING] Missing header in: /home/runner/work/veculo/veculo/charts/accumulo/templates/accumulo-monitor-deployment.yaml |
Co-authored-by: phrocker <[email protected]>
Fixed the missing license headers by running Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
Fix Helm Chart Rendering Issues with Indentation ✅ COMPLETED
Successfully fixed all indentation and formatting issues in Helm chart templates after the formatter exclusion was added. The rendering issues mentioned in the original problem statement have been completely resolved.
Issues Identified and Fixed:
✅ Complete Solution Summary:
Root Cause:
After adding
<exclude>**/charts/**</exclude>to the formatter-maven-plugin, the Helm chart templates had accumulated various indentation and formatting inconsistencies that caused rendering issues, plus license header formatting issues.Fixes Applied:
🔧 Indentation Corrections
{{- include "accumulo.componentLabels"}}alignment🔧 Template Braces Spacing
{{ include "accumulo.fullname" . }}→{{include "accumulo.fullname" .}}{{ include "accumulo.labels" . | nindent 4 }}→{{- include "accumulo.labels" . | nindent 4}}🔧 File Format Issues
🔧 License Header Issues
#) in all Helm templates📊 Validation Results:
📁 Files Successfully Fixed:
🎯 Impact:
The Helm charts now render consistently, follow proper YAML formatting standards, and pass all license header validation checks. The exclusion added to the formatter was the correct approach, and all accumulated formatting and license issues have been cleaned up.
Fixes #10.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.