vpctl manifest commands
Initialize, validate, and inspect the vpctl manifest schema
Read time 1 minuteLast updated 8 hours ago
The
manifestmanifest.yamlinit
Generate a new manifest interactively:This walks you through platform, release version, registry, namespace, autoscaling, monitoring, and ingress settings. Parameters:vpctl manifest init
- : Output path (default:
--output)./manifest.yaml
validate
Validate an existing manifest against the embedded CUE schema:Catches missing required fields, disallowed values, and cross-field rules, for example,vpctl manifest validatevpctl manifest validate --file path/to/manifest.yaml
maxReplicas >= minReplicas- : Path to the manifest to validate (default: auto-discover)
--file
schema
Display the embedded CUE schema:Export the CUE schema for standalone validation outside vpctl:vpctl manifest schema
After exporting, validate any manifest against it with thevpctl manifest schema --export manifest.cue
cuecue vet manifest.cue manifest.yaml -d '#Manifest'