-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
values.yaml
138 lines (127 loc) · 4.08 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# -- Provide a name in place of `popeye`
nameOverride: ""
# -- String to fully override `"popeye.fullname"`
fullnameOverride: ""
image:
# -- image repository
repository: derailed/popeye
# -- image pull policy
pullPolicy: Always
# -- Overrides the image tag
tag: "v0.21.3"
# -- If defined, uses a Secret to pull an image from a private Docker registry or repository.
imagePullSecrets: []
serviceAccount:
# -- Specifies whether a service account should be created
create: true
# -- Annotations to add to the service account
annotations: {}
# -- The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
# -- Annotations to be added to exporter pods
podAnnotations: {}
# -- pod-level security context
podSecurityContext: {}
# fsGroup: 2000
# -- container-level security context
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# -- Resource limits and requests for the headwind pods.
resources:
limits:
cpu: 1000m
memory: 1000Mi
# -- Node labels for pod assignment
nodeSelector: {}
# -- Toleration labels for pod assignment
tolerations: []
# -- Affinity settings for pod assignment
affinity: {}
cronJob:
clusterName: ""
history:
failedJobsHistoryLimit: 1
successfulJobsHistoryLimit: 1
# Popeye can generate sanitizer reports in a variety of formats: standard, jurassic, yaml, html, json, junit, prometheus, score
outputFormat: standard
prometheus:
basicAuth:
# -- Use authentication against Prometheus Pushgateway
enabled: false
# -- Name of existing secret to use for authentication against Prometheus Pushgateway, needs to contain the key pushgateway-password
existingSecret: ""
# -- Password for authentication against Prometheus Pushgateway
password: ""
# -- Username for authentication against Prometheus Pushgateway
user: ""
pushgatewayAddress: ""
s3:
# -- bucket name can be the URI and the bucket name path s3://example-bucket
bucket: ""
# -- example endpoint: "https://s3.us-east-1.amazonaws.com"
endpoint: ""
# -- example region: "us-east-1"
region: ""
schedule: "* */1 * * *"
spinachConfiguration: {}
# # A Popeye sample configuration file
# popeye:
# allocations:
# cpu:
# underPercUtilization: 200
# overPercUtilization: 50
# memory:
# underPercUtilization: 200
# overPercUtilization: 50
# # [!!NEW!!] Specify global exclusions for fqn, codes, labels, annotations
# excludes:
# global:
# # Exclude kube-system ns for all linters.
# fqns: [rx:^kube-system]
# # Exclude these workload labels for all linters.
# labels:
# app: [blee, bozo]
# # [!!NEW!!] Linters exclude section
# linters:
# # [!!NEW!!] use the R from GVR resource specification to name the linter
# statefulsets:
# # [!!NEW!!] Exclude codes via regexp ie skip 101, 1000,...
# codes: ["rx:^10"]
# instances:
# # Skip scan for a particular FQN aka namespace/res-name
# - fqns: [default/prom-alertmanager]
# codes: [106]
# pods:
# codes: ["306", "rx:^11"]
# instances:
# - fqns: [rx:^default/prom]
# - fqns: [rx:^default/graf]
# # [!!NEW!!] Skip using either labels or annotations and/or specific codes
# - labels:
# app: [blee, blah, zorg]
# codes: [300]
# - fqns: [rx:^default/pappi]
# codes: [300, 102, 306]
# containers: [c1]
# resources:
# node:
# limits:
# cpu: 90
# memory: 80
# pod:
# limits:
# cpu: 80
# memory: 75
# restarts: 3
# overrides:
# - code: 1502
# severity: 3
# registries:
# - quay2.io
# - docker1.io