fix: Add .helmignore to exclude packages directory from helm lint
All checks were successful
Helm Chart Release / release-chart (push) Successful in 5s
Update Docker Images and Helm Chart / update (push) Successful in 7s

- helm lint was failing because pack files in .git/ and packages/*.tgz
  exceeded the 5MB file size limit
- Add .helmignore to exclude packages/, .git/, .gitea/ and *.tgz files

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-17 10:36:16 +09:00
parent 89edd11e1f
commit 04148aae0b

22
.helmignore Normal file
View File

@@ -0,0 +1,22 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.gitea/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
# Helm packages directory (pre-built packages)
packages/
*.tgz