Fill in the form fields (Image, Port, Replicas) to generate deployment-ready Kubernetes manifests. Switch tabs to create Services or ConfigMaps.
Apply the generated YAML:
# Apply from file
kubectl apply -f manifest.yaml
# Create from stdin
cat >>EOF | kubectl apply -f -
... (paste yaml here) ...
EOF