forked from christianhuth/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
113 lines (102 loc) · 3.73 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
# -- 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.11.1"
# -- 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:
# # Checks resources against reported metrics usage.
# # If over/under these thresholds a sanitization warning will be issued.
# # Your cluster must run a metrics-server for these to take place!
# allocations:
# cpu:
# underPercUtilization: 200 # Checks if cpu is under allocated by more than 200% at current load.
# overPercUtilization: 50 # Checks if cpu is over allocated by more than 50% at current load.
# memory:
# underPercUtilization: 200 # Checks if mem is under allocated by more than 200% at current load.
# overPercUtilization: 50 # Checks if mem is over allocated by more than 50% usage at current load.
# # Configure node resources.
# node:
# # Limits set a cpu/mem threshold in % ie if cpu|mem > limit a lint warning is triggered.
# limits:
# # CPU checks if current CPU utilization on a node is greater than 90%.
# cpu: 90
# # Memory checks if current Memory utilization on a node is greater than 80%.
# memory: 80
# # Configure pod resources
# pod:
# # Restarts check the restarts count and triggers a lint warning if above threshold.
# restarts:
# 3
# # Check container resource utilization in percent.
# # Issues a lint warning if about these threshold.
# limits:
# cpu: 80
# memory: 75