Skip to content

Commit 5a69b9f

Browse files
authored
fix(ci): Fix .yamllint file (#113)
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 <[email protected]>
1 parent 51aed61 commit 5a69b9f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.yamllint.yml

+6
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,9 @@ rules:
1111
# (the latter is very common in k8s land)
1212
indentation:
1313
indent-sequences: whatever
14+
# Remove this once all yaml files become docstart header
15+
document-start: disable
16+
ignore:
17+
# Help templates should and can NOT be checked with yamllint
18+
- "**/templates/**"
19+
- "providers/openstack/scs/1-27/cluster-addon-values.yaml"

0 commit comments

Comments
 (0)