Skip to content

Commit 8733dd0

Browse files
committed
Updated README
1 parent 14a255c commit 8733dd0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,20 +89,23 @@ helm values-manager generate --deployment dev --output ./dev
8989
# Generate prod values
9090
helm values-manager generate --deployment prod --output ./prod
9191
```
92+
9293
This will create environment-specific values files:
9394

9495
`dev/dev.my-app.values.yaml`:
96+
9597
```yaml
9698
app:
9799
logLevel: debug
98-
replicas: '1'
100+
replicas: "1"
99101
```
100102
101103
`prod/prod.my-app.values.yaml`:
104+
102105
```yaml
103106
app:
104107
logLevel: info
105-
replicas: '3'
108+
replicas: "3"
106109
```
107110

108111
6. View available commands and options:
@@ -111,6 +114,8 @@ app:
111114
helm 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

0 commit comments

Comments
 (0)