forked from tchelovilar/github-org-runner-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
72 lines (56 loc) · 1.28 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
# Default values for prometheus-org-runner-exporter.
image:
repository: tchelovilar/github-org-runner-exporter
pullPolicy: IfNotPresent
tag: "0.1.2"
nameOverride: ""
fullnameOverride: ""
env:
# - name: OWNER
# value: vilarcorp
# - name: PRIVATE_GITHUB_TOKEN
# valueFrom:
# secretKeyRef:
# key: token
# name: github-token
# Define environment variables from secret
# envFromSecret: github-token
serviceMonitor:
enabled: yes
labels:
release: prometheus
# Set how frequently Prometheus should scrape
interval: 20s
# Set the namespace the ServiceMonitor should be deployed
# namespace: monitoring
# Set labels for the ServiceMonitor, use this to define your scrape label for Prometheus Operator
# labels:
# Set timeout for scrape
# timeout: 10s
# Set of labels to transfer on the Kubernetes Service onto the target.
# targetLabels: []
# metricRelabelings: []
imagePullSecrets: []
podAnnotations: {}
podSecurityContext:
fsGroup: 2000
securityContext:
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
service:
type: ClusterIP
port: 8000
resources:
limits:
cpu: 300m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}