@codiac.io/codiac-cli 1.3.203 → 1.3.204

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/README.md +503 -164
  2. package/dist/apis/codiac-api/gen/contracts/types.gen.d.ts +2 -0
  3. package/dist/apis/codiac-relay/gen/client.d.ts +8 -6
  4. package/dist/apis/codiac-relay/gen/client.js +14 -8
  5. package/dist/apis/codiac-relay/gen/client.js.map +1 -1
  6. package/dist/apis/codiac-relay/gen/contracts/types.gen.d.ts +17 -13
  7. package/dist/apis/codiac-relay/gen/contracts/types.gen.js.map +1 -1
  8. package/dist/apis/codiac-relay/i-client.d.ts +6 -0
  9. package/dist/apis/codiac-relay-nats/gen/client.d.ts +6 -4
  10. package/dist/apis/codiac-relay-nats/gen/client.js +18 -11
  11. package/dist/apis/codiac-relay-nats/gen/client.js.map +1 -1
  12. package/dist/apis/codiac-relay-nats/gen/contracts/types.gen.d.ts +17 -13
  13. package/dist/apis/codiac-relay-nats/gen/contracts/types.gen.js.map +1 -1
  14. package/dist/commands/asset/deploy.js +3 -3
  15. package/dist/commands/asset/deploy.js.map +1 -1
  16. package/dist/commands/cabinet/cluster/attach.d.ts +2 -0
  17. package/dist/commands/cabinet/cluster/attach.js +36 -29
  18. package/dist/commands/cabinet/cluster/attach.js.map +1 -1
  19. package/dist/commands/cabinet/destroy.js +1 -1
  20. package/dist/commands/cabinet/destroy.js.map +1 -1
  21. package/dist/commands/cabinet/detach.js +1 -1
  22. package/dist/commands/cabinet/detach.js.map +1 -1
  23. package/dist/commands/cabinet/forget.js +1 -1
  24. package/dist/commands/cabinet/forget.js.map +1 -1
  25. package/dist/commands/cabinet/restore.js +2 -12
  26. package/dist/commands/cabinet/restore.js.map +1 -1
  27. package/dist/commands/cluster/agent/configure.d.ts +3 -3
  28. package/dist/commands/cluster/agent/configure.js +3 -3
  29. package/dist/commands/cluster/agent/configure.js.map +1 -1
  30. package/dist/commands/cluster/agent/install.d.ts +2 -1
  31. package/dist/commands/cluster/agent/install.js +35 -6
  32. package/dist/commands/cluster/agent/install.js.map +1 -1
  33. package/dist/commands/cluster/agent/uninstall.d.ts +1 -1
  34. package/dist/commands/cluster/agent/uninstall.js +2 -2
  35. package/dist/commands/cluster/agent/uninstall.js.map +1 -1
  36. package/dist/commands/noc/cluster/define.js +5 -1
  37. package/dist/commands/noc/cluster/define.js.map +1 -1
  38. package/dist/relay/relay-container.js +1 -1
  39. package/dist/uilogic/rootmap-ui-utils.d.ts +3 -1
  40. package/dist/uilogic/rootmap-ui-utils.js +23 -3
  41. package/dist/uilogic/rootmap-ui-utils.js.map +1 -1
  42. package/oclif.manifest.json +29 -6
  43. package/package.json +1 -1
package/README.md CHANGED
@@ -21,7 +21,7 @@ $ npm install -g @codiac.io/codiac-cli
21
21
  $ codiac COMMAND
22
22
  running command...
23
23
  $ codiac (--version|-v)
24
- @codiac.io/codiac-cli/1.3.203 linux-x64 node-v22.15.1
24
+ @codiac.io/codiac-cli/1.3.204 linux-x64 node-v22.15.1
25
25
  $ codiac --help [COMMAND]
26
26
  USAGE
27
27
  $ codiac COMMAND
@@ -256,6 +256,7 @@ USAGE
256
256
  * [`codiac branches current`](#codiac-branches-current)
257
257
  * [`codiac branches list`](#codiac-branches-list)
258
258
  * [`codiac build`](#codiac-build)
259
+ * [`codiac cab attach`](#codiac-cab-attach)
259
260
  * [`codiac cab cluster attach`](#codiac-cab-cluster-attach)
260
261
  * [`codiac cab contents`](#codiac-cab-contents)
261
262
  * [`codiac cab create [CABINET]`](#codiac-cab-create-cabinet)
@@ -266,6 +267,7 @@ USAGE
266
267
  * [`codiac cab list`](#codiac-cab-list)
267
268
  * [`codiac cab obliterate [CABINET]`](#codiac-cab-obliterate-cabinet)
268
269
  * [`codiac cab restore`](#codiac-cab-restore)
270
+ * [`codiac cabinet attach`](#codiac-cabinet-attach)
269
271
  * [`codiac cabinet cluster attach`](#codiac-cabinet-cluster-attach)
270
272
  * [`codiac cabinet contents`](#codiac-cabinet-contents)
271
273
  * [`codiac cabinet create [CABINET]`](#codiac-cabinet-create-cabinet)
@@ -292,6 +294,9 @@ USAGE
292
294
  * [`codiac cluster define [NAME]`](#codiac-cluster-define-name)
293
295
  * [`codiac cluster deinit`](#codiac-cluster-deinit)
294
296
  * [`codiac cluster destroy [NAME]`](#codiac-cluster-destroy-name)
297
+ * [`codiac cluster envoy configure [CLUSTER]`](#codiac-cluster-envoy-configure-cluster)
298
+ * [`codiac cluster envoy install [CLUSTER]`](#codiac-cluster-envoy-install-cluster)
299
+ * [`codiac cluster envoy uninstall [CLUSTER]`](#codiac-cluster-envoy-uninstall-cluster)
295
300
  * [`codiac cluster forget`](#codiac-cluster-forget)
296
301
  * [`codiac cluster grant`](#codiac-cluster-grant)
297
302
  * [`codiac cluster init`](#codiac-cluster-init)
@@ -575,7 +580,7 @@ EXAMPLES
575
580
  $ codiac asset create -e myEnterprise -n my-api --deploy-condition "environment.name = 'production'"
576
581
  ```
577
582
 
578
- _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/create.ts)_
583
+ _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/create.ts)_
579
584
 
580
585
  ## `codiac asset edit`
581
586
 
@@ -633,7 +638,7 @@ EXAMPLES
633
638
  $ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
634
639
  ```
635
640
 
636
- _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/edit.ts)_
641
+ _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/edit.ts)_
637
642
 
638
643
  ## `codiac asset entrypoint`
639
644
 
@@ -754,7 +759,7 @@ EXAMPLES
754
759
  $ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
755
760
  ```
756
761
 
757
- _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/entrypoint/delete.ts)_
762
+ _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/entrypoint/delete.ts)_
758
763
 
759
764
  ## `codiac asset entrypoint set`
760
765
 
@@ -823,7 +828,7 @@ EXAMPLES
823
828
  --input=/backup/workflows'
824
829
  ```
825
830
 
826
- _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/entrypoint/set.ts)_
831
+ _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/entrypoint/set.ts)_
827
832
 
828
833
  ## `codiac asset get [CMD]`
829
834
 
@@ -930,7 +935,7 @@ EXAMPLES
930
935
  $ codiac asset list -e myEnterprise --to-script
931
936
  ```
932
937
 
933
- _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/list.ts)_
938
+ _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/list.ts)_
934
939
 
935
940
  ## `codiac asset mon [CMD]`
936
941
 
@@ -1177,7 +1182,7 @@ EXAMPLES
1177
1182
  $ codiac asset obliterate -e main -n my-api
1178
1183
  ```
1179
1184
 
1180
- _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/obliterate.ts)_
1185
+ _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/obliterate.ts)_
1181
1186
 
1182
1187
  ## `codiac asset probe create [CMD]`
1183
1188
 
@@ -1267,7 +1272,7 @@ EXAMPLES
1267
1272
  $ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
1268
1273
  ```
1269
1274
 
1270
- _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/probe/create.ts)_
1275
+ _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/probe/create.ts)_
1271
1276
 
1272
1277
  ## `codiac asset probe delete`
1273
1278
 
@@ -1322,7 +1327,7 @@ EXAMPLES
1322
1327
  $ codiac asset probe delete
1323
1328
  ```
1324
1329
 
1325
- _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/probe/delete.ts)_
1330
+ _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/probe/delete.ts)_
1326
1331
 
1327
1332
  ## `codiac asset probe list`
1328
1333
 
@@ -1374,7 +1379,7 @@ EXAMPLES
1374
1379
  $ codiac asset probe list
1375
1380
  ```
1376
1381
 
1377
- _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/probe/list.ts)_
1382
+ _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/probe/list.ts)_
1378
1383
 
1379
1384
  ## `codiac asset recycle`
1380
1385
 
@@ -1414,7 +1419,7 @@ DESCRIPTION
1414
1419
  Deploys a given asset to a given cabinet. Defaults to current version.
1415
1420
  ```
1416
1421
 
1417
- _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/recycle.ts)_
1422
+ _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/recycle.ts)_
1418
1423
 
1419
1424
  ## `codiac asset undeploy`
1420
1425
 
@@ -1458,7 +1463,7 @@ EXAMPLES
1458
1463
  $ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
1459
1464
  ```
1460
1465
 
1461
- _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/undeploy.ts)_
1466
+ _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/undeploy.ts)_
1462
1467
 
1463
1468
  ## `codiac asset view [CMD]`
1464
1469
 
@@ -1513,7 +1518,7 @@ ALIASES
1513
1518
  $ codiac asset get
1514
1519
  ```
1515
1520
 
1516
- _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/view.ts)_
1521
+ _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/view.ts)_
1517
1522
 
1518
1523
  ## `codiac asset vol add [MOUNTPATH]`
1519
1524
 
@@ -1784,7 +1789,7 @@ ALIASES
1784
1789
  $ codiac asset volume add
1785
1790
  ```
1786
1791
 
1787
- _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/volume/create.ts)_
1792
+ _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/volume/create.ts)_
1788
1793
 
1789
1794
  ## `codiac asset volume del`
1790
1795
 
@@ -1872,7 +1877,7 @@ EXAMPLES
1872
1877
  $ codiac asset volume delete -e myEnterprise -n myMount --to-script
1873
1878
  ```
1874
1879
 
1875
- _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/volume/delete.ts)_
1880
+ _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/volume/delete.ts)_
1876
1881
 
1877
1882
  ## `codiac asset volume list`
1878
1883
 
@@ -1921,7 +1926,7 @@ EXAMPLES
1921
1926
  $ codiac asset volume list -e myEnterprise --silent
1922
1927
  ```
1923
1928
 
1924
- _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/volume/list.ts)_
1929
+ _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/volume/list.ts)_
1925
1930
 
1926
1931
  ## `codiac asset volumes del`
1927
1932
 
@@ -2088,7 +2093,7 @@ EXAMPLES
2088
2093
  $ codiac asset where -e main -a my-api --silent
2089
2094
  ```
2090
2095
 
2091
- _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/asset/where.ts)_
2096
+ _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/asset/where.ts)_
2092
2097
 
2093
2098
  ## `codiac auth cab allow`
2094
2099
 
@@ -2250,7 +2255,7 @@ EXAMPLES
2250
2255
  $ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
2251
2256
  ```
2252
2257
 
2253
- _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/cabinet/allow.ts)_
2258
+ _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/cabinet/allow.ts)_
2254
2259
 
2255
2260
  ## `codiac auth cabinet allowed`
2256
2261
 
@@ -2298,7 +2303,7 @@ EXAMPLES
2298
2303
  $ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
2299
2304
  ```
2300
2305
 
2301
- _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/cabinet/allowed.ts)_
2306
+ _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/cabinet/allowed.ts)_
2302
2307
 
2303
2308
  ## `codiac auth ent allow`
2304
2309
 
@@ -2489,7 +2494,7 @@ EXAMPLES
2489
2494
  $ codiac auth enterprise allow -r deployer -p none
2490
2495
  ```
2491
2496
 
2492
- _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/enterprise/allow.ts)_
2497
+ _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/enterprise/allow.ts)_
2493
2498
 
2494
2499
  ## `codiac auth enterprise allow onEnvironments`
2495
2500
 
@@ -2543,7 +2548,7 @@ EXAMPLES
2543
2548
  $ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
2544
2549
  ```
2545
2550
 
2546
- _See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/enterprise/allow/onEnvironments.ts)_
2551
+ _See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/enterprise/allow/onEnvironments.ts)_
2547
2552
 
2548
2553
  ## `codiac auth enterprise allowed`
2549
2554
 
@@ -2584,7 +2589,7 @@ EXAMPLES
2584
2589
  $ codiac auth enterprise allowed --enterprise modeling
2585
2590
  ```
2586
2591
 
2587
- _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/enterprise/allowed.ts)_
2592
+ _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/enterprise/allowed.ts)_
2588
2593
 
2589
2594
  ## `codiac auth env allowed`
2590
2595
 
@@ -2791,7 +2796,7 @@ EXAMPLES
2791
2796
  $ codiac auth environment allow -e qa -r productmanager -p read
2792
2797
  ```
2793
2798
 
2794
- _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/environment/allow.ts)_
2799
+ _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/environment/allow.ts)_
2795
2800
 
2796
2801
  ## `codiac auth environment allow onCabinets`
2797
2802
 
@@ -2848,7 +2853,7 @@ EXAMPLES
2848
2853
  $ codiac auth environment allow onCabinets -e qa -r productmanager -p read
2849
2854
  ```
2850
2855
 
2851
- _See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/environment/allow/onCabinets.ts)_
2856
+ _See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/environment/allow/onCabinets.ts)_
2852
2857
 
2853
2858
  ## `codiac auth environment allowed`
2854
2859
 
@@ -2893,7 +2898,7 @@ EXAMPLES
2893
2898
  $ codiac auth environment allowed --enterprise modeling -e dev
2894
2899
  ```
2895
2900
 
2896
- _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/environment/allowed.ts)_
2901
+ _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/environment/allowed.ts)_
2897
2902
 
