diff --git a/bundle/manifests/cryostat-operator.clusterserviceversion.yaml b/bundle/manifests/cryostat-operator.clusterserviceversion.yaml index 1a94a269..72061008 100644 --- a/bundle/manifests/cryostat-operator.clusterserviceversion.yaml +++ b/bundle/manifests/cryostat-operator.clusterserviceversion.yaml @@ -509,7 +509,13 @@ spec: port: 8081 initialDelaySeconds: 5 periodSeconds: 10 - resources: {} + resources: + limits: + cpu: "1" + memory: 256Mi + requests: + cpu: 100m + memory: 64Mi securityContext: allowPrivilegeEscalation: false securityContext: diff --git a/config/manager/manager.yaml b/config/manager/manager.yaml index fbb61747..2d1bb044 100644 --- a/config/manager/manager.yaml +++ b/config/manager/manager.yaml @@ -44,4 +44,11 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace + resources: + limits: + cpu: 1000m + memory: 256Mi + requests: + cpu: 100m + memory: 64Mi terminationGracePeriodSeconds: 10