Skip to content

Commit

Permalink
fix(ci): Fix .yamllint file (#113)
Browse files Browse the repository at this point in the history
Current yamllint validation fails (hmm, how was the check introduced if
it is failing). Fix this by explicitly excluding helm templated paths
from the check since it is NOT possible to check them with yamllint
(there is helm lint verification instead). In addition to that skip
`document-start` check until all files get the required header.

Signed-off-by: Artem Goncharov <artem.goncharov@gmail.com>
  • Loading branch information
gtema authored Jun 20, 2024
1 parent 51aed61 commit 5a69b9f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .yamllint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ rules:
# (the latter is very common in k8s land)
indentation:
indent-sequences: whatever
# Remove this once all yaml files become docstart header
document-start: disable
ignore:
# Help templates should and can NOT be checked with yamllint
- "**/templates/**"
- "providers/openstack/scs/1-27/cluster-addon-values.yaml"

0 comments on commit 5a69b9f

Please sign in to comment.