2898
2903
  ## `codiac auth register`
2899
2904
 
@@ -2939,7 +2944,7 @@ EXAMPLES
2939
2944
  $ codiac auth register
2940
2945
  ```
2941
2946
 
2942
- _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/register.ts)_
2947
+ _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/register.ts)_
2943
2948
 
2944
2949
  ## `codiac auth role allowed [NAME]`
2945
2950
 
@@ -2986,7 +2991,7 @@ EXAMPLES
2986
2991
  $ codiac auth role allowed -n deployer -e main
2987
2992
  ```
2988
2993
 
2989
- _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/role/allowed.ts)_
2994
+ _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/role/allowed.ts)_
2990
2995
 
2991
2996
  ## `codiac auth role assign`
2992
2997
 
@@ -3018,7 +3023,7 @@ EXAMPLES
3018
3023
  $ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
3019
3024
  ```
3020
3025
 
3021
- _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/role/assign.ts)_
3026
+ _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/role/assign.ts)_
3022
3027
 
3023
3028
  ## `codiac auth role create [NAME]`
3024
3029
 
@@ -3051,7 +3056,7 @@ EXAMPLES
3051
3056
  $ codiac auth role create -n deployer
3052
3057
  ```
3053
3058
 
3054
- _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/role/create.ts)_
3059
+ _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/role/create.ts)_
3055
3060
 
3056
3061
  ## `codiac auth role delete [NAME]`
3057
3062
 
@@ -3087,7 +3092,7 @@ EXAMPLES
3087
3092
  $ codiac auth role delete --id abc123def456
3088
3093
  ```
3089
3094
 
3090
- _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/role/delete.ts)_
3095
+ _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/role/delete.ts)_
3091
3096
 
3092
3097
  ## `codiac auth role list`
3093
3098
 
@@ -3123,7 +3128,7 @@ EXAMPLES
3123
3128
  $ codiac auth role list -o yaml > roles.yaml
3124
3129
  ```
3125
3130
 
3126
- _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/role/list.ts)_
3131
+ _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/role/list.ts)_
3127
3132
 
3128
3133
  ## `codiac auth role unassign`
3129
3134
 
@@ -3155,7 +3160,7 @@ EXAMPLES
3155
3160
  $ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
3156
3161
  ```
3157
3162
 
3158
- _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/role/unassign.ts)_
3163
+ _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/role/unassign.ts)_
3159
3164
 
3160
3165
  ## `codiac auth user invite`
3161
3166
 
@@ -3195,7 +3200,7 @@ EXAMPLES
3195
3200
  $ codiac auth user invite
3196
3201
  ```
3197
3202
 
3198
- _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/user/invite.ts)_
3203
+ _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/user/invite.ts)_
3199
3204
 
3200
3205
  ## `codiac auth user list`
3201
3206
 
@@ -3231,7 +3236,7 @@ EXAMPLES
3231
3236
  $ codiac auth user list -o yaml > users.yaml
3232
3237
  ```
3233
3238
 
3234
- _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/auth/user/list.ts)_
3239
+ _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/auth/user/list.ts)_
3235
3240
 
3236
3241
  ## `codiac autocomplete [SHELL]`
3237
3242
 
@@ -3281,7 +3286,7 @@ DESCRIPTION
3281
3286
  Creates a new branch for the parent project and any sourced dependencies.
3282
3287
  ```
3283
3288
 
3284
- _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/branch.ts)_
3289
+ _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/branch.ts)_
3285
3290
 
3286
3291
  ## `codiac branch current`
3287
3292
 
@@ -3301,7 +3306,7 @@ ALIASES
3301
3306
  $ codiac branches current
3302
3307
  ```
3303
3308
 
3304
- _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/branch/current.ts)_
3309
+ _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/branch/current.ts)_
3305
3310
 
3306
3311
  ## `codiac branch list`
3307
3312
 
@@ -3323,7 +3328,7 @@ ALIASES
3323
3328
  $ codiac branches list
3324
3329
  ```
3325
3330
 
3326
- _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/branch/list.ts)_
3331
+ _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/branch/list.ts)_
3327
3332
 
3328
3333
  ## `codiac branches current`
3329
3334
 
@@ -3413,7 +3418,70 @@ DESCRIPTION
3413
3418
  Builds the project and the docker container
3414
3419
  ```
3415
3420
 
3416
- _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/build.ts)_
3421
+ _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/build.ts)_
3422
+
3423
+ ## `codiac cab attach`
3424
+
3425
+ Declares which cluster a cabinet is intended to run on. Records the association in Codiac metadata so that restore and deploy operations know where to target the cabinet. No infrastructure is created or modified.
3426
+
3427
+ ```
3428
+ USAGE
3429
+ $ codiac cab attach [-e <value>] [-b <value>] [-n <value>] [-c <value>] [--force] [--take-defaults | [--silent
3430
+ | --echo | --to-script]]
3431
+
3432
+ FLAGS
3433
+ -b, --cabinet=<value> Name of the cabinet to attach.
3434
+ -c, --cluster=<value> Name of the cluster to attach the cabinet to.
3435
+ -e, --enterprise=<value> The name of the enterprise in which the cabinet resides. NOTE: You can leave this blank if
3436
+ there is only one.
3437
+ -n, --environment=<value> Name of the environment the cabinet belongs to.
3438
+ --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
3439
+ before final execution.
3440
+ --force Automatically attaches the cluster to the cabinet's environment first if it isn't already
3441
+ attached there.
3442
+ --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
3443
+ invalid arguments.
3444
+ --take-defaults Prevents prompting for confirmation on parameters that were passed in or were automatically
3445
+ set to default values (Irrelevant in --silent mode).
3446
+ --to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
3447
+ execution.
3448
+
3449
+ DESCRIPTION
3450
+ Declares which cluster a cabinet is intended to run on. Records the association in Codiac metadata so that restore and
3451
+ deploy operations know where to target the cabinet. No infrastructure is created or modified.
3452
+
3453
+ ALIASES
3454
+ $ codiac cab cluster attach
3455
+ $ codiac cabinet attach
3456
+ $ codiac cab attach
3457
+
3458
+ EXAMPLES
3459
+ Attach a cabinet to a cluster interactively.
3460
+
3461
+ $ codiac cab attach
3462
+
3463
+ Attach a specific cabinet to a cluster (prompts for missing values).
3464
+
3465
+ $ codiac cab attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1
3466
+
3467
+ Non-interactive (scripted) invocation — fails fast on any missing argument.
3468
+
3469
+ $ codiac cab attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 --silent
3470
+
3471
+ Attach a cabinet to a cluster that is not yet in its environment, attaching the cluster to the environment
3472
+ automatically.
3473
+
3474
+ $ codiac cab attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 --force
3475
+
3476
+ Renders the equivalent silent command and then executes (useful for building scripts).
3477
+
3478
+ $ codiac cab attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 --echo
3479
+
3480
+ Renders the equivalent silent command without executing (dry run).
3481
+
3482
+ $ codiac cab attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 \
3483
+ --to-script
3484
+ ```
3417
3485
 
3418
3486
  ## `codiac cab cluster attach`
3419
3487
 
@@ -3421,8 +3489,8 @@ Declares which cluster a cabinet is intended to run on. Records the association
3421
3489
 
3422
3490
  ```
