-
Notifications
You must be signed in to change notification settings - Fork 3
/
values.yaml
89 lines (82 loc) · 1.78 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
---
global:
# -- domain of this phpipam instance
domain: "chart-example.local"
podAnnotations: {}
database:
# -- name of the database
name: "phpipam"
# -- name of the database user, can not be "root"
user: "phpipam"
# -- password of the db user
password: "phpipam"
phpipam:
name: phpipam-web
image:
repository: phpipam/phpipam-www
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v1.6.0"
replicaCount: 1
service:
type: ClusterIP
port: 80
resources:
# resources are not mapped yet and therefor not working
requests:
cpu: 50m
memory: 32Mi
limits:
cpu: 1000m
memory: 2048Mi
# Add "key: value" widgets where the value is the intendated php script of the widget.
# Will be mounted in the widgets folder.
widgets: {}
cron:
name: phpipam-cron
image:
repository: phpipam/phpipam-cron
pullPolicy: IfNotPresent
tag: "v1.6.0"
scan_interval: 1h
resources:
# resources are not mapped yet and therefor not working
requests:
cpu: 50m
memory: 32Mi
limits:
cpu: 1000m
memory: 2048Mi
database:
name: phpipam-db
installed: true
image:
repository: mariadb
pullPolicy: IfNotPresent
tag: "11.3.2"
service:
type: ClusterIP
port: 3306
persistence:
enabled: true
size: 30Gi
storageClassName: ""
resources:
# resources are not mapped yet and therefor not working
requests:
cpu: 50m
memory: 128Mi
limits:
cpu: 1000m
memory: 2048Mi
ingress:
enabled: false
className: "nginx"
annotations: {}
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
nodeSelector: {}