Skip to main content
DevTools24

Gerador de YAML Kubernetes

Gere manifestos YAML do Kubernetes visualmente. Crie Deployments, Services, ConfigMaps, Secrets, Ingress e PVCs.

kubectl apply -f my-app.yaml

Kubernetes Manifests - Detalhes Técnicos

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

Alternativa via Linha de Comando

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

Referência

Ver Especificação Oficial