3423
3491
  USAGE
3424
- $ codiac cab cluster attach [-e <value>] [-b <value>] [-n <value>] [-c <value>] [--take-defaults | [--silent | --echo
3425
- | --to-script]]
3492
+ $ codiac cab cluster attach [-e <value>] [-b <value>] [-n <value>] [-c <value>] [--force] [--take-defaults | [--silent
3493
+ | --echo | --to-script]]
3426
3494
 
3427
3495
  FLAGS
3428
3496
  -b, --cabinet=<value> Name of the cabinet to attach.
@@ -3432,6 +3500,8 @@ FLAGS
3432
3500
  -n, --environment=<value> Name of the environment the cabinet belongs to.
3433
3501
  --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
3434
3502
  before final execution.
3503
+ --force Automatically attaches the cluster to the cabinet's environment first if it isn't already
3504
+ attached there.
3435
3505
  --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
3436
3506
  invalid arguments.
3437
3507
  --take-defaults Prevents prompting for confirmation on parameters that were passed in or were automatically
@@ -3445,6 +3515,8 @@ DESCRIPTION
3445
3515
 
3446
3516
  ALIASES
3447
3517
  $ codiac cab cluster attach
3518
+ $ codiac cabinet attach
3519
+ $ codiac cab attach
3448
3520
 
3449
3521
  EXAMPLES
3450
3522
  Attach a cabinet to a cluster interactively.
@@ -3460,6 +3532,12 @@ EXAMPLES
3460
3532
  $ codiac cab cluster attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 \
3461
3533
  --silent
3462
3534
 
3535
+ Attach a cabinet to a cluster that is not yet in its environment, attaching the cluster to the environment
3536
+ automatically.
3537
+
3538
+ $ codiac cab cluster attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 \
3539
+ --force
3540
+
3463
3541
  Renders the equivalent silent command and then executes (useful for building scripts).
3464
3542
 
3465
3543
  $ codiac cab cluster attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 \
@@ -3956,14 +4034,80 @@ EXAMPLES
3956
4034
  $ codiac cab restore --cluster prod-cluster-1 --to-script
3957
4035
  ```
3958
4036
 
4037
+ ## `codiac cabinet attach`
4038
+
4039
+ Declares which cluster a cabinet is intended to run on. Records the association in Codiac metadata so that restore and deploy operations know where to target the cabinet. No infrastructure is created or modified.
4040
+
4041
+ ```
4042
+ USAGE
4043
+ $ codiac cabinet attach [-e <value>] [-b <value>] [-n <value>] [-c <value>] [--force] [--take-defaults | [--silent
4044
+ | --echo | --to-script]]
4045
+
4046
+ FLAGS
4047
+ -b, --cabinet=<value> Name of the cabinet to attach.
4048
+ -c, --cluster=<value> Name of the cluster to attach the cabinet to.
4049
+ -e, --enterprise=<value> The name of the enterprise in which the cabinet resides. NOTE: You can leave this blank if
4050
+ there is only one.
4051
+ -n, --environment=<value> Name of the environment the cabinet belongs to.
4052
+ --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
4053
+ before final execution.
4054
+ --force Automatically attaches the cluster to the cabinet's environment first if it isn't already
4055
+ attached there.
4056
+ --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
4057
+ invalid arguments.
4058
+ --take-defaults Prevents prompting for confirmation on parameters that were passed in or were automatically
4059
+ set to default values (Irrelevant in --silent mode).
4060
+ --to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
4061
+ execution.
4062
+
4063
+ DESCRIPTION
4064
+ Declares which cluster a cabinet is intended to run on. Records the association in Codiac metadata so that restore and
4065
+ deploy operations know where to target the cabinet. No infrastructure is created or modified.
4066
+
4067
+ ALIASES
4068
+ $ codiac cab cluster attach
4069
+ $ codiac cabinet attach
4070
+ $ codiac cab attach
4071
+
4072
+ EXAMPLES
4073
+ Attach a cabinet to a cluster interactively.
4074
+
4075
+ $ codiac cabinet attach
4076
+
4077
+ Attach a specific cabinet to a cluster (prompts for missing values).
4078
+
4079
+ $ codiac cabinet attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1
4080
+
4081
+ Non-interactive (scripted) invocation — fails fast on any missing argument.
4082
+
4083
+ $ codiac cabinet attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 \
4084
+ --silent
4085
+
4086
+ Attach a cabinet to a cluster that is not yet in its environment, attaching the cluster to the environment
4087
+ automatically.
4088
+
4089
+ $ codiac cabinet attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 \
4090
+ --force
4091
+
4092
+ Renders the equivalent silent command and then executes (useful for building scripts).
4093
+
4094
+ $ codiac cabinet attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 \
4095
+ --echo
4096
+
4097
+ Renders the equivalent silent command without executing (dry run).
4098
+
4099
+ $ codiac cabinet attach --enterprise acme --cabinet api-gateway --environment prod --cluster prod-cluster-1 \
4100
+ --to-script
4101
+ ```
4102
+
3959
4103
  ## `codiac cabinet cluster attach`
3960
4104
 
3961
4105
  Declares which cluster a cabinet is intended to run on. Records the association in Codiac metadata so that restore and deploy operations know where to target the cabinet. No infrastructure is created or modified.
3962
4106
 
3963
4107
  ```
3964
4108
  USAGE
3965
- $ codiac cabinet cluster attach [-e <value>] [-b <value>] [-n <value>] [-c <value>] [--take-defaults | [--silent | --echo
3966
- | --to-script]]
4109
+ $ codiac cabinet cluster attach [-e <value>] [-b <value>] [-n <value>] [-c <value>] [--force] [--take-defaults | [--silent
4110
+ | --echo | --to-script]]
3967
4111
 
3968
4112
  FLAGS
3969
4113
  -b, --cabinet=<value> Name of the cabinet to attach.
@@ -3973,6 +4117,8 @@ FLAGS
3973
4117
  -n, --environment=<value> Name of the environment the cabinet belongs to.
3974
4118
  --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
3975
4119
  before final execution.
4120
+ --force Automatically attaches the cluster to the cabinet's environment first if it isn't already
4121
+ attached there.
3976
4122
  --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
3977
4123
  invalid arguments.
3978
4124
  --take-defaults Prevents prompting for confirmation on parameters that were passed in or were automatically
@@ -3986,6 +4132,8 @@ DESCRIPTION
3986
4132
 
3987
4133
  ALIASES
3988
4134
  $ codiac cab cluster attach
4135
+ $ codiac cabinet attach
4136
+ $ codiac cab attach
3989
4137
 
3990
4138
  EXAMPLES
3991
4139
  Attach a cabinet to a cluster interactively.
@@ -4002,6 +4150,12 @@ EXAMPLES
4002
4150
  $ codiac cabinet cluster attach --enterprise acme --cabinet api-gateway --environment prod --cluster \
4003
4151
  prod-cluster-1 --silent
4004
4152
 
4153
+ Attach a cabinet to a cluster that is not yet in its environment, attaching the cluster to the environment
4154
+ automatically.
4155
+
4156
+ $ codiac cabinet cluster attach --enterprise acme --cabinet api-gateway --environment prod --cluster \
4157
+ prod-cluster-1 --force
4158
+
4005
4159
  Renders the equivalent silent command and then executes (useful for building scripts).
4006
4160
 
4007
4161
  $ codiac cabinet cluster attach --enterprise acme --cabinet api-gateway --environment prod --cluster \
@@ -4013,7 +4167,7 @@ EXAMPLES
4013
4167
  prod-cluster-1 --to-script
4014
4168
  ```
4015
4169
 
4016
- _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/cluster/attach.ts)_
4170
+ _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/cluster/attach.ts)_
4017
4171
 
4018
4172
  ## `codiac cabinet contents`
4019
4173
 
@@ -4057,7 +4211,7 @@ EXAMPLES
4057
4211
  $ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
4058
4212
  ```
4059
4213
 
4060
- _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/contents.ts)_
4214
+ _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/contents.ts)_
4061
4215
 
4062
4216
  ## `codiac cabinet create [CABINET]`
4063
4217
 
@@ -4124,7 +4278,7 @@ EXAMPLES
4124
4278
  cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
4125
4279
  ```
4126
4280
 
4127
- _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/create.ts)_
4281
+ _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/create.ts)_
4128
4282
 
4129
4283
  ## `codiac cabinet define [CABINET]`
4130
4284
 
@@ -4186,7 +4340,7 @@ EXAMPLES
4186
4340
  $ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
4187
4341
  ```
4188
4342
 
4189
- _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/define.ts)_
4343
+ _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/define.ts)_
4190
4344
 
4191
4345
  ## `codiac cabinet destroy [CABINET]`
4192
4346
 
@@ -4244,7 +4398,7 @@ EXAMPLES
4244
4398
  --environment dev --silent
4245
4399
  ```
4246
4400
 
4247
- _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/destroy.ts)_
4401
+ _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/destroy.ts)_
4248
4402
 
4249
4403
  ## `codiac cabinet detach [CABINET]`
4250
4404
 
@@ -4301,7 +4455,7 @@ EXAMPLES
4301
4455
  main --environment dev
4302
4456
  ```
