Pelican Panel runs in Kubernetes in the games namespace.
# Exec into Pelican pod
kubectl exec -it -n games deploy/pelican -- bash
# List plugins
kubectl exec -n games deploy/pelican -- ls -la /pelican-data/plugins/
# View Laravel logs
kubectl exec -n games deploy/pelican -- tail -100 /pelican-data/storage/logs/laravel.log# Remove broken plugin files
kubectl exec -n games deploy/pelican -- rm -rf /pelican-data/plugins/server-documentation
# Clear cache
kubectl exec -n games deploy/pelican -- php artisan cache:clear- Plugin directory:
/pelican-data/plugins/ - Logs:
/var/www/html/storage/logs/laravel.log - Web root:
/var/www/html/
- Plugin source:
/tmp/pelican-plugins/server-documentation/ - GitHub repo:
gavinmcfall/pelican-plugins - Current version:
v1.1.0-beta2