diff --git a/manifests/database/deployment.yaml b/manifests/database/deployment.yaml index 7f76950..0dfc3e2 100644 --- a/manifests/database/deployment.yaml +++ b/manifests/database/deployment.yaml @@ -21,6 +21,13 @@ spec: name: postgres-secret ports: - containerPort: 5432 + resources: + requests: + cpu: "10m" + memory: "64Mi" + limits: + cpu: "100m" + memory: "128Mi" volumeMounts: - name: postgres-data mountPath: /var/lib/postgresql/data @@ -32,4 +39,4 @@ spec: volumes: - name: postgres-data persistentVolumeClaim: - claimName: postgres-pvc \ No newline at end of file + claimName: postgres-pvc \ No newline at end of file