4303
4457
 
4304
- _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/detach.ts)_
4458
+ _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/detach.ts)_
4305
4459
 
4306
4460
  ## `codiac cabinet forget [CABINET]`
4307
4461
 
@@ -4356,7 +4510,7 @@ EXAMPLES
4356
4510
  $ codiac cabinet forget --to-script
4357
4511
  ```
4358
4512
 
4359
- _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/forget.ts)_
4513
+ _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/forget.ts)_
4360
4514
 
4361
4515
  ## `codiac cabinet list`
4362
4516
 
@@ -4407,7 +4561,7 @@ EXAMPLES
4407
4561
  $ codiac cabinet list -e myEnterprise --silent
4408
4562
  ```
4409
4563
 
4410
- _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/list.ts)_
4564
+ _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/list.ts)_
4411
4565
 
4412
4566
  ## `codiac cabinet obliterate [CABINET]`
4413
4567
 
@@ -4449,7 +4603,7 @@ ALIASES
4449
4603
  $ codiac infrx cab obliterate
4450
4604
  ```
4451
4605
 
4452
- _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/obliterate.ts)_
4606
+ _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/obliterate.ts)_
4453
4607
 
4454
4608
  ## `codiac cabinet restore`
4455
4609
 
@@ -4516,7 +4670,7 @@ EXAMPLES
4516
4670
  $ codiac cabinet restore --cluster prod-cluster-1 --to-script
4517
4671
  ```
4518
4672
 
4519
- _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cabinet/restore.ts)_
4673
+ _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cabinet/restore.ts)_
4520
4674
 
4521
4675
  ## `codiac cfg add`
4522
4676
 
@@ -4791,7 +4945,7 @@ DESCRIPTION
4791
4945
  Applies settings to the Codiac CLI itself (scoped to the local machine).
4792
4946
  ```
4793
4947
 
4794
- _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cli.ts)_
4948
+ _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cli.ts)_
4795
4949
 
4796
4950
  ## `codiac cluster agent configure [CLUSTER]`
4797
4951
 
@@ -4828,6 +4982,9 @@ DESCRIPTION
4828
4982
  can be provided as a JSON or YAML string via --settings, piped in via stdin, or entered interactively as a single
4829
4983
  key-value pair.
4830
4984
 
4985
+ ALIASES
4986
+ $ codiac cluster envoy configure
4987
+
4831
4988
  EXAMPLES
4832
4989
  Patch inline JSON settings into the existing agent configuration.
4833
4990
 
@@ -4856,7 +5013,7 @@ EXAMPLES
4856
5013
  $ codiac cluster agent configure my-cluster --to-script
4857
5014
  ```
4858
5015
 
4859
- _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/agent/configure.ts)_
5016
+ _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/agent/configure.ts)_
4860
5017
 
4861
5018
  ## `codiac cluster agent install [CLUSTER]`
4862
5019
 
@@ -4887,6 +5044,9 @@ FLAGS
4887
5044
  DESCRIPTION
4888
5045
  Installs the Codiac agent on the given cluster, enabling Codiac to manage workloads and configurations on the cluster.
4889
5046
 
5047
+ ALIASES
5048
+ $ codiac cluster envoy install
5049
+
4890
5050
  EXAMPLES
4891
5051
  Install the Codiac agent on a cluster.
4892
5052
 
@@ -4909,7 +5069,7 @@ EXAMPLES
4909
5069
  $ codiac cluster agent install my-cluster --to-script
4910
5070
  ```
4911
5071
 
4912
- _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/agent/install.ts)_
5072
+ _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/agent/install.ts)_
4913
5073
 
4914
5074
  ## `codiac cluster agent uninstall [CLUSTER]`
4915
5075
 
@@ -4936,6 +5096,9 @@ FLAGS
4936
5096
  DESCRIPTION
4937
5097
  Uninstalls the Codiac agent from the given cluster.
4938
5098
 
5099
+ ALIASES
5100
+ $ codiac cluster envoy uninstall
5101
+
4939
5102
  EXAMPLES
4940
5103
  Uninstall the Codiac agent from a cluster.
4941
5104
 
@@ -4954,7 +5117,7 @@ EXAMPLES
4954
5117
  $ codiac cluster agent uninstall my-cluster --to-script
4955
5118
  ```
4956
5119
 
4957
- _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/agent/uninstall.ts)_
5120
+ _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/agent/uninstall.ts)_
4958
5121
 
4959
5122
  ## `codiac cluster bootstrap [NAME]`
4960
5123
 
@@ -5017,7 +5180,7 @@ EXAMPLES
5017
5180
  $ codiac cluster bootstrap my-cluster --to-script
5018
5181
  ```
5019
5182
 
5020
- _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/bootstrap.ts)_
5183
+ _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/bootstrap.ts)_
5021
5184
 
5022
5185
  ## `codiac cluster capture`
5023
5186
 
@@ -5102,7 +5265,7 @@ EXAMPLES
5102
5265
  $ codiac cluster connect my-fav-cluster
5103
5266
  ```
5104
5267
 
5105
- _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/connect.ts)_
5268
+ _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/connect.ts)_
5106
5269
 
5107
5270
  ## `codiac cluster contents`
5108
5271
 
@@ -5299,7 +5462,8 @@ USAGE
5299
5462
  --to-script]]
5300
5463
 
5301
5464
  ARGUMENTS
5302
- NAME Name of the cluster to define or update.
5465
+ NAME Name of the cluster to define. If a definition already exists with this name, it is loaded and opened for
5466
+ editing.
5303
5467
 
5304
5468
  FLAGS
5305
5469
  -g, --resourceGroup=<value> (Azure only, required) The resource group associated with the cluster.
@@ -5340,6 +5504,10 @@ EXAMPLES
5340
5504
 
5341
5505
  $ codiac cluster define
5342
5506
 
5507
+ Load and edit an existing cluster definition interactively by name.
5508
+
5509
+ $ codiac cluster define my-cluster
5510
+
5343
5511
  Define an Azure cluster non-interactively.
5344
5512
 
5345
5513
  $ codiac cluster define my-cluster --provider azure --providerSubscription <sub-id> --resourceGroup my-rg \
@@ -5424,6 +5592,172 @@ ALIASES
5424
5592
  $ codiac cluster destroy
