We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d3a305 commit 9553894Copy full SHA for 9553894
README.md
@@ -89,6 +89,21 @@ helm values-manager generate --deployment dev --output ./dev
89
# Generate prod values
90
helm values-manager generate --deployment prod --output ./prod
91
```
92
+This will create environment-specific values files:
93
+
94
+`dev/dev.my-app.values.yaml`:
95
+```yaml
96
+app:
97
+ logLevel: debug
98
+ replicas: '1'
99
+```
100
101
+`prod/prod.my-app.values.yaml`:
102
103
104
+ logLevel: info
105
+ replicas: '3'
106
107
108
6. View available commands and options:
109
0 commit comments