@codiac.io/codiac-cli 1.3.229 → 1.3.232
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 +281 -172
- package/dist/commands/asset/create.d.ts +2 -0
- package/dist/commands/asset/create.js +26 -10
- package/dist/commands/asset/create.js.map +1 -1
- package/dist/commands/import/cluster.d.ts +100 -0
- package/dist/commands/import/cluster.js +799 -0
- package/dist/commands/import/cluster.js.map +1 -0
- package/dist/commands/secretStore/capture.d.ts +5 -0
- package/dist/commands/secretStore/capture.js +107 -4
- package/dist/commands/secretStore/capture.js.map +1 -1
- package/oclif.manifest.json +148 -6
- 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.
|
|
24
|
+
@codiac.io/codiac-cli/1.3.232 linux-x64 node-v22.15.1
|
|
25
25
|
$ codiac --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ codiac COMMAND
|
|
@@ -393,6 +393,7 @@ USAGE
|
|
|
393
393
|
* [`codiac img remove IMAGENAME`](#codiac-img-remove-imagename)
|
|
394
394
|
* [`codiac img version bump NAME`](#codiac-img-version-bump-name)
|
|
395
395
|
* [`codiac img version get NAME`](#codiac-img-version-get-name)
|
|
396
|
+
* [`codiac import cluster`](#codiac-import-cluster)
|
|
396
397
|
* [`codiac infrx cab create [CABINET]`](#codiac-infrx-cab-create-cabinet)
|
|
397
398
|
* [`codiac infrx cab list`](#codiac-infrx-cab-list)
|
|
398
399
|
* [`codiac infrx cab obliterate [CABINET]`](#codiac-infrx-cab-obliterate-cabinet)
|
|
@@ -479,9 +480,10 @@ Creates a new asset in the given enterprise from an image that exists in a conta
|
|
|
479
480
|
|
|
480
481
|
```
|
|
481
482
|
USAGE
|
|
482
|
-
$ codiac asset create [-h] [
|
|
483
|
-
<value>] [
|
|
484
|
-
--deploy-condition <value>] [--take-defaults |
|
|
483
|
+
$ codiac asset create [-h] [--chart <value> | [-k <value> | -i <value> | -r <value>] | | ] [--chart-repo
|
|
484
|
+
<value> | | | ] [-n <value>] [-c <value>] [-e <value>] [-p <value>] [--private -g] [-o] [--allow-http]
|
|
485
|
+
[--disable-https] [--helm] [--deploy-condition-because <value> --deploy-condition <value>] [--take-defaults |
|
|
486
|
+
[--silent | --echo | --to-script]]
|
|
485
487
|
|
|
486
488
|
FLAGS
|
|
487
489
|
-c, --code=<value>
|
|
@@ -523,6 +525,13 @@ FLAGS
|
|
|
523
525
|
getting redirected to https. That is, Setting this to true will prevent the ingress controller from invoking an
|
|
524
526
|
automatic redirect to https on any inbound http requests. (optional: defaults to false).
|
|
525
527
|
|
|
528
|
+
--chart=<value>
|
|
529
|
+
(Helm assets only) Name of the Helm chart to base the asset on, in place of a container image. Use with --helm.
|
|
530
|
+
|
|
531
|
+
--chart-repo=<value>
|
|
532
|
+
(Helm assets only) Codiac registry code of the Helm chart repository that publishes the chart. Use with --helm and
|
|
533
|
+
--chart.
|
|
534
|
+
|
|
526
535
|
--deploy-condition=<value>
|
|
527
536
|
JSONata expression evaluated at deploy time; when falsy the asset is skipped rather than deployed (see
|
|
528
537
|
https://jsonata.org for syntax). Uses the same expression context as config conditions: cabinet, cluster,
|
|
@@ -578,9 +587,13 @@ EXAMPLES
|
|
|
578
587
|
Create an asset that only deploys to production environments.
|
|
579
588
|
|
|
580
589
|
$ codiac asset create -e myEnterprise -n my-api --deploy-condition "environment.name = 'production'"
|
|
590
|
+
|
|
591
|
+
Create a Helm-typed asset from a chart in a captured chart repository.
|
|
592
|
+
|
|
593
|
+
$ codiac asset create -e myEnterprise -n redis --helm --chart redis --chart-repo bitnami --silent
|
|
581
594
|
```
|
|
582
595
|
|
|
583
|
-
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
596
|
+
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/create.ts)_
|
|
584
597
|
|
|
585
598
|
## `codiac asset edit`
|
|
586
599
|
|
|
@@ -638,7 +651,7 @@ EXAMPLES
|
|
|
638
651
|
$ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
|
|
639
652
|
```
|
|
640
653
|
|
|
641
|
-
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
654
|
+
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/edit.ts)_
|
|
642
655
|
|
|
643
656
|
## `codiac asset entrypoint`
|
|
644
657
|
|
|
@@ -759,7 +772,7 @@ EXAMPLES
|
|
|
759
772
|
$ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
|
|
760
773
|
```
|
|
761
774
|
|
|
762
|
-
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
775
|
+
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/entrypoint/delete.ts)_
|
|
763
776
|
|
|
764
777
|
## `codiac asset entrypoint set`
|
|
765
778
|
|
|
@@ -828,7 +841,7 @@ EXAMPLES
|
|
|
828
841
|
--input=/backup/workflows'
|
|
829
842
|
```
|
|
830
843
|
|
|
831
|
-
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
844
|
+
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/entrypoint/set.ts)_
|
|
832
845
|
|
|
833
846
|
## `codiac asset get [CMD]`
|
|
834
847
|
|
|
@@ -935,7 +948,7 @@ EXAMPLES
|
|
|
935
948
|
$ codiac asset list -e myEnterprise --to-script
|
|
936
949
|
```
|
|
937
950
|
|
|
938
|
-
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
951
|
+
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/list.ts)_
|
|
939
952
|
|
|
940
953
|
## `codiac asset mon [CMD]`
|
|
941
954
|
|
|
@@ -1049,9 +1062,10 @@ Creates a new asset in the given enterprise from an image that exists in a conta
|
|
|
1049
1062
|
|
|
1050
1063
|
```
|
|
1051
1064
|
USAGE
|
|
1052
|
-
$ codiac asset new [-h] [
|
|
1053
|
-
<value>] [
|
|
1054
|
-
--deploy-condition <value>] [--take-defaults |
|
|
1065
|
+
$ codiac asset new [-h] [--chart <value> | [-k <value> | -i <value> | -r <value>] | | ] [--chart-repo
|
|
1066
|
+
<value> | | | ] [-n <value>] [-c <value>] [-e <value>] [-p <value>] [--private -g] [-o] [--allow-http]
|
|
1067
|
+
[--disable-https] [--helm] [--deploy-condition-because <value> --deploy-condition <value>] [--take-defaults |
|
|
1068
|
+
[--silent | --echo | --to-script]]
|
|
1055
1069
|
|
|
1056
1070
|
FLAGS
|
|
1057
1071
|
-c, --code=<value>
|
|
@@ -1093,6 +1107,13 @@ FLAGS
|
|
|
1093
1107
|
getting redirected to https. That is, Setting this to true will prevent the ingress controller from invoking an
|
|
1094
1108
|
automatic redirect to https on any inbound http requests. (optional: defaults to false).
|
|
1095
1109
|
|
|
1110
|
+
--chart=<value>
|
|
1111
|
+
(Helm assets only) Name of the Helm chart to base the asset on, in place of a container image. Use with --helm.
|
|
1112
|
+
|
|
1113
|
+
--chart-repo=<value>
|
|
1114
|
+
(Helm assets only) Codiac registry code of the Helm chart repository that publishes the chart. Use with --helm and
|
|
1115
|
+
--chart.
|
|
1116
|
+
|
|
1096
1117
|
--deploy-condition=<value>
|
|
1097
1118
|
JSONata expression evaluated at deploy time; when falsy the asset is skipped rather than deployed (see
|
|
1098
1119
|
https://jsonata.org for syntax). Uses the same expression context as config conditions: cabinet, cluster,
|
|
@@ -1148,6 +1169,10 @@ EXAMPLES
|
|
|
1148
1169
|
Create an asset that only deploys to production environments.
|
|
1149
1170
|
|
|
1150
1171
|
$ codiac asset new -e myEnterprise -n my-api --deploy-condition "environment.name = 'production'"
|
|
1172
|
+
|
|
1173
|
+
Create a Helm-typed asset from a chart in a captured chart repository.
|
|
1174
|
+
|
|
1175
|
+
$ codiac asset new -e myEnterprise -n redis --helm --chart redis --chart-repo bitnami --silent
|
|
1151
1176
|
```
|
|
1152
1177
|
|
|
1153
1178
|
## `codiac asset obliterate`
|
|
@@ -1182,7 +1207,7 @@ EXAMPLES
|
|
|
1182
1207
|
$ codiac asset obliterate -e main -n my-api
|
|
1183
1208
|
```
|
|
1184
1209
|
|
|
1185
|
-
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1210
|
+
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/obliterate.ts)_
|
|
1186
1211
|
|
|
1187
1212
|
## `codiac asset probe create [CMD]`
|
|
1188
1213
|
|
|
@@ -1272,7 +1297,7 @@ EXAMPLES
|
|
|
1272
1297
|
$ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
|
|
1273
1298
|
```
|
|
1274
1299
|
|
|
1275
|
-
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1300
|
+
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/probe/create.ts)_
|
|
1276
1301
|
|
|
1277
1302
|
## `codiac asset probe delete`
|
|
1278
1303
|
|
|
@@ -1327,7 +1352,7 @@ EXAMPLES
|
|
|
1327
1352
|
$ codiac asset probe delete
|
|
1328
1353
|
```
|
|
1329
1354
|
|
|
1330
|
-
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1355
|
+
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/probe/delete.ts)_
|
|
1331
1356
|
|
|
1332
1357
|
## `codiac asset probe list`
|
|
1333
1358
|
|
|
@@ -1379,7 +1404,7 @@ EXAMPLES
|
|
|
1379
1404
|
$ codiac asset probe list
|
|
1380
1405
|
```
|
|
1381
1406
|
|
|
1382
|
-
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1407
|
+
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/probe/list.ts)_
|
|
1383
1408
|
|
|
1384
1409
|
## `codiac asset recycle`
|
|
1385
1410
|
|
|
@@ -1419,7 +1444,7 @@ DESCRIPTION
|
|
|
1419
1444
|
Deploys a given asset to a given cabinet. Defaults to current version.
|
|
1420
1445
|
```
|
|
1421
1446
|
|
|
1422
|
-
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1447
|
+
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/recycle.ts)_
|
|
1423
1448
|
|
|
1424
1449
|
## `codiac asset undeploy`
|
|
1425
1450
|
|
|
@@ -1463,7 +1488,7 @@ EXAMPLES
|
|
|
1463
1488
|
$ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
|
|
1464
1489
|
```
|
|
1465
1490
|
|
|
1466
|
-
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1491
|
+
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/undeploy.ts)_
|
|
1467
1492
|
|
|
1468
1493
|
## `codiac asset view [CMD]`
|
|
1469
1494
|
|
|
@@ -1518,7 +1543,7 @@ ALIASES
|
|
|
1518
1543
|
$ codiac asset get
|
|
1519
1544
|
```
|
|
1520
1545
|
|
|
1521
|
-
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1546
|
+
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/view.ts)_
|
|
1522
1547
|
|
|
1523
1548
|
## `codiac asset vol add [MOUNTPATH]`
|
|
1524
1549
|
|
|
@@ -1789,7 +1814,7 @@ ALIASES
|
|
|
1789
1814
|
$ codiac asset volume add
|
|
1790
1815
|
```
|
|
1791
1816
|
|
|
1792
|
-
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1817
|
+
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/volume/create.ts)_
|
|
1793
1818
|
|
|
1794
1819
|
## `codiac asset volume del`
|
|
1795
1820
|
|
|
@@ -1877,7 +1902,7 @@ EXAMPLES
|
|
|
1877
1902
|
$ codiac asset volume delete -e myEnterprise -n myMount --to-script
|
|
1878
1903
|
```
|
|
1879
1904
|
|
|
1880
|
-
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1905
|
+
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/volume/delete.ts)_
|
|
1881
1906
|
|
|
1882
1907
|
## `codiac asset volume list`
|
|
1883
1908
|
|
|
@@ -1926,7 +1951,7 @@ EXAMPLES
|
|
|
1926
1951
|
$ codiac asset volume list -e myEnterprise --silent
|
|
1927
1952
|
```
|
|
1928
1953
|
|
|
1929
|
-
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1954
|
+
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/volume/list.ts)_
|
|
1930
1955
|
|
|
1931
1956
|
## `codiac asset volumes del`
|
|
1932
1957
|
|
|
@@ -2093,7 +2118,7 @@ EXAMPLES
|
|
|
2093
2118
|
$ codiac asset where -e main -a my-api --silent
|
|
2094
2119
|
```
|
|
2095
2120
|
|
|
2096
|
-
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2121
|
+
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/asset/where.ts)_
|
|
2097
2122
|
|
|
2098
2123
|
## `codiac auth cab allow`
|
|
2099
2124
|
|
|
@@ -2255,7 +2280,7 @@ EXAMPLES
|
|
|
2255
2280
|
$ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
|
|
2256
2281
|
```
|
|
2257
2282
|
|
|
2258
|
-
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2283
|
+
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/cabinet/allow.ts)_
|
|
2259
2284
|
|
|
2260
2285
|
## `codiac auth cabinet allowed`
|
|
2261
2286
|
|
|
@@ -2303,7 +2328,7 @@ EXAMPLES
|
|
|
2303
2328
|
$ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
|
|
2304
2329
|
```
|
|
2305
2330
|
|
|
2306
|
-
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2331
|
+
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/cabinet/allowed.ts)_
|
|
2307
2332
|
|
|
2308
2333
|
## `codiac auth ent allow`
|
|
2309
2334
|
|
|
@@ -2494,7 +2519,7 @@ EXAMPLES
|
|
|
2494
2519
|
$ codiac auth enterprise allow -r deployer -p none
|
|
2495
2520
|
```
|
|
2496
2521
|
|
|
2497
|
-
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2522
|
+
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/enterprise/allow.ts)_
|
|
2498
2523
|
|
|
2499
2524
|
## `codiac auth enterprise allow onEnvironments`
|
|
2500
2525
|
|
|
@@ -2548,7 +2573,7 @@ EXAMPLES
|
|
|
2548
2573
|
$ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
|
|
2549
2574
|
```
|
|
2550
2575
|
|
|
2551
|
-
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2576
|
+
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/enterprise/allow/onEnvironments.ts)_
|
|
2552
2577
|
|
|
2553
2578
|
## `codiac auth enterprise allowed`
|
|
2554
2579
|
|
|
@@ -2589,7 +2614,7 @@ EXAMPLES
|
|
|
2589
2614
|
$ codiac auth enterprise allowed --enterprise modeling
|
|
2590
2615
|
```
|
|
2591
2616
|
|
|
2592
|
-
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2617
|
+
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/enterprise/allowed.ts)_
|
|
2593
2618
|
|
|
2594
2619
|
## `codiac auth env allowed`
|
|
2595
2620
|
|
|
@@ -2796,7 +2821,7 @@ EXAMPLES
|
|
|
2796
2821
|
$ codiac auth environment allow -e qa -r productmanager -p read
|
|
2797
2822
|
```
|
|
2798
2823
|
|
|
2799
|
-
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2824
|
+
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/environment/allow.ts)_
|
|
2800
2825
|
|
|
2801
2826
|
## `codiac auth environment allow onCabinets`
|
|
2802
2827
|
|
|
@@ -2853,7 +2878,7 @@ EXAMPLES
|
|
|
2853
2878
|
$ codiac auth environment allow onCabinets -e qa -r productmanager -p read
|
|
2854
2879
|
```
|
|
2855
2880
|
|
|
2856
|
-
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2881
|
+
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/environment/allow/onCabinets.ts)_
|
|
2857
2882
|
|
|
2858
2883
|
## `codiac auth environment allowed`
|
|
2859
2884
|
|
|
@@ -2898,7 +2923,7 @@ EXAMPLES
|
|
|
2898
2923
|
$ codiac auth environment allowed --enterprise modeling -e dev
|
|
2899
2924
|
```
|
|
2900
2925
|
|
|
2901
|
-
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2926
|
+
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/environment/allowed.ts)_
|
|
2902
2927
|
|
|
2903
2928
|
## `codiac auth register`
|
|
2904
2929
|
|
|
@@ -2944,7 +2969,7 @@ EXAMPLES
|
|
|
2944
2969
|
$ codiac auth register
|
|
2945
2970
|
```
|
|
2946
2971
|
|
|
2947
|
-
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2972
|
+
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/register.ts)_
|
|
2948
2973
|
|
|
2949
2974
|
## `codiac auth role allowed [NAME]`
|
|
2950
2975
|
|
|
@@ -2991,7 +3016,7 @@ EXAMPLES
|
|
|
2991
3016
|
$ codiac auth role allowed -n deployer -e main
|
|
2992
3017
|
```
|
|
2993
3018
|
|
|
2994
|
-
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3019
|
+
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/role/allowed.ts)_
|
|
2995
3020
|
|
|
2996
3021
|
## `codiac auth role assign`
|
|
2997
3022
|
|
|
@@ -3023,7 +3048,7 @@ EXAMPLES
|
|
|
3023
3048
|
$ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
|
|
3024
3049
|
```
|
|
3025
3050
|
|
|
3026
|
-
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3051
|
+
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/role/assign.ts)_
|
|
3027
3052
|
|
|
3028
3053
|
## `codiac auth role create [NAME]`
|
|
3029
3054
|
|
|
@@ -3056,7 +3081,7 @@ EXAMPLES
|
|
|
3056
3081
|
$ codiac auth role create -n deployer
|
|
3057
3082
|
```
|
|
3058
3083
|
|
|
3059
|
-
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3084
|
+
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/role/create.ts)_
|
|
3060
3085
|
|
|
3061
3086
|
## `codiac auth role delete [NAME]`
|
|
3062
3087
|
|
|
@@ -3092,7 +3117,7 @@ EXAMPLES
|
|
|
3092
3117
|
$ codiac auth role delete --id abc123def456
|
|
3093
3118
|
```
|
|
3094
3119
|
|
|
3095
|
-
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3120
|
+
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/role/delete.ts)_
|
|
3096
3121
|
|
|
3097
3122
|
## `codiac auth role list`
|
|
3098
3123
|
|
|
@@ -3128,7 +3153,7 @@ EXAMPLES
|
|
|
3128
3153
|
$ codiac auth role list -o yaml > roles.yaml
|
|
3129
3154
|
```
|
|
3130
3155
|
|
|
3131
|
-
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3156
|
+
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/role/list.ts)_
|
|
3132
3157
|
|
|
3133
3158
|
## `codiac auth role unassign`
|
|
3134
3159
|
|
|
@@ -3160,7 +3185,7 @@ EXAMPLES
|
|
|
3160
3185
|
$ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
|
|
3161
3186
|
```
|
|
3162
3187
|
|
|
3163
|
-
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3188
|
+
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/role/unassign.ts)_
|
|
3164
3189
|
|
|
3165
3190
|
## `codiac auth user invite`
|
|
3166
3191
|
|
|
@@ -3200,7 +3225,7 @@ EXAMPLES
|
|
|
3200
3225
|
$ codiac auth user invite
|
|
3201
3226
|
```
|
|
3202
3227
|
|
|
3203
|
-
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3228
|
+
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/user/invite.ts)_
|
|
3204
3229
|
|
|
3205
3230
|
## `codiac auth user list`
|
|
3206
3231
|
|
|
@@ -3236,7 +3261,7 @@ EXAMPLES
|
|
|
3236
3261
|
$ codiac auth user list -o yaml > users.yaml
|
|
3237
3262
|
```
|
|
3238
3263
|
|
|
3239
|
-
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3264
|
+
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/auth/user/list.ts)_
|
|
3240
3265
|
|
|
3241
3266
|
## `codiac autocomplete [SHELL]`
|
|
3242
3267
|
|
|
@@ -3286,7 +3311,7 @@ DESCRIPTION
|
|
|
3286
3311
|
Creates a new branch for the parent project and any sourced dependencies.
|
|
3287
3312
|
```
|
|
3288
3313
|
|
|
3289
|
-
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3314
|
+
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/branch.ts)_
|
|
3290
3315
|
|
|
3291
3316
|
## `codiac branch current`
|
|
3292
3317
|
|
|
@@ -3306,7 +3331,7 @@ ALIASES
|
|
|
3306
3331
|
$ codiac branches current
|
|
3307
3332
|
```
|
|
3308
3333
|
|
|
3309
|
-
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3334
|
+
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/branch/current.ts)_
|
|
3310
3335
|
|
|
3311
3336
|
## `codiac branch list`
|
|
3312
3337
|
|
|
@@ -3328,7 +3353,7 @@ ALIASES
|
|
|
3328
3353
|
$ codiac branches list
|
|
3329
3354
|
```
|
|
3330
3355
|
|
|
3331
|
-
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3356
|
+
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/branch/list.ts)_
|
|
3332
3357
|
|
|
3333
3358
|
## `codiac branches current`
|
|
3334
3359
|
|
|
@@ -3418,7 +3443,7 @@ DESCRIPTION
|
|
|
3418
3443
|
Builds the project and the docker container
|
|
3419
3444
|
```
|
|
3420
3445
|
|
|
3421
|
-
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3446
|
+
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/build.ts)_
|
|
3422
3447
|
|
|
3423
3448
|
## `codiac cab attach`
|
|
3424
3449
|
|
|
@@ -4167,7 +4192,7 @@ EXAMPLES
|
|
|
4167
4192
|
prod-cluster-1 --to-script
|
|
4168
4193
|
```
|
|
4169
4194
|
|
|
4170
|
-
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4195
|
+
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/cluster/attach.ts)_
|
|
4171
4196
|
|
|
4172
4197
|
## `codiac cabinet contents`
|
|
4173
4198
|
|
|
@@ -4211,7 +4236,7 @@ EXAMPLES
|
|
|
4211
4236
|
$ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
|
|
4212
4237
|
```
|
|
4213
4238
|
|
|
4214
|
-
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4239
|
+
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/contents.ts)_
|
|
4215
4240
|
|
|
4216
4241
|
## `codiac cabinet create [CABINET]`
|
|
4217
4242
|
|
|
@@ -4278,7 +4303,7 @@ EXAMPLES
|
|
|
4278
4303
|
cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
|
|
4279
4304
|
```
|
|
4280
4305
|
|
|
4281
|
-
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4306
|
+
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/create.ts)_
|
|
4282
4307
|
|
|
4283
4308
|
## `codiac cabinet define [CABINET]`
|
|
4284
4309
|
|
|
@@ -4340,7 +4365,7 @@ EXAMPLES
|
|
|
4340
4365
|
$ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
|
|
4341
4366
|
```
|
|
4342
4367
|
|
|
4343
|
-
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4368
|
+
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/define.ts)_
|
|
4344
4369
|
|
|
4345
4370
|
## `codiac cabinet destroy [CABINET]`
|
|
4346
4371
|
|
|
@@ -4398,7 +4423,7 @@ EXAMPLES
|
|
|
4398
4423
|
--environment dev --silent
|
|
4399
4424
|
```
|
|
4400
4425
|
|
|
4401
|
-
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4426
|
+
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/destroy.ts)_
|
|
4402
4427
|
|
|
4403
4428
|
## `codiac cabinet detach [CABINET]`
|
|
4404
4429
|
|
|
@@ -4455,7 +4480,7 @@ EXAMPLES
|
|
|
4455
4480
|
main --environment dev
|
|
4456
4481
|
```
|
|
4457
4482
|
|
|
4458
|
-
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4483
|
+
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/detach.ts)_
|
|
4459
4484
|
|
|
4460
4485
|
## `codiac cabinet forget [CABINET]`
|
|
4461
4486
|
|
|
@@ -4510,7 +4535,7 @@ EXAMPLES
|
|
|
4510
4535
|
$ codiac cabinet forget --to-script
|
|
4511
4536
|
```
|
|
4512
4537
|
|
|
4513
|
-
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4538
|
+
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/forget.ts)_
|
|
4514
4539
|
|
|
4515
4540
|
## `codiac cabinet list`
|
|
4516
4541
|
|
|
@@ -4561,7 +4586,7 @@ EXAMPLES
|
|
|
4561
4586
|
$ codiac cabinet list -e myEnterprise --silent
|
|
4562
4587
|
```
|
|
4563
4588
|
|
|
4564
|
-
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4589
|
+
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/list.ts)_
|
|
4565
4590
|
|
|
4566
4591
|
## `codiac cabinet obliterate [CABINET]`
|
|
4567
4592
|
|
|
@@ -4603,7 +4628,7 @@ ALIASES
|
|
|
4603
4628
|
$ codiac infrx cab obliterate
|
|
4604
4629
|
```
|
|
4605
4630
|
|
|
4606
|
-
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4631
|
+
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/obliterate.ts)_
|
|
4607
4632
|
|
|
4608
4633
|
## `codiac cabinet restore`
|
|
4609
4634
|
|
|
@@ -4670,7 +4695,7 @@ EXAMPLES
|
|
|
4670
4695
|
$ codiac cabinet restore --cluster prod-cluster-1 --to-script
|
|
4671
4696
|
```
|
|
4672
4697
|
|
|
4673
|
-
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4698
|
+
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cabinet/restore.ts)_
|
|
4674
4699
|
|
|
4675
4700
|
## `codiac cfg add`
|
|
4676
4701
|
|
|
@@ -4957,7 +4982,7 @@ DESCRIPTION
|
|
|
4957
4982
|
Applies settings to the Codiac CLI itself (scoped to the local machine).
|
|
4958
4983
|
```
|
|
4959
4984
|
|
|
4960
|
-
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4985
|
+
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cli.ts)_
|
|
4961
4986
|
|
|
4962
4987
|
## `codiac cluster agent configure [CLUSTER]`
|
|
4963
4988
|
|
|
@@ -5025,7 +5050,7 @@ EXAMPLES
|
|
|
5025
5050
|
$ codiac cluster agent configure my-cluster --to-script
|
|
5026
5051
|
```
|
|
5027
5052
|
|
|
5028
|
-
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5053
|
+
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/agent/configure.ts)_
|
|
5029
5054
|
|
|
5030
5055
|
## `codiac cluster agent install [CLUSTER]`
|
|
5031
5056
|
|
|
@@ -5081,7 +5106,7 @@ EXAMPLES
|
|
|
5081
5106
|
$ codiac cluster agent install my-cluster --to-script
|
|
5082
5107
|
```
|
|
5083
5108
|
|
|
5084
|
-
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5109
|
+
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/agent/install.ts)_
|
|
5085
5110
|
|
|
5086
5111
|
## `codiac cluster agent uninstall [CLUSTER]`
|
|
5087
5112
|
|
|
@@ -5129,7 +5154,7 @@ EXAMPLES
|
|
|
5129
5154
|
$ codiac cluster agent uninstall my-cluster --to-script
|
|
5130
5155
|
```
|
|
5131
5156
|
|
|
5132
|
-
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5157
|
+
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/agent/uninstall.ts)_
|
|
5133
5158
|
|
|
5134
5159
|
## `codiac cluster bootstrap [NAME]`
|
|
5135
5160
|
|
|
@@ -5192,7 +5217,7 @@ EXAMPLES
|
|
|
5192
5217
|
$ codiac cluster bootstrap my-cluster --to-script
|
|
5193
5218
|
```
|
|
5194
5219
|
|
|
5195
|
-
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5220
|
+
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/bootstrap.ts)_
|
|
5196
5221
|
|
|
5197
5222
|
## `codiac cluster capture`
|
|
5198
5223
|
|
|
@@ -5277,7 +5302,7 @@ EXAMPLES
|
|
|
5277
5302
|
$ codiac cluster connect my-fav-cluster
|
|
5278
5303
|
```
|
|
5279
5304
|
|
|
5280
|
-
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5305
|
+
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/connect.ts)_
|
|
5281
5306
|
|
|
5282
5307
|
## `codiac cluster contents`
|
|
5283
5308
|
|
|
@@ -5942,7 +5967,7 @@ EXAMPLES
|
|
|
5942
5967
|
$ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
|
|
5943
5968
|
```
|
|
5944
5969
|
|
|
5945
|
-
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5970
|
+
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/install.ts)_
|
|
5946
5971
|
|
|
5947
5972
|
## `codiac cluster journal [CLUSTER]`
|
|
5948
5973
|
|
|
@@ -6231,7 +6256,7 @@ EXAMPLES
|
|
|
6231
6256
|
$ codiac cluster stack capture my-fav-cluster
|
|
6232
6257
|
```
|
|
6233
6258
|
|
|
6234
|
-
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6259
|
+
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/stack/capture.ts)_
|
|
6235
6260
|
|
|
6236
6261
|
## `codiac cluster stack install [CLUSTER]`
|
|
6237
6262
|
|
|
@@ -6283,7 +6308,7 @@ EXAMPLES
|
|
|
6283
6308
|
$ codiac cluster stack install my-cluster --to-script
|
|
6284
6309
|
```
|
|
6285
6310
|
|
|
6286
|
-
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6311
|
+
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/stack/install.ts)_
|
|
6287
6312
|
|
|
6288
6313
|
## `codiac cluster stack list`
|
|
6289
6314
|
|
|
@@ -6449,7 +6474,7 @@ EXAMPLES
|
|
|
6449
6474
|
$ codiac cluster start my-fav-cluster
|
|
6450
6475
|
```
|
|
6451
6476
|
|
|
6452
|
-
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6477
|
+
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/start.ts)_
|
|
6453
6478
|
|
|
6454
6479
|
## `codiac cluster stop [CLUSTER]`
|
|
6455
6480
|
|
|
@@ -6486,7 +6511,7 @@ EXAMPLES
|
|
|
6486
6511
|
$ codiac cluster start my-fav-cluster
|
|
6487
6512
|
```
|
|
6488
6513
|
|
|
6489
|
-
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6514
|
+
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/cluster/stop.ts)_
|
|
6490
6515
|
|
|
6491
6516
|
## `codiac cluster uninstall`
|
|
6492
6517
|
|
|
@@ -6548,7 +6573,7 @@ DESCRIPTION
|
|
|
6548
6573
|
Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
|
|
6549
6574
|
```
|
|
6550
6575
|
|
|
6551
|
-
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6576
|
+
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/commit.ts)_
|
|
6552
6577
|
|
|
6553
6578
|
## `codiac config add`
|
|
6554
6579
|
|
|
@@ -6688,7 +6713,7 @@ EXAMPLES
|
|
|
6688
6713
|
--escape-expressions
|
|
6689
6714
|
```
|
|
6690
6715
|
|
|
6691
|
-
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6716
|
+
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/config/add.ts)_
|
|
6692
6717
|
|
|
6693
6718
|
## `codiac config delete [SETTING]`
|
|
6694
6719
|
|
|
@@ -6757,7 +6782,7 @@ ALIASES
|
|
|
6757
6782
|
$ codiac cfg delete
|
|
6758
6783
|
```
|
|
6759
6784
|
|
|
6760
|
-
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6785
|
+
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/config/delete.ts)_
|
|
6761
6786
|
|
|
6762
6787
|
## `codiac config deploy`
|
|
6763
6788
|
|
|
@@ -6798,7 +6823,7 @@ EXAMPLES
|
|
|
6798
6823
|
$ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
|
|
6799
6824
|
```
|
|
6800
6825
|
|
|
6801
|
-
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6826
|
+
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/config/deploy.ts)_
|
|
6802
6827
|
|
|
6803
6828
|
## `codiac config import`
|
|
6804
6829
|
|
|
@@ -6859,7 +6884,7 @@ EXAMPLES
|
|
|
6859
6884
|
$ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
|
|
6860
6885
|
```
|
|
6861
6886
|
|
|
6862
|
-
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6887
|
+
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/config/import.ts)_
|
|
6863
6888
|
|
|
6864
6889
|
## `codiac config preview [SETTING]`
|
|
6865
6890
|
|
|
@@ -7130,7 +7155,7 @@ DESCRIPTION
|
|
|
7130
7155
|
Shows the list of clusters.
|
|
7131
7156
|
```
|
|
7132
7157
|
|
|
7133
|
-
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7158
|
+
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/config/settings/get.ts)_
|
|
7134
7159
|
|
|
7135
7160
|
## `codiac config view [SETTING]`
|
|
7136
7161
|
|
|
@@ -7195,7 +7220,7 @@ EXAMPLES
|
|
|
7195
7220
|
$ codiac config view -e myEnterprise -a myApi -c dev --to-script
|
|
7196
7221
|
```
|
|
7197
7222
|
|
|
7198
|
-
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7223
|
+
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/config/view.ts)_
|
|
7199
7224
|
|
|
7200
7225
|
## `codiac csp creds list`
|
|
7201
7226
|
|
|
@@ -7243,7 +7268,7 @@ EXAMPLES
|
|
|
7243
7268
|
$ codiac csp creds list
|
|
7244
7269
|
```
|
|
7245
7270
|
|
|
7246
|
-
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7271
|
+
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/csp/creds/list.ts)_
|
|
7247
7272
|
|
|
7248
7273
|
## `codiac csp login [PROVIDER]`
|
|
7249
7274
|
|
|
@@ -7321,7 +7346,7 @@ EXAMPLES
|
|
|
7321
7346
|
cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
|
|
7322
7347
|
```
|
|
7323
7348
|
|
|
7324
|
-
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7349
|
+
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/csp/login.ts)_
|
|
7325
7350
|
|
|
7326
7351
|
## `codiac csp logout [PROVIDER]`
|
|
7327
7352
|
|
|
@@ -7368,7 +7393,7 @@ EXAMPLES
|
|
|
7368
7393
|
$ codiac csp logout azure --to-script
|
|
7369
7394
|
```
|
|
7370
7395
|
|
|
7371
|
-
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7396
|
+
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/csp/logout.ts)_
|
|
7372
7397
|
|
|
7373
7398
|
## `codiac dep [NAME]`
|
|
7374
7399
|
|
|
@@ -7389,7 +7414,7 @@ DESCRIPTION
|
|
|
7389
7414
|
Installs a package into current project.
|
|
7390
7415
|
```
|
|
7391
7416
|
|
|
7392
|
-
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7417
|
+
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/dep.ts)_
|
|
7393
7418
|
|
|
7394
7419
|
## `codiac dep create [URL]`
|
|
7395
7420
|
|
|
@@ -7413,7 +7438,7 @@ DESCRIPTION
|
|
|
7413
7438
|
package version is used.
|
|
7414
7439
|
```
|
|
7415
7440
|
|
|
7416
|
-
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7441
|
+
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/dep/create.ts)_
|
|
7417
7442
|
|
|
7418
7443
|
## `codiac dep install`
|
|
7419
7444
|
|
|
@@ -7430,7 +7455,7 @@ DESCRIPTION
|
|
|
7430
7455
|
installs any missing dependency packages into the local project folder.
|
|
7431
7456
|
```
|
|
7432
7457
|
|
|
7433
|
-
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7458
|
+
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/dep/install.ts)_
|
|
7434
7459
|
|
|
7435
7460
|
## `codiac dep list`
|
|
7436
7461
|
|
|
@@ -7447,7 +7472,7 @@ DESCRIPTION
|
|
|
7447
7472
|
Shows the dependencies for the project.
|
|
7448
7473
|
```
|
|
7449
7474
|
|
|
7450
|
-
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7475
|
+
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/dep/list.ts)_
|
|
7451
7476
|
|
|
7452
7477
|
## `codiac dep remove [NAME]`
|
|
7453
7478
|
|
|
@@ -7470,7 +7495,7 @@ DESCRIPTION
|
|
|
7470
7495
|
Removes a dependency from the project.
|
|
7471
7496
|
```
|
|
7472
7497
|
|
|
7473
|
-
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7498
|
+
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/dep/remove.ts)_
|
|
7474
7499
|
|
|
7475
7500
|
## `codiac dep source [NAME]`
|
|
7476
7501
|
|
|
@@ -7496,7 +7521,7 @@ ALIASES
|
|
|
7496
7521
|
$ codiac dep src
|
|
7497
7522
|
```
|
|
7498
7523
|
|
|
7499
|
-
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7524
|
+
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/dep/source.ts)_
|
|
7500
7525
|
|
|
7501
7526
|
## `codiac dep src [NAME]`
|
|
7502
7527
|
|
|
@@ -7540,7 +7565,7 @@ DESCRIPTION
|
|
|
7540
7565
|
Publishes the dependency in its current state and upgrades to it in the main project.
|
|
7541
7566
|
```
|
|
7542
7567
|
|
|
7543
|
-
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7568
|
+
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/dep/syncup.ts)_
|
|
7544
7569
|
|
|
7545
7570
|
## `codiac dep unsource [NAME]`
|
|
7546
7571
|
|
|
@@ -7568,7 +7593,7 @@ ALIASES
|
|
|
7568
7593
|
$ codiac dep unsrc
|
|
7569
7594
|
```
|
|
7570
7595
|
|
|
7571
|
-
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7596
|
+
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/dep/unsource.ts)_
|
|
7572
7597
|
|
|
7573
7598
|
## `codiac dep unsrc [NAME]`
|
|
7574
7599
|
|
|
@@ -7615,7 +7640,7 @@ DESCRIPTION
|
|
|
7615
7640
|
describe the command here
|
|
7616
7641
|
```
|
|
7617
7642
|
|
|
7618
|
-
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7643
|
+
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/dep/upgrade.ts)_
|
|
7619
7644
|
|
|
7620
7645
|
## `codiac deploy`
|
|
7621
7646
|
|
|
@@ -7668,7 +7693,7 @@ EXAMPLES
|
|
|
7668
7693
|
$ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
|
|
7669
7694
|
```
|
|
7670
7695
|
|
|
7671
|
-
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7696
|
+
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/deploy.ts)_
|
|
7672
7697
|
|
|
7673
7698
|
## `codiac domain map [DOMAIN]`
|
|
7674
7699
|
|
|
@@ -7824,7 +7849,7 @@ EXAMPLES
|
|
|
7824
7849
|
cod enterprise create my-enterprise-code --silent
|
|
7825
7850
|
```
|
|
7826
7851
|
|
|
7827
|
-
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7852
|
+
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/enterprise/create.ts)_
|
|
7828
7853
|
|
|
7829
7854
|
## `codiac enterprise list`
|
|
7830
7855
|
|
|
@@ -7879,7 +7904,7 @@ EXAMPLES
|
|
|
7879
7904
|
$ codiac enterprise list --to-script
|
|
7880
7905
|
```
|
|
7881
7906
|
|
|
7882
|
-
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7907
|
+
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/enterprise/list.ts)_
|
|
7883
7908
|
|
|
7884
7909
|
## `codiac env add [SETTING]`
|
|
7885
7910
|
|
|
@@ -7929,7 +7954,7 @@ EXAMPLES
|
|
|
7929
7954
|
$ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
|
|
7930
7955
|
```
|
|
7931
7956
|
|
|
7932
|
-
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7957
|
+
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/env/add.ts)_
|
|
7933
7958
|
|
|
7934
7959
|
## `codiac enviro cluster attach`
|
|
7935
7960
|
|
|
@@ -8232,7 +8257,7 @@ ALIASES
|
|
|
8232
8257
|
$ codiac infrx enviro cluster attach
|
|
8233
8258
|
```
|
|
8234
8259
|
|
|
8235
|
-
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8260
|
+
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/environment/cluster/attach.ts)_
|
|
8236
8261
|
|
|
8237
8262
|
## `codiac environment cluster detach`
|
|
8238
8263
|
|
|
@@ -8278,7 +8303,7 @@ ALIASES
|
|
|
8278
8303
|
$ codiac infrx enviro cluster detach
|
|
8279
8304
|
```
|
|
8280
8305
|
|
|
8281
|
-
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8306
|
+
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/environment/cluster/detach.ts)_
|
|
8282
8307
|
|
|
8283
8308
|
## `codiac environment create [NAME]`
|
|
8284
8309
|
|
|
@@ -8341,7 +8366,7 @@ EXAMPLES
|
|
|
8341
8366
|
cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
|
|
8342
8367
|
```
|
|
8343
8368
|
|
|
8344
|
-
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8369
|
+
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/environment/create.ts)_
|
|
8345
8370
|
|
|
8346
8371
|
## `codiac environment delete [NAME]`
|
|
8347
8372
|
|
|
@@ -8402,7 +8427,7 @@ EXAMPLES
|
|
|
8402
8427
|
$ codiac environment delete dev --enterprise main --to-script
|
|
8403
8428
|
```
|
|
8404
8429
|
|
|
8405
|
-
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8430
|
+
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/environment/delete.ts)_
|
|
8406
8431
|
|
|
8407
8432
|
## `codiac environment list`
|
|
8408
8433
|
|
|
@@ -8453,7 +8478,7 @@ EXAMPLES
|
|
|
8453
8478
|
$ codiac environment list -e myEnterprise --silent
|
|
8454
8479
|
```
|
|
8455
8480
|
|
|
8456
|
-
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8481
|
+
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/environment/list.ts)_
|
|
8457
8482
|
|
|
8458
8483
|
## `codiac fileshare capture`
|
|
8459
8484
|
|
|
@@ -8537,7 +8562,7 @@ ALIASES
|
|
|
8537
8562
|
$ codiac fileshare capture
|
|
8538
8563
|
```
|
|
8539
8564
|
|
|
8540
|
-
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8565
|
+
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/filestore/capture.ts)_
|
|
8541
8566
|
|
|
8542
8567
|
## `codiac filestore forget`
|
|
8543
8568
|
|
|
@@ -8584,7 +8609,7 @@ EXAMPLES
|
|
|
8584
8609
|
$ codiac filestore forget
|
|
8585
8610
|
```
|
|
8586
8611
|
|
|
8587
|
-
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8612
|
+
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/filestore/forget.ts)_
|
|
8588
8613
|
|
|
8589
8614
|
## `codiac filestore list`
|
|
8590
8615
|
|
|
@@ -8630,7 +8655,7 @@ EXAMPLES
|
|
|
8630
8655
|
$ codiac filestore list
|
|
8631
8656
|
```
|
|
8632
8657
|
|
|
8633
|
-
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8658
|
+
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/filestore/list.ts)_
|
|
8634
8659
|
|
|
8635
8660
|
## `codiac help [COMMANDS]`
|
|
8636
8661
|
|
|
@@ -8716,7 +8741,7 @@ EXAMPLES
|
|
|
8716
8741
|
$ codiac host delete
|
|
8717
8742
|
```
|
|
8718
8743
|
|
|
8719
|
-
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8744
|
+
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/host/delete.ts)_
|
|
8720
8745
|
|
|
8721
8746
|
## `codiac host list [DOMAIN]`
|
|
8722
8747
|
|
|
@@ -8760,7 +8785,7 @@ EXAMPLES
|
|
|
8760
8785
|
$ codiac host list
|
|
8761
8786
|
```
|
|
8762
8787
|
|
|
8763
|
-
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8788
|
+
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/host/list.ts)_
|
|
8764
8789
|
|
|
8765
8790
|
## `codiac host map [DOMAIN]`
|
|
8766
8791
|
|
|
@@ -8814,7 +8839,7 @@ EXAMPLES
|
|
|
8814
8839
|
$ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
|
|
8815
8840
|
```
|
|
8816
8841
|
|
|
8817
|
-
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8842
|
+
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/host/map.ts)_
|
|
8818
8843
|
|
|
8819
8844
|
## `codiac host view [DOMAIN]`
|
|
8820
8845
|
|
|
@@ -8859,7 +8884,7 @@ EXAMPLES
|
|
|
8859
8884
|
$ codiac host view
|
|
8860
8885
|
```
|
|
8861
8886
|
|
|
8862
|
-
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8887
|
+
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/host/view.ts)_
|
|
8863
8888
|
|
|
8864
8889
|
## `codiac identify [TOKENNAME]`
|
|
8865
8890
|
|
|
@@ -8931,7 +8956,7 @@ ALIASES
|
|
|
8931
8956
|
$ codiac token
|
|
8932
8957
|
```
|
|
8933
8958
|
|
|
8934
|
-
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8959
|
+
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/identity.ts)_
|
|
8935
8960
|
|
|
8936
8961
|
## `codiac identity delete [NAME]`
|
|
8937
8962
|
|
|
@@ -8956,7 +8981,7 @@ ALIASES
|
|
|
8956
8981
|
$ codiac token remove
|
|
8957
8982
|
```
|
|
8958
8983
|
|
|
8959
|
-
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8984
|
+
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/identity/delete.ts)_
|
|
8960
8985
|
|
|
8961
8986
|
## `codiac identity list`
|
|
8962
8987
|
|
|
@@ -8978,7 +9003,7 @@ ALIASES
|
|
|
8978
9003
|
$ codiac token list
|
|
8979
9004
|
```
|
|
8980
9005
|
|
|
8981
|
-
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9006
|
+
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/identity/list.ts)_
|
|
8982
9007
|
|
|
8983
9008
|
## `codiac identity remove [NAME]`
|
|
8984
9009
|
|
|
@@ -9299,7 +9324,7 @@ DESCRIPTION
|
|
|
9299
9324
|
Saves a reference to an existing container registry.
|
|
9300
9325
|
```
|
|
9301
9326
|
|
|
9302
|
-
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9327
|
+
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/imageRegistry/capture.ts)_
|
|
9303
9328
|
|
|
9304
9329
|
## `codiac imageRegistry forget`
|
|
9305
9330
|
|
|
@@ -9320,7 +9345,7 @@ DESCRIPTION
|
|
|
9320
9345
|
Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
|
|
9321
9346
|
```
|
|
9322
9347
|
|
|
9323
|
-
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9348
|
+
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/imageRegistry/forget.ts)_
|
|
9324
9349
|
|
|
9325
9350
|
## `codiac imageRegistry list`
|
|
9326
9351
|
|
|
@@ -9362,7 +9387,7 @@ EXAMPLES
|
|
|
9362
9387
|
$ codiac imageRegistry list -o yaml > registries.yaml
|
|
9363
9388
|
```
|
|
9364
9389
|
|
|
9365
|
-
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9390
|
+
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/imageRegistry/list.ts)_
|
|
9366
9391
|
|
|
9367
9392
|
## `codiac imageRegistry pullSecret set`
|
|
9368
9393
|
|
|
@@ -9398,7 +9423,7 @@ ALIASES
|
|
|
9398
9423
|
$ codiac pullsecret
|
|
9399
9424
|
```
|
|
9400
9425
|
|
|
9401
|
-
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9426
|
+
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/imageRegistry/pullSecret/set.ts)_
|
|
9402
9427
|
|
|
9403
9428
|
## `codiac imageRegistry pullSecret unset`
|
|
9404
9429
|
|
|
@@ -9425,7 +9450,7 @@ ALIASES
|
|
|
9425
9450
|
$ codiac pullsecret unset
|
|
9426
9451
|
```
|
|
9427
9452
|
|
|
9428
|
-
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9453
|
+
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/imageRegistry/pullSecret/unset.ts)_
|
|
9429
9454
|
|
|
9430
9455
|
## `codiac images add [IMAGENAME]`
|
|
9431
9456
|
|
|
@@ -9486,7 +9511,7 @@ EXAMPLES
|
|
|
9486
9511
|
$ codiac images add your-company/your-image --to-script
|
|
9487
9512
|
```
|
|
9488
9513
|
|
|
9489
|
-
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9514
|
+
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/images/add.ts)_
|
|
9490
9515
|
|
|
9491
9516
|
## `codiac images list`
|
|
9492
9517
|
|
|
@@ -9509,7 +9534,7 @@ ALIASES
|
|
|
9509
9534
|
$ codiac img list
|
|
9510
9535
|
```
|
|
9511
9536
|
|
|
9512
|
-
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9537
|
+
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/images/list.ts)_
|
|
9513
9538
|
|
|
9514
9539
|
## `codiac images patch IMAGENAME`
|
|
9515
9540
|
|
|
@@ -9539,7 +9564,7 @@ ALIASES
|
|
|
9539
9564
|
$ codiac img patch
|
|
9540
9565
|
```
|
|
9541
9566
|
|
|
9542
|
-
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9567
|
+
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/images/patch.ts)_
|
|
9543
9568
|
|
|
9544
9569
|
## `codiac images remove IMAGENAME`
|
|
9545
9570
|
|
|
@@ -9565,7 +9590,7 @@ ALIASES
|
|
|
9565
9590
|
$ codiac img delete
|
|
9566
9591
|
```
|
|
9567
9592
|
|
|
9568
|
-
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9593
|
+
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/images/remove.ts)_
|
|
9569
9594
|
|
|
9570
9595
|
## `codiac images version NAME`
|
|
9571
9596
|
|
|
@@ -9591,7 +9616,7 @@ ALIASES
|
|
|
9591
9616
|
$ codiac img version get
|
|
9592
9617
|
```
|
|
9593
9618
|
|
|
9594
|
-
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9619
|
+
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/images/version.ts)_
|
|
9595
9620
|
|
|
9596
9621
|
## `codiac images version bump NAME`
|
|
9597
9622
|
|
|
@@ -9624,7 +9649,7 @@ ALIASES
|
|
|
9624
9649
|
$ codiac img version bump
|
|
9625
9650
|
```
|
|
9626
9651
|
|
|
9627
|
-
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9652
|
+
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/images/version/bump.ts)_
|
|
9628
9653
|
|
|
9629
9654
|
## `codiac img [IMAGENAME]`
|
|
9630
9655
|
|
|
@@ -9896,6 +9921,52 @@ ALIASES
|
|
|
9896
9921
|
$ codiac img version get
|
|
9897
9922
|
```
|
|
9898
9923
|
|
|
9924
|
+
## `codiac import cluster`
|
|
9925
|
+
|
|
9926
|
+
Scans all deployments in the current Kubernetes cluster and generates the Codiac CLI commands to import them.
|
|
9927
|
+
|
|
9928
|
+
```
|
|
9929
|
+
USAGE
|
|
9930
|
+
$ codiac import cluster [--run-in-cluster] [--enterprise <value>] [--environment <value>] [--cluster <value>] [-s
|
|
9931
|
+
<value>] [--generate-cabinet] [--generate-secret-store] [--generate-pvcs] [--generate-volume-mounts]
|
|
9932
|
+
[--include-default] [--keyvault-name <value>]
|
|
9933
|
+
|
|
9934
|
+
FLAGS
|
|
9935
|
+
-s, --subscription-id=<value> Cloud subscription containing the source cluster; threaded into generated
|
|
9936
|
+
secretStore:capture commands so they run silently in multi-subscription tenants.
|
|
9937
|
+
--cluster=<value> Cluster name to include in generated cabinet create commands (required by
|
|
9938
|
+
--generate-cabinet).
|
|
9939
|
+
--enterprise=<value> Enterprise code to include in generated commands.
|
|
9940
|
+
--environment=<value> Environment name to include in generated commands (required by --generate-cabinet).
|
|
9941
|
+
--generate-cabinet Include codiac cabinet create commands in the output (one per namespace). Requires
|
|
9942
|
+
--enterprise, --environment, and --cluster.
|
|
9943
|
+
--generate-pvcs Include codiac pvc create commands (enterprise-scope) plus codiac config add -t
|
|
9944
|
+
filestore bindings for every PersistentVolumeClaim mounted by a discovered deployment.
|
|
9945
|
+
--generate-secret-store Include codiac secretStore:capture commands in the output for discovered Azure Key
|
|
9946
|
+
Vaults.
|
|
9947
|
+
--generate-volume-mounts Include codiac asset volume create commands for every container volumeMount backed by a
|
|
9948
|
+
PVC on a discovered deployment.
|
|
9949
|
+
--include-default Include the "default" namespace (excluded by default).
|
|
9950
|
+
--keyvault-name=<value> Azure Key Vault name to use in generated secret references. When omitted, the K8s
|
|
9951
|
+
Secret name is used as a placeholder.
|
|
9952
|
+
--run-in-cluster Run using in-cluster Kubernetes config (service account). Required for headless/pod
|
|
9953
|
+
execution.
|
|
9954
|
+
|
|
9955
|
+
DESCRIPTION
|
|
9956
|
+
Scans all deployments in the current Kubernetes cluster and generates the Codiac CLI commands to import them.
|
|
9957
|
+
|
|
9958
|
+
EXAMPLES
|
|
9959
|
+
$ codiac import cluster --run-in-cluster
|
|
9960
|
+
|
|
9961
|
+
$ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-cabinet --generate-secret-store
|
|
9962
|
+
|
|
9963
|
+
$ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-pvcs --generate-volume-mounts
|
|
9964
|
+
|
|
9965
|
+
$ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-cabinet --generate-secret-store --subscription-id 00000000-0000-0000-0000-000000000000
|
|
9966
|
+
```
|
|
9967
|
+
|
|
9968
|
+
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/import/cluster.ts)_
|
|
9969
|
+
|
|
9899
9970
|
## `codiac infrx cab create [CABINET]`
|
|
9900
9971
|
|
|
9901
9972
|
Initializes a cabinet for a given enterprise and environment. Returns an error if the cabinet already exists.
|
|
@@ -10739,7 +10810,7 @@ DESCRIPTION
|
|
|
10739
10810
|
Declares the given folder as a project root
|
|
10740
10811
|
```
|
|
10741
10812
|
|
|
10742
|
-
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10813
|
+
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/init.ts)_
|
|
10743
10814
|
|
|
10744
10815
|
## `codiac kit create`
|
|
10745
10816
|
|
|
@@ -10782,7 +10853,7 @@ EXAMPLES
|
|
|
10782
10853
|
$ codiac kit create -e myEnterprise -a myApi --to-script
|
|
10783
10854
|
```
|
|
10784
10855
|
|
|
10785
|
-
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10856
|
+
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/kit/create.ts)_
|
|
10786
10857
|
|
|
10787
10858
|
## `codiac login`
|
|
10788
10859
|
|
|
@@ -10841,7 +10912,7 @@ EXAMPLES
|
|
|
10841
10912
|
$ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
|
|
10842
10913
|
```
|
|
10843
10914
|
|
|
10844
|
-
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10915
|
+
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/login.ts)_
|
|
10845
10916
|
|
|
10846
10917
|
## `codiac logout`
|
|
10847
10918
|
|
|
@@ -10874,7 +10945,7 @@ EXAMPLES
|
|
|
10874
10945
|
$ codiac logout --to-script
|
|
10875
10946
|
```
|
|
10876
10947
|
|
|
10877
|
-
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10948
|
+
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/logout.ts)_
|
|
10878
10949
|
|
|
10879
10950
|
## `codiac merge [BRANCH]`
|
|
10880
10951
|
|
|
@@ -10895,7 +10966,7 @@ DESCRIPTION
|
|
|
10895
10966
|
Merges the given branch into the current branch of the main project and on any sourced dependencies.
|
|
10896
10967
|
```
|
|
10897
10968
|
|
|
10898
|
-
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10969
|
+
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/merge.ts)_
|
|
10899
10970
|
|
|
10900
10971
|
## `codiac noc cluster capture`
|
|
10901
10972
|
|
|
@@ -10947,7 +11018,7 @@ EXAMPLES
|
|
|
10947
11018
|
cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
|
|
10948
11019
|
```
|
|
10949
11020
|
|
|
10950
|
-
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11021
|
+
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/capture.ts)_
|
|
10951
11022
|
|
|
10952
11023
|
## `codiac noc cluster create [NAME]`
|
|
10953
11024
|
|
|
@@ -11037,7 +11108,7 @@ FLAG DESCRIPTIONS
|
|
|
11037
11108
|
initialization is always skipped in that mode.
|
|
11038
11109
|
```
|
|
11039
11110
|
|
|
11040
|
-
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11111
|
+
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/create.ts)_
|
|
11041
11112
|
|
|
11042
11113
|
## `codiac noc cluster credentials-set [NAME]`
|
|
11043
11114
|
|
|
@@ -11092,7 +11163,7 @@ EXAMPLES
|
|
|
11092
11163
|
$ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
|
|
11093
11164
|
```
|
|
11094
11165
|
|
|
11095
|
-
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11166
|
+
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/credentials-set.ts)_
|
|
11096
11167
|
|
|
11097
11168
|
## `codiac noc cluster define [NAME]`
|
|
11098
11169
|
|
|
@@ -11166,7 +11237,7 @@ EXAMPLES
|
|
|
11166
11237
|
$ codiac noc cluster define my-cluster --to-script
|
|
11167
11238
|
```
|
|
11168
11239
|
|
|
11169
|
-
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11240
|
+
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/define.ts)_
|
|
11170
11241
|
|
|
11171
11242
|
## `codiac noc cluster deinit`
|
|
11172
11243
|
|
|
@@ -11206,7 +11277,7 @@ EXAMPLES
|
|
|
11206
11277
|
$ codiac noc cluster deinit -n my-cluster --to-script
|
|
11207
11278
|
```
|
|
11208
11279
|
|
|
11209
|
-
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11280
|
+
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/deinit.ts)_
|
|
11210
11281
|
|
|
11211
11282
|
## `codiac noc cluster destroy [NAME]`
|
|
11212
11283
|
|
|
@@ -11240,7 +11311,7 @@ ALIASES
|
|
|
11240
11311
|
$ codiac cluster destroy
|
|
11241
11312
|
```
|
|
11242
11313
|
|
|
11243
|
-
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11314
|
+
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/destroy.ts)_
|
|
11244
11315
|
|
|
11245
11316
|
## `codiac noc cluster forget`
|
|
11246
11317
|
|
|
@@ -11291,7 +11362,7 @@ EXAMPLES
|
|
|
11291
11362
|
$ codiac noc cluster forget --running
|
|
11292
11363
|
```
|
|
11293
11364
|
|
|
11294
|
-
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11365
|
+
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/forget.ts)_
|
|
11295
11366
|
|
|
11296
11367
|
## `codiac noc cluster grant`
|
|
11297
11368
|
|
|
@@ -11329,7 +11400,7 @@ EXAMPLES
|
|
|
11329
11400
|
$ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
|
|
11330
11401
|
```
|
|
11331
11402
|
|
|
11332
|
-
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11403
|
+
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/grant.ts)_
|
|
11333
11404
|
|
|
11334
11405
|
## `codiac noc cluster init`
|
|
11335
11406
|
|
|
@@ -11375,7 +11446,7 @@ EXAMPLES
|
|
|
11375
11446
|
$ codiac noc cluster init -n my-cluster --to-script
|
|
11376
11447
|
```
|
|
11377
11448
|
|
|
11378
|
-
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11449
|
+
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/init.ts)_
|
|
11379
11450
|
|
|
11380
11451
|
## `codiac noc cluster journal [CLUSTER]`
|
|
11381
11452
|
|
|
@@ -11424,7 +11495,7 @@ EXAMPLES
|
|
|
11424
11495
|
$ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
|
|
11425
11496
|
```
|
|
11426
11497
|
|
|
11427
|
-
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11498
|
+
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/journal.ts)_
|
|
11428
11499
|
|
|
11429
11500
|
## `codiac noc cluster list`
|
|
11430
11501
|
|
|
@@ -11485,7 +11556,7 @@ EXAMPLES
|
|
|
11485
11556
|
$ codiac noc cluster list -e myEnterprise --to-script
|
|
11486
11557
|
```
|
|
11487
11558
|
|
|
11488
|
-
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11559
|
+
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/list.ts)_
|
|
11489
11560
|
|
|
11490
11561
|
## `codiac noc cluster restore [NAME]`
|
|
11491
11562
|
|
|
@@ -11545,7 +11616,7 @@ EXAMPLES
|
|
|
11545
11616
|
$ codiac noc cluster restore prod-cluster-1 --to-script
|
|
11546
11617
|
```
|
|
11547
11618
|
|
|
11548
|
-
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11619
|
+
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/noc/cluster/restore.ts)_
|
|
11549
11620
|
|
|
11550
11621
|
## `codiac pkg add [DEFINITIONFILE]`
|
|
11551
11622
|
|
|
@@ -11579,7 +11650,7 @@ DESCRIPTION
|
|
|
11579
11650
|
Configures a package to be built and published by the project.
|
|
11580
11651
|
```
|
|
11581
11652
|
|
|
11582
|
-
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11653
|
+
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/pkg/add.ts)_
|
|
11583
11654
|
|
|
11584
11655
|
## `codiac pkg delete [PACKAGENAME]`
|
|
11585
11656
|
|
|
@@ -11617,7 +11688,7 @@ DESCRIPTION
|
|
|
11617
11688
|
Renders the list of packages that are configured as project exports.
|
|
11618
11689
|
```
|
|
11619
11690
|
|
|
11620
|
-
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11691
|
+
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/pkg/list.ts)_
|
|
11621
11692
|
|
|
11622
11693
|
## `codiac pkg patch PACKAGENAME`
|
|
11623
11694
|
|
|
@@ -11643,7 +11714,7 @@ DESCRIPTION
|
|
|
11643
11714
|
registryUrl and/or environment.
|
|
11644
11715
|
```
|
|
11645
11716
|
|
|
11646
|
-
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11717
|
+
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/pkg/patch.ts)_
|
|
11647
11718
|
|
|
11648
11719
|
## `codiac pkg remove [PACKAGENAME]`
|
|
11649
11720
|
|
|
@@ -11666,7 +11737,7 @@ ALIASES
|
|
|
11666
11737
|
$ codiac pkg delete
|
|
11667
11738
|
```
|
|
11668
11739
|
|
|
11669
|
-
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11740
|
+
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/pkg/remove.ts)_
|
|
11670
11741
|
|
|
11671
11742
|
## `codiac portal`
|
|
11672
11743
|
|
|
@@ -11699,7 +11770,7 @@ EXAMPLES
|
|
|
11699
11770
|
$ codiac portal --to-script
|
|
11700
11771
|
```
|
|
11701
11772
|
|
|
11702
|
-
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11773
|
+
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/portal.ts)_
|
|
11703
11774
|
|
|
11704
11775
|
## `codiac probe create [CMD]`
|
|
11705
11776
|
|
|
@@ -11820,7 +11891,7 @@ DESCRIPTION
|
|
|
11820
11891
|
Publishes the exports (packages and images) declared in the ProjectConfig.
|
|
11821
11892
|
```
|
|
11822
11893
|
|
|
11823
|
-
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11894
|
+
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/publish.ts)_
|
|
11824
11895
|
|
|
11825
11896
|
## `codiac pull [NAME]`
|
|
11826
11897
|
|
|
@@ -11844,7 +11915,7 @@ DESCRIPTION
|
|
|
11844
11915
|
Pulls all commits from upstream to local.
|
|
11845
11916
|
```
|
|
11846
11917
|
|
|
11847
|
-
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11918
|
+
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/pull.ts)_
|
|
11848
11919
|
|
|
11849
11920
|
## `codiac pullsecret`
|
|
11850
11921
|
|
|
@@ -11927,7 +11998,7 @@ DESCRIPTION
|
|
|
11927
11998
|
Pushes all local commits upstream.
|
|
11928
11999
|
```
|
|
11929
12000
|
|
|
11930
|
-
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12001
|
+
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/push.ts)_
|
|
11931
12002
|
|
|
11932
12003
|
## `codiac pvc create`
|
|
11933
12004
|
|
|
@@ -12011,7 +12082,7 @@ EXAMPLES
|
|
|
12011
12082
|
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
|
|
12012
12083
|
```
|
|
12013
12084
|
|
|
12014
|
-
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12085
|
+
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/pvc/create.ts)_
|
|
12015
12086
|
|
|
12016
12087
|
## `codiac pvc delete`
|
|
12017
12088
|
|
|
@@ -12058,7 +12129,7 @@ EXAMPLES
|
|
|
12058
12129
|
$ codiac pvc delete --id <fileStoreDefId> --silent
|
|
12059
12130
|
```
|
|
12060
12131
|
|
|
12061
|
-
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12132
|
+
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/pvc/delete.ts)_
|
|
12062
12133
|
|
|
12063
12134
|
## `codiac pvc get`
|
|
12064
12135
|
|
|
@@ -12099,7 +12170,7 @@ EXAMPLES
|
|
|
12099
12170
|
$ codiac pvc get --name app-documents-share --silent -o json
|
|
12100
12171
|
```
|
|
12101
12172
|
|
|
12102
|
-
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12173
|
+
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/pvc/get.ts)_
|
|
12103
12174
|
|
|
12104
12175
|
## `codiac pvc list`
|
|
12105
12176
|
|
|
@@ -12142,7 +12213,7 @@ EXAMPLES
|
|
|
12142
12213
|
$ codiac pvc list -o yaml
|
|
12143
12214
|
```
|
|
12144
12215
|
|
|
12145
|
-
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12216
|
+
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/pvc/list.ts)_
|
|
12146
12217
|
|
|
12147
12218
|
## `codiac relay-version`
|
|
12148
12219
|
|
|
@@ -12159,7 +12230,7 @@ EXAMPLES
|
|
|
12159
12230
|
$ codiac relay-version
|
|
12160
12231
|
```
|
|
12161
12232
|
|
|
12162
|
-
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12233
|
+
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/relay-version.ts)_
|
|
12163
12234
|
|
|
12164
12235
|
## `codiac run`
|
|
12165
12236
|
|
|
@@ -12201,7 +12272,7 @@ DESCRIPTION
|
|
|
12201
12272
|
Runs the latest build of the api container locally.
|
|
12202
12273
|
```
|
|
12203
12274
|
|
|
12204
|
-
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12275
|
+
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/run.ts)_
|
|
12205
12276
|
|
|
12206
12277
|
## `codiac secretStore`
|
|
12207
12278
|
|
|
@@ -12209,18 +12280,19 @@ Upserts a reference to an existing secretStore.
|
|
|
12209
12280
|
|
|
12210
12281
|
```
|
|
12211
12282
|
USAGE
|
|
12212
|
-
$ codiac secretStore [-h] [-u <value>] [-p artifactHub|aws|azure|dockerHub|localMachine|other] [-
|
|
12213
|
-
<value>] [
|
|
12283
|
+
$ codiac secretStore [-h] [-u <value>] [-p artifactHub|aws|azure|dockerHub|localMachine|other] [-s <value>] [-l
|
|
12284
|
+
<value>] [--echo | --to-script | [--silent -n <value>]]
|
|
12214
12285
|
|
|
12215
12286
|
FLAGS
|
|
12216
12287
|
-h, --help Show CLI help.
|
|
12217
12288
|
-l, --location=<value> The region or data center in which the secret store resides (use the code name, eg: in
|
|
12218
12289
|
Aws use 'us-east-1', NOT 'Virginia, US').
|
|
12219
12290
|
-n, --name=<value> The resource name of the secret store within the cloud provider subscription.
|
|
12220
|
-
-p, --provider=<option> The cloud provider hosting the secret store.
|
|
12291
|
+
-p, --provider=<option> The cloud provider hosting the secret store (defaults to azure in silent mode).
|
|
12221
12292
|
<options: artifactHub|aws|azure|dockerHub|localMachine|other>
|
|
12222
12293
|
-s, --subscriptionId=<value> The id of the cloud provider account in which the secret store resides (in Aws, this is
|
|
12223
|
-
the 'AccountId').
|
|
12294
|
+
the 'AccountId'). Required in silent mode only when multiple cached subscriptions are
|
|
12295
|
+
present.
|
|
12224
12296
|
-u, --url=<value> The container registry url.
|
|
12225
12297
|
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
12226
12298
|
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
@@ -12231,6 +12303,24 @@ DESCRIPTION
|
|
|
12231
12303
|
|
|
12232
12304
|
ALIASES
|
|
12233
12305
|
$ codiac secretStore
|
|
12306
|
+
|
|
12307
|
+
EXAMPLES
|
|
12308
|
+
Capture an Azure Key Vault interactively.
|
|
12309
|
+
|
|
12310
|
+
$ codiac secretStore
|
|
12311
|
+
|
|
12312
|
+
Capture a specific Azure Key Vault silently (single cached subscription).
|
|
12313
|
+
|
|
12314
|
+
$ codiac secretStore --silent --provider azure --name my-keyvault
|
|
12315
|
+
|
|
12316
|
+
Capture silently, disambiguating between multiple cached azure subscriptions.
|
|
12317
|
+
|
|
12318
|
+
$ codiac secretStore --silent --provider azure --name my-keyvault --subscription-id \
|
|
12319
|
+
00000000-0000-0000-0000-000000000000
|
|
12320
|
+
|
|
12321
|
+
Render the equivalent silent command for future use before executing.
|
|
12322
|
+
|
|
12323
|
+
$ codiac secretStore --echo
|
|
12234
12324
|
```
|
|
12235
12325
|
|
|
12236
12326
|
## `codiac secretStore capture`
|
|
@@ -12239,18 +12329,19 @@ Upserts a reference to an existing secretStore.
|
|
|
12239
12329
|
|
|
12240
12330
|
```
|
|
12241
12331
|
USAGE
|
|
12242
|
-
$ codiac secretStore capture [-h] [-u <value>] [-p artifactHub|aws|azure|dockerHub|localMachine|other] [-
|
|
12243
|
-
<value>] [
|
|
12332
|
+
$ codiac secretStore capture [-h] [-u <value>] [-p artifactHub|aws|azure|dockerHub|localMachine|other] [-s <value>] [-l
|
|
12333
|
+
<value>] [--echo | --to-script | [--silent -n <value>]]
|
|
12244
12334
|
|
|
12245
12335
|
FLAGS
|
|
12246
12336
|
-h, --help Show CLI help.
|
|
12247
12337
|
-l, --location=<value> The region or data center in which the secret store resides (use the code name, eg: in
|
|
12248
12338
|
Aws use 'us-east-1', NOT 'Virginia, US').
|
|
12249
12339
|
-n, --name=<value> The resource name of the secret store within the cloud provider subscription.
|
|
12250
|
-
-p, --provider=<option> The cloud provider hosting the secret store.
|
|
12340
|
+
-p, --provider=<option> The cloud provider hosting the secret store (defaults to azure in silent mode).
|
|
12251
12341
|
<options: artifactHub|aws|azure|dockerHub|localMachine|other>
|
|
12252
12342
|
-s, --subscriptionId=<value> The id of the cloud provider account in which the secret store resides (in Aws, this is
|
|
12253
|
-
the 'AccountId').
|
|
12343
|
+
the 'AccountId'). Required in silent mode only when multiple cached subscriptions are
|
|
12344
|
+
present.
|
|
12254
12345
|
-u, --url=<value> The container registry url.
|
|
12255
12346
|
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
12256
12347
|
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
@@ -12261,9 +12352,27 @@ DESCRIPTION
|
|
|
12261
12352
|
|
|
12262
12353
|
ALIASES
|
|
12263
12354
|
$ codiac secretStore
|
|
12355
|
+
|
|
12356
|
+
EXAMPLES
|
|
12357
|
+
Capture an Azure Key Vault interactively.
|
|
12358
|
+
|
|
12359
|
+
$ codiac secretStore capture
|
|
12360
|
+
|
|
12361
|
+
Capture a specific Azure Key Vault silently (single cached subscription).
|
|
12362
|
+
|
|
12363
|
+
$ codiac secretStore capture --silent --provider azure --name my-keyvault
|
|
12364
|
+
|
|
12365
|
+
Capture silently, disambiguating between multiple cached azure subscriptions.
|
|
12366
|
+
|
|
12367
|
+
$ codiac secretStore capture --silent --provider azure --name my-keyvault --subscription-id \
|
|
12368
|
+
00000000-0000-0000-0000-000000000000
|
|
12369
|
+
|
|
12370
|
+
Render the equivalent silent command for future use before executing.
|
|
12371
|
+
|
|
12372
|
+
$ codiac secretStore capture --echo
|
|
12264
12373
|
```
|
|
12265
12374
|
|
|
12266
|
-
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12375
|
+
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/secretStore/capture.ts)_
|
|
12267
12376
|
|
|
12268
12377
|
## `codiac secretStore forget`
|
|
12269
12378
|
|
|
@@ -12284,7 +12393,7 @@ DESCRIPTION
|
|
|
12284
12393
|
Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
|
|
12285
12394
|
```
|
|
12286
12395
|
|
|
12287
|
-
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12396
|
+
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/secretStore/forget.ts)_
|
|
12288
12397
|
|
|
12289
12398
|
## `codiac secretStore list`
|
|
12290
12399
|
|
|
@@ -12329,7 +12438,7 @@ EXAMPLES
|
|
|
12329
12438
|
$ codiac secretStore list
|
|
12330
12439
|
```
|
|
12331
12440
|
|
|
12332
|
-
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12441
|
+
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/secretStore/list.ts)_
|
|
12333
12442
|
|
|
12334
12443
|
## `codiac shell init`
|
|
12335
12444
|
|
|
@@ -12367,7 +12476,7 @@ EXAMPLES
|
|
|
12367
12476
|
Invoke-Expression (codiac shell init --shell powershell)
|
|
12368
12477
|
```
|
|
12369
12478
|
|
|
12370
|
-
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12479
|
+
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/shell/init.ts)_
|
|
12371
12480
|
|
|
12372
12481
|
## `codiac snapshot deploy`
|
|
12373
12482
|
|
|
@@ -12395,7 +12504,7 @@ DESCRIPTION
|
|
|
12395
12504
|
Deploys all assets in a snapshot to a target cabinet.
|
|
12396
12505
|
```
|
|
12397
12506
|
|
|
12398
|
-
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12507
|
+
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/snapshot/deploy.ts)_
|
|
12399
12508
|
|
|
12400
12509
|
## `codiac snapshot list`
|
|
12401
12510
|
|
|
@@ -12444,7 +12553,7 @@ EXAMPLES
|
|
|
12444
12553
|
$ codiac snapshot list -e myEnterprise --silent
|
|
12445
12554
|
```
|
|
12446
12555
|
|
|
12447
|
-
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12556
|
+
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/snapshot/list.ts)_
|
|
12448
12557
|
|
|
12449
12558
|
## `codiac snapshot tag`
|
|
12450
12559
|
|
|
@@ -12487,7 +12596,7 @@ EXAMPLES
|
|
|
12487
12596
|
$ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12488
12597
|
```
|
|
12489
12598
|
|
|
12490
|
-
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12599
|
+
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/snapshot/tag.ts)_
|
|
12491
12600
|
|
|
12492
12601
|
## `codiac snapshot untag`
|
|
12493
12602
|
|
|
@@ -12530,7 +12639,7 @@ EXAMPLES
|
|
|
12530
12639
|
$ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12531
12640
|
```
|
|
12532
12641
|
|
|
12533
|
-
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12642
|
+
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/snapshot/untag.ts)_
|
|
12534
12643
|
|
|
12535
12644
|
## `codiac stage [FILES]`
|
|
12536
12645
|
|
|
@@ -12552,7 +12661,7 @@ DESCRIPTION
|
|
|
12552
12661
|
Flags files to be included in the next commit.
|
|
12553
12662
|
```
|
|
12554
12663
|
|
|
12555
|
-
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12664
|
+
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/stage.ts)_
|
|
12556
12665
|
|
|
12557
12666
|
## `codiac stash [FILE]`
|
|
12558
12667
|
|
|
@@ -12574,7 +12683,7 @@ DESCRIPTION
|
|
|
12574
12683
|
describe the command here
|
|
12575
12684
|
```
|
|
12576
12685
|
|
|
12577
|
-
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12686
|
+
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/stash.ts)_
|
|
12578
12687
|
|
|
12579
12688
|
## `codiac status`
|
|
12580
12689
|
|
|
@@ -12593,7 +12702,7 @@ DESCRIPTION
|
|
|
12593
12702
|
Shows the current uncommitted changes in the current branch.
|
|
12594
12703
|
```
|
|
12595
12704
|
|
|
12596
|
-
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12705
|
+
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/status.ts)_
|
|
12597
12706
|
|
|
12598
12707
|
## `codiac stop`
|
|
12599
12708
|
|
|
@@ -12611,7 +12720,7 @@ DESCRIPTION
|
|
|
12611
12720
|
Stops the running container for this project
|
|
12612
12721
|
```
|
|
12613
12722
|
|
|
12614
|
-
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12723
|
+
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/stop.ts)_
|
|
12615
12724
|
|
|
12616
12725
|
## `codiac switch [NAME]`
|
|
12617
12726
|
|
|
@@ -12631,7 +12740,7 @@ DESCRIPTION
|
|
|
12631
12740
|
Changes branch on the main project and any sourced dependencies.
|
|
12632
12741
|
```
|
|
12633
12742
|
|
|
12634
|
-
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12743
|
+
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/switch.ts)_
|
|
12635
12744
|
|
|
12636
12745
|
## `codiac sync [NAME]`
|
|
12637
12746
|
|
|
@@ -12656,7 +12765,7 @@ DESCRIPTION
|
|
|
12656
12765
|
Merges the given branch into the current branch.
|
|
12657
12766
|
```
|
|
12658
12767
|
|
|
12659
|
-
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12768
|
+
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/sync.ts)_
|
|
12660
12769
|
|
|
12661
12770
|
## `codiac tenant create [NAME]`
|
|
12662
12771
|
|
|
@@ -12699,7 +12808,7 @@ EXAMPLES
|
|
|
12699
12808
|
$ codiac tenant create -n 'Acme Corp' -c acme --to-script
|
|
12700
12809
|
```
|
|
12701
12810
|
|
|
12702
|
-
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12811
|
+
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/tenant/create.ts)_
|
|
12703
12812
|
|
|
12704
12813
|
## `codiac tenant switch [CODE]`
|
|
12705
12814
|
|
|
@@ -12739,7 +12848,7 @@ EXAMPLES
|
|
|
12739
12848
|
$ codiac tenant switch my-tenant-code --to-script
|
|
12740
12849
|
```
|
|
12741
12850
|
|
|
12742
|
-
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12851
|
+
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/tenant/switch.ts)_
|
|
12743
12852
|
|
|
12744
12853
|
## `codiac token [TOKENNAME]`
|
|
12745
12854
|
|
|
@@ -12861,7 +12970,7 @@ DESCRIPTION
|
|
|
12861
12970
|
Flags files to be included in the next commit.
|
|
12862
12971
|
```
|
|
12863
12972
|
|
|
12864
|
-
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12973
|
+
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/unstage.ts)_
|
|
12865
12974
|
|
|
12866
12975
|
## `codiac update [CHANNEL]`
|
|
12867
12976
|
|
|
@@ -13048,7 +13157,7 @@ EXAMPLES
|
|
|
13048
13157
|
$ codiac whereami --to-script
|
|
13049
13158
|
```
|
|
13050
13159
|
|
|
13051
|
-
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13160
|
+
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/whereami.ts)_
|
|
13052
13161
|
|
|
13053
13162
|
## `codiac whoami`
|
|
13054
13163
|
|
|
@@ -13090,5 +13199,5 @@ EXAMPLES
|
|
|
13090
13199
|
$ codiac whoami --to-script
|
|
13091
13200
|
```
|
|
13092
13201
|
|
|
13093
|
-
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13202
|
+
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.232/src/commands/whoami.ts)_
|
|
13094
13203
|
<!-- commandsstop -->
|