File tree 1 file changed +7
-2
lines changed
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
89
89
# Generate prod values
90
90
helm values-manager generate --deployment prod --output ./prod
91
91
```
92
+
92
93
This will create environment-specific values files:
93
94
94
95
` dev/dev.my-app.values.yaml ` :
96
+
95
97
``` yaml
96
98
app :
97
99
logLevel : debug
98
- replicas : ' 1 '
100
+ replicas : " 1 "
99
101
` ` `
100
102
101
103
` prod/prod.my-app.values.yaml`:
104
+
102
105
` ` ` yaml
103
106
app:
104
107
logLevel: info
105
- replicas: '3'
108
+ replicas: "3"
106
109
` ` `
107
110
108
111
6. View available commands and options :
111
114
helm values-manager --help
112
115
` ` `
113
116
117
+ For detailed information about all available commands and their options, see our [Command Reference](docs/Commands/README.md).
118
+
114
119
# # Development
115
120
116
121
# ## Setup Development Environment
You can’t perform that action at this time.
0 commit comments