Skip to content

Commit

Permalink
[helm] chore: align resources requests with limits for pl (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
karimatwa authored Dec 6, 2024
1 parent 5cf1d92 commit 9cd79fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ controlPlane:
affinity: {}
# Tolerations to allow pods to be scheduled on tainted nodes
tolerations: {}
resources: # Recommended: Guaranteed QoS class.
resources: # We recommend aligning resource requests with limits to maintain consistent performance
# Resource requests for the container
requests:
memory: "1Gi"
Expand Down Expand Up @@ -82,15 +82,15 @@ privateLocations:
containers:
- env: [] # Environment variables for the container
name: gatling-container # Name of the container
resources: # Recommended: Burstable QoS class.
resources: # We recommend aligning resource requests with limits to maintain consistent performance
# Resource requests for the container
limits":
memory: "2Gi"
cpu: "2"
# Resource limits for the container
requests:
memory: "1Gi"
cpu: "1"
memory: "2Gi"
cpu: "2"
# Security context for the pod or container
securityContext:
sysctls: [] # List of sysctls to set in the pod
Expand Down

0 comments on commit 9cd79fc

Please sign in to comment.