set resources for prod and format file
All checks were successful
Build and Deploy Staging / build (push) Successful in 2m7s
Build and Deploy Staging / deploy (push) Successful in 14s

This commit is contained in:
Tobias Brunner 2025-09-26 13:00:21 +02:00
parent b89e215b35
commit d8ba9130fb
Signed by: tobru
SSH key fingerprint: SHA256:kOXg1R6c11XW3/Pt9dbLdQvOJGFAy+B2K6v6PtRWBGQ
2 changed files with 16 additions and 9 deletions

View file

@ -1,14 +1,14 @@
apiVersion: kustomize.config.k8s.io/v1beta1 apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
labels: labels:
- includeSelectors: true - includeSelectors: true
pairs: pairs:
app.kubernetes.io/instance: prod app.kubernetes.io/instance: prod
app.kubernetes.io/name: servala app.kubernetes.io/name: servala
resources: resources:
- ../../base/portal - ../../base/portal
- ../../base/database - ../../base/database
- ingress.yaml - ingress.yaml
patches: patches:
- path: portal-deployment.yaml - path: portal-deployment.yaml
- path: objectstorage.yaml - path: objectstorage.yaml

View file

@ -32,3 +32,10 @@ spec:
secretKeyRef: secretKeyRef:
name: portal-storage-creds name: portal-storage-creds
key: AWS_SECRET_ACCESS_KEY key: AWS_SECRET_ACCESS_KEY
resources:
limits:
cpu: 2
memory: 2Gi
requests:
cpu: 500m
memory: 512Mi