@codiac.io/codiac-cli 1.3.197 → 1.3.202
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.
- package/README.md +376 -157
- package/dist/apis/codiac-api/gen/contracts/types.gen.d.ts +34 -2
- package/dist/apis/codiac-api/gen/contracts/types.gen.js +8 -1
- package/dist/apis/codiac-api/gen/contracts/types.gen.js.map +1 -1
- package/dist/commands/asset/create.js +37 -10
- package/dist/commands/asset/create.js.map +1 -1
- package/dist/commands/asset/undeploy.js +2 -2
- package/dist/commands/asset/undeploy.js.map +1 -1
- package/dist/commands/pvc/create.d.ts +42 -0
- package/dist/commands/pvc/create.js +213 -0
- package/dist/commands/pvc/create.js.map +1 -0
- package/dist/commands/pvc/delete.d.ts +32 -0
- package/dist/commands/pvc/delete.js +145 -0
- package/dist/commands/pvc/delete.js.map +1 -0
- package/dist/commands/pvc/get.d.ts +32 -0
- package/dist/commands/pvc/get.js +113 -0
- package/dist/commands/pvc/get.js.map +1 -0
- package/dist/commands/pvc/list.d.ts +33 -0
- package/dist/commands/pvc/list.js +138 -0
- package/dist/commands/pvc/list.js.map +1 -0
- package/dist/relay/relay-container.js +1 -1
- package/oclif.manifest.json +492 -1
- package/package.json +2 -2
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.
|
|
24
|
+
@codiac.io/codiac-cli/1.3.202 linux-x64 node-v22.15.1
|
|
25
25
|
$ codiac --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ codiac COMMAND
|
|
@@ -433,6 +433,10 @@ USAGE
|
|
|
433
433
|
* [`codiac pullsecret`](#codiac-pullsecret)
|
|
434
434
|
* [`codiac pullsecret unset`](#codiac-pullsecret-unset)
|
|
435
435
|
* [`codiac push [NAME]`](#codiac-push-name)
|
|
436
|
+
* [`codiac pvc create`](#codiac-pvc-create)
|
|
437
|
+
* [`codiac pvc delete`](#codiac-pvc-delete)
|
|
438
|
+
* [`codiac pvc get`](#codiac-pvc-get)
|
|
439
|
+
* [`codiac pvc list`](#codiac-pvc-list)
|
|
436
440
|
* [`codiac relay-version`](#codiac-relay-version)
|
|
437
441
|
* [`codiac run`](#codiac-run)
|
|
438
442
|
* [`codiac secretStore`](#codiac-secretstore)
|
|
@@ -571,7 +575,7 @@ EXAMPLES
|
|
|
571
575
|
$ codiac asset create -e myEnterprise -n my-api --deploy-condition "environment.name = 'production'"
|
|
572
576
|
```
|
|
573
577
|
|
|
574
|
-
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
578
|
+
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/create.ts)_
|
|
575
579
|
|
|
576
580
|
## `codiac asset edit`
|
|
577
581
|
|
|
@@ -629,7 +633,7 @@ EXAMPLES
|
|
|
629
633
|
$ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
|
|
630
634
|
```
|
|
631
635
|
|
|
632
|
-
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
636
|
+
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/edit.ts)_
|
|
633
637
|
|
|
634
638
|
## `codiac asset entrypoint`
|
|
635
639
|
|
|
@@ -750,7 +754,7 @@ EXAMPLES
|
|
|
750
754
|
$ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
|
|
751
755
|
```
|
|
752
756
|
|
|
753
|
-
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
757
|
+
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/entrypoint/delete.ts)_
|
|
754
758
|
|
|
755
759
|
## `codiac asset entrypoint set`
|
|
756
760
|
|
|
@@ -819,7 +823,7 @@ EXAMPLES
|
|
|
819
823
|
--input=/backup/workflows'
|
|
820
824
|
```
|
|
821
825
|
|
|
822
|
-
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
826
|
+
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/entrypoint/set.ts)_
|
|
823
827
|
|
|
824
828
|
## `codiac asset get [CMD]`
|
|
825
829
|
|
|
@@ -926,7 +930,7 @@ EXAMPLES
|
|
|
926
930
|
$ codiac asset list -e myEnterprise --to-script
|
|
927
931
|
```
|
|
928
932
|
|
|
929
|
-
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
933
|
+
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/list.ts)_
|
|
930
934
|
|
|
931
935
|
## `codiac asset mon [CMD]`
|
|
932
936
|
|
|
@@ -1173,7 +1177,7 @@ EXAMPLES
|
|
|
1173
1177
|
$ codiac asset obliterate -e main -n my-api
|
|
1174
1178
|
```
|
|
1175
1179
|
|
|
1176
|
-
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1180
|
+
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/obliterate.ts)_
|
|
1177
1181
|
|
|
1178
1182
|
## `codiac asset probe create [CMD]`
|
|
1179
1183
|
|
|
@@ -1263,7 +1267,7 @@ EXAMPLES
|
|
|
1263
1267
|
$ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
|
|
1264
1268
|
```
|
|
1265
1269
|
|
|
1266
|
-
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1270
|
+
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/probe/create.ts)_
|
|
1267
1271
|
|
|
1268
1272
|
## `codiac asset probe delete`
|
|
1269
1273
|
|
|
@@ -1318,7 +1322,7 @@ EXAMPLES
|
|
|
1318
1322
|
$ codiac asset probe delete
|
|
1319
1323
|
```
|
|
1320
1324
|
|
|
1321
|
-
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1325
|
+
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/probe/delete.ts)_
|
|
1322
1326
|
|
|
1323
1327
|
## `codiac asset probe list`
|
|
1324
1328
|
|
|
@@ -1370,7 +1374,7 @@ EXAMPLES
|
|
|
1370
1374
|
$ codiac asset probe list
|
|
1371
1375
|
```
|
|
1372
1376
|
|
|
1373
|
-
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1377
|
+
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/probe/list.ts)_
|
|
1374
1378
|
|
|
1375
1379
|
## `codiac asset recycle`
|
|
1376
1380
|
|
|
@@ -1410,7 +1414,7 @@ DESCRIPTION
|
|
|
1410
1414
|
Deploys a given asset to a given cabinet. Defaults to current version.
|
|
1411
1415
|
```
|
|
1412
1416
|
|
|
1413
|
-
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1417
|
+
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/recycle.ts)_
|
|
1414
1418
|
|
|
1415
1419
|
## `codiac asset undeploy`
|
|
1416
1420
|
|
|
@@ -1454,7 +1458,7 @@ EXAMPLES
|
|
|
1454
1458
|
$ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
|
|
1455
1459
|
```
|
|
1456
1460
|
|
|
1457
|
-
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1461
|
+
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/undeploy.ts)_
|
|
1458
1462
|
|
|
1459
1463
|
## `codiac asset view [CMD]`
|
|
1460
1464
|
|
|
@@ -1509,7 +1513,7 @@ ALIASES
|
|
|
1509
1513
|
$ codiac asset get
|
|
1510
1514
|
```
|
|
1511
1515
|
|
|
1512
|
-
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1516
|
+
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/view.ts)_
|
|
1513
1517
|
|
|
1514
1518
|
## `codiac asset vol add [MOUNTPATH]`
|
|
1515
1519
|
|
|
@@ -1780,7 +1784,7 @@ ALIASES
|
|
|
1780
1784
|
$ codiac asset volume add
|
|
1781
1785
|
```
|
|
1782
1786
|
|
|
1783
|
-
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1787
|
+
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/volume/create.ts)_
|
|
1784
1788
|
|
|
1785
1789
|
## `codiac asset volume del`
|
|
1786
1790
|
|
|
@@ -1868,7 +1872,7 @@ EXAMPLES
|
|
|
1868
1872
|
$ codiac asset volume delete -e myEnterprise -n myMount --to-script
|
|
1869
1873
|
```
|
|
1870
1874
|
|
|
1871
|
-
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1875
|
+
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/volume/delete.ts)_
|
|
1872
1876
|
|
|
1873
1877
|
## `codiac asset volume list`
|
|
1874
1878
|
|
|
@@ -1917,7 +1921,7 @@ EXAMPLES
|
|
|
1917
1921
|
$ codiac asset volume list -e myEnterprise --silent
|
|
1918
1922
|
```
|
|
1919
1923
|
|
|
1920
|
-
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1924
|
+
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/volume/list.ts)_
|
|
1921
1925
|
|
|
1922
1926
|
## `codiac asset volumes del`
|
|
1923
1927
|
|
|
@@ -2084,7 +2088,7 @@ EXAMPLES
|
|
|
2084
2088
|
$ codiac asset where -e main -a my-api --silent
|
|
2085
2089
|
```
|
|
2086
2090
|
|
|
2087
|
-
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2091
|
+
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/asset/where.ts)_
|
|
2088
2092
|
|
|
2089
2093
|
## `codiac auth cab allow`
|
|
2090
2094
|
|
|
@@ -2246,7 +2250,7 @@ EXAMPLES
|
|
|
2246
2250
|
$ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
|
|
2247
2251
|
```
|
|
2248
2252
|
|
|
2249
|
-
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2253
|
+
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/cabinet/allow.ts)_
|
|
2250
2254
|
|
|
2251
2255
|
## `codiac auth cabinet allowed`
|
|
2252
2256
|
|
|
@@ -2294,7 +2298,7 @@ EXAMPLES
|
|
|
2294
2298
|
$ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
|
|
2295
2299
|
```
|
|
2296
2300
|
|
|
2297
|
-
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2301
|
+
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/cabinet/allowed.ts)_
|
|
2298
2302
|
|
|
2299
2303
|
## `codiac auth ent allow`
|
|
2300
2304
|
|
|
@@ -2485,7 +2489,7 @@ EXAMPLES
|
|
|
2485
2489
|
$ codiac auth enterprise allow -r deployer -p none
|
|
2486
2490
|
```
|
|
2487
2491
|
|
|
2488
|
-
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2492
|
+
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/enterprise/allow.ts)_
|
|
2489
2493
|
|
|
2490
2494
|
## `codiac auth enterprise allow onEnvironments`
|
|
2491
2495
|
|
|
@@ -2539,7 +2543,7 @@ EXAMPLES
|
|
|
2539
2543
|
$ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
|
|
2540
2544
|
```
|
|
2541
2545
|
|
|
2542
|
-
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2546
|
+
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/enterprise/allow/onEnvironments.ts)_
|
|
2543
2547
|
|
|
2544
2548
|
## `codiac auth enterprise allowed`
|
|
2545
2549
|
|
|
@@ -2580,7 +2584,7 @@ EXAMPLES
|
|
|
2580
2584
|
$ codiac auth enterprise allowed --enterprise modeling
|
|
2581
2585
|
```
|
|
2582
2586
|
|
|
2583
|
-
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2587
|
+
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/enterprise/allowed.ts)_
|
|
2584
2588
|
|
|
2585
2589
|
## `codiac auth env allowed`
|
|
2586
2590
|
|
|
@@ -2787,7 +2791,7 @@ EXAMPLES
|
|
|
2787
2791
|
$ codiac auth environment allow -e qa -r productmanager -p read
|
|
2788
2792
|
```
|
|
2789
2793
|
|
|
2790
|
-
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2794
|
+
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/environment/allow.ts)_
|
|
2791
2795
|
|
|
2792
2796
|
## `codiac auth environment allow onCabinets`
|
|
2793
2797
|
|
|
@@ -2844,7 +2848,7 @@ EXAMPLES
|
|
|
2844
2848
|
$ codiac auth environment allow onCabinets -e qa -r productmanager -p read
|
|
2845
2849
|
```
|
|
2846
2850
|
|
|
2847
|
-
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2851
|
+
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/environment/allow/onCabinets.ts)_
|
|
2848
2852
|
|
|
2849
2853
|
## `codiac auth environment allowed`
|
|
2850
2854
|
|
|
@@ -2889,7 +2893,7 @@ EXAMPLES
|
|
|
2889
2893
|
$ codiac auth environment allowed --enterprise modeling -e dev
|
|
2890
2894
|
```
|
|
2891
2895
|
|
|
2892
|
-
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2896
|
+
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/environment/allowed.ts)_
|
|
2893
2897
|
|
|
2894
2898
|
## `codiac auth register`
|
|
2895
2899
|
|
|
@@ -2935,7 +2939,7 @@ EXAMPLES
|
|
|
2935
2939
|
$ codiac auth register
|
|
2936
2940
|
```
|
|
2937
2941
|
|
|
2938
|
-
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2942
|
+
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/register.ts)_
|
|
2939
2943
|
|
|
2940
2944
|
## `codiac auth role allowed [NAME]`
|
|
2941
2945
|
|
|
@@ -2982,7 +2986,7 @@ EXAMPLES
|
|
|
2982
2986
|
$ codiac auth role allowed -n deployer -e main
|
|
2983
2987
|
```
|
|
2984
2988
|
|
|
2985
|
-
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2989
|
+
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/role/allowed.ts)_
|
|
2986
2990
|
|
|
2987
2991
|
## `codiac auth role assign`
|
|
2988
2992
|
|
|
@@ -3014,7 +3018,7 @@ EXAMPLES
|
|
|
3014
3018
|
$ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
|
|
3015
3019
|
```
|
|
3016
3020
|
|
|
3017
|
-
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3021
|
+
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/role/assign.ts)_
|
|
3018
3022
|
|
|
3019
3023
|
## `codiac auth role create [NAME]`
|
|
3020
3024
|
|
|
@@ -3047,7 +3051,7 @@ EXAMPLES
|
|
|
3047
3051
|
$ codiac auth role create -n deployer
|
|
3048
3052
|
```
|
|
3049
3053
|
|
|
3050
|
-
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3054
|
+
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/role/create.ts)_
|
|
3051
3055
|
|
|
3052
3056
|
## `codiac auth role delete [NAME]`
|
|
3053
3057
|
|
|
@@ -3083,7 +3087,7 @@ EXAMPLES
|
|
|
3083
3087
|
$ codiac auth role delete --id abc123def456
|
|
3084
3088
|
```
|
|
3085
3089
|
|
|
3086
|
-
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3090
|
+
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/role/delete.ts)_
|
|
3087
3091
|
|
|
3088
3092
|
## `codiac auth role list`
|
|
3089
3093
|
|
|
@@ -3119,7 +3123,7 @@ EXAMPLES
|
|
|
3119
3123
|
$ codiac auth role list -o yaml > roles.yaml
|
|
3120
3124
|
```
|
|
3121
3125
|
|
|
3122
|
-
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3126
|
+
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/role/list.ts)_
|
|
3123
3127
|
|
|
3124
3128
|
## `codiac auth role unassign`
|
|
3125
3129
|
|
|
@@ -3151,7 +3155,7 @@ EXAMPLES
|
|
|
3151
3155
|
$ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
|
|
3152
3156
|
```
|
|
3153
3157
|
|
|
3154
|
-
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3158
|
+
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/role/unassign.ts)_
|
|
3155
3159
|
|
|
3156
3160
|
## `codiac auth user invite`
|
|
3157
3161
|
|
|
@@ -3191,7 +3195,7 @@ EXAMPLES
|
|
|
3191
3195
|
$ codiac auth user invite
|
|
3192
3196
|
```
|
|
3193
3197
|
|
|
3194
|
-
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3198
|
+
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/user/invite.ts)_
|
|
3195
3199
|
|
|
3196
3200
|
## `codiac auth user list`
|
|
3197
3201
|
|
|
@@ -3227,7 +3231,7 @@ EXAMPLES
|
|
|
3227
3231
|
$ codiac auth user list -o yaml > users.yaml
|
|
3228
3232
|
```
|
|
3229
3233
|
|
|
3230
|
-
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3234
|
+
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/auth/user/list.ts)_
|
|
3231
3235
|
|
|
3232
3236
|
## `codiac autocomplete [SHELL]`
|
|
3233
3237
|
|
|
@@ -3277,7 +3281,7 @@ DESCRIPTION
|
|
|
3277
3281
|
Creates a new branch for the parent project and any sourced dependencies.
|
|
3278
3282
|
```
|
|
3279
3283
|
|
|
3280
|
-
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3284
|
+
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/branch.ts)_
|
|
3281
3285
|
|
|
3282
3286
|
## `codiac branch current`
|
|
3283
3287
|
|
|
@@ -3297,7 +3301,7 @@ ALIASES
|
|
|
3297
3301
|
$ codiac branches current
|
|
3298
3302
|
```
|
|
3299
3303
|
|
|
3300
|
-
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3304
|
+
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/branch/current.ts)_
|
|
3301
3305
|
|
|
3302
3306
|
## `codiac branch list`
|
|
3303
3307
|
|
|
@@ -3319,7 +3323,7 @@ ALIASES
|
|
|
3319
3323
|
$ codiac branches list
|
|
3320
3324
|
```
|
|
3321
3325
|
|
|
3322
|
-
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3326
|
+
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/branch/list.ts)_
|
|
3323
3327
|
|
|
3324
3328
|
## `codiac branches current`
|
|
3325
3329
|
|
|
@@ -3409,7 +3413,7 @@ DESCRIPTION
|
|
|
3409
3413
|
Builds the project and the docker container
|
|
3410
3414
|
```
|
|
3411
3415
|
|
|
3412
|
-
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3416
|
+
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/build.ts)_
|
|
3413
3417
|
|
|
3414
3418
|
## `codiac cab cluster attach`
|
|
3415
3419
|
|
|
@@ -4009,7 +4013,7 @@ EXAMPLES
|
|
|
4009
4013
|
prod-cluster-1 --to-script
|
|
4010
4014
|
```
|
|
4011
4015
|
|
|
4012
|
-
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4016
|
+
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/cluster/attach.ts)_
|
|
4013
4017
|
|
|
4014
4018
|
## `codiac cabinet contents`
|
|
4015
4019
|
|
|
@@ -4053,7 +4057,7 @@ EXAMPLES
|
|
|
4053
4057
|
$ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
|
|
4054
4058
|
```
|
|
4055
4059
|
|
|
4056
|
-
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4060
|
+
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/contents.ts)_
|
|
4057
4061
|
|
|
4058
4062
|
## `codiac cabinet create [CABINET]`
|
|
4059
4063
|
|
|
@@ -4120,7 +4124,7 @@ EXAMPLES
|
|
|
4120
4124
|
cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
|
|
4121
4125
|
```
|
|
4122
4126
|
|
|
4123
|
-
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4127
|
+
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/create.ts)_
|
|
4124
4128
|
|
|
4125
4129
|
## `codiac cabinet define [CABINET]`
|
|
4126
4130
|
|
|
@@ -4182,7 +4186,7 @@ EXAMPLES
|
|
|
4182
4186
|
$ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
|
|
4183
4187
|
```
|
|
4184
4188
|
|
|
4185
|
-
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4189
|
+
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/define.ts)_
|
|
4186
4190
|
|
|
4187
4191
|
## `codiac cabinet destroy [CABINET]`
|
|
4188
4192
|
|
|
@@ -4240,7 +4244,7 @@ EXAMPLES
|
|
|
4240
4244
|
--environment dev --silent
|
|
4241
4245
|
```
|
|
4242
4246
|
|
|
4243
|
-
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4247
|
+
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/destroy.ts)_
|
|
4244
4248
|
|
|
4245
4249
|
## `codiac cabinet detach [CABINET]`
|
|
4246
4250
|
|
|
@@ -4297,7 +4301,7 @@ EXAMPLES
|
|
|
4297
4301
|
main --environment dev
|
|
4298
4302
|
```
|
|
4299
4303
|
|
|
4300
|
-
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4304
|
+
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/detach.ts)_
|
|
4301
4305
|
|
|
4302
4306
|
## `codiac cabinet forget [CABINET]`
|
|
4303
4307
|
|
|
@@ -4352,7 +4356,7 @@ EXAMPLES
|
|
|
4352
4356
|
$ codiac cabinet forget --to-script
|
|
4353
4357
|
```
|
|
4354
4358
|
|
|
4355
|
-
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4359
|
+
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/forget.ts)_
|
|
4356
4360
|
|
|
4357
4361
|
## `codiac cabinet list`
|
|
4358
4362
|
|
|
@@ -4403,7 +4407,7 @@ EXAMPLES
|
|
|
4403
4407
|
$ codiac cabinet list -e myEnterprise --silent
|
|
4404
4408
|
```
|
|
4405
4409
|
|
|
4406
|
-
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4410
|
+
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/list.ts)_
|
|
4407
4411
|
|
|
4408
4412
|
## `codiac cabinet obliterate [CABINET]`
|
|
4409
4413
|
|
|
@@ -4445,7 +4449,7 @@ ALIASES
|
|
|
4445
4449
|
$ codiac infrx cab obliterate
|
|
4446
4450
|
```
|
|
4447
4451
|
|
|
4448
|
-
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4452
|
+
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/obliterate.ts)_
|
|
4449
4453
|
|
|
4450
4454
|
## `codiac cabinet restore`
|
|
4451
4455
|
|
|
@@ -4512,7 +4516,7 @@ EXAMPLES
|
|
|
4512
4516
|
$ codiac cabinet restore --cluster prod-cluster-1 --to-script
|
|
4513
4517
|
```
|
|
4514
4518
|
|
|
4515
|
-
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4519
|
+
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cabinet/restore.ts)_
|
|
4516
4520
|
|
|
4517
4521
|
## `codiac cfg add`
|
|
4518
4522
|
|
|
@@ -4769,7 +4773,7 @@ DESCRIPTION
|
|
|
4769
4773
|
Applies settings to the Codiac CLI itself (scoped to the local machine).
|
|
4770
4774
|
```
|
|
4771
4775
|
|
|
4772
|
-
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4776
|
+
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cli.ts)_
|
|
4773
4777
|
|
|
4774
4778
|
## `codiac cluster agent configure [CLUSTER]`
|
|
4775
4779
|
|
|
@@ -4834,7 +4838,7 @@ EXAMPLES
|
|
|
4834
4838
|
$ codiac cluster agent configure my-cluster --to-script
|
|
4835
4839
|
```
|
|
4836
4840
|
|
|
4837
|
-
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4841
|
+
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/agent/configure.ts)_
|
|
4838
4842
|
|
|
4839
4843
|
## `codiac cluster agent install [CLUSTER]`
|
|
4840
4844
|
|
|
@@ -4887,7 +4891,7 @@ EXAMPLES
|
|
|
4887
4891
|
$ codiac cluster agent install my-cluster --to-script
|
|
4888
4892
|
```
|
|
4889
4893
|
|
|
4890
|
-
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4894
|
+
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/agent/install.ts)_
|
|
4891
4895
|
|
|
4892
4896
|
## `codiac cluster agent uninstall [CLUSTER]`
|
|
4893
4897
|
|
|
@@ -4932,7 +4936,7 @@ EXAMPLES
|
|
|
4932
4936
|
$ codiac cluster agent uninstall my-cluster --to-script
|
|
4933
4937
|
```
|
|
4934
4938
|
|
|
4935
|
-
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4939
|
+
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/agent/uninstall.ts)_
|
|
4936
4940
|
|
|
4937
4941
|
## `codiac cluster bootstrap [NAME]`
|
|
4938
4942
|
|
|
@@ -4995,7 +4999,7 @@ EXAMPLES
|
|
|
4995
4999
|
$ codiac cluster bootstrap my-cluster --to-script
|
|
4996
5000
|
```
|
|
4997
5001
|
|
|
4998
|
-
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5002
|
+
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/bootstrap.ts)_
|
|
4999
5003
|
|
|
5000
5004
|
## `codiac cluster capture`
|
|
5001
5005
|
|
|
@@ -5080,7 +5084,7 @@ EXAMPLES
|
|
|
5080
5084
|
$ codiac cluster connect my-fav-cluster
|
|
5081
5085
|
```
|
|
5082
5086
|
|
|
5083
|
-
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5087
|
+
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/connect.ts)_
|
|
5084
5088
|
|
|
5085
5089
|
## `codiac cluster contents`
|
|
5086
5090
|
|
|
@@ -5574,7 +5578,7 @@ EXAMPLES
|
|
|
5574
5578
|
$ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
|
|
5575
5579
|
```
|
|
5576
5580
|
|
|
5577
|
-
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5581
|
+
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/install.ts)_
|
|
5578
5582
|
|
|
5579
5583
|
## `codiac cluster journal [CLUSTER]`
|
|
5580
5584
|
|
|
@@ -5863,7 +5867,7 @@ EXAMPLES
|
|
|
5863
5867
|
$ codiac cluster stack capture my-fav-cluster
|
|
5864
5868
|
```
|
|
5865
5869
|
|
|
5866
|
-
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5870
|
+
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/stack/capture.ts)_
|
|
5867
5871
|
|
|
5868
5872
|
## `codiac cluster stack install [CLUSTER]`
|
|
5869
5873
|
|
|
@@ -5915,7 +5919,7 @@ EXAMPLES
|
|
|
5915
5919
|
$ codiac cluster stack install my-cluster --to-script
|
|
5916
5920
|
```
|
|
5917
5921
|
|
|
5918
|
-
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5922
|
+
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/stack/install.ts)_
|
|
5919
5923
|
|
|
5920
5924
|
## `codiac cluster stack list`
|
|
5921
5925
|
|
|
@@ -6081,7 +6085,7 @@ EXAMPLES
|
|
|
6081
6085
|
$ codiac cluster start my-fav-cluster
|
|
6082
6086
|
```
|
|
6083
6087
|
|
|
6084
|
-
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6088
|
+
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/start.ts)_
|
|
6085
6089
|
|
|
6086
6090
|
## `codiac cluster stop [CLUSTER]`
|
|
6087
6091
|
|
|
@@ -6118,7 +6122,7 @@ EXAMPLES
|
|
|
6118
6122
|
$ codiac cluster start my-fav-cluster
|
|
6119
6123
|
```
|
|
6120
6124
|
|
|
6121
|
-
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6125
|
+
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/cluster/stop.ts)_
|
|
6122
6126
|
|
|
6123
6127
|
## `codiac cluster uninstall`
|
|
6124
6128
|
|
|
@@ -6180,7 +6184,7 @@ DESCRIPTION
|
|
|
6180
6184
|
Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
|
|
6181
6185
|
```
|
|
6182
6186
|
|
|
6183
|
-
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6187
|
+
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/commit.ts)_
|
|
6184
6188
|
|
|
6185
6189
|
## `codiac config add`
|
|
6186
6190
|
|
|
@@ -6290,7 +6294,7 @@ EXAMPLES
|
|
|
6290
6294
|
'#REF|azKeyVault|our-secret-store|some-managed-svc-cert'
|
|
6291
6295
|
```
|
|
6292
6296
|
|
|
6293
|
-
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6297
|
+
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/config/add.ts)_
|
|
6294
6298
|
|
|
6295
6299
|
## `codiac config delete [SETTING]`
|
|
6296
6300
|
|
|
@@ -6359,7 +6363,7 @@ ALIASES
|
|
|
6359
6363
|
$ codiac cfg delete
|
|
6360
6364
|
```
|
|
6361
6365
|
|
|
6362
|
-
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6366
|
+
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/config/delete.ts)_
|
|
6363
6367
|
|
|
6364
6368
|
## `codiac config deploy`
|
|
6365
6369
|
|
|
@@ -6400,7 +6404,7 @@ EXAMPLES
|
|
|
6400
6404
|
$ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
|
|
6401
6405
|
```
|
|
6402
6406
|
|
|
6403
|
-
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6407
|
+
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/config/deploy.ts)_
|
|
6404
6408
|
|
|
6405
6409
|
## `codiac config import`
|
|
6406
6410
|
|
|
@@ -6453,7 +6457,7 @@ EXAMPLES
|
|
|
6453
6457
|
$ codiac config import -a myApi -s ./dist/app-config.json -n myEnterprise --to-script
|
|
6454
6458
|
```
|
|
6455
6459
|
|
|
6456
|
-
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6460
|
+
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/config/import.ts)_
|
|
6457
6461
|
|
|
6458
6462
|
## `codiac config preview [SETTING]`
|
|
6459
6463
|
|
|
@@ -6694,7 +6698,7 @@ DESCRIPTION
|
|
|
6694
6698
|
Shows the list of clusters.
|
|
6695
6699
|
```
|
|
6696
6700
|
|
|
6697
|
-
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6701
|
+
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/config/settings/get.ts)_
|
|
6698
6702
|
|
|
6699
6703
|
## `codiac config view [SETTING]`
|
|
6700
6704
|
|
|
@@ -6759,7 +6763,7 @@ EXAMPLES
|
|
|
6759
6763
|
$ codiac config view -e myEnterprise -a myApi -c dev --to-script
|
|
6760
6764
|
```
|
|
6761
6765
|
|
|
6762
|
-
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6766
|
+
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/config/view.ts)_
|
|
6763
6767
|
|
|
6764
6768
|
## `codiac csp creds list`
|
|
6765
6769
|
|
|
@@ -6807,7 +6811,7 @@ EXAMPLES
|
|
|
6807
6811
|
$ codiac csp creds list
|
|
6808
6812
|
```
|
|
6809
6813
|
|
|
6810
|
-
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6814
|
+
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/csp/creds/list.ts)_
|
|
6811
6815
|
|
|
6812
6816
|
## `codiac csp login [PROVIDER]`
|
|
6813
6817
|
|
|
@@ -6885,7 +6889,7 @@ EXAMPLES
|
|
|
6885
6889
|
cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
|
|
6886
6890
|
```
|
|
6887
6891
|
|
|
6888
|
-
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6892
|
+
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/csp/login.ts)_
|
|
6889
6893
|
|
|
6890
6894
|
## `codiac csp logout [PROVIDER]`
|
|
6891
6895
|
|
|
@@ -6932,7 +6936,7 @@ EXAMPLES
|
|
|
6932
6936
|
$ codiac csp logout azure --to-script
|
|
6933
6937
|
```
|
|
6934
6938
|
|
|
6935
|
-
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6939
|
+
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/csp/logout.ts)_
|
|
6936
6940
|
|
|
6937
6941
|
## `codiac dep [NAME]`
|
|
6938
6942
|
|
|
@@ -6953,7 +6957,7 @@ DESCRIPTION
|
|
|
6953
6957
|
Installs a package into current project.
|
|
6954
6958
|
```
|
|
6955
6959
|
|
|
6956
|
-
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6960
|
+
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/dep.ts)_
|
|
6957
6961
|
|
|
6958
6962
|
## `codiac dep create [URL]`
|
|
6959
6963
|
|
|
@@ -6977,7 +6981,7 @@ DESCRIPTION
|
|
|
6977
6981
|
package version is used.
|
|
6978
6982
|
```
|
|
6979
6983
|
|
|
6980
|
-
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6984
|
+
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/dep/create.ts)_
|
|
6981
6985
|
|
|
6982
6986
|
## `codiac dep install`
|
|
6983
6987
|
|
|
@@ -6994,7 +6998,7 @@ DESCRIPTION
|
|
|
6994
6998
|
installs any missing dependency packages into the local project folder.
|
|
6995
6999
|
```
|
|
6996
7000
|
|
|
6997
|
-
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7001
|
+
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/dep/install.ts)_
|
|
6998
7002
|
|
|
6999
7003
|
## `codiac dep list`
|
|
7000
7004
|
|
|
@@ -7011,7 +7015,7 @@ DESCRIPTION
|
|
|
7011
7015
|
Shows the dependencies for the project.
|
|
7012
7016
|
```
|
|
7013
7017
|
|
|
7014
|
-
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7018
|
+
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/dep/list.ts)_
|
|
7015
7019
|
|
|
7016
7020
|
## `codiac dep remove [NAME]`
|
|
7017
7021
|
|
|
@@ -7034,7 +7038,7 @@ DESCRIPTION
|
|
|
7034
7038
|
Removes a dependency from the project.
|
|
7035
7039
|
```
|
|
7036
7040
|
|
|
7037
|
-
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7041
|
+
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/dep/remove.ts)_
|
|
7038
7042
|
|
|
7039
7043
|
## `codiac dep source [NAME]`
|
|
7040
7044
|
|
|
@@ -7060,7 +7064,7 @@ ALIASES
|
|
|
7060
7064
|
$ codiac dep src
|
|
7061
7065
|
```
|
|
7062
7066
|
|
|
7063
|
-
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7067
|
+
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/dep/source.ts)_
|
|
7064
7068
|
|
|
7065
7069
|
## `codiac dep src [NAME]`
|
|
7066
7070
|
|
|
@@ -7104,7 +7108,7 @@ DESCRIPTION
|
|
|
7104
7108
|
Publishes the dependency in its current state and upgrades to it in the main project.
|
|
7105
7109
|
```
|
|
7106
7110
|
|
|
7107
|
-
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7111
|
+
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/dep/syncup.ts)_
|
|
7108
7112
|
|
|
7109
7113
|
## `codiac dep unsource [NAME]`
|
|
7110
7114
|
|
|
@@ -7132,7 +7136,7 @@ ALIASES
|
|
|
7132
7136
|
$ codiac dep unsrc
|
|
7133
7137
|
```
|
|
7134
7138
|
|
|
7135
|
-
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7139
|
+
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/dep/unsource.ts)_
|
|
7136
7140
|
|
|
7137
7141
|
## `codiac dep unsrc [NAME]`
|
|
7138
7142
|
|
|
@@ -7179,7 +7183,7 @@ DESCRIPTION
|
|
|
7179
7183
|
describe the command here
|
|
7180
7184
|
```
|
|
7181
7185
|
|
|
7182
|
-
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7186
|
+
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/dep/upgrade.ts)_
|
|
7183
7187
|
|
|
7184
7188
|
## `codiac deploy`
|
|
7185
7189
|
|
|
@@ -7232,7 +7236,7 @@ EXAMPLES
|
|
|
7232
7236
|
$ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
|
|
7233
7237
|
```
|
|
7234
7238
|
|
|
7235
|
-
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7239
|
+
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/deploy.ts)_
|
|
7236
7240
|
|
|
7237
7241
|
## `codiac domain map [DOMAIN]`
|
|
7238
7242
|
|
|
@@ -7382,7 +7386,7 @@ EXAMPLES
|
|
|
7382
7386
|
cod enterprise create my-enterprise-code --silent
|
|
7383
7387
|
```
|
|
7384
7388
|
|
|
7385
|
-
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7389
|
+
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/enterprise/create.ts)_
|
|
7386
7390
|
|
|
7387
7391
|
## `codiac enterprise list`
|
|
7388
7392
|
|
|
@@ -7437,7 +7441,7 @@ EXAMPLES
|
|
|
7437
7441
|
$ codiac enterprise list --to-script
|
|
7438
7442
|
```
|
|
7439
7443
|
|
|
7440
|
-
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7444
|
+
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/enterprise/list.ts)_
|
|
7441
7445
|
|
|
7442
7446
|
## `codiac env add [SETTING]`
|
|
7443
7447
|
|
|
@@ -7487,7 +7491,7 @@ EXAMPLES
|
|
|
7487
7491
|
$ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
|
|
7488
7492
|
```
|
|
7489
7493
|
|
|
7490
|
-
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7494
|
+
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/env/add.ts)_
|
|
7491
7495
|
|
|
7492
7496
|
## `codiac enviro cluster attach`
|
|
7493
7497
|
|
|
@@ -7790,7 +7794,7 @@ ALIASES
|
|
|
7790
7794
|
$ codiac infrx enviro cluster attach
|
|
7791
7795
|
```
|
|
7792
7796
|
|
|
7793
|
-
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7797
|
+
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/environment/cluster/attach.ts)_
|
|
7794
7798
|
|
|
7795
7799
|
## `codiac environment cluster detach`
|
|
7796
7800
|
|
|
@@ -7836,7 +7840,7 @@ ALIASES
|
|
|
7836
7840
|
$ codiac infrx enviro cluster detach
|
|
7837
7841
|
```
|
|
7838
7842
|
|
|
7839
|
-
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7843
|
+
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/environment/cluster/detach.ts)_
|
|
7840
7844
|
|
|
7841
7845
|
## `codiac environment create [NAME]`
|
|
7842
7846
|
|
|
@@ -7899,7 +7903,7 @@ EXAMPLES
|
|
|
7899
7903
|
cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
|
|
7900
7904
|
```
|
|
7901
7905
|
|
|
7902
|
-
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7906
|
+
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/environment/create.ts)_
|
|
7903
7907
|
|
|
7904
7908
|
## `codiac environment delete [NAME]`
|
|
7905
7909
|
|
|
@@ -7960,7 +7964,7 @@ EXAMPLES
|
|
|
7960
7964
|
$ codiac environment delete dev --enterprise main --to-script
|
|
7961
7965
|
```
|
|
7962
7966
|
|
|
7963
|
-
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7967
|
+
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/environment/delete.ts)_
|
|
7964
7968
|
|
|
7965
7969
|
## `codiac environment list`
|
|
7966
7970
|
|
|
@@ -8011,7 +8015,7 @@ EXAMPLES
|
|
|
8011
8015
|
$ codiac environment list -e myEnterprise --silent
|
|
8012
8016
|
```
|
|
8013
8017
|
|
|
8014
|
-
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8018
|
+
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/environment/list.ts)_
|
|
8015
8019
|
|
|
8016
8020
|
## `codiac fileshare capture`
|
|
8017
8021
|
|
|
@@ -8095,7 +8099,7 @@ ALIASES
|
|
|
8095
8099
|
$ codiac fileshare capture
|
|
8096
8100
|
```
|
|
8097
8101
|
|
|
8098
|
-
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8102
|
+
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/filestore/capture.ts)_
|
|
8099
8103
|
|
|
8100
8104
|
## `codiac filestore forget`
|
|
8101
8105
|
|
|
@@ -8142,7 +8146,7 @@ EXAMPLES
|
|
|
8142
8146
|
$ codiac filestore forget
|
|
8143
8147
|
```
|
|
8144
8148
|
|
|
8145
|
-
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8149
|
+
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/filestore/forget.ts)_
|
|
8146
8150
|
|
|
8147
8151
|
## `codiac filestore list`
|
|
8148
8152
|
|
|
@@ -8151,8 +8155,8 @@ Retrieves the list of existing file stores captured for a given enterprise.
|
|
|
8151
8155
|
```
|
|
8152
8156
|
USAGE
|
|
8153
8157
|
$ codiac filestore list [-e <value>] [-t
|
|
8154
|
-
AwsEbs|AwsEfs|AwsS3Bucket|AzureBlobStorage|AzureDisk|AzureFileStorage|HostMachineFolder] [-o
|
|
8155
|
-
[--take-defaults | [--silent | --echo | --to-script]]
|
|
8158
|
+
AwsEbs|AwsEfs|AwsS3Bucket|AzureBlobStorage|AzureDisk|AzureFileStorage|AzureNetAppFiles|HostMachineFolder] [-o
|
|
8159
|
+
json|yaml|auto] [--take-defaults | [--silent | --echo | --to-script]]
|
|
8156
8160
|
|
|
8157
8161
|
FLAGS
|
|
8158
8162
|
-e, --enterprise=<value>
|
|
@@ -8164,7 +8168,7 @@ FLAGS
|
|
|
8164
8168
|
|
|
8165
8169
|
-t, --type=<option>
|
|
8166
8170
|
Filter on the filestore technology.
|
|
8167
|
-
<options: AwsEbs|AwsEfs|AwsS3Bucket|AzureBlobStorage|AzureDisk|AzureFileStorage|HostMachineFolder>
|
|
8171
|
+
<options: AwsEbs|AwsEfs|AwsS3Bucket|AzureBlobStorage|AzureDisk|AzureFileStorage|AzureNetAppFiles|HostMachineFolder>
|
|
8168
8172
|
|
|
8169
8173
|
--echo
|
|
8170
8174
|
Echo interaction mode; renders the equivalent non-interactive cli command for future use before final execution.
|
|
@@ -8188,7 +8192,7 @@ EXAMPLES
|
|
|
8188
8192
|
$ codiac filestore list
|
|
8189
8193
|
```
|
|
8190
8194
|
|
|
8191
|
-
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8195
|
+
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/filestore/list.ts)_
|
|
8192
8196
|
|
|
8193
8197
|
## `codiac help [COMMANDS]`
|
|
8194
8198
|
|
|
@@ -8274,7 +8278,7 @@ EXAMPLES
|
|
|
8274
8278
|
$ codiac host delete
|
|
8275
8279
|
```
|
|
8276
8280
|
|
|
8277
|
-
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8281
|
+
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/host/delete.ts)_
|
|
8278
8282
|
|
|
8279
8283
|
## `codiac host list [DOMAIN]`
|
|
8280
8284
|
|
|
@@ -8318,7 +8322,7 @@ EXAMPLES
|
|
|
8318
8322
|
$ codiac host list
|
|
8319
8323
|
```
|
|
8320
8324
|
|
|
8321
|
-
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8325
|
+
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/host/list.ts)_
|
|
8322
8326
|
|
|
8323
8327
|
## `codiac host map [DOMAIN]`
|
|
8324
8328
|
|
|
@@ -8366,7 +8370,7 @@ EXAMPLES
|
|
|
8366
8370
|
$ codiac host map my-company.com -e myEnterprise --to-script
|
|
8367
8371
|
```
|
|
8368
8372
|
|
|
8369
|
-
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8373
|
+
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/host/map.ts)_
|
|
8370
8374
|
|
|
8371
8375
|
## `codiac host view [DOMAIN]`
|
|
8372
8376
|
|
|
@@ -8411,7 +8415,7 @@ EXAMPLES
|
|
|
8411
8415
|
$ codiac host view
|
|
8412
8416
|
```
|
|
8413
8417
|
|
|
8414
|
-
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8418
|
+
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/host/view.ts)_
|
|
8415
8419
|
|
|
8416
8420
|
## `codiac identify [TOKENNAME]`
|
|
8417
8421
|
|
|
@@ -8483,7 +8487,7 @@ ALIASES
|
|
|
8483
8487
|
$ codiac token
|
|
8484
8488
|
```
|
|
8485
8489
|
|
|
8486
|
-
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8490
|
+
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/identity.ts)_
|
|
8487
8491
|
|
|
8488
8492
|
## `codiac identity delete [NAME]`
|
|
8489
8493
|
|
|
@@ -8508,7 +8512,7 @@ ALIASES
|
|
|
8508
8512
|
$ codiac token remove
|
|
8509
8513
|
```
|
|
8510
8514
|
|
|
8511
|
-
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8515
|
+
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/identity/delete.ts)_
|
|
8512
8516
|
|
|
8513
8517
|
## `codiac identity list`
|
|
8514
8518
|
|
|
@@ -8530,7 +8534,7 @@ ALIASES
|
|
|
8530
8534
|
$ codiac token list
|
|
8531
8535
|
```
|
|
8532
8536
|
|
|
8533
|
-
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8537
|
+
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/identity/list.ts)_
|
|
8534
8538
|
|
|
8535
8539
|
## `codiac identity remove [NAME]`
|
|
8536
8540
|
|
|
@@ -8851,7 +8855,7 @@ DESCRIPTION
|
|
|
8851
8855
|
Saves a reference to an existing container registry.
|
|
8852
8856
|
```
|
|
8853
8857
|
|
|
8854
|
-
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8858
|
+
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/imageRegistry/capture.ts)_
|
|
8855
8859
|
|
|
8856
8860
|
## `codiac imageRegistry forget`
|
|
8857
8861
|
|
|
@@ -8872,7 +8876,7 @@ DESCRIPTION
|
|
|
8872
8876
|
Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
|
|
8873
8877
|
```
|
|
8874
8878
|
|
|
8875
|
-
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8879
|
+
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/imageRegistry/forget.ts)_
|
|
8876
8880
|
|
|
8877
8881
|
## `codiac imageRegistry list`
|
|
8878
8882
|
|
|
@@ -8914,7 +8918,7 @@ EXAMPLES
|
|
|
8914
8918
|
$ codiac imageRegistry list -o yaml > registries.yaml
|
|
8915
8919
|
```
|
|
8916
8920
|
|
|
8917
|
-
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8921
|
+
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/imageRegistry/list.ts)_
|
|
8918
8922
|
|
|
8919
8923
|
## `codiac imageRegistry pullSecret set`
|
|
8920
8924
|
|
|
@@ -8950,7 +8954,7 @@ ALIASES
|
|
|
8950
8954
|
$ codiac pullsecret
|
|
8951
8955
|
```
|
|
8952
8956
|
|
|
8953
|
-
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8957
|
+
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/imageRegistry/pullSecret/set.ts)_
|
|
8954
8958
|
|
|
8955
8959
|
## `codiac imageRegistry pullSecret unset`
|
|
8956
8960
|
|
|
@@ -8977,7 +8981,7 @@ ALIASES
|
|
|
8977
8981
|
$ codiac pullsecret unset
|
|
8978
8982
|
```
|
|
8979
8983
|
|
|
8980
|
-
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8984
|
+
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/imageRegistry/pullSecret/unset.ts)_
|
|
8981
8985
|
|
|
8982
8986
|
## `codiac images add [IMAGENAME]`
|
|
8983
8987
|
|
|
@@ -9038,7 +9042,7 @@ EXAMPLES
|
|
|
9038
9042
|
$ codiac images add your-company/your-image --to-script
|
|
9039
9043
|
```
|
|
9040
9044
|
|
|
9041
|
-
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9045
|
+
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/images/add.ts)_
|
|
9042
9046
|
|
|
9043
9047
|
## `codiac images list`
|
|
9044
9048
|
|
|
@@ -9061,7 +9065,7 @@ ALIASES
|
|
|
9061
9065
|
$ codiac img list
|
|
9062
9066
|
```
|
|
9063
9067
|
|
|
9064
|
-
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9068
|
+
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/images/list.ts)_
|
|
9065
9069
|
|
|
9066
9070
|
## `codiac images patch IMAGENAME`
|
|
9067
9071
|
|
|
@@ -9091,7 +9095,7 @@ ALIASES
|
|
|
9091
9095
|
$ codiac img patch
|
|
9092
9096
|
```
|
|
9093
9097
|
|
|
9094
|
-
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9098
|
+
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/images/patch.ts)_
|
|
9095
9099
|
|
|
9096
9100
|
## `codiac images remove IMAGENAME`
|
|
9097
9101
|
|
|
@@ -9117,7 +9121,7 @@ ALIASES
|
|
|
9117
9121
|
$ codiac img delete
|
|
9118
9122
|
```
|
|
9119
9123
|
|
|
9120
|
-
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9124
|
+
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/images/remove.ts)_
|
|
9121
9125
|
|
|
9122
9126
|
## `codiac images version NAME`
|
|
9123
9127
|
|
|
@@ -9143,7 +9147,7 @@ ALIASES
|
|
|
9143
9147
|
$ codiac img version get
|
|
9144
9148
|
```
|
|
9145
9149
|
|
|
9146
|
-
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9150
|
+
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/images/version.ts)_
|
|
9147
9151
|
|
|
9148
9152
|
## `codiac images version bump NAME`
|
|
9149
9153
|
|
|
@@ -9176,7 +9180,7 @@ ALIASES
|
|
|
9176
9180
|
$ codiac img version bump
|
|
9177
9181
|
```
|
|
9178
9182
|
|
|
9179
|
-
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9183
|
+
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/images/version/bump.ts)_
|
|
9180
9184
|
|
|
9181
9185
|
## `codiac img [IMAGENAME]`
|
|
9182
9186
|
|
|
@@ -10291,7 +10295,7 @@ DESCRIPTION
|
|
|
10291
10295
|
Declares the given folder as a project root
|
|
10292
10296
|
```
|
|
10293
10297
|
|
|
10294
|
-
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10298
|
+
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/init.ts)_
|
|
10295
10299
|
|
|
10296
10300
|
## `codiac kit create`
|
|
10297
10301
|
|
|
@@ -10334,7 +10338,7 @@ EXAMPLES
|
|
|
10334
10338
|
$ codiac kit create -e myEnterprise -a myApi --to-script
|
|
10335
10339
|
```
|
|
10336
10340
|
|
|
10337
|
-
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10341
|
+
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/kit/create.ts)_
|
|
10338
10342
|
|
|
10339
10343
|
## `codiac login`
|
|
10340
10344
|
|
|
@@ -10393,7 +10397,7 @@ EXAMPLES
|
|
|
10393
10397
|
$ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
|
|
10394
10398
|
```
|
|
10395
10399
|
|
|
10396
|
-
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10400
|
+
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/login.ts)_
|
|
10397
10401
|
|
|
10398
10402
|
## `codiac logout`
|
|
10399
10403
|
|
|
@@ -10426,7 +10430,7 @@ EXAMPLES
|
|
|
10426
10430
|
$ codiac logout --to-script
|
|
10427
10431
|
```
|
|
10428
10432
|
|
|
10429
|
-
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10433
|
+
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/logout.ts)_
|
|
10430
10434
|
|
|
10431
10435
|
## `codiac merge [BRANCH]`
|
|
10432
10436
|
|
|
@@ -10447,7 +10451,7 @@ DESCRIPTION
|
|
|
10447
10451
|
Merges the given branch into the current branch of the main project and on any sourced dependencies.
|
|
10448
10452
|
```
|
|
10449
10453
|
|
|
10450
|
-
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10454
|
+
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/merge.ts)_
|
|
10451
10455
|
|
|
10452
10456
|
## `codiac noc cluster capture`
|
|
10453
10457
|
|
|
@@ -10499,7 +10503,7 @@ EXAMPLES
|
|
|
10499
10503
|
cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
|
|
10500
10504
|
```
|
|
10501
10505
|
|
|
10502
|
-
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10506
|
+
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/capture.ts)_
|
|
10503
10507
|
|
|
10504
10508
|
## `codiac noc cluster create [NAME]`
|
|
10505
10509
|
|
|
@@ -10589,7 +10593,7 @@ FLAG DESCRIPTIONS
|
|
|
10589
10593
|
initialization is always skipped in that mode.
|
|
10590
10594
|
```
|
|
10591
10595
|
|
|
10592
|
-
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10596
|
+
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/create.ts)_
|
|
10593
10597
|
|
|
10594
10598
|
## `codiac noc cluster credentials-set [NAME]`
|
|
10595
10599
|
|
|
@@ -10644,7 +10648,7 @@ EXAMPLES
|
|
|
10644
10648
|
$ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
|
|
10645
10649
|
```
|
|
10646
10650
|
|
|
10647
|
-
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10651
|
+
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/credentials-set.ts)_
|
|
10648
10652
|
|
|
10649
10653
|
## `codiac noc cluster define [NAME]`
|
|
10650
10654
|
|
|
@@ -10713,7 +10717,7 @@ EXAMPLES
|
|
|
10713
10717
|
$ codiac noc cluster define my-cluster --to-script
|
|
10714
10718
|
```
|
|
10715
10719
|
|
|
10716
|
-
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10720
|
+
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/define.ts)_
|
|
10717
10721
|
|
|
10718
10722
|
## `codiac noc cluster deinit`
|
|
10719
10723
|
|
|
@@ -10753,7 +10757,7 @@ EXAMPLES
|
|
|
10753
10757
|
$ codiac noc cluster deinit -n my-cluster --to-script
|
|
10754
10758
|
```
|
|
10755
10759
|
|
|
10756
|
-
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10760
|
+
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/deinit.ts)_
|
|
10757
10761
|
|
|
10758
10762
|
## `codiac noc cluster destroy [NAME]`
|
|
10759
10763
|
|
|
@@ -10787,7 +10791,7 @@ ALIASES
|
|
|
10787
10791
|
$ codiac cluster destroy
|
|
10788
10792
|
```
|
|
10789
10793
|
|
|
10790
|
-
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10794
|
+
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/destroy.ts)_
|
|
10791
10795
|
|
|
10792
10796
|
## `codiac noc cluster forget`
|
|
10793
10797
|
|
|
@@ -10838,7 +10842,7 @@ EXAMPLES
|
|
|
10838
10842
|
$ codiac noc cluster forget --running
|
|
10839
10843
|
```
|
|
10840
10844
|
|
|
10841
|
-
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10845
|
+
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/forget.ts)_
|
|
10842
10846
|
|
|
10843
10847
|
## `codiac noc cluster grant`
|
|
10844
10848
|
|
|
@@ -10876,7 +10880,7 @@ EXAMPLES
|
|
|
10876
10880
|
$ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
|
|
10877
10881
|
```
|
|
10878
10882
|
|
|
10879
|
-
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10883
|
+
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/grant.ts)_
|
|
10880
10884
|
|
|
10881
10885
|
## `codiac noc cluster init`
|
|
10882
10886
|
|
|
@@ -10922,7 +10926,7 @@ EXAMPLES
|
|
|
10922
10926
|
$ codiac noc cluster init -n my-cluster --to-script
|
|
10923
10927
|
```
|
|
10924
10928
|
|
|
10925
|
-
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10929
|
+
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/init.ts)_
|
|
10926
10930
|
|
|
10927
10931
|
## `codiac noc cluster journal [CLUSTER]`
|
|
10928
10932
|
|
|
@@ -10971,7 +10975,7 @@ EXAMPLES
|
|
|
10971
10975
|
$ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
|
|
10972
10976
|
```
|
|
10973
10977
|
|
|
10974
|
-
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10978
|
+
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/journal.ts)_
|
|
10975
10979
|
|
|
10976
10980
|
## `codiac noc cluster list`
|
|
10977
10981
|
|
|
@@ -11032,7 +11036,7 @@ EXAMPLES
|
|
|
11032
11036
|
$ codiac noc cluster list -e myEnterprise --to-script
|
|
11033
11037
|
```
|
|
11034
11038
|
|
|
11035
|
-
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11039
|
+
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/list.ts)_
|
|
11036
11040
|
|
|
11037
11041
|
## `codiac noc cluster restore [NAME]`
|
|
11038
11042
|
|
|
@@ -11092,7 +11096,7 @@ EXAMPLES
|
|
|
11092
11096
|
$ codiac noc cluster restore prod-cluster-1 --to-script
|
|
11093
11097
|
```
|
|
11094
11098
|
|
|
11095
|
-
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11099
|
+
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/noc/cluster/restore.ts)_
|
|
11096
11100
|
|
|
11097
11101
|
## `codiac pkg add [DEFINITIONFILE]`
|
|
11098
11102
|
|
|
@@ -11126,7 +11130,7 @@ DESCRIPTION
|
|
|
11126
11130
|
Configures a package to be built and published by the project.
|
|
11127
11131
|
```
|
|
11128
11132
|
|
|
11129
|
-
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11133
|
+
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/pkg/add.ts)_
|
|
11130
11134
|
|
|
11131
11135
|
## `codiac pkg delete [PACKAGENAME]`
|
|
11132
11136
|
|
|
@@ -11164,7 +11168,7 @@ DESCRIPTION
|
|
|
11164
11168
|
Renders the list of packages that are configured as project exports.
|
|
11165
11169
|
```
|
|
11166
11170
|
|
|
11167
|
-
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11171
|
+
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/pkg/list.ts)_
|
|
11168
11172
|
|
|
11169
11173
|
## `codiac pkg patch PACKAGENAME`
|
|
11170
11174
|
|
|
@@ -11190,7 +11194,7 @@ DESCRIPTION
|
|
|
11190
11194
|
registryUrl and/or environment.
|
|
11191
11195
|
```
|
|
11192
11196
|
|
|
11193
|
-
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11197
|
+
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/pkg/patch.ts)_
|
|
11194
11198
|
|
|
11195
11199
|
## `codiac pkg remove [PACKAGENAME]`
|
|
11196
11200
|
|
|
@@ -11213,7 +11217,7 @@ ALIASES
|
|
|
11213
11217
|
$ codiac pkg delete
|
|
11214
11218
|
```
|
|
11215
11219
|
|
|
11216
|
-
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11220
|
+
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/pkg/remove.ts)_
|
|
11217
11221
|
|
|
11218
11222
|
## `codiac portal`
|
|
11219
11223
|
|
|
@@ -11246,7 +11250,7 @@ EXAMPLES
|
|
|
11246
11250
|
$ codiac portal --to-script
|
|
11247
11251
|
```
|
|
11248
11252
|
|
|
11249
|
-
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11253
|
+
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/portal.ts)_
|
|
11250
11254
|
|
|
11251
11255
|
## `codiac probe create [CMD]`
|
|
11252
11256
|
|
|
@@ -11367,7 +11371,7 @@ DESCRIPTION
|
|
|
11367
11371
|
Publishes the exports (packages and images) declared in the ProjectConfig.
|
|
11368
11372
|
```
|
|
11369
11373
|
|
|
11370
|
-
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11374
|
+
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/publish.ts)_
|
|
11371
11375
|
|
|
11372
11376
|
## `codiac pull [NAME]`
|
|
11373
11377
|
|
|
@@ -11391,7 +11395,7 @@ DESCRIPTION
|
|
|
11391
11395
|
Pulls all commits from upstream to local.
|
|
11392
11396
|
```
|
|
11393
11397
|
|
|
11394
|
-
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11398
|
+
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/pull.ts)_
|
|
11395
11399
|
|
|
11396
11400
|
## `codiac pullsecret`
|
|
11397
11401
|
|
|
@@ -11474,7 +11478,222 @@ DESCRIPTION
|
|
|
11474
11478
|
Pushes all local commits upstream.
|
|
11475
11479
|
```
|
|
11476
11480
|
|
|
11477
|
-
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11481
|
+
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/push.ts)_
|
|
11482
|
+
|
|
11483
|
+
## `codiac pvc create`
|
|
11484
|
+
|
|
11485
|
+
Defines a new PersistentVolumeClaim-backed filestore for the given enterprise. The filestore is realized as a PVC in the target cabinet at deploy time, using either a Kubernetes StorageClass for dynamic provisioning or a pre-existing PersistentVolume for static binding.
|
|
11486
|
+
|
|
11487
|
+
```
|
|
11488
|
+
USAGE
|
|
11489
|
+
$ codiac pvc create [-h] [--provider artifactHub|aws|azure|dockerHub|localMachine|other] [-t
|
|
11490
|
+
AzureFileStorage|AzureDisk|AzureBlobStorage|AzureNetAppFiles] [--share-name <value>] [--storage-class <value>]
|
|
11491
|
+
[--access-modes <value>] [--size <value>] [--volume-name <value>] [--echo | --to-script | [--silent -e <value> -n
|
|
11492
|
+
<value>]] [--take-defaults | ]
|
|
11493
|
+
|
|
11494
|
+
FLAGS
|
|
11495
|
+
-e, --enterprise=<value> Code name identifying the enterprise that will own this filestore reference.
|
|
11496
|
+
-h, --help Show CLI help.
|
|
11497
|
+
-n, --name=<value> Name by which this filestore is identified within the enterprise. Used to derive the PVC
|
|
11498
|
+
name.
|
|
11499
|
+
-t, --type=<option> Storage technology backing the PVC (defaults to AzureFileStorage).
|
|
11500
|
+
<options: AzureFileStorage|AzureDisk|AzureBlobStorage|AzureNetAppFiles>
|
|
11501
|
+
--access-modes=<value> Comma-separated PVC access modes (e.g. 'ReadWriteMany' or 'ReadWriteOnce,ReadOnlyMany').
|
|
11502
|
+
Defaults to RWO for block storage, RWM for file/object/NAS storage. Allowed values:
|
|
11503
|
+
ReadWriteOnce, ReadOnlyMany, ReadWriteMany, ReadWriteOncePod.
|
|
11504
|
+
--echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
|
|
11505
|
+
before final execution.
|
|
11506
|
+
--provider=<option> Cloud provider hosting the underlying storage (defaults to azure; only Azure is supported at
|
|
11507
|
+
this time).
|
|
11508
|
+
<options: artifactHub|aws|azure|dockerHub|localMachine|other>
|
|
11509
|
+
--share-name=<value> Underlying physical share name (used by the legacy AzureFileStorage path; ignored for native
|
|
11510
|
+
PVC types). Defaults to the value of --name.
|
|
11511
|
+
--silent Non-Interactive mode; executes without any user interaction and fails on any missing or
|
|
11512
|
+
invalid arguments.
|
|
11513
|
+
--size=<value> Storage capacity request as a Kubernetes quantity (e.g. '5Gi', '100Gi', '700Gi'). Defaults
|
|
11514
|
+
to 500Mi.
|
|
11515
|
+
--storage-class=<value> Kubernetes StorageClass to bind to (e.g. 'azurefile', 'azureblob-fuse-premium',
|
|
11516
|
+
'azure-netapp-files', 'managed-csi'). Defaults to a sensible per-type class when omitted.
|
|
11517
|
+
--take-defaults Setting this to true prevents prompting for confirmation on parameters that were passed in
|
|
11518
|
+
or were automatically set to default values (Irrelevant in --silent mode).
|
|
11519
|
+
--to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
|
|
11520
|
+
execution.
|
|
11521
|
+
--volume-name=<value> Name of a pre-existing PersistentVolume to bind to. When set, the PVC binds statically to
|
|
11522
|
+
that PV instead of triggering dynamic provisioning.
|
|
11523
|
+
|
|
11524
|
+
DESCRIPTION
|
|
11525
|
+
Defines a new PersistentVolumeClaim-backed filestore for the given enterprise. The filestore is realized as a PVC in
|
|
11526
|
+
the target cabinet at deploy time, using either a Kubernetes StorageClass for dynamic provisioning or a pre-existing
|
|
11527
|
+
PersistentVolume for static binding.
|
|
11528
|
+
|
|
11529
|
+
ALIASES
|
|
11530
|
+
$ codiac pvc create
|
|
11531
|
+
|
|
11532
|
+
EXAMPLES
|
|
11533
|
+
Azure File share, dynamic provisioning, default size.
|
|
11534
|
+
|
|
11535
|
+
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage
|
|
11536
|
+
|
|
11537
|
+
Azure Disk per-asset (block storage), 50Gi.
|
|
11538
|
+
|
|
11539
|
+
$ codiac pvc create -e myEnt --name app-disk --type AzureDisk --size 50Gi
|
|
11540
|
+
|
|
11541
|
+
Azure Blob (fuse), 100Gi, statically bound to a pre-existing PV.
|
|
11542
|
+
|
|
11543
|
+
$ codiac pvc create -e myEnt --name pvc-blob --type AzureBlobStorage --size 100Gi --volume-name \
|
|
11544
|
+
pv-blob-ingestion
|
|
11545
|
+
|
|
11546
|
+
Azure NetApp Files, statically bound, 700Gi.
|
|
11547
|
+
|
|
11548
|
+
$ codiac pvc create -e myEnt --name pvc-nfs41-document-vault --type AzureNetAppFiles --size 700Gi --volume-name \
|
|
11549
|
+
pv-nfs41-document-vault
|
|
11550
|
+
|
|
11551
|
+
Override the default storage class (e.g., the in-tree azurefile class) on a non-prefixed PVC name.
|
|
11552
|
+
|
|
11553
|
+
$ codiac pvc create -e myEnt --name app-documents-share --type AzureFileStorage --size 700Gi --storage-class \
|
|
11554
|
+
azurefile --access-modes ReadWriteMany
|
|
11555
|
+
|
|
11556
|
+
Non-interactive (scripted) invocation.
|
|
11557
|
+
|
|
11558
|
+
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --silent
|
|
11559
|
+
|
|
11560
|
+
Renders the equivalent silent command and then executes.
|
|
11561
|
+
|
|
11562
|
+
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
|
|
11563
|
+
```
|
|
11564
|
+
|
|
11565
|
+
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/pvc/create.ts)_
|
|
11566
|
+
|
|
11567
|
+
## `codiac pvc delete`
|
|
11568
|
+
|
|
11569
|
+
Deletes a PersistentVolumeClaim-backed filestore definition. Removes the FileStoreDef record in Codiac; physical PVCs in cabinets are reaped on the next deploy.
|
|
11570
|
+
|
|
11571
|
+
```
|
|
11572
|
+
USAGE
|
|
11573
|
+
$ codiac pvc delete [-h] [-e <value>] [-n <value> | --id <value>] [--take-defaults | [--silent | --echo |
|
|
11574
|
+
--to-script]]
|
|
11575
|
+
|
|
11576
|
+
FLAGS
|
|
11577
|
+
-e, --enterprise=<value> Code name identifying the enterprise that owns this filestore (optional if there is only
|
|
11578
|
+
one).
|
|
11579
|
+
-h, --help Show CLI help.
|
|
11580
|
+
-n, --name=<value> Name of the PVC filestore to delete.
|
|
11581
|
+
--echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
|
|
11582
|
+
before final execution.
|
|
11583
|
+
--id=<value> System id of the FileStoreDef record. Use this when --name is ambiguous.
|
|
11584
|
+
--silent Non-Interactive mode; executes without any user interaction and fails on any missing or
|
|
11585
|
+
invalid arguments.
|
|
11586
|
+
--take-defaults Setting this to true prevents prompting for confirmation on parameters that were passed in
|
|
11587
|
+
or were automatically set to default values (Irrelevant in --silent mode).
|
|
11588
|
+
--to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
|
|
11589
|
+
execution.
|
|
11590
|
+
|
|
11591
|
+
DESCRIPTION
|
|
11592
|
+
Deletes a PersistentVolumeClaim-backed filestore definition. Removes the FileStoreDef record in Codiac; physical PVCs
|
|
11593
|
+
in cabinets are reaped on the next deploy.
|
|
11594
|
+
|
|
11595
|
+
ALIASES
|
|
11596
|
+
$ codiac pvc delete
|
|
11597
|
+
|
|
11598
|
+
EXAMPLES
|
|
11599
|
+
Delete by name (interactive enterprise resolution).
|
|
11600
|
+
|
|
11601
|
+
$ codiac pvc delete --name shared-files
|
|
11602
|
+
|
|
11603
|
+
Delete by name in a specific enterprise.
|
|
11604
|
+
|
|
11605
|
+
$ codiac pvc delete -e myEnt --name shared-files --silent
|
|
11606
|
+
|
|
11607
|
+
Delete by id (when name is ambiguous).
|
|
11608
|
+
|
|
11609
|
+
$ codiac pvc delete --id <fileStoreDefId> --silent
|
|
11610
|
+
```
|
|
11611
|
+
|
|
11612
|
+
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/pvc/delete.ts)_
|
|
11613
|
+
|
|
11614
|
+
## `codiac pvc get`
|
|
11615
|
+
|
|
11616
|
+
Renders the FileStoreDef record for a single PVC-backed filestore. Useful for inspecting how a PVC will be provisioned (storage class, access modes, size, static vs dynamic binding).
|
|
11617
|
+
|
|
11618
|
+
```
|
|
11619
|
+
USAGE
|
|
11620
|
+
$ codiac pvc get [-h] [-o json|yaml|auto] [--echo | --to-script | [--silent -e <value> -n <value>]]
|
|
11621
|
+
[--take-defaults | ]
|
|
11622
|
+
|
|
11623
|
+
FLAGS
|
|
11624
|
+
-e, --enterprise=<value> Code name identifying the enterprise (optional if there is only one).
|
|
11625
|
+
-h, --help Show CLI help.
|
|
11626
|
+
-n, --name=<value> Name of the PVC filestore to look up.
|
|
11627
|
+
-o, --output=<option> [default: auto] Format in which to render the data.
|
|
11628
|
+
<options: json|yaml|auto>
|
|
11629
|
+
--echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
|
|
11630
|
+
before final execution.
|
|
11631
|
+
--silent Non-Interactive mode; executes without any user interaction and fails on any missing or
|
|
11632
|
+
invalid arguments.
|
|
11633
|
+
--take-defaults Setting this to true prevents prompting for confirmation on parameters that were passed in
|
|
11634
|
+
or were automatically set to default values (Irrelevant in --silent mode).
|
|
11635
|
+
--to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
|
|
11636
|
+
execution.
|
|
11637
|
+
|
|
11638
|
+
DESCRIPTION
|
|
11639
|
+
Renders the FileStoreDef record for a single PVC-backed filestore. Useful for inspecting how a PVC will be provisioned
|
|
11640
|
+
(storage class, access modes, size, static vs dynamic binding).
|
|
11641
|
+
|
|
11642
|
+
ALIASES
|
|
11643
|
+
$ codiac pvc get
|
|
11644
|
+
|
|
11645
|
+
EXAMPLES
|
|
11646
|
+
$ codiac pvc get --name shared-files
|
|
11647
|
+
|
|
11648
|
+
$ codiac pvc get --name pvc-blob -o yaml
|
|
11649
|
+
|
|
11650
|
+
$ codiac pvc get --name app-documents-share --silent -o json
|
|
11651
|
+
```
|
|
11652
|
+
|
|
11653
|
+
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/pvc/get.ts)_
|
|
11654
|
+
|
|
11655
|
+
## `codiac pvc list`
|
|
11656
|
+
|
|
11657
|
+
Lists the PersistentVolumeClaim-backed filestore definitions for a given enterprise.
|
|
11658
|
+
|
|
11659
|
+
```
|
|
11660
|
+
USAGE
|
|
11661
|
+
$ codiac pvc list [-h] [-e <value>] [-t
|
|
11662
|
+
AwsEbs|AwsEfs|AwsS3Bucket|AzureBlobStorage|AzureDisk|AzureFileStorage|AzureNetAppFiles|HostMachineFolder] [-o
|
|
11663
|
+
json|yaml|auto] [--take-defaults | [--silent | --echo | --to-script]]
|
|
11664
|
+
|
|
11665
|
+
FLAGS
|
|
11666
|
+
-e, --enterprise=<value> Code name identifying the enterprise (optional if there is only one).
|
|
11667
|
+
-h, --help Show CLI help.
|
|
11668
|
+
-o, --output=<option> [default: auto] Format in which to render the data.
|
|
11669
|
+
<options: json|yaml|auto>
|
|
11670
|
+
-t, --type=<option> Filter on the storage technology backing the PVC.
|
|
11671
|
+
<options: AwsEbs|AwsEfs|AwsS3Bucket|AzureBlobStorage|AzureDisk|AzureFileStorage|AzureNetAppF
|
|
11672
|
+
iles|HostMachineFolder>
|
|
11673
|
+
--echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
|
|
11674
|
+
before final execution.
|
|
11675
|
+
--silent Non-Interactive mode; executes without any user interaction and fails on any missing or
|
|
11676
|
+
invalid arguments.
|
|
11677
|
+
--take-defaults Setting this to true prevents prompting for confirmation on parameters that were passed in
|
|
11678
|
+
or were automatically set to default values (Irrelevant in --silent mode).
|
|
11679
|
+
--to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
|
|
11680
|
+
execution.
|
|
11681
|
+
|
|
11682
|
+
DESCRIPTION
|
|
11683
|
+
Lists the PersistentVolumeClaim-backed filestore definitions for a given enterprise.
|
|
11684
|
+
|
|
11685
|
+
ALIASES
|
|
11686
|
+
$ codiac pvc list
|
|
11687
|
+
|
|
11688
|
+
EXAMPLES
|
|
11689
|
+
$ codiac pvc list
|
|
11690
|
+
|
|
11691
|
+
$ codiac pvc list --type AzureBlobStorage
|
|
11692
|
+
|
|
11693
|
+
$ codiac pvc list -o yaml
|
|
11694
|
+
```
|
|
11695
|
+
|
|
11696
|
+
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/pvc/list.ts)_
|
|
11478
11697
|
|
|
11479
11698
|
## `codiac relay-version`
|
|
11480
11699
|
|
|
@@ -11491,7 +11710,7 @@ EXAMPLES
|
|
|
11491
11710
|
$ codiac relay-version
|
|
11492
11711
|
```
|
|
11493
11712
|
|
|
11494
|
-
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11713
|
+
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/relay-version.ts)_
|
|
11495
11714
|
|
|
11496
11715
|
## `codiac run`
|
|
11497
11716
|
|
|
@@ -11533,7 +11752,7 @@ DESCRIPTION
|
|
|
11533
11752
|
Runs the latest build of the api container locally.
|
|
11534
11753
|
```
|
|
11535
11754
|
|
|
11536
|
-
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11755
|
+
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/run.ts)_
|
|
11537
11756
|
|
|
11538
11757
|
## `codiac secretStore`
|
|
11539
11758
|
|
|
@@ -11595,7 +11814,7 @@ ALIASES
|
|
|
11595
11814
|
$ codiac secretStore
|
|
11596
11815
|
```
|
|
11597
11816
|
|
|
11598
|
-
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11817
|
+
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/secretStore/capture.ts)_
|
|
11599
11818
|
|
|
11600
11819
|
## `codiac secretStore forget`
|
|
11601
11820
|
|
|
@@ -11616,7 +11835,7 @@ DESCRIPTION
|
|
|
11616
11835
|
Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
|
|
11617
11836
|
```
|
|
11618
11837
|
|
|
11619
|
-
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11838
|
+
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/secretStore/forget.ts)_
|
|
11620
11839
|
|
|
11621
11840
|
## `codiac secretStore list`
|
|
11622
11841
|
|
|
@@ -11661,7 +11880,7 @@ EXAMPLES
|
|
|
11661
11880
|
$ codiac secretStore list
|
|
11662
11881
|
```
|
|
11663
11882
|
|
|
11664
|
-
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11883
|
+
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/secretStore/list.ts)_
|
|
11665
11884
|
|
|
11666
11885
|
## `codiac shell init`
|
|
11667
11886
|
|
|
@@ -11699,7 +11918,7 @@ EXAMPLES
|
|
|
11699
11918
|
Invoke-Expression (codiac shell init --shell powershell)
|
|
11700
11919
|
```
|
|
11701
11920
|
|
|
11702
|
-
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11921
|
+
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/shell/init.ts)_
|
|
11703
11922
|
|
|
11704
11923
|
## `codiac snapshot deploy`
|
|
11705
11924
|
|
|
@@ -11727,7 +11946,7 @@ DESCRIPTION
|
|
|
11727
11946
|
Deploys all assets in a snapshot to a target cabinet.
|
|
11728
11947
|
```
|
|
11729
11948
|
|
|
11730
|
-
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11949
|
+
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/snapshot/deploy.ts)_
|
|
11731
11950
|
|
|
11732
11951
|
## `codiac snapshot list`
|
|
11733
11952
|
|
|
@@ -11776,7 +11995,7 @@ EXAMPLES
|
|
|
11776
11995
|
$ codiac snapshot list -e myEnterprise --silent
|
|
11777
11996
|
```
|
|
11778
11997
|
|
|
11779
|
-
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11998
|
+
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/snapshot/list.ts)_
|
|
11780
11999
|
|
|
11781
12000
|
## `codiac snapshot tag`
|
|
11782
12001
|
|
|
@@ -11819,7 +12038,7 @@ EXAMPLES
|
|
|
11819
12038
|
$ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
11820
12039
|
```
|
|
11821
12040
|
|
|
11822
|
-
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12041
|
+
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/snapshot/tag.ts)_
|
|
11823
12042
|
|
|
11824
12043
|
## `codiac snapshot untag`
|
|
11825
12044
|
|
|
@@ -11862,7 +12081,7 @@ EXAMPLES
|
|
|
11862
12081
|
$ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
11863
12082
|
```
|
|
11864
12083
|
|
|
11865
|
-
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12084
|
+
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/snapshot/untag.ts)_
|
|
11866
12085
|
|
|
11867
12086
|
## `codiac stage [FILES]`
|
|
11868
12087
|
|
|
@@ -11884,7 +12103,7 @@ DESCRIPTION
|
|
|
11884
12103
|
Flags files to be included in the next commit.
|
|
11885
12104
|
```
|
|
11886
12105
|
|
|
11887
|
-
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12106
|
+
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/stage.ts)_
|
|
11888
12107
|
|
|
11889
12108
|
## `codiac stash [FILE]`
|
|
11890
12109
|
|
|
@@ -11906,7 +12125,7 @@ DESCRIPTION
|
|
|
11906
12125
|
describe the command here
|
|
11907
12126
|
```
|
|
11908
12127
|
|
|
11909
|
-
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12128
|
+
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/stash.ts)_
|
|
11910
12129
|
|
|
11911
12130
|
## `codiac status`
|
|
11912
12131
|
|
|
@@ -11925,7 +12144,7 @@ DESCRIPTION
|
|
|
11925
12144
|
Shows the current uncommitted changes in the current branch.
|
|
11926
12145
|
```
|
|
11927
12146
|
|
|
11928
|
-
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12147
|
+
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/status.ts)_
|
|
11929
12148
|
|
|
11930
12149
|
## `codiac stop`
|
|
11931
12150
|
|
|
@@ -11943,7 +12162,7 @@ DESCRIPTION
|
|
|
11943
12162
|
Stops the running container for this project
|
|
11944
12163
|
```
|
|
11945
12164
|
|
|
11946
|
-
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12165
|
+
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/stop.ts)_
|
|
11947
12166
|
|
|
11948
12167
|
## `codiac switch [NAME]`
|
|
11949
12168
|
|
|
@@ -11963,7 +12182,7 @@ DESCRIPTION
|
|
|
11963
12182
|
Changes branch on the main project and any sourced dependencies.
|
|
11964
12183
|
```
|
|
11965
12184
|
|
|
11966
|
-
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12185
|
+
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/switch.ts)_
|
|
11967
12186
|
|
|
11968
12187
|
## `codiac sync [NAME]`
|
|
11969
12188
|
|
|
@@ -11988,7 +12207,7 @@ DESCRIPTION
|
|
|
11988
12207
|
Merges the given branch into the current branch.
|
|
11989
12208
|
```
|
|
11990
12209
|
|
|
11991
|
-
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12210
|
+
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/sync.ts)_
|
|
11992
12211
|
|
|
11993
12212
|
## `codiac tenant create [NAME]`
|
|
11994
12213
|
|
|
@@ -12031,7 +12250,7 @@ EXAMPLES
|
|
|
12031
12250
|
$ codiac tenant create -n 'Acme Corp' -c acme --to-script
|
|
12032
12251
|
```
|
|
12033
12252
|
|
|
12034
|
-
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12253
|
+
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/tenant/create.ts)_
|
|
12035
12254
|
|
|
12036
12255
|
## `codiac tenant switch [CODE]`
|
|
12037
12256
|
|
|
@@ -12071,7 +12290,7 @@ EXAMPLES
|
|
|
12071
12290
|
$ codiac tenant switch my-tenant-code --to-script
|
|
12072
12291
|
```
|
|
12073
12292
|
|
|
12074
|
-
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12293
|
+
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/tenant/switch.ts)_
|
|
12075
12294
|
|
|
12076
12295
|
## `codiac token [TOKENNAME]`
|
|
12077
12296
|
|
|
@@ -12193,7 +12412,7 @@ DESCRIPTION
|
|
|
12193
12412
|
Flags files to be included in the next commit.
|
|
12194
12413
|
```
|
|
12195
12414
|
|
|
12196
|
-
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12415
|
+
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/unstage.ts)_
|
|
12197
12416
|
|
|
12198
12417
|
## `codiac update [CHANNEL]`
|
|
12199
12418
|
|
|
@@ -12380,7 +12599,7 @@ EXAMPLES
|
|
|
12380
12599
|
$ codiac whereami --to-script
|
|
12381
12600
|
```
|
|
12382
12601
|
|
|
12383
|
-
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12602
|
+
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/whereami.ts)_
|
|
12384
12603
|
|
|
12385
12604
|
## `codiac whoami`
|
|
12386
12605
|
|
|
@@ -12422,5 +12641,5 @@ EXAMPLES
|
|
|
12422
12641
|
$ codiac whoami --to-script
|
|
12423
12642
|
```
|
|
12424
12643
|
|
|
12425
|
-
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12644
|
+
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.202/src/commands/whoami.ts)_
|
|
12426
12645
|
<!-- commandsstop -->
|