-
Notifications
You must be signed in to change notification settings - Fork 19
/
values.yaml
62 lines (57 loc) · 1.14 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
image:
repository: traefik/whoami
# https://hub.docker.com/r/traefik/whoami/tags
tag: v1.10
pullPolicy: Always
securityContext:
container:
runAsNonRoot: false
runAsGroup: 0
runAsUser: 0
readOnlyRootFilesystem: true
service:
main:
ports:
main:
port: 80
targetPort: 80
workload:
main:
replicas: 1
strategy: Recreate
type: Deployment
podSpec:
containers:
main:
probes:
readiness:
port: 80
type: tcp
spec:
initialDelaySeconds: 5
periodSeconds: 5
failureThreshold: 2
liveness:
enabled: true
type: tcp
port: 80
spec:
initialDelaySeconds: 5
periodSeconds: 5
failureThreshold: 2
ingress:
main:
enabled: false
primary: true
required: false
ingressClassName: ''
targetSelector:
main: main
hosts:
- host: whoami.local
paths:
- path: /
pathType: Prefix
portal:
open:
enabled: false