5425
5593
  ```
5426
5594
 
5595
+ ## `codiac cluster envoy configure [CLUSTER]`
5596
+
5597
+ Applies configuration settings to the Codiac agent on the given cluster. Use "overlay" mode (default) to merge settings on top of the existing configuration, or "replace" mode to overwrite the configuration entirely. Settings can be provided as a JSON or YAML string via --settings, piped in via stdin, or entered interactively as a single key-value pair.
5598
+
5599
+ ```
5600
+ USAGE
5601
+ $ codiac cluster envoy configure [CLUSTER] [-m overlay|replace] [--settings <value>] [--take-defaults | [--silent | --echo
5602
+ | --to-script]]
5603
+
5604
+ ARGUMENTS
5605
+ CLUSTER Name of the cluster in Codiac on which to configure the Codiac agent. You can use `cod cluster list` to see
5606
+ available cluster names.
5607
+
5608
+ FLAGS
5609
+ -m, --mode=<option> How to apply the provided settings: "overlay" (default) merges the settings on top of the
5610
+ existing configuration; "replace" overwrites the configuration entirely.
5611
+ <options: overlay|replace>
5612
+ --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use before
5613
+ final execution.
5614
+ --settings=<value> JSON or YAML string of settings to apply to the agent configuration. Alternatively, pipe
5615
+ settings content via stdin.
5616
+ --silent Non-Interactive mode; executes without any user interaction and fails on any missing or invalid
5617
+ arguments.
5618
+ --take-defaults Prevents prompting for confirmation on parameters that were passed in or were automatically set
5619
+ to default values (Irrelevant in --silent mode). This behavior does NOT apply to scenarios where
5620
+ the command needs to override invalid user input; such cases will always prompt for confirmation.
5621
+ --to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
5622
+ execution.
5623
+
5624
+ DESCRIPTION
5625
+ Applies configuration settings to the Codiac agent on the given cluster. Use "overlay" mode (default) to merge
5626
+ settings on top of the existing configuration, or "replace" mode to overwrite the configuration entirely. Settings
5627
+ can be provided as a JSON or YAML string via --settings, piped in via stdin, or entered interactively as a single
5628
+ key-value pair.
5629
+
5630
+ ALIASES
5631
+ $ codiac cluster envoy configure
5632
+
5633
+ EXAMPLES
5634
+ Patch inline JSON settings into the existing agent configuration.
5635
+
5636
+ $ codiac cluster envoy configure my-cluster --settings '{"keel": {"image": {"repository": "my-repo", "tag": \
5637
+ "latest", "pullPolicy": "Always"}}}'
5638
+
5639
+ Replace the entire agent configuration with inline JSON settings.
5640
+
5641
+ $ codiac cluster envoy configure my-cluster --mode replace --settings '{"keel": {"image": {"repository": \
5642
+ "my-repo", "tag": "latest", "pullPolicy": "Always"}}}'
5643
+
5644
+ Pipe a YAML settings file into the command.
5645
+
5646
+ cat mysettings.yaml | codiac cluster envoy configure my-cluster
5647
+
5648
+ Non-interactive (scripted) invocation.
5649
+
5650
+ $ codiac cluster envoy configure my-cluster --settings '{"keel": {"image": {"tag": "v1.2.3"}}}' --silent
5651
+
5652
+ Renders the equivalent silent command and then executes.
5653
+
5654
+ $ codiac cluster envoy configure my-cluster --echo
5655
+
5656
+ Renders the equivalent silent command without executing.
5657
+
5658
+ $ codiac cluster envoy configure my-cluster --to-script
5659
+ ```
5660
+
5661
+ ## `codiac cluster envoy install [CLUSTER]`
5662
+
5663
+ Installs the Codiac agent on the given cluster, enabling Codiac to manage workloads and configurations on the cluster.
5664
+
5665
+ ```
5666
+ USAGE
5667
+ $ codiac cluster envoy install [CLUSTER] [--take-defaults | [--silent | --echo | --to-script]] [-v <value>]
5668
+
5669
+ ARGUMENTS
5670
+ CLUSTER Name of the cluster in Codiac on which to install the Codiac agent. You can use `cod cluster list` to see
5671
+ available cluster names.
5672
+
5673
+ FLAGS
5674
+ -v, --version=<value> Version of the Codiac agent helm chart to install. Omit to install the latest available
5675
+ version.
5676
+ --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use before
5677
+ final execution.
5678
+ --silent Non-Interactive mode; executes without any user interaction and fails on any missing or invalid
5679
+ arguments.
5680
+ --take-defaults Prevents prompting for confirmation on parameters that were passed in or were automatically set
5681
+ to default values (Irrelevant in --silent mode). This behavior does NOT apply to scenarios
5682
+ where the command needs to override invalid user input; such cases will always prompt for
5683
+ confirmation.
5684
+ --to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
5685
+ execution.
5686
+
5687
+ DESCRIPTION
5688
+ Installs the Codiac agent on the given cluster, enabling Codiac to manage workloads and configurations on the cluster.
5689
+
5690
+ ALIASES
5691
+ $ codiac cluster envoy install
5692
+
5693
+ EXAMPLES
5694
+ Install the Codiac agent on a cluster.
5695
+
5696
+ $ codiac cluster envoy install my-cluster
5697
+
5698
+ Install a specific version of the Codiac agent.
5699
+
5700
+ $ codiac cluster envoy install my-cluster --version 1.2.3
5701
+
5702
+ Non-interactive (scripted) invocation.
5703
+
5704
+ $ codiac cluster envoy install my-cluster --silent
5705
+
5706
+ Renders the equivalent silent command and then executes.
5707
+
5708
+ $ codiac cluster envoy install my-cluster --echo
5709
+
5710
+ Render the equivalent silent command without executing.
5711
+
5712
+ $ codiac cluster envoy install my-cluster --to-script
5713
+ ```
5714
+
5715
+ ## `codiac cluster envoy uninstall [CLUSTER]`
5716
+
5717
+ Uninstalls the Codiac agent from the given cluster.
5718
+
5719
+ ```
5720
+ USAGE
5721
+ $ codiac cluster envoy uninstall [CLUSTER] [--take-defaults | [--silent | --echo | --to-script]]
5722
+
5723
+ ARGUMENTS
5724
+ CLUSTER Name of the cluster in Codiac from which to uninstall the Codiac agent. You can use `cod cluster list` to
5725
+ see available cluster names.
5726
+
5727
+ FLAGS
5728
+ --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use before final
5729
+ execution.
5730
+ --silent Non-Interactive mode; executes without any user interaction and fails on any missing or invalid
5731
+ arguments.
5732
+ --take-defaults Prevents prompting for confirmation on parameters that were passed in or were automatically set to
5733
+ default values (Irrelevant in --silent mode). This behavior does NOT apply to scenarios where the
5734
+ command needs to override invalid user input; such cases will always prompt for confirmation.
5735
+ --to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any execution.
5736
+
5737
+ DESCRIPTION
5738
+ Uninstalls the Codiac agent from the given cluster.
5739
+
5740
+ ALIASES
5741
+ $ codiac cluster envoy uninstall
5742
+
5743
+ EXAMPLES
5744
+ Uninstall the Codiac agent from a cluster.
5745
+
5746
+ $ codiac cluster envoy uninstall my-cluster
5747
+
5748
+ Non-interactive (scripted) invocation.
5749
+
5750
+ $ codiac cluster envoy uninstall my-cluster --silent
5751
+
5752
+ Renders the equivalent silent command and then executes.
5753
+
5754
+ $ codiac cluster envoy uninstall my-cluster --echo
5755
+
5756
+ Render the equivalent silent command without executing.
5757
+
5758
+ $ codiac cluster envoy uninstall my-cluster --to-script
5759
+ ```
5760
+
5427
5761
  ## `codiac cluster forget`
5428
5762
 
5429
5763
  Permanently removes the record of a cluster. This command does NOT affect any infrastructure; it simply removes the cluster from the Codiac consciousness. You must remove all cabinets and environments in a cluster before forgetting it.
@@ -5596,7 +5930,7 @@ EXAMPLES
5596
5930
  $ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
5597
5931
  ```
5598
5932
 
5599
- _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/install.ts)_
5933
+ _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/install.ts)_
5600
5934
 
5601
5935
  ## `codiac cluster journal [CLUSTER]`
5602
5936
 
@@ -5885,7 +6219,7 @@ EXAMPLES
5885
6219
  $ codiac cluster stack capture my-fav-cluster
5886
6220
  ```
5887
6221
 
5888
- _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/stack/capture.ts)_
6222
+ _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/stack/capture.ts)_
5889
6223
 
5890
6224
  ## `codiac cluster stack install [CLUSTER]`
5891
6225
 
@@ -5937,7 +6271,7 @@ EXAMPLES
5937
6271
  $ codiac cluster stack install my-cluster --to-script
5938
6272
  ```
5939
6273
 
5940
- _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/stack/install.ts)_
6274
+ _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/stack/install.ts)_
5941
6275
 
5942
6276
  ## `codiac cluster stack list`
5943
6277
 
@@ -6103,7 +6437,7 @@ EXAMPLES
6103
6437
  $ codiac cluster start my-fav-cluster
6104
6438
  ```
6105
6439
 
6106
- _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/start.ts)_
6440
+ _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/start.ts)_
6107
6441
 
6108
6442
  ## `codiac cluster stop [CLUSTER]`
6109
6443
 
@@ -6140,7 +6474,7 @@ EXAMPLES
6140
6474
  $ codiac cluster start my-fav-cluster
6141
6475
  ```
6142
6476
 
6143
- _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/cluster/stop.ts)_
6477
+ _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/cluster/stop.ts)_
6144
6478
 
6145
6479
  ## `codiac cluster uninstall`
6146
6480
 
@@ -6202,7 +6536,7 @@ DESCRIPTION
6202
6536
  Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
6203
6537
  ```
6204
6538
 
6205
- _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/commit.ts)_
6539
+ _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/commit.ts)_
6206
6540
 
6207
6541
  ## `codiac config add`
6208
6542
 
@@ -6330,7 +6664,7 @@ EXAMPLES
6330
6664
  '${hostmap_path("cab_dot_domain_slash_service", "my-company.com")}'
6331
6665
  ```
6332
6666
 
6333
- _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/config/add.ts)_
6667
+ _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/config/add.ts)_
6334
6668
 
6335
6669
  ## `codiac config delete [SETTING]`
6336
6670
 
@@ -6399,7 +6733,7 @@ ALIASES
6399
6733
  $ codiac cfg delete
6400
6734
  ```
6401
6735
 
6402
- _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/config/delete.ts)_
6736
+ _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/config/delete.ts)_
6403
6737
 
6404
6738
  ## `codiac config deploy`
6405
6739
 
@@ -6440,7 +6774,7 @@ EXAMPLES
6440
6774
  $ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
6441
6775
  ```
6442
6776
 
6443
- _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/config/deploy.ts)_
6777
+ _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/config/deploy.ts)_
6444
6778
 
6445
6779
  ## `codiac config import`
6446
6780
 
@@ -6493,7 +6827,7 @@ EXAMPLES
6493
6827
  $ codiac config import -a myApi -s ./dist/app-config.json -n myEnterprise --to-script
6494
6828
  ```
6495
6829
 
6496
- _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/config/import.ts)_
6830
+ _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/config/import.ts)_
6497
6831
 
6498
6832
  ## `codiac config preview [SETTING]`
6499
6833
 
@@ -6752,7 +7086,7 @@ DESCRIPTION
6752
7086
  Shows the list of clusters.
6753
7087
  ```
6754
7088
 
6755
- _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/config/settings/get.ts)_
7089
+ _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/config/settings/get.ts)_
6756
7090
 
6757
7091
  ## `codiac config view [SETTING]`
6758
7092
 
@@ -6817,7 +7151,7 @@ EXAMPLES
6817
7151
  $ codiac config view -e myEnterprise -a myApi -c dev --to-script
6818
7152
  ```
6819
7153
 
6820
- _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/config/view.ts)_
7154
+ _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/config/view.ts)_
6821
7155
 
6822
7156
  ## `codiac csp creds list`
6823
7157
 
@@ -6865,7 +7199,7 @@ EXAMPLES
6865
7199
  $ codiac csp creds list
6866
7200
  ```
6867
7201
 
6868
- _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/csp/creds/list.ts)_
7202
+ _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/csp/creds/list.ts)_
6869
7203
 
6870
7204
  ## `codiac csp login [PROVIDER]`
6871
7205
 
@@ -6943,7 +7277,7 @@ EXAMPLES
6943
7277
  cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
6944
7278
  ```
6945
7279
 
6946
- _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/csp/login.ts)_
7280
+ _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/csp/login.ts)_
6947
7281
 
6948
7282
  ## `codiac csp logout [PROVIDER]`
6949
7283
 
@@ -6990,7 +7324,7 @@ EXAMPLES
6990
7324
  $ codiac csp logout azure --to-script
6991
7325
  ```
6992
7326
 
6993
- _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/csp/logout.ts)_
7327
+ _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/csp/logout.ts)_
6994
7328
 
6995
7329
  ## `codiac dep [NAME]`
6996
7330
 
@@ -7011,7 +7345,7 @@ DESCRIPTION
7011
7345
  Installs a package into current project.
7012
7346
  ```
7013
7347
 
7014
- _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/dep.ts)_
7348
+ _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/dep.ts)_
7015
7349
 
7016
7350
  ## `codiac dep create [URL]`
7017
7351
 
@@ -7035,7 +7369,7 @@ DESCRIPTION
7035
7369
  package version is used.
7036
7370
  ```
7037
7371
 
7038
- _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/dep/create.ts)_
7372
+ _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/dep/create.ts)_
7039
7373
 
7040
7374
  ## `codiac dep install`
7041
7375
 
@@ -7052,7 +7386,7 @@ DESCRIPTION
7052
7386
  installs any missing dependency packages into the local project folder.
