In .helm/laravel-values.yaml, there is a section called workers, it doesn't have any reference in templates.
Does it have any function?
Run separate deployments (workers) that will long-live processes
other than the PHP-FPM. Can be used for example to run queues or Laravel Horizon.
Each worker will create a new deployment.
workers:
- name: queue
# The command to run the process.
command: php artisan queue:work --memory=64
Hello,
In .helm/laravel-values.yaml, there is a section called workers, it doesn't have any reference in templates.
Does it have any function?
Thanks