File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -89,20 +89,23 @@ helm values-manager generate --deployment dev --output ./dev
8989# Generate prod values
9090helm values-manager generate --deployment prod --output ./prod
9191```
92+
9293This will create environment-specific values files:
9394
9495` dev/dev.my-app.values.yaml ` :
96+
9597``` yaml
9698app :
9799 logLevel : debug
98- replicas : ' 1 '
100+ replicas : " 1 "
99101` ` `
100102
101103` prod/prod.my-app.values.yaml`:
104+
102105` ` ` yaml
103106app:
104107 logLevel: info
105- replicas: '3'
108+ replicas: "3"
106109` ` `
107110
1081116. View available commands and options :
111114helm values-manager --help
112115` ` `
113116
117+ For detailed information about all available commands and their options, see our [Command Reference](docs/Commands/README.md).
118+
114119# # Development
115120
116121# ## Setup Development Environment
You can’t perform that action at this time.
0 commit comments