Browse Source

Added default requests and limits

master
Fábio Kaiser Rauber 3 years ago
parent
commit
a40b1daeee
  1. 27
      charts/pdnsadmin/v0.1.0/values.yaml

27
charts/pdnsadmin/v0.1.0/values.yaml

@ -44,17 +44,13 @@ ingress:
# hosts: # hosts:
# - chart-example.local # - chart-example.local
resources: {} resources:
# We usually recommend not to specify default resources and to leave this as a conscious limits:
# choice for the user. This also increases chances charts run on environments with little cpu: 1000m
# resources, such as Minikube. If you do want to specify resources, uncomment the following memory: 512Mi
# lines, adjust them as necessary, and remove the curly braces after 'resources:'. requests:
# limits: cpu: 100m
# cpu: 100m memory: 200Mi
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {} nodeSelector: {}
@ -80,8 +76,15 @@ mariadb:
- ReadWriteOnce - ReadWriteOnce
enabled: true enabled: true
size: 2Gi size: 2Gi
resources:
limits:
cpu: 1000m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
auth: auth:
database: pdnsadmin database: pdnsadmin
password: pdnsadminpw password: pdnsadminpw
rootPassword: pdnsadminrootpw rootPassword: pdnsadminrootpw
username: pdnsadmin username: pdnsadmin
Loading…
Cancel
Save