dealroadshow/k8s-resources
Laravel package for defining and managing Kubernetes resource manifests (e.g., Deployments, Services, Ingress) in PHP. Helps generate, organize, and deploy K8s YAML from your app with reusable resource classes and configuration.
For Executives: "This package lets us treat Kubernetes resources like PHP classes—no YAML expertise needed. For example, we could auto-generate deployments for new Laravel microservices in CI, cutting deployment time by 30%. It’s a low-risk way to adopt Kubernetes without hiring specialized talent, aligning with our multi-cloud strategy."
For Engineering:
*"Imagine defining a Kubernetes Deployment in PHP:
$deployment = new \K8s\Deployment('my-app', 'v1');
$deployment->setReplicas(3)->addContainer('nginx');
echo $deployment->toYaml(); // Valid Kubernetes manifest
This replaces manual YAML edits, integrates with our existing PHP tooling, and works seamlessly with ArgoCD. It’s the bridge we need between our PHP apps and Kubernetes."*
Key Ask:
How can I help you explore Laravel packages today?