-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdebug_values.cue
76 lines (62 loc) · 1.33 KB
/
debug_values.cue
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
@if(debug)
package main
// Values used by debug_tool.cue.
// Debug example 'cue cmd -t debug -t name=test -t namespace=test -t mv=1.0.0 -t kv=1.28.0 build'.
values: {
metadata: labels: team: "dev"
metadata: annotations: "cert-manager.timoni.sh/testing": "true"
highAvailability: enabled: true
rbac: {
enabled: true
aggregateClusterRoles: false
}
controller: {
replicas: 5
podDisruptionBudget: minAvailable: 3
config: logging: format: "json"
resources: requests: cpu: "100m"
ingressShim: defaultIssuerName: "dev"
monitoring: enabled: true
livenessProbe: {
initialDelaySeconds: 30
periodSeconds: 15
failureThreshold: 4
timeoutSeconds: 2
}
strategy: {
type: "RollingUpdate"
rollingUpdate: {
maxSurge: 1
}
}
}
webhook: {
livenessProbe: {
initialDelaySeconds: 30
periodSeconds: 15
failureThreshold: 4
timeoutSeconds: 2
}
readinessProbe: {
initialDelaySeconds: 20
periodSeconds: 10
failureThreshold: 6
timeoutSeconds: 2
}
strategy: {
type: "RollingUpdate"
rollingUpdate: {
maxSurge: 1
}
}
}
caInjector: {
podDisruptionBudget: maxUnavailable: "20%"
strategy: {
type: "RollingUpdate"
rollingUpdate: {
maxSurge: 1
}
}
}
}