Skip to main content
DevTools24

Generatore YAML Kubernetes

Genera YAML Kubernetes.

kubectl apply -f my-app.yaml

Kubernetes Manifests - Dettagli tecnici

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

Alternativa da riga di comando

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

Riferimento

Visualizza specifica ufficiale