alexwijn / laravel-kube-installer
Prepares a Laravel application for a Kubernetes deployment.
Installs: 1 460
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.6.0
- ext-zip: *
- illuminate/database: ~4.2|5.*
- illuminate/support: ~4.2|5.*
Requires (Dev)
- orchestra/testbench: ~3.7
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2025-03-29 00:42:09 UTC
README
This package will add a new command to prepare a Laravel Application for a Kubernetes enviroment with persisten volumes.
Installation
Require this package with composer.
composer require alexwijn/laravel-kube-installer
Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
Laravel 5.5+:
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
Alexwijn\KubeInstaller\ServiceProvider::class,
Commands
At the moment we support the following command:
- kube:compile - Compress the storage folder to be used by the install command later.
- kube:initialize - This command wil at default migrate the application with seeds and also restore the above storage folder.
- kube:install - This command will only run the migrations by default.
All of the above commands can be customized by publishing the configuration file for this package.
php artisan vendor:publish --provider=Alexwijn\KubeInstaller\ServiceProvider