forked from kost13/kubernetes-scaling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
73 lines (66 loc) · 1.24 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
replicaCount: 1
service:
type: ClusterIp
port: 80
ingress:
enabled: true
hosts:
- host: git.192.168.99.100.nip.io
paths:
- path: /
backend:
service:
name: aui-gitea-http
port:
number: 3000
- host: wordpress.192.168.99.100.nip.io
paths:
- path: /
backend:
service:
name: aui-wordpress
port:
number: 80
gitea:
ingress:
enabled: false
resources:
limits:
# cpu: 100m
cpu: 300m
wordpress:
ingress:
enabled: false
service:
type: ClusterIP
clusterIP: 10.111.100.10
persistence:
size: 1Gi
storageClass: standard
mariadb:
primary:
persistence:
size: 1Gi
storageClass: standard
autoscaling:
enabled: true
minReplicas: 1
maxReplicas: 3
targetCPU: 50
wordpressUsername: user
wordpressPassword: password
wordpressEmail: [email protected]
wordpressFirstName: Jan
wordpressLastName: Kubernetes
wordpressBlogName: Jan's Scalable Kubernetes!
resources:
limits:
cpu: 300m
autoscaling:
enabled: true
scaleTargetRef:
name: aui-gitea
minReplicas: 1
maxReplicas: 3
targetCPU: 50
scaleDownStabilizationTime: 30