diff --git a/charts/laravel/Chart.yaml b/charts/laravel/Chart.yaml index 952c656..2e6a299 100644 --- a/charts/laravel/Chart.yaml +++ b/charts/laravel/Chart.yaml @@ -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 diff --git a/charts/laravel/README.md b/charts/laravel/README.md index d1385ed..62afe19 100644 --- a/charts/laravel/README.md +++ b/charts/laravel/README.md @@ -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 @@ -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) | diff --git a/charts/laravel/values.yaml b/charts/laravel/values.yaml index 6897da6..5900abc 100644 --- a/charts/laravel/values.yaml +++ b/charts/laravel/values.yaml @@ -243,7 +243,7 @@ workers: cpu: 25m memory: 128Mi limits: - limits: 50m + cpu: 50m memory: 128Mi items: [] @@ -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: