From a40b1daeeee7b97713b2da3e183e702bedcbc26d Mon Sep 17 00:00:00 2001 From: Fabio Rauber Date: Mon, 8 Nov 2021 15:50:59 -0300 Subject: [PATCH] Added default requests and limits --- charts/pdnsadmin/v0.1.0/values.yaml | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/charts/pdnsadmin/v0.1.0/values.yaml b/charts/pdnsadmin/v0.1.0/values.yaml index bd990d2..d770a0c 100644 --- a/charts/pdnsadmin/v0.1.0/values.yaml +++ b/charts/pdnsadmin/v0.1.0/values.yaml @@ -44,17 +44,13 @@ ingress: # hosts: # - chart-example.local -resources: {} - # We usually recommend not to specify default resources and to leave this as a conscious - # choice for the user. This also increases chances charts run on environments with little - # resources, such as Minikube. If you do want to specify resources, uncomment the following - # lines, adjust them as necessary, and remove the curly braces after 'resources:'. - # limits: - # cpu: 100m - # memory: 128Mi - # requests: - # cpu: 100m - # memory: 128Mi +resources: + limits: + cpu: 1000m + memory: 512Mi + requests: + cpu: 100m + memory: 200Mi nodeSelector: {} @@ -80,8 +76,15 @@ mariadb: - ReadWriteOnce enabled: true size: 2Gi + resources: + limits: + cpu: 1000m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi auth: database: pdnsadmin password: pdnsadminpw rootPassword: pdnsadminrootpw - username: pdnsadmin + username: pdnsadmin \ No newline at end of file