7053
7387
  ```
7054
7388
 
7055
- _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/dep/install.ts)_
7389
+ _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/dep/install.ts)_
7056
7390
 
7057
7391
  ## `codiac dep list`
7058
7392
 
@@ -7069,7 +7403,7 @@ DESCRIPTION
7069
7403
  Shows the dependencies for the project.
7070
7404
  ```
7071
7405
 
7072
- _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/dep/list.ts)_
7406
+ _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/dep/list.ts)_
7073
7407
 
7074
7408
  ## `codiac dep remove [NAME]`
7075
7409
 
@@ -7092,7 +7426,7 @@ DESCRIPTION
7092
7426
  Removes a dependency from the project.
7093
7427
  ```
7094
7428
 
7095
- _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/dep/remove.ts)_
7429
+ _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/dep/remove.ts)_
7096
7430
 
7097
7431
  ## `codiac dep source [NAME]`
7098
7432
 
@@ -7118,7 +7452,7 @@ ALIASES
7118
7452
  $ codiac dep src
7119
7453
  ```
7120
7454
 
7121
- _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/dep/source.ts)_
7455
+ _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/dep/source.ts)_
7122
7456
 
7123
7457
  ## `codiac dep src [NAME]`
7124
7458
 
@@ -7162,7 +7496,7 @@ DESCRIPTION
7162
7496
  Publishes the dependency in its current state and upgrades to it in the main project.
7163
7497
  ```
7164
7498
 
7165
- _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/dep/syncup.ts)_
7499
+ _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/dep/syncup.ts)_
7166
7500
 
7167
7501
  ## `codiac dep unsource [NAME]`
7168
7502
 
@@ -7190,7 +7524,7 @@ ALIASES
7190
7524
  $ codiac dep unsrc
7191
7525
  ```
7192
7526
 
7193
- _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/dep/unsource.ts)_
7527
+ _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/dep/unsource.ts)_
7194
7528
 
7195
7529
  ## `codiac dep unsrc [NAME]`
7196
7530
 
@@ -7237,7 +7571,7 @@ DESCRIPTION
7237
7571
  describe the command here
7238
7572
  ```
7239
7573
 
7240
- _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/dep/upgrade.ts)_
7574
+ _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/dep/upgrade.ts)_
7241
7575
 
7242
7576
  ## `codiac deploy`
7243
7577
 
@@ -7290,7 +7624,7 @@ EXAMPLES
7290
7624
  $ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
7291
7625
  ```
7292
7626
 
7293
- _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/deploy.ts)_
7627
+ _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/deploy.ts)_
7294
7628
 
7295
7629
  ## `codiac domain map [DOMAIN]`
7296
7630
 
@@ -7446,7 +7780,7 @@ EXAMPLES
7446
7780
  cod enterprise create my-enterprise-code --silent
7447
7781
  ```
7448
7782
 
7449
- _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/enterprise/create.ts)_
7783
+ _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/enterprise/create.ts)_
7450
7784
 
7451
7785
  ## `codiac enterprise list`
7452
7786
 
@@ -7501,7 +7835,7 @@ EXAMPLES
7501
7835
  $ codiac enterprise list --to-script
7502
7836
  ```
7503
7837
 
7504
- _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/enterprise/list.ts)_
7838
+ _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/enterprise/list.ts)_
7505
7839
 
7506
7840
  ## `codiac env add [SETTING]`
7507
7841
 
@@ -7551,7 +7885,7 @@ EXAMPLES
7551
7885
  $ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
7552
7886
  ```
7553
7887
 
7554
- _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/env/add.ts)_
7888
+ _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/env/add.ts)_
7555
7889
 
7556
7890
  ## `codiac enviro cluster attach`
7557
7891
 
@@ -7854,7 +8188,7 @@ ALIASES
7854
8188
  $ codiac infrx enviro cluster attach
7855
8189
  ```
7856
8190
 
7857
- _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/environment/cluster/attach.ts)_
8191
+ _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/environment/cluster/attach.ts)_
7858
8192
 
7859
8193
  ## `codiac environment cluster detach`
7860
8194
 
@@ -7900,7 +8234,7 @@ ALIASES
7900
8234
  $ codiac infrx enviro cluster detach
7901
8235
  ```
7902
8236
 
7903
- _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/environment/cluster/detach.ts)_
8237
+ _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/environment/cluster/detach.ts)_
7904
8238
 
7905
8239
  ## `codiac environment create [NAME]`
7906
8240
 
@@ -7963,7 +8297,7 @@ EXAMPLES
7963
8297
  cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
7964
8298
  ```
7965
8299
 
7966
- _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/environment/create.ts)_
8300
+ _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/environment/create.ts)_
7967
8301
 
7968
8302
  ## `codiac environment delete [NAME]`
7969
8303
 
@@ -8024,7 +8358,7 @@ EXAMPLES
8024
8358
  $ codiac environment delete dev --enterprise main --to-script
8025
8359
  ```
8026
8360
 
8027
- _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/environment/delete.ts)_
8361
+ _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/environment/delete.ts)_
8028
8362
 
8029
8363
  ## `codiac environment list`
8030
8364
 
@@ -8075,7 +8409,7 @@ EXAMPLES
8075
8409
  $ codiac environment list -e myEnterprise --silent
8076
8410
  ```
8077
8411
 
8078
- _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/environment/list.ts)_
8412
+ _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/environment/list.ts)_
8079
8413
 
8080
8414
  ## `codiac fileshare capture`
8081
8415
 
@@ -8159,7 +8493,7 @@ ALIASES
8159
8493
  $ codiac fileshare capture
8160
8494
  ```
8161
8495
 
8162
- _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/filestore/capture.ts)_
8496
+ _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/filestore/capture.ts)_
8163
8497
 
8164
8498
  ## `codiac filestore forget`
8165
8499
 
@@ -8206,7 +8540,7 @@ EXAMPLES
8206
8540
  $ codiac filestore forget
8207
8541
  ```
8208
8542
 
8209
- _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/filestore/forget.ts)_
8543
+ _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/filestore/forget.ts)_
8210
8544
 
8211
8545
  ## `codiac filestore list`
8212
8546
 
@@ -8252,7 +8586,7 @@ EXAMPLES
8252
8586
  $ codiac filestore list
8253
8587
  ```
8254
8588
 
8255
- _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/filestore/list.ts)_
8589
+ _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/filestore/list.ts)_
8256
8590
 
8257
8591
  ## `codiac help [COMMANDS]`
8258
8592
 
@@ -8338,7 +8672,7 @@ EXAMPLES
8338
8672
  $ codiac host delete
8339
8673
  ```
8340
8674
 
8341
- _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/host/delete.ts)_
8675
+ _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/host/delete.ts)_
8342
8676
 
8343
8677
  ## `codiac host list [DOMAIN]`
8344
8678
 
@@ -8382,7 +8716,7 @@ EXAMPLES
8382
8716
  $ codiac host list
8383
8717
  ```
8384
8718
 
8385
- _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/host/list.ts)_
8719
+ _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/host/list.ts)_
8386
8720
 
8387
8721
  ## `codiac host map [DOMAIN]`
8388
8722
 
@@ -8436,7 +8770,7 @@ EXAMPLES
8436
8770
  $ codiac host map internal.primeroedge.co -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
8437
8771
  ```
8438
8772
 
8439
- _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/host/map.ts)_
8773
+ _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/host/map.ts)_
8440
8774
 
8441
8775
  ## `codiac host view [DOMAIN]`
8442
8776
 
@@ -8481,7 +8815,7 @@ EXAMPLES
8481
8815
  $ codiac host view
8482
8816
  ```
8483
8817
 
8484
- _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/host/view.ts)_
8818
+ _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/host/view.ts)_
8485
8819
 
8486
8820
  ## `codiac identify [TOKENNAME]`
8487
8821
 
@@ -8553,7 +8887,7 @@ ALIASES
8553
8887
  $ codiac token
8554
8888
  ```
8555
8889
 
8556
- _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/identity.ts)_
8890
+ _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/identity.ts)_
8557
8891
 
8558
8892
  ## `codiac identity delete [NAME]`
8559
8893
 
@@ -8578,7 +8912,7 @@ ALIASES
8578
8912
  $ codiac token remove
8579
8913
  ```
8580
8914
 
8581
- _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/identity/delete.ts)_
8915
+ _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/identity/delete.ts)_
8582
8916
 
8583
8917
  ## `codiac identity list`
8584
8918
 
@@ -8600,7 +8934,7 @@ ALIASES
8600
8934
  $ codiac token list
8601
8935
  ```
8602
8936
 
8603
- _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/identity/list.ts)_
8937
+ _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/identity/list.ts)_
8604
8938
 
8605
8939
  ## `codiac identity remove [NAME]`
8606
8940
 
@@ -8921,7 +9255,7 @@ DESCRIPTION
8921
9255
  Saves a reference to an existing container registry.
8922
9256
  ```
8923
9257
 
8924
- _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/imageRegistry/capture.ts)_
9258
+ _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/imageRegistry/capture.ts)_
8925
9259
 
8926
9260
  ## `codiac imageRegistry forget`
8927
9261
 
@@ -8942,7 +9276,7 @@ DESCRIPTION
8942
9276
  Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
8943
9277
  ```
8944
9278
 
8945
- _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/imageRegistry/forget.ts)_
9279
+ _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/imageRegistry/forget.ts)_
8946
9280
 
8947
9281
  ## `codiac imageRegistry list`
8948
9282
 
@@ -8984,7 +9318,7 @@ EXAMPLES
8984
9318
  $ codiac imageRegistry list -o yaml > registries.yaml
8985
9319
  ```
8986
9320
 
8987
- _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/imageRegistry/list.ts)_
9321
+ _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/imageRegistry/list.ts)_
8988
9322
 
8989
9323
  ## `codiac imageRegistry pullSecret set`
8990
9324
 
@@ -9020,7 +9354,7 @@ ALIASES
9020
9354
  $ codiac pullsecret
9021
9355
  ```
9022
9356
 
9023
- _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/imageRegistry/pullSecret/set.ts)_
9357
+ _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/imageRegistry/pullSecret/set.ts)_
9024
9358
 
9025
9359
  ## `codiac imageRegistry pullSecret unset`
9026
9360
 
@@ -9047,7 +9381,7 @@ ALIASES
9047
9381
  $ codiac pullsecret unset
