Skip to content

Commit

Permalink
build(chart): set default resource requests
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianKramm committed Jul 23, 2021
1 parent 14d91b2 commit 76073ce
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ syncer:
volumeMounts:
- mountPath: /data
name: data
resources: {}
resources:
limits:
memory: 1Gi
requests:
cpu: 100m
memory: 128Mi

# Virtual Cluster (k3s) configuration
vcluster:
Expand Down Expand Up @@ -41,7 +46,12 @@ vcluster:
- mountPath: /data
name: data
env: []
resources: {}
resources:
limits:
memory: 2Gi
requests:
cpu: 200m
memory: 256Mi

# Storage settings for the vcluster
storage:
Expand Down

0 comments on commit 76073ce

Please sign in to comment.