We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43a9671 commit fb5f448Copy full SHA for fb5f448
2 files changed
charts/storage/templates/storage-statefulset.yaml
@@ -52,6 +52,10 @@ spec:
52
- name: console
53
containerPort: 9001
54
protocol: TCP
55
+ {{- with index .Values "resources" }}
56
+ resources:
57
+ {{- toYaml . | nindent 10 }}
58
+ {{- end }}
59
livenessProbe:
60
httpGet:
61
path: /minio/health/live
charts/storage/values.yaml
@@ -3,6 +3,14 @@ imagePullPolicy: "Always"
3
imageTag: "canary"
4
imageRegistry: "registry.drycc.cc"
5
6
+resources: {}
7
+ # limits:
8
+ # cpu: 200m
9
+ # memory: 50Mi
10
+ # requests:
11
+ # cpu: 100m
12
+ # memory: 30Mi
13
+
14
# The following parameters are configured only when using an on-cluster Minio instance
15
nodeAffinityPreset:
16
key: "drycc.cc/node"
0 commit comments