9048
9382
  ```
9049
9383
 
9050
- _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/imageRegistry/pullSecret/unset.ts)_
9384
+ _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/imageRegistry/pullSecret/unset.ts)_
9051
9385
 
9052
9386
  ## `codiac images add [IMAGENAME]`
9053
9387
 
@@ -9108,7 +9442,7 @@ EXAMPLES
9108
9442
  $ codiac images add your-company/your-image --to-script
9109
9443
  ```
9110
9444
 
9111
- _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/images/add.ts)_
9445
+ _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/images/add.ts)_
9112
9446
 
9113
9447
  ## `codiac images list`
9114
9448
 
@@ -9131,7 +9465,7 @@ ALIASES
9131
9465
  $ codiac img list
9132
9466
  ```
9133
9467
 
9134
- _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/images/list.ts)_
9468
+ _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/images/list.ts)_
9135
9469
 
9136
9470
  ## `codiac images patch IMAGENAME`
9137
9471
 
@@ -9161,7 +9495,7 @@ ALIASES
9161
9495
  $ codiac img patch
9162
9496
  ```
9163
9497
 
9164
- _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/images/patch.ts)_
9498
+ _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/images/patch.ts)_
9165
9499
 
9166
9500
  ## `codiac images remove IMAGENAME`
9167
9501
 
@@ -9187,7 +9521,7 @@ ALIASES
9187
9521
  $ codiac img delete
9188
9522
  ```
9189
9523
 
9190
- _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/images/remove.ts)_
9524
+ _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/images/remove.ts)_
9191
9525
 
9192
9526
  ## `codiac images version NAME`
9193
9527
 
@@ -9213,7 +9547,7 @@ ALIASES
9213
9547
  $ codiac img version get
9214
9548
  ```
9215
9549
 
9216
- _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/images/version.ts)_
9550
+ _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/images/version.ts)_
9217
9551
 
9218
9552
  ## `codiac images version bump NAME`
9219
9553
 
@@ -9246,7 +9580,7 @@ ALIASES
9246
9580
  $ codiac img version bump
9247
9581
  ```
9248
9582
 
9249
- _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/images/version/bump.ts)_
9583
+ _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/images/version/bump.ts)_
9250
9584
 
9251
9585
  ## `codiac img [IMAGENAME]`
9252
9586
 
@@ -10361,7 +10695,7 @@ DESCRIPTION
10361
10695
  Declares the given folder as a project root
10362
10696
  ```
10363
10697
 
10364
- _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/init.ts)_
10698
+ _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/init.ts)_
10365
10699
 
10366
10700
  ## `codiac kit create`
10367
10701
 
@@ -10404,7 +10738,7 @@ EXAMPLES
10404
10738
  $ codiac kit create -e myEnterprise -a myApi --to-script
10405
10739
  ```
10406
10740
 
10407
- _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/kit/create.ts)_
10741
+ _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/kit/create.ts)_
10408
10742
 
10409
10743
  ## `codiac login`
10410
10744
 
@@ -10463,7 +10797,7 @@ EXAMPLES
10463
10797
  $ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
10464
10798
  ```
10465
10799
 
10466
- _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/login.ts)_
10800
+ _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/login.ts)_
10467
10801
 
10468
10802
  ## `codiac logout`
10469
10803
 
@@ -10496,7 +10830,7 @@ EXAMPLES
10496
10830
  $ codiac logout --to-script
10497
10831
  ```
10498
10832
 
10499
- _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/logout.ts)_
10833
+ _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/logout.ts)_
10500
10834
 
10501
10835
  ## `codiac merge [BRANCH]`
10502
10836
 
@@ -10517,7 +10851,7 @@ DESCRIPTION
10517
10851
  Merges the given branch into the current branch of the main project and on any sourced dependencies.
10518
10852
  ```
10519
10853
 
10520
- _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/merge.ts)_
10854
+ _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/merge.ts)_
10521
10855
 
10522
10856
  ## `codiac noc cluster capture`
10523
10857
 
@@ -10569,7 +10903,7 @@ EXAMPLES
10569
10903
  cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
10570
10904
  ```
10571
10905
 
10572
- _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/capture.ts)_
10906
+ _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/capture.ts)_
10573
10907
 
10574
10908
  ## `codiac noc cluster create [NAME]`
10575
10909
 
@@ -10659,7 +10993,7 @@ FLAG DESCRIPTIONS
10659
10993
  initialization is always skipped in that mode.
10660
10994
  ```
10661
10995
 
10662
- _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/create.ts)_
10996
+ _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/create.ts)_
10663
10997
 
10664
10998
  ## `codiac noc cluster credentials-set [NAME]`
10665
10999
 
@@ -10714,7 +11048,7 @@ EXAMPLES
10714
11048
  $ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
10715
11049
  ```
10716
11050
 
10717
- _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/credentials-set.ts)_
11051
+ _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/credentials-set.ts)_
10718
11052
 
10719
11053
  ## `codiac noc cluster define [NAME]`
10720
11054
 
@@ -10728,7 +11062,8 @@ USAGE
10728
11062
  --to-script]]
10729
11063
 
10730
11064
  ARGUMENTS
10731
- NAME Name of the cluster to define or update.
11065
+ NAME Name of the cluster to define. If a definition already exists with this name, it is loaded and opened for
11066
+ editing.
10732
11067
 
10733
11068
  FLAGS
10734
11069
  -g, --resourceGroup=<value> (Azure only, required) The resource group associated with the cluster.
@@ -10769,6 +11104,10 @@ EXAMPLES
10769
11104
 
10770
11105
  $ codiac noc cluster define
10771
11106
 
11107
+ Load and edit an existing cluster definition interactively by name.
11108
+
11109
+ $ codiac noc cluster define my-cluster
11110
+
10772
11111
  Define an Azure cluster non-interactively.
10773
11112
 
10774
11113
  $ codiac noc cluster define my-cluster --provider azure --providerSubscription <sub-id> --resourceGroup my-rg \
@@ -10783,7 +11122,7 @@ EXAMPLES
10783
11122
  $ codiac noc cluster define my-cluster --to-script
10784
11123
  ```
10785
11124
 
10786
- _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/define.ts)_
11125
+ _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/define.ts)_
10787
11126
 
10788
11127
  ## `codiac noc cluster deinit`
10789
11128
 
@@ -10823,7 +11162,7 @@ EXAMPLES
10823
11162
  $ codiac noc cluster deinit -n my-cluster --to-script
10824
11163
  ```
10825
11164
 
10826
- _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/deinit.ts)_
11165
+ _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/deinit.ts)_
10827
11166
 
10828
11167
  ## `codiac noc cluster destroy [NAME]`
10829
11168
 
@@ -10857,7 +11196,7 @@ ALIASES
10857
11196
  $ codiac cluster destroy
10858
11197
  ```
10859
11198
 
10860
- _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/destroy.ts)_
11199
+ _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/destroy.ts)_
10861
11200
 
10862
11201
  ## `codiac noc cluster forget`
10863
11202
 
@@ -10908,7 +11247,7 @@ EXAMPLES
10908
11247
  $ codiac noc cluster forget --running
10909
11248
  ```
10910
11249
 
10911
- _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/forget.ts)_
11250
+ _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/forget.ts)_
10912
11251
 
10913
11252
  ## `codiac noc cluster grant`
10914
11253
 
@@ -10946,7 +11285,7 @@ EXAMPLES
10946
11285
  $ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
10947
11286
  ```
10948
11287
 
10949
- _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/grant.ts)_
11288
+ _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/grant.ts)_
10950
11289
 
10951
11290
  ## `codiac noc cluster init`
10952
11291
 
@@ -10992,7 +11331,7 @@ EXAMPLES
10992
11331
  $ codiac noc cluster init -n my-cluster --to-script
10993
11332
  ```
10994
11333
 
10995
- _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/init.ts)_
11334
+ _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/init.ts)_
10996
11335
 
10997
11336
  ## `codiac noc cluster journal [CLUSTER]`
10998
11337
 
@@ -11041,7 +11380,7 @@ EXAMPLES
11041
11380
  $ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
11042
11381
  ```
11043
11382
 
11044
- _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/journal.ts)_
11383
+ _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/journal.ts)_
11045
11384
 
11046
11385
  ## `codiac noc cluster list`
11047
11386
 
@@ -11102,7 +11441,7 @@ EXAMPLES
11102
11441
  $ codiac noc cluster list -e myEnterprise --to-script
11103
11442
  ```
11104
11443
 
11105
- _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/list.ts)_
11444
+ _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/list.ts)_
11106
11445
 
11107
11446
  ## `codiac noc cluster restore [NAME]`
11108
11447
 
@@ -11162,7 +11501,7 @@ EXAMPLES
11162
11501
  $ codiac noc cluster restore prod-cluster-1 --to-script
11163
11502
  ```
11164
11503
 
11165
- _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/noc/cluster/restore.ts)_
11504
+ _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/noc/cluster/restore.ts)_
11166
11505
 
11167
11506
  ## `codiac pkg add [DEFINITIONFILE]`
11168
11507
 
@@ -11196,7 +11535,7 @@ DESCRIPTION
11196
11535
  Configures a package to be built and published by the project.
11197
11536
  ```
11198
11537
 
11199
- _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/pkg/add.ts)_
11538
+ _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/pkg/add.ts)_
11200
11539
 
11201
11540
  ## `codiac pkg delete [PACKAGENAME]`
11202
11541
 
@@ -11234,7 +11573,7 @@ DESCRIPTION
11234
11573
  Renders the list of packages that are configured as project exports.
11235
11574
  ```
11236
11575
 
11237
- _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/pkg/list.ts)_
11576
+ _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/pkg/list.ts)_
11238
11577
 
11239
11578
  ## `codiac pkg patch PACKAGENAME`
11240
11579
 
@@ -11260,7 +11599,7 @@ DESCRIPTION
11260
11599
  registryUrl and/or environment.
11261
11600
  ```
11262
11601
 
11263
- _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/pkg/patch.ts)_
11602
+ _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/pkg/patch.ts)_
11264
11603
 
11265
11604
  ## `codiac pkg remove [PACKAGENAME]`
11266
11605
 
@@ -11283,7 +11622,7 @@ ALIASES
11283
11622
  $ codiac pkg delete
11284
11623
  ```
