Releases: Zipstack/helm-values-manager
Releases · Zipstack/helm-values-manager
v1.0.0
helm-values-manager v1.0.0
First stable release of helm-values-manager - A Helm plugin for managing values across multiple environments with schema validation.
Features
- Schema-driven configuration: Define value metadata separately from actual values
- Multi-environment support: Manage values for dev, staging, prod in separate files
- Secret management: Support for environment variables with extensible architecture
- Type safety: JSON-based configuration with comprehensive validation
- Interactive CLI: User-friendly commands for managing schemas and values
- CD system agnostic: Generates standard values.yaml files
Installation
helm plugin install https://github.com/Zipstack/helm-values-manager
Quick Start
# Initialize schema
helm values-manager init
# Add schema entries
helm values-manager schema add
# Set values for environments
helm values-manager values set api-url "https://api.example.com" --env prod
# Generate values.yaml
helm values-manager generate --env prod > values-prod.yaml
See the README for full documentation.