Skip to main content
DevTools24

Générateur YAML Kubernetes

Générez des manifestes Kubernetes comme Deployments, Services et ConfigMaps.

kubectl apply -f my-app.yaml

Kubernetes Manifests - Détails techniques

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

Alternative en ligne de commande

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

Référence

Voir la spécification officielle