@@ -10,7 +10,7 @@ sequenceDiagram
10
10
participant HelmValuesConfig
11
11
participant FileSystem
12
12
13
- User->>CLI: helm values init
13
+ User->>CLI: helm values-manager init --release test-release
14
14
activate CLI
15
15
16
16
CLI->>BaseCommand: execute()
@@ -52,7 +52,7 @@ sequenceDiagram
52
52
participant HelmValuesConfig
53
53
participant PathValidator
54
54
55
- User->>CLI: helm values add-value-config --path= app.replicas --required
55
+ User->>CLI: helm values-manager add-value-config --path app.replicas --description "Number of replicas" --required
56
56
activate CLI
57
57
58
58
CLI->>BaseCommand: execute()
@@ -90,7 +90,7 @@ sequenceDiagram
90
90
participant BaseCommand
91
91
participant HelmValuesConfig
92
92
93
- User->>CLI: helm values add-deployment prod
93
+ User->>CLI: helm values-manager add-deployment prod
94
94
activate CLI
95
95
96
96
CLI->>BaseCommand: execute()
@@ -129,7 +129,7 @@ sequenceDiagram
129
129
participant HelmValuesConfig
130
130
participant ValueBackend
131
131
132
- User->>CLI: helm values add-backend aws --deployment= prod --region= us-west-2
132
+ User->>CLI: helm values-manager add-backend aws --deployment prod --region us-west-2
133
133
activate CLI
134
134
135
135
CLI->>BaseCommand: execute()
@@ -173,7 +173,7 @@ sequenceDiagram
173
173
participant HelmValuesConfig
174
174
participant ValueBackend
175
175
176
- User->>CLI: helm values add-auth direct --deployment= prod --credentials= '{...}'
176
+ User->>CLI: helm values-manager add-auth direct --deployment prod --credentials '{...}'
177
177
activate CLI
178
178
179
179
CLI->>BaseCommand: execute()
@@ -219,7 +219,7 @@ sequenceDiagram
219
219
participant ValueBackend
220
220
participant Storage
221
221
222
- User->>CLI: helm values set-value path value --env= prod
222
+ User->>CLI: helm values-manager set-value -- path app.replicas -- value 3 --deployment prod
223
223
activate CLI
224
224
225
225
CLI->>BaseCommand: execute()
@@ -279,7 +279,7 @@ sequenceDiagram
279
279
participant ValueBackend
280
280
participant Storage
281
281
282
- User->>CLI: helm values get-value path --env= prod
282
+ User->>CLI: helm values-manager get-value -- path app.replicas --deployment prod
283
283
activate CLI
284
284
285
285
CLI->>BaseCommand: execute()
@@ -337,7 +337,7 @@ sequenceDiagram
337
337
participant ValueBackend
338
338
participant Validator
339
339
340
- User->>CLI: helm values validate
340
+ User->>CLI: helm values-manager validate
341
341
activate CLI
342
342
343
343
CLI->>BaseCommand: execute()
@@ -388,7 +388,7 @@ sequenceDiagram
388
388
participant ValueBackend
389
389
participant Generator
390
390
391
- User->>CLI: helm values generate --env= prod
391
+ User->>CLI: helm values-manager generate --deployment prod --output ./
392
392
activate CLI
393
393
394
394
CLI->>BaseCommand: execute()
@@ -442,7 +442,7 @@ sequenceDiagram
442
442
participant Storage
443
443
participant TableFormatter
444
444
445
- User->>CLI: helm values list-values --env= prod
445
+ User->>CLI: helm values-manager list-values --deployment prod
446
446
activate CLI
447
447
448
448
CLI->>BaseCommand: execute()
@@ -490,7 +490,7 @@ sequenceDiagram
490
490
participant HelmValuesConfig
491
491
participant TableFormatter
492
492
493
- User->>CLI: helm values list-deployments
493
+ User->>CLI: helm values-manager list-deployments
494
494
activate CLI
495
495
496
496
CLI->>BaseCommand: execute()
@@ -526,7 +526,7 @@ sequenceDiagram
526
526
participant ValueBackend
527
527
participant Storage
528
528
529
- User->>CLI: helm values remove-deployment prod
529
+ User->>CLI: helm values-manager remove-deployment prod
530
530
activate CLI
531
531
532
532
CLI->>BaseCommand: execute()
@@ -576,7 +576,7 @@ sequenceDiagram
576
576
participant ValueBackend
577
577
participant Storage
578
578
579
- User->>CLI: helm values remove-value path --env= prod
579
+ User->>CLI: helm values-manager remove-value -- path app.replicas --deployment prod
580
580
activate CLI
581
581
582
582
CLI->>BaseCommand: execute()
@@ -624,7 +624,7 @@ sequenceDiagram
624
624
participant HelmValuesConfig
625
625
participant Value
626
626
627
- User->>CLI: helm values remove-value-config --path= app.replicas
627
+ User->>CLI: helm values-manager remove-value-config --path app.replicas
628
628
activate CLI
629
629
630
630
CLI->>BaseCommand: execute()
@@ -659,6 +659,7 @@ sequenceDiagram
659
659
```
660
660
661
661
Each diagram shows:
662
+
662
663
- The exact CLI command being executed
663
664
- All components involved in processing the command
664
665
- The sequence of operations and data flow
@@ -679,3 +680,4 @@ Each diagram shows:
679
680
10 . ` remove-deployment ` - Remove a deployment configuration
680
681
11 . ` remove-value ` - Remove a value for a specific path and environment
681
682
12 . ` remove-value-config ` - Remove a value configuration and its associated values
683
+ 13 . ` generate ` - Generate a values file for a specific deployment
0 commit comments