diff --git a/charts/bee/Chart.yaml b/charts/bee/Chart.yaml index 19c9627..b786224 100644 --- a/charts/bee/Chart.yaml +++ b/charts/bee/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 appVersion: latest name: bee -version: 0.11.8 +version: 0.11.9 kubeVersion: ">=1.15.0-0" description: Ethereum Swarm Bee Helm chart for Kubernetes home: https://www.ethswarm.org diff --git a/charts/bee/templates/statefulset.yaml b/charts/bee/templates/statefulset.yaml index ddf7b6b..493d525 100644 --- a/charts/bee/templates/statefulset.yaml +++ b/charts/bee/templates/statefulset.yaml @@ -253,6 +253,8 @@ spec: - containerPort: 8550 name: api protocol: TCP + resources: + {{- toYaml .Values.clefSettings.resources | nindent 12 }} volumeMounts: - name: clef mountPath: /app/data @@ -289,6 +291,8 @@ spec: - containerPort: 8633 name: gateway-proxy protocol: TCP + resources: + {{- toYaml .Values.gatewayProxy.resources | nindent 12 }} livenessProbe: httpGet: path: /health diff --git a/charts/bee/values.yaml b/charts/bee/values.yaml index 3040c39..e60da35 100644 --- a/charts/bee/values.yaml +++ b/charts/bee/values.yaml @@ -367,6 +367,13 @@ clefSettings: password: clefbeesecret ## Use existing password (ignores previous keyPassword) # existingPasswordSecret: + resources: {} + # limits: + # cpu: 1 + # memory: 1Gi + # requests: + # cpu: 100m + # memory: 128Mi ## If enabled it will start gateway-proxy sidecar container that will be publicly exposed @@ -414,3 +421,10 @@ gatewayProxy: # value: 0.9374 # - name: LOG_LEVEL # value: info + resources: {} + # limits: + # cpu: 1 + # memory: 1Gi + # requests: + # cpu: 100m + # memory: 128Mi