Skip to main content
DevTools24

Generador YAML Kubernetes

Genera manifiestos Kubernetes como Deployments, Services y ConfigMaps.

kubectl apply -f my-app.yaml

Kubernetes Manifests - Detalles técnicos

Kubernetes uses YAML manifests to define resources. Common resources include Deployments (running containers), Services (networking), ConfigMaps (configuration), and Secrets (sensitive data).

Alternativa de línea de comandos

kubectl apply -f manifest.yaml
kubectl get pods
kubectl describe deployment my-app

Referencia

Ver especificación oficial