forked from kubeflow/trainer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.kube-linter.yaml
More file actions
24 lines (21 loc) · 805 Bytes
/
.kube-linter.yaml
File metadata and controls
24 lines (21 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# KubeLinter configuration file
# For more information, see https://docs.kubelinter.io/#/configuring-kubelinter
# checks section configures which checks to run.
checks:
# Do not include any of the default checks.
# If this is false, all default checks are included,
# and the "include" and "exclude" lists are applied on top of them.
doNotIncludeBuiltIn: false
# include is a list of check names to include.
# include:
# - "check-name-1"
# exclude is a list of check names to exclude.
exclude:
- "unset-cpu-requirements"
- "unset-memory-requirements"
- "mismatching-selector"
- "no-read-only-root-fs"
- "run-as-non-root"
- "no-anti-affinity"
- "non-existent-service-account" # Often false positive in kustomize
- "latest-tag"