Skip to content

Commit

Permalink
fix: remove small memory limit
Browse files Browse the repository at this point in the history
  • Loading branch information
samwang0723 committed Jun 2, 2024
1 parent 919150d commit 1fc51a7
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions deployment/helm/mysql/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -317,13 +317,20 @@ primary:
## @param primary.resources.limits The resources limits for MySQL primary containers
## @param primary.resources.requests The requested resources for MySQL primary containers
##
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 250m
memory: 256Mi
resources:
## Example:
## limits:
## cpu: 250m
## memory: 256Mi
##
limits: {}
## Examples:
## requests:
## cpu: 250m
## memory: 256Mi
##
requests: {}

## Configure extra options for liveness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param primary.livenessProbe.enabled Enable livenessProbe
Expand Down

0 comments on commit 1fc51a7

Please sign in to comment.