Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
2. Run `composer update shopsys/deployment`
3. Check files in mentioned pull requests and if you have any of them extended in your project, apply changes manually

## Upgrade from v4.0.4 to v4.0.5

- optimize cpu and memory resources ([#47](https://github.com/shopsys/deployment/pull/47))

## Upgrade from v4.0.3 to v4.0.4

- Follow redirects when checking if domains is running ([#46](https://github.com/shopsys/deployment/pull/46))
Expand Down
4 changes: 2 additions & 2 deletions kubernetes/deployments/rabbitmq.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ spec:
value: "{{RABBITMQ_DEFAULT_PASS}}"
resources:
limits:
cpu: "2"
cpu: "1"
requests:
cpu: "0.3"
cpu: "0.1"
imagePullSecrets:
- name: dockerregistry
12 changes: 6 additions & 6 deletions kubernetes/deployments/webserver-php-fpm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ spec:
cpu: "3"
memory: 3Gi
requests:
cpu: "0.5"
memory: 1Gi
cpu: "0.2"
memory: 200Mi

- image: nginx:1.27-alpine
name: webserver
Expand Down Expand Up @@ -158,11 +158,11 @@ spec:
]
resources:
limits:
cpu: "2"
memory: 1Gi
cpu: "0.2"
memory: 300Mi
requests:
cpu: "0.5"
memory: 500Mi
cpu: "0.05"
memory: 50Mi
terminationGracePeriodSeconds: 120
imagePullSecrets:
- name: dockerregistry