11285
11624
 
11286
- _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/pkg/remove.ts)_
11625
+ _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/pkg/remove.ts)_
11287
11626
 
11288
11627
  ## `codiac portal`
11289
11628
 
@@ -11316,7 +11655,7 @@ EXAMPLES
11316
11655
  $ codiac portal --to-script
11317
11656
  ```
11318
11657
 
11319
- _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/portal.ts)_
11658
+ _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/portal.ts)_
11320
11659
 
11321
11660
  ## `codiac probe create [CMD]`
11322
11661
 
@@ -11437,7 +11776,7 @@ DESCRIPTION
11437
11776
  Publishes the exports (packages and images) declared in the ProjectConfig.
11438
11777
  ```
11439
11778
 
11440
- _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/publish.ts)_
11779
+ _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/publish.ts)_
11441
11780
 
11442
11781
  ## `codiac pull [NAME]`
11443
11782
 
@@ -11461,7 +11800,7 @@ DESCRIPTION
11461
11800
  Pulls all commits from upstream to local.
11462
11801
  ```
11463
11802
 
11464
- _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/pull.ts)_
11803
+ _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/pull.ts)_
11465
11804
 
11466
11805
  ## `codiac pullsecret`
11467
11806
 
@@ -11544,7 +11883,7 @@ DESCRIPTION
11544
11883
  Pushes all local commits upstream.
11545
11884
  ```
11546
11885
 
11547
- _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/push.ts)_
11886
+ _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/push.ts)_
11548
11887
 
11549
11888
  ## `codiac pvc create`
11550
11889
 
@@ -11628,7 +11967,7 @@ EXAMPLES
11628
11967
  $ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
11629
11968
  ```
11630
11969
 
11631
- _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/pvc/create.ts)_
11970
+ _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/pvc/create.ts)_
11632
11971
 
11633
11972
  ## `codiac pvc delete`
11634
11973
 
@@ -11675,7 +12014,7 @@ EXAMPLES
11675
12014
  $ codiac pvc delete --id <fileStoreDefId> --silent
11676
12015
  ```
11677
12016
 
11678
- _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/pvc/delete.ts)_
12017
+ _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/pvc/delete.ts)_
11679
12018
 
11680
12019
  ## `codiac pvc get`
11681
12020
 
@@ -11716,7 +12055,7 @@ EXAMPLES
11716
12055
  $ codiac pvc get --name app-documents-share --silent -o json
11717
12056
  ```
11718
12057
 
11719
- _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/pvc/get.ts)_
12058
+ _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/pvc/get.ts)_
11720
12059
 
11721
12060
  ## `codiac pvc list`
11722
12061
 
@@ -11759,7 +12098,7 @@ EXAMPLES
11759
12098
  $ codiac pvc list -o yaml
11760
12099
  ```
11761
12100
 
11762
- _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/pvc/list.ts)_
12101
+ _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/pvc/list.ts)_
11763
12102
 
11764
12103
  ## `codiac relay-version`
11765
12104
 
@@ -11776,7 +12115,7 @@ EXAMPLES
11776
12115
  $ codiac relay-version
11777
12116
  ```
11778
12117
 
11779
- _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/relay-version.ts)_
12118
+ _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/relay-version.ts)_
11780
12119
 
11781
12120
  ## `codiac run`
11782
12121
 
@@ -11818,7 +12157,7 @@ DESCRIPTION
11818
12157
  Runs the latest build of the api container locally.
11819
12158
  ```
11820
12159
 
11821
- _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/run.ts)_
12160
+ _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/run.ts)_
11822
12161
 
11823
12162
  ## `codiac secretStore`
11824
12163
 
@@ -11880,7 +12219,7 @@ ALIASES
11880
12219
  $ codiac secretStore
11881
12220
  ```
11882
12221
 
11883
- _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/secretStore/capture.ts)_
12222
+ _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/secretStore/capture.ts)_
11884
12223
 
11885
12224
  ## `codiac secretStore forget`
11886
12225
 
@@ -11901,7 +12240,7 @@ DESCRIPTION
11901
12240
  Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
11902
12241
  ```
11903
12242
 
11904
- _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/secretStore/forget.ts)_
12243
+ _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/secretStore/forget.ts)_
11905
12244
 
11906
12245
  ## `codiac secretStore list`
11907
12246
 
@@ -11946,7 +12285,7 @@ EXAMPLES
11946
12285
  $ codiac secretStore list
11947
12286
  ```
11948
12287
 
11949
- _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/secretStore/list.ts)_
12288
+ _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/secretStore/list.ts)_
11950
12289
 
11951
12290
  ## `codiac shell init`
11952
12291
 
@@ -11984,7 +12323,7 @@ EXAMPLES
11984
12323
  Invoke-Expression (codiac shell init --shell powershell)
11985
12324
  ```
11986
12325
 
11987
- _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/shell/init.ts)_
12326
+ _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/shell/init.ts)_
11988
12327
 
11989
12328
  ## `codiac snapshot deploy`
11990
12329
 
@@ -12012,7 +12351,7 @@ DESCRIPTION
12012
12351
  Deploys all assets in a snapshot to a target cabinet.
12013
12352
  ```
12014
12353
 
12015
- _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/snapshot/deploy.ts)_
12354
+ _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/snapshot/deploy.ts)_
12016
12355
 
12017
12356
  ## `codiac snapshot list`
12018
12357
 
@@ -12061,7 +12400,7 @@ EXAMPLES
12061
12400
  $ codiac snapshot list -e myEnterprise --silent
12062
12401
  ```
12063
12402
 
12064
- _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/snapshot/list.ts)_
12403
+ _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/snapshot/list.ts)_
12065
12404
 
12066
12405
  ## `codiac snapshot tag`
12067
12406
 
@@ -12104,7 +12443,7 @@ EXAMPLES
12104
12443
  $ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
12105
12444
  ```
12106
12445
 
12107
- _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/snapshot/tag.ts)_
12446
+ _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/snapshot/tag.ts)_
12108
12447
 
12109
12448
  ## `codiac snapshot untag`
12110
12449
 
@@ -12147,7 +12486,7 @@ EXAMPLES
12147
12486
  $ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
12148
12487
  ```
12149
12488
 
12150
- _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/snapshot/untag.ts)_
12489
+ _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/snapshot/untag.ts)_
12151
12490
 
12152
12491
  ## `codiac stage [FILES]`
12153
12492
 
@@ -12169,7 +12508,7 @@ DESCRIPTION
12169
12508
  Flags files to be included in the next commit.
12170
12509
  ```
12171
12510
 
12172
- _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/stage.ts)_
12511
+ _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/stage.ts)_
12173
12512
 
12174
12513
  ## `codiac stash [FILE]`
12175
12514
 
@@ -12191,7 +12530,7 @@ DESCRIPTION
12191
12530
  describe the command here
12192
12531
  ```
12193
12532
 
12194
- _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/stash.ts)_
12533
+ _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/stash.ts)_
12195
12534
 
12196
12535
  ## `codiac status`
12197
12536
 
@@ -12210,7 +12549,7 @@ DESCRIPTION
12210
12549
  Shows the current uncommitted changes in the current branch.
12211
12550
  ```
12212
12551
 
12213
- _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/status.ts)_
12552
+ _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/status.ts)_
12214
12553
 
12215
12554
  ## `codiac stop`
12216
12555
 
@@ -12228,7 +12567,7 @@ DESCRIPTION
12228
12567
  Stops the running container for this project
12229
12568
  ```
12230
12569
 
12231
- _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/stop.ts)_
12570
+ _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/stop.ts)_
12232
12571
 
12233
12572
  ## `codiac switch [NAME]`
12234
12573
 
@@ -12248,7 +12587,7 @@ DESCRIPTION
12248
12587
  Changes branch on the main project and any sourced dependencies.
12249
12588
  ```
12250
12589
 
12251
- _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/switch.ts)_
12590
+ _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/switch.ts)_
12252
12591
 
12253
12592
  ## `codiac sync [NAME]`
12254
12593
 
@@ -12273,7 +12612,7 @@ DESCRIPTION
12273
12612
  Merges the given branch into the current branch.
12274
12613
  ```
12275
12614
 
12276
- _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/sync.ts)_
12615
+ _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/sync.ts)_
12277
12616
 
12278
12617
  ## `codiac tenant create [NAME]`
12279
12618
 
@@ -12316,7 +12655,7 @@ EXAMPLES
12316
12655
  $ codiac tenant create -n 'Acme Corp' -c acme --to-script
12317
12656
  ```
12318
12657
 
12319
- _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/tenant/create.ts)_
12658
+ _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/tenant/create.ts)_
12320
12659
 
12321
12660
  ## `codiac tenant switch [CODE]`
12322
12661
 
@@ -12356,7 +12695,7 @@ EXAMPLES
12356
12695
  $ codiac tenant switch my-tenant-code --to-script
12357
12696
  ```
12358
12697
 
12359
- _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/tenant/switch.ts)_
12698
+ _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/tenant/switch.ts)_
12360
12699
 
12361
12700
  ## `codiac token [TOKENNAME]`
12362
12701
 
@@ -12478,7 +12817,7 @@ DESCRIPTION
12478
12817
  Flags files to be included in the next commit.
12479
12818
  ```
12480
12819
 
12481
- _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/unstage.ts)_
12820
+ _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/unstage.ts)_
12482
12821
 
12483
12822
  ## `codiac update [CHANNEL]`
12484
12823
 
@@ -12665,7 +13004,7 @@ EXAMPLES
12665
13004
  $ codiac whereami --to-script
12666
13005
  ```
12667
13006
 
12668
- _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/whereami.ts)_
13007
+ _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/whereami.ts)_
12669
13008
 
12670
13009
  ## `codiac whoami`
12671
13010
 
@@ -12707,5 +13046,5 @@ EXAMPLES
12707
13046
  $ codiac whoami --to-script
12708
13047
  ```
12709
13048
 
12710
- _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.203/src/commands/whoami.ts)_
13049
+ _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.204/src/commands/whoami.ts)_
12711
13050
  <!-- commandsstop -->