We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f5347 commit 70dbcd0Copy full SHA for 70dbcd0
kubernetes/scripts/lint_manifests.py
@@ -7,7 +7,7 @@ def get_all_manifests() -> list[str]:
7
"""Return a list of file paths that look like k8s manifests."""
8
likely_manifests = []
9
for file in Path.cwd().glob("**/*.yaml"):
10
- if file.name in {"secrets.yaml", "ghcr-pull-secrets.yaml"}:
+ if file.name in {"secrets.yaml", "ghcr-pull-secrets.yaml", "ssh-secrets.yaml"}:
11
# Don't lint secret files as they're git-crypted
12
continue
13
if file.stem.startswith("_"):
0 commit comments