This document provides detailed information about all available commands in the Helm Values Manager plugin.
init- Initialize a new values manager configuration.add-value-config- Add a new value configuration with metadata.add-deployment- Add a new deployment configuration.set-value- Set a value for a specific path and deployment.generate- Generate a values file for a specific deployment.
Initialize a new values manager configuration.
Usage:
helm values-manager init [options]Options:
--release, -r: Name of the Helm release
Add a new value configuration with metadata.
Usage:
helm values-manager add-value-config [options]Options:
--path, -p: Configuration path (e.g., 'app.replicas')--description, -d: Description of what this configuration does (default: empty string)--required, -r: Whether this configuration is required (default: False)
Add a new deployment configuration.
Usage:
helm values-manager add-deployment [options]Arguments:
name: Deployment name (e.g., 'dev', 'prod')
Set a value for a specific path and deployment.
Usage:
helm values-manager set-value [options]Options:
--path, -p: Configuration path (e.g., 'app.replicas')--deployment, -d: Deployment to set the value for (e.g., 'dev', 'prod')--value, -v: Value to set
Generate a values file for a specific deployment.
Usage:
helm values-manager generate [options]Options:
--deployment, -d: Deployment to generate values for (e.g., 'dev', 'prod')--output, -o: Directory to output the values file to (default: current directory) (default: .)
Each command supports the --help flag for detailed information:
helm values-manager --help
helm values-manager <command> --help