File tree Expand file tree Collapse file tree 2 files changed +6
-40
lines changed Expand file tree Collapse file tree 2 files changed +6
-40
lines changed Original file line number Diff line number Diff line change @@ -55,18 +55,10 @@ A Helm chart for deploying Automatisch
55
55
| postgresql.auth.username | string | ` "automatischUser" ` | |
56
56
| postgresql.enabled | bool | ` true ` | |
57
57
| postgresql.metrics.enabled | bool | ` false ` | |
58
- | postgresql.metrics.resources.limits.cpu | string | ` "100m" ` | |
59
- | postgresql.metrics.resources.limits.ephemeral-storage | string | ` "200Mi" ` | |
60
- | postgresql.metrics.resources.limits.memory | string | ` "64Mi" ` | |
61
- | postgresql.metrics.resources.requests.cpu | string | ` "50m" ` | |
62
- | postgresql.metrics.resources.requests.ephemeral-storage | string | ` "150Mi" ` | |
63
- | postgresql.metrics.resources.requests.memory | string | ` "32Mi" ` | |
58
+ | postgresql.metrics.resources | object | ` {} ` | |
64
59
| postgresql.persistence.volumeSize | string | ` "5Gi" ` | |
65
60
| postgresql.primary.persistence | object | ` {} ` | |
66
- | postgresql.primary.resources.limits.cpu | string | ` "200m" ` | |
67
- | postgresql.primary.resources.limits.memory | string | ` "256Mi" ` | |
68
- | postgresql.primary.resources.requests.cpu | string | ` "100m" ` | |
69
- | postgresql.primary.resources.requests.memory | string | ` "128Mi" ` | |
61
+ | postgresql.primary.resources | object | ` {} ` | |
70
62
| redis.enabled | bool | ` true ` | |
71
63
| redis.persistence.volumeSize | string | ` "3Gi" ` | |
72
64
| redis.version | string | ` "7.2.2" ` | |
Original file line number Diff line number Diff line change @@ -46,24 +46,10 @@ postgresql:
46
46
persistence :
47
47
# @ignored -- internal configuration
48
48
existingClaim : automatisch-postgresql-0
49
- resources :
50
- limits :
51
- cpu : 200m
52
- memory : 256Mi
53
- requests :
54
- cpu : 100m
55
- memory : 128Mi
49
+ resources : {}
56
50
metrics :
57
51
enabled : false
58
- resources :
59
- requests :
60
- cpu : 50m
61
- memory : 32Mi
62
- ephemeral-storage : 150Mi
63
- limits :
64
- cpu : 100m
65
- memory : 64Mi
66
- ephemeral-storage : 200Mi
52
+ resources : {}
67
53
redis :
68
54
enabled : true
69
55
# @ignore, Configure pod security context
@@ -86,13 +72,7 @@ redis:
86
72
# renovate: datasource=docker depName=redis
87
73
version : " 7.2.2"
88
74
# @ignore, Configure resource limits
89
- resources :
90
- limits :
91
- cpu : 200m
92
- memory : 256Mi
93
- requests :
94
- cpu : 100m
95
- memory : 128Mi
75
+ resources : {}
96
76
persistence :
97
77
volumeSize : 3Gi
98
78
@@ -163,13 +143,7 @@ app:
163
143
# -- Secret Key to authenticate the user
164
144
APP_SECRET_KEY :
165
145
# @ignore, Configure resource limits
166
- resources :
167
- limits :
168
- cpu : 200m
169
- memory : 256Mi
170
- requests :
171
- cpu : 100m
172
- memory : 128Mi
146
+ resources : {}
173
147
174
148
autoscaling :
175
149
enabled : false
You can’t perform that action at this time.
0 commit comments