Skip to main content
DevTools24

Kubernetes YAML Generator

Kubernetes-Manifeste wie Deployments, Services und ConfigMaps generieren.

kubectl apply -f my-app.yaml

Kubernetes Manifests - Technische Details

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

Kommandozeilen-Alternative

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

Referenz

Offizielle Spezifikation ansehen