feat(paperless-ngx): increase default resource limits and externalize them to the config
This commit is contained in:
parent
6c9d1da14b
commit
252723bb54
3 changed files with 10 additions and 4 deletions
|
@ -4,7 +4,7 @@ description: |
|
||||||
document management system that transforms your physical documents into a searchable online archive
|
document management system that transforms your physical documents into a searchable online archive
|
||||||
appVersion: 2.7.0
|
appVersion: 2.7.0
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.6
|
version: 0.1.7
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Tommy Skaug
|
- name: Tommy Skaug
|
||||||
email: tommy@skaug.me
|
email: tommy@skaug.me
|
||||||
|
|
|
@ -35,9 +35,7 @@ spec:
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: {{ .Values.envFromSecret }}
|
name: {{ .Values.envFromSecret }}
|
||||||
resources:
|
resources:
|
||||||
limits:
|
{{- toYaml .Values.resources | nindent 10 }}
|
||||||
memory: "128Mi"
|
|
||||||
cpu: "500m"
|
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 80
|
- containerPort: 80
|
||||||
name: http
|
name: http
|
||||||
|
|
|
@ -25,3 +25,11 @@ image:
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
secretName: paperless-ngx-secret
|
secretName: paperless-ngx-secret
|
||||||
|
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: "3Gi"
|
||||||
|
cpu: "1000m"
|
||||||
|
# requests:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 250Mi
|
||||||
|
|
Loading…
Reference in a new issue