Overview
Build a Kubernetes operator that manages vyx deployments natively, handling scaling, rolling updates, and health management through custom CRDs.
Acceptance Criteria
Example CRD
apiVersion: vyx.dev/v1
kind: VyxApp
metadata:
name: my-app
spec:
workers:
- id: node:api
replicas: 3
- id: python:ml
replicas: 2
References
- Spec §11 – Scalability Considerations
- Roadmap – Phase 4
Overview
Build a Kubernetes operator that manages vyx deployments natively, handling scaling, rolling updates, and health management through custom CRDs.
Acceptance Criteria
VyxAppto describe a vyx project deploymentExample CRD
References