Skip to content

Commit

Permalink
Merge pull request #16 from RonasIT/fix/worker-hpa
Browse files Browse the repository at this point in the history
  • Loading branch information
eleonov authored May 14, 2024
2 parents fecb236 + cb3cfb5 commit ce97f8e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/laravel/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: 1.16.0
description: A Helm chart for Kubernetes to deploy Laravel applications
name: laravel
type: application
version: 2.3.1
version: 2.3.2
dependencies:
- name: postgresql
condition: postgresql.enabled
Expand Down
4 changes: 2 additions & 2 deletions charts/laravel/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# laravel

![Version: 2.3.1](https://img.shields.io/badge/Version-2.3.1-informational?style=flat-square)
![Version: 2.3.2](https://img.shields.io/badge/Version-2.3.2-informational?style=flat-square)

## Installing the Chart

Expand Down Expand Up @@ -148,4 +148,4 @@ $ helm install laravel ronas/laravel
| workers.autoscaling | object | `{"enabled":false,"maxReplicas":3,"minReplicas":1,"targetCPUUtilizationPercentage":60}` | Global workers autoscaling settings (can be overwritten in items) |
| workers.enabled | bool | `true` | |
| workers.items | list | `[]` | |
| workers.resources | object | `{"limits":{"limits":"50m","memory":"128Mi"},"requests":{"cpu":"25m","memory":"128Mi"}}` | Global workers resources (can be overwritten in items) |
| workers.resources | object | `{"limits":{"cpu":"50m","memory":"128Mi"},"requests":{"cpu":"25m","memory":"128Mi"}}` | Global workers resources (can be overwritten in items) |
4 changes: 2 additions & 2 deletions charts/laravel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ workers:
cpu: 25m
memory: 128Mi
limits:
limits: 50m
cpu: 50m
memory: 128Mi
items:
[]
Expand All @@ -252,7 +252,7 @@ workers:
# cmd: 'php /app/artisan queue:work --sleep=3 --tries=3 --backoff=3 --queue=default --memory=128'
# autoscaling:
# enabled: false
# minReplicas: 2
# minReplicas: 1
# maxReplicas: 3
# targetCPUUtilizationPercentage: 60
# resources:
Expand Down

0 comments on commit ce97f8e

Please sign in to comment.