@codiac.io/codiac-cli 1.3.230 → 1.3.233
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 +259 -192
- package/dist/commands/asset/create.d.ts +2 -0
- package/dist/commands/asset/create.js +31 -14
- package/dist/commands/asset/create.js.map +1 -1
- package/dist/commands/import/cluster.d.ts +27 -1
- package/dist/commands/import/cluster.js +208 -29
- package/dist/commands/import/cluster.js.map +1 -1
- 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 +71 -7
- 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.233 linux-x64 node-v22.15.1
|
|
25
25
|
$ codiac --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ codiac COMMAND
|
|
@@ -480,9 +480,10 @@ Creates a new asset in the given enterprise from an image that exists in a conta
|
|
|
480
480
|
|
|
481
481
|
```
|
|
482
482
|
USAGE
|
|
483
|
-
$ codiac asset create [-h] [
|
|
484
|
-
<value>] [
|
|
485
|
-
--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]]
|
|
486
487
|
|
|
487
488
|
FLAGS
|
|
488
489
|
-c, --code=<value>
|
|
@@ -524,6 +525,13 @@ FLAGS
|
|
|
524
525
|
getting redirected to https. That is, Setting this to true will prevent the ingress controller from invoking an
|
|
525
526
|
automatic redirect to https on any inbound http requests. (optional: defaults to false).
|
|
526
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
|
+
|
|
527
535
|
--deploy-condition=<value>
|
|
528
536
|
JSONata expression evaluated at deploy time; when falsy the asset is skipped rather than deployed (see
|
|
529
537
|
https://jsonata.org for syntax). Uses the same expression context as config conditions: cabinet, cluster,
|
|
@@ -579,9 +587,13 @@ EXAMPLES
|
|
|
579
587
|
Create an asset that only deploys to production environments.
|
|
580
588
|
|
|
581
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
|
|
582
594
|
```
|
|
583
595
|
|
|
584
|
-
_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.233/src/commands/asset/create.ts)_
|
|
585
597
|
|
|
586
598
|
## `codiac asset edit`
|
|
587
599
|
|
|
@@ -639,7 +651,7 @@ EXAMPLES
|
|
|
639
651
|
$ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
|
|
640
652
|
```
|
|
641
653
|
|
|
642
|
-
_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.233/src/commands/asset/edit.ts)_
|
|
643
655
|
|
|
644
656
|
## `codiac asset entrypoint`
|
|
645
657
|
|
|
@@ -760,7 +772,7 @@ EXAMPLES
|
|
|
760
772
|
$ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
|
|
761
773
|
```
|
|
762
774
|
|
|
763
|
-
_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.233/src/commands/asset/entrypoint/delete.ts)_
|
|
764
776
|
|
|
765
777
|
## `codiac asset entrypoint set`
|
|
766
778
|
|
|
@@ -829,7 +841,7 @@ EXAMPLES
|
|
|
829
841
|
--input=/backup/workflows'
|
|
830
842
|
```
|
|
831
843
|
|
|
832
|
-
_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.233/src/commands/asset/entrypoint/set.ts)_
|
|
833
845
|
|
|
834
846
|
## `codiac asset get [CMD]`
|
|
835
847
|
|
|
@@ -936,7 +948,7 @@ EXAMPLES
|
|
|
936
948
|
$ codiac asset list -e myEnterprise --to-script
|
|
937
949
|
```
|
|
938
950
|
|
|
939
|
-
_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.233/src/commands/asset/list.ts)_
|
|
940
952
|
|
|
941
953
|
## `codiac asset mon [CMD]`
|
|
942
954
|
|
|
@@ -1050,9 +1062,10 @@ Creates a new asset in the given enterprise from an image that exists in a conta
|
|
|
1050
1062
|
|
|
1051
1063
|
```
|
|
1052
1064
|
USAGE
|
|
1053
|
-
$ codiac asset new [-h] [
|
|
1054
|
-
<value>] [
|
|
1055
|
-
--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]]
|
|
1056
1069
|
|
|
1057
1070
|
FLAGS
|
|
1058
1071
|
-c, --code=<value>
|
|
@@ -1094,6 +1107,13 @@ FLAGS
|
|
|
1094
1107
|
getting redirected to https. That is, Setting this to true will prevent the ingress controller from invoking an
|
|
1095
1108
|
automatic redirect to https on any inbound http requests. (optional: defaults to false).
|
|
1096
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
|
+
|
|
1097
1117
|
--deploy-condition=<value>
|
|
1098
1118
|
JSONata expression evaluated at deploy time; when falsy the asset is skipped rather than deployed (see
|
|
1099
1119
|
https://jsonata.org for syntax). Uses the same expression context as config conditions: cabinet, cluster,
|
|
@@ -1149,6 +1169,10 @@ EXAMPLES
|
|
|
1149
1169
|
Create an asset that only deploys to production environments.
|
|
1150
1170
|
|
|
1151
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
|
|
1152
1176
|
```
|
|
1153
1177
|
|
|
1154
1178
|
## `codiac asset obliterate`
|
|
@@ -1183,7 +1207,7 @@ EXAMPLES
|
|
|
1183
1207
|
$ codiac asset obliterate -e main -n my-api
|
|
1184
1208
|
```
|
|
1185
1209
|
|
|
1186
|
-
_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.233/src/commands/asset/obliterate.ts)_
|
|
1187
1211
|
|
|
1188
1212
|
## `codiac asset probe create [CMD]`
|
|
1189
1213
|
|
|
@@ -1273,7 +1297,7 @@ EXAMPLES
|
|
|
1273
1297
|
$ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
|
|
1274
1298
|
```
|
|
1275
1299
|
|
|
1276
|
-
_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.233/src/commands/asset/probe/create.ts)_
|
|
1277
1301
|
|
|
1278
1302
|
## `codiac asset probe delete`
|
|
1279
1303
|
|
|
@@ -1328,7 +1352,7 @@ EXAMPLES
|
|
|
1328
1352
|
$ codiac asset probe delete
|
|
1329
1353
|
```
|
|
1330
1354
|
|
|
1331
|
-
_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.233/src/commands/asset/probe/delete.ts)_
|
|
1332
1356
|
|
|
1333
1357
|
## `codiac asset probe list`
|
|
1334
1358
|
|
|
@@ -1380,7 +1404,7 @@ EXAMPLES
|
|
|
1380
1404
|
$ codiac asset probe list
|
|
1381
1405
|
```
|
|
1382
1406
|
|
|
1383
|
-
_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.233/src/commands/asset/probe/list.ts)_
|
|
1384
1408
|
|
|
1385
1409
|
## `codiac asset recycle`
|
|
1386
1410
|
|
|
@@ -1420,7 +1444,7 @@ DESCRIPTION
|
|
|
1420
1444
|
Deploys a given asset to a given cabinet. Defaults to current version.
|
|
1421
1445
|
```
|
|
1422
1446
|
|
|
1423
|
-
_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.233/src/commands/asset/recycle.ts)_
|
|
1424
1448
|
|
|
1425
1449
|
## `codiac asset undeploy`
|
|
1426
1450
|
|
|
@@ -1464,7 +1488,7 @@ EXAMPLES
|
|
|
1464
1488
|
$ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
|
|
1465
1489
|
```
|
|
1466
1490
|
|
|
1467
|
-
_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.233/src/commands/asset/undeploy.ts)_
|
|
1468
1492
|
|
|
1469
1493
|
## `codiac asset view [CMD]`
|
|
1470
1494
|
|
|
@@ -1519,7 +1543,7 @@ ALIASES
|
|
|
1519
1543
|
$ codiac asset get
|
|
1520
1544
|
```
|
|
1521
1545
|
|
|
1522
|
-
_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.233/src/commands/asset/view.ts)_
|
|
1523
1547
|
|
|
1524
1548
|
## `codiac asset vol add [MOUNTPATH]`
|
|
1525
1549
|
|
|
@@ -1790,7 +1814,7 @@ ALIASES
|
|
|
1790
1814
|
$ codiac asset volume add
|
|
1791
1815
|
```
|
|
1792
1816
|
|
|
1793
|
-
_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.233/src/commands/asset/volume/create.ts)_
|
|
1794
1818
|
|
|
1795
1819
|
## `codiac asset volume del`
|
|
1796
1820
|
|
|
@@ -1878,7 +1902,7 @@ EXAMPLES
|
|
|
1878
1902
|
$ codiac asset volume delete -e myEnterprise -n myMount --to-script
|
|
1879
1903
|
```
|
|
1880
1904
|
|
|
1881
|
-
_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.233/src/commands/asset/volume/delete.ts)_
|
|
1882
1906
|
|
|
1883
1907
|
## `codiac asset volume list`
|
|
1884
1908
|
|
|
@@ -1927,7 +1951,7 @@ EXAMPLES
|
|
|
1927
1951
|
$ codiac asset volume list -e myEnterprise --silent
|
|
1928
1952
|
```
|
|
1929
1953
|
|
|
1930
|
-
_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.233/src/commands/asset/volume/list.ts)_
|
|
1931
1955
|
|
|
1932
1956
|
## `codiac asset volumes del`
|
|
1933
1957
|
|
|
@@ -2094,7 +2118,7 @@ EXAMPLES
|
|
|
2094
2118
|
$ codiac asset where -e main -a my-api --silent
|
|
2095
2119
|
```
|
|
2096
2120
|
|
|
2097
|
-
_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.233/src/commands/asset/where.ts)_
|
|
2098
2122
|
|
|
2099
2123
|
## `codiac auth cab allow`
|
|
2100
2124
|
|
|
@@ -2256,7 +2280,7 @@ EXAMPLES
|
|
|
2256
2280
|
$ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
|
|
2257
2281
|
```
|
|
2258
2282
|
|
|
2259
|
-
_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.233/src/commands/auth/cabinet/allow.ts)_
|
|
2260
2284
|
|
|
2261
2285
|
## `codiac auth cabinet allowed`
|
|
2262
2286
|
|
|
@@ -2304,7 +2328,7 @@ EXAMPLES
|
|
|
2304
2328
|
$ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
|
|
2305
2329
|
```
|
|
2306
2330
|
|
|
2307
|
-
_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.233/src/commands/auth/cabinet/allowed.ts)_
|
|
2308
2332
|
|
|
2309
2333
|
## `codiac auth ent allow`
|
|
2310
2334
|
|
|
@@ -2495,7 +2519,7 @@ EXAMPLES
|
|
|
2495
2519
|
$ codiac auth enterprise allow -r deployer -p none
|
|
2496
2520
|
```
|
|
2497
2521
|
|
|
2498
|
-
_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.233/src/commands/auth/enterprise/allow.ts)_
|
|
2499
2523
|
|
|
2500
2524
|
## `codiac auth enterprise allow onEnvironments`
|
|
2501
2525
|
|
|
@@ -2549,7 +2573,7 @@ EXAMPLES
|
|
|
2549
2573
|
$ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
|
|
2550
2574
|
```
|
|
2551
2575
|
|
|
2552
|
-
_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.233/src/commands/auth/enterprise/allow/onEnvironments.ts)_
|
|
2553
2577
|
|
|
2554
2578
|
## `codiac auth enterprise allowed`
|
|
2555
2579
|
|
|
@@ -2590,7 +2614,7 @@ EXAMPLES
|
|
|
2590
2614
|
$ codiac auth enterprise allowed --enterprise modeling
|
|
2591
2615
|
```
|
|
2592
2616
|
|
|
2593
|
-
_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.233/src/commands/auth/enterprise/allowed.ts)_
|
|
2594
2618
|
|
|
2595
2619
|
## `codiac auth env allowed`
|
|
2596
2620
|
|
|
@@ -2797,7 +2821,7 @@ EXAMPLES
|
|
|
2797
2821
|
$ codiac auth environment allow -e qa -r productmanager -p read
|
|
2798
2822
|
```
|
|
2799
2823
|
|
|
2800
|
-
_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.233/src/commands/auth/environment/allow.ts)_
|
|
2801
2825
|
|
|
2802
2826
|
## `codiac auth environment allow onCabinets`
|
|
2803
2827
|
|
|
@@ -2854,7 +2878,7 @@ EXAMPLES
|
|
|
2854
2878
|
$ codiac auth environment allow onCabinets -e qa -r productmanager -p read
|
|
2855
2879
|
```
|
|
2856
2880
|
|
|
2857
|
-
_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.233/src/commands/auth/environment/allow/onCabinets.ts)_
|
|
2858
2882
|
|
|
2859
2883
|
## `codiac auth environment allowed`
|
|
2860
2884
|
|
|
@@ -2899,7 +2923,7 @@ EXAMPLES
|
|
|
2899
2923
|
$ codiac auth environment allowed --enterprise modeling -e dev
|
|
2900
2924
|
```
|
|
2901
2925
|
|
|
2902
|
-
_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.233/src/commands/auth/environment/allowed.ts)_
|
|
2903
2927
|
|
|
2904
2928
|
## `codiac auth register`
|
|
2905
2929
|
|
|
@@ -2945,7 +2969,7 @@ EXAMPLES
|
|
|
2945
2969
|
$ codiac auth register
|
|
2946
2970
|
```
|
|
2947
2971
|
|
|
2948
|
-
_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.233/src/commands/auth/register.ts)_
|
|
2949
2973
|
|
|
2950
2974
|
## `codiac auth role allowed [NAME]`
|
|
2951
2975
|
|
|
@@ -2992,7 +3016,7 @@ EXAMPLES
|
|
|
2992
3016
|
$ codiac auth role allowed -n deployer -e main
|
|
2993
3017
|
```
|
|
2994
3018
|
|
|
2995
|
-
_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.233/src/commands/auth/role/allowed.ts)_
|
|
2996
3020
|
|
|
2997
3021
|
## `codiac auth role assign`
|
|
2998
3022
|
|
|
@@ -3024,7 +3048,7 @@ EXAMPLES
|
|
|
3024
3048
|
$ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
|
|
3025
3049
|
```
|
|
3026
3050
|
|
|
3027
|
-
_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.233/src/commands/auth/role/assign.ts)_
|
|
3028
3052
|
|
|
3029
3053
|
## `codiac auth role create [NAME]`
|
|
3030
3054
|
|
|
@@ -3057,7 +3081,7 @@ EXAMPLES
|
|
|
3057
3081
|
$ codiac auth role create -n deployer
|
|
3058
3082
|
```
|
|
3059
3083
|
|
|
3060
|
-
_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.233/src/commands/auth/role/create.ts)_
|
|
3061
3085
|
|
|
3062
3086
|
## `codiac auth role delete [NAME]`
|
|
3063
3087
|
|
|
@@ -3093,7 +3117,7 @@ EXAMPLES
|
|
|
3093
3117
|
$ codiac auth role delete --id abc123def456
|
|
3094
3118
|
```
|
|
3095
3119
|
|
|
3096
|
-
_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.233/src/commands/auth/role/delete.ts)_
|
|
3097
3121
|
|
|
3098
3122
|
## `codiac auth role list`
|
|
3099
3123
|
|
|
@@ -3129,7 +3153,7 @@ EXAMPLES
|
|
|
3129
3153
|
$ codiac auth role list -o yaml > roles.yaml
|
|
3130
3154
|
```
|
|
3131
3155
|
|
|
3132
|
-
_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.233/src/commands/auth/role/list.ts)_
|
|
3133
3157
|
|
|
3134
3158
|
## `codiac auth role unassign`
|
|
3135
3159
|
|
|
@@ -3161,7 +3185,7 @@ EXAMPLES
|
|
|
3161
3185
|
$ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
|
|
3162
3186
|
```
|
|
3163
3187
|
|
|
3164
|
-
_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.233/src/commands/auth/role/unassign.ts)_
|
|
3165
3189
|
|
|
3166
3190
|
## `codiac auth user invite`
|
|
3167
3191
|
|
|
@@ -3201,7 +3225,7 @@ EXAMPLES
|
|
|
3201
3225
|
$ codiac auth user invite
|
|
3202
3226
|
```
|
|
3203
3227
|
|
|
3204
|
-
_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.233/src/commands/auth/user/invite.ts)_
|
|
3205
3229
|
|
|
3206
3230
|
## `codiac auth user list`
|
|
3207
3231
|
|
|
@@ -3237,7 +3261,7 @@ EXAMPLES
|
|
|
3237
3261
|
$ codiac auth user list -o yaml > users.yaml
|
|
3238
3262
|
```
|
|
3239
3263
|
|
|
3240
|
-
_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.233/src/commands/auth/user/list.ts)_
|
|
3241
3265
|
|
|
3242
3266
|
## `codiac autocomplete [SHELL]`
|
|
3243
3267
|
|
|
@@ -3287,7 +3311,7 @@ DESCRIPTION
|
|
|
3287
3311
|
Creates a new branch for the parent project and any sourced dependencies.
|
|
3288
3312
|
```
|
|
3289
3313
|
|
|
3290
|
-
_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.233/src/commands/branch.ts)_
|
|
3291
3315
|
|
|
3292
3316
|
## `codiac branch current`
|
|
3293
3317
|
|
|
@@ -3307,7 +3331,7 @@ ALIASES
|
|
|
3307
3331
|
$ codiac branches current
|
|
3308
3332
|
```
|
|
3309
3333
|
|
|
3310
|
-
_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.233/src/commands/branch/current.ts)_
|
|
3311
3335
|
|
|
3312
3336
|
## `codiac branch list`
|
|
3313
3337
|
|
|
@@ -3329,7 +3353,7 @@ ALIASES
|
|
|
3329
3353
|
$ codiac branches list
|
|
3330
3354
|
```
|
|
3331
3355
|
|
|
3332
|
-
_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.233/src/commands/branch/list.ts)_
|
|
3333
3357
|
|
|
3334
3358
|
## `codiac branches current`
|
|
3335
3359
|
|
|
@@ -3419,7 +3443,7 @@ DESCRIPTION
|
|
|
3419
3443
|
Builds the project and the docker container
|
|
3420
3444
|
```
|
|
3421
3445
|
|
|
3422
|
-
_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.233/src/commands/build.ts)_
|
|
3423
3447
|
|
|
3424
3448
|
## `codiac cab attach`
|
|
3425
3449
|
|
|
@@ -4168,7 +4192,7 @@ EXAMPLES
|
|
|
4168
4192
|
prod-cluster-1 --to-script
|
|
4169
4193
|
```
|
|
4170
4194
|
|
|
4171
|
-
_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.233/src/commands/cabinet/cluster/attach.ts)_
|
|
4172
4196
|
|
|
4173
4197
|
## `codiac cabinet contents`
|
|
4174
4198
|
|
|
@@ -4212,7 +4236,7 @@ EXAMPLES
|
|
|
4212
4236
|
$ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
|
|
4213
4237
|
```
|
|
4214
4238
|
|
|
4215
|
-
_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.233/src/commands/cabinet/contents.ts)_
|
|
4216
4240
|
|
|
4217
4241
|
## `codiac cabinet create [CABINET]`
|
|
4218
4242
|
|
|
@@ -4279,7 +4303,7 @@ EXAMPLES
|
|
|
4279
4303
|
cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
|
|
4280
4304
|
```
|
|
4281
4305
|
|
|
4282
|
-
_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.233/src/commands/cabinet/create.ts)_
|
|
4283
4307
|
|
|
4284
4308
|
## `codiac cabinet define [CABINET]`
|
|
4285
4309
|
|
|
@@ -4341,7 +4365,7 @@ EXAMPLES
|
|
|
4341
4365
|
$ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
|
|
4342
4366
|
```
|
|
4343
4367
|
|
|
4344
|
-
_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.233/src/commands/cabinet/define.ts)_
|
|
4345
4369
|
|
|
4346
4370
|
## `codiac cabinet destroy [CABINET]`
|
|
4347
4371
|
|
|
@@ -4399,7 +4423,7 @@ EXAMPLES
|
|
|
4399
4423
|
--environment dev --silent
|
|
4400
4424
|
```
|
|
4401
4425
|
|
|
4402
|
-
_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.233/src/commands/cabinet/destroy.ts)_
|
|
4403
4427
|
|
|
4404
4428
|
## `codiac cabinet detach [CABINET]`
|
|
4405
4429
|
|
|
@@ -4456,7 +4480,7 @@ EXAMPLES
|
|
|
4456
4480
|
main --environment dev
|
|
4457
4481
|
```
|
|
4458
4482
|
|
|
4459
|
-
_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.233/src/commands/cabinet/detach.ts)_
|
|
4460
4484
|
|
|
4461
4485
|
## `codiac cabinet forget [CABINET]`
|
|
4462
4486
|
|
|
@@ -4511,7 +4535,7 @@ EXAMPLES
|
|
|
4511
4535
|
$ codiac cabinet forget --to-script
|
|
4512
4536
|
```
|
|
4513
4537
|
|
|
4514
|
-
_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.233/src/commands/cabinet/forget.ts)_
|
|
4515
4539
|
|
|
4516
4540
|
## `codiac cabinet list`
|
|
4517
4541
|
|
|
@@ -4562,7 +4586,7 @@ EXAMPLES
|
|
|
4562
4586
|
$ codiac cabinet list -e myEnterprise --silent
|
|
4563
4587
|
```
|
|
4564
4588
|
|
|
4565
|
-
_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.233/src/commands/cabinet/list.ts)_
|
|
4566
4590
|
|
|
4567
4591
|
## `codiac cabinet obliterate [CABINET]`
|
|
4568
4592
|
|
|
@@ -4604,7 +4628,7 @@ ALIASES
|
|
|
4604
4628
|
$ codiac infrx cab obliterate
|
|
4605
4629
|
```
|
|
4606
4630
|
|
|
4607
|
-
_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.233/src/commands/cabinet/obliterate.ts)_
|
|
4608
4632
|
|
|
4609
4633
|
## `codiac cabinet restore`
|
|
4610
4634
|
|
|
@@ -4671,7 +4695,7 @@ EXAMPLES
|
|
|
4671
4695
|
$ codiac cabinet restore --cluster prod-cluster-1 --to-script
|
|
4672
4696
|
```
|
|
4673
4697
|
|
|
4674
|
-
_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.233/src/commands/cabinet/restore.ts)_
|
|
4675
4699
|
|
|
4676
4700
|
## `codiac cfg add`
|
|
4677
4701
|
|
|
@@ -4958,7 +4982,7 @@ DESCRIPTION
|
|
|
4958
4982
|
Applies settings to the Codiac CLI itself (scoped to the local machine).
|
|
4959
4983
|
```
|
|
4960
4984
|
|
|
4961
|
-
_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.233/src/commands/cli.ts)_
|
|
4962
4986
|
|
|
4963
4987
|
## `codiac cluster agent configure [CLUSTER]`
|
|
4964
4988
|
|
|
@@ -5026,7 +5050,7 @@ EXAMPLES
|
|
|
5026
5050
|
$ codiac cluster agent configure my-cluster --to-script
|
|
5027
5051
|
```
|
|
5028
5052
|
|
|
5029
|
-
_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.233/src/commands/cluster/agent/configure.ts)_
|
|
5030
5054
|
|
|
5031
5055
|
## `codiac cluster agent install [CLUSTER]`
|
|
5032
5056
|
|
|
@@ -5082,7 +5106,7 @@ EXAMPLES
|
|
|
5082
5106
|
$ codiac cluster agent install my-cluster --to-script
|
|
5083
5107
|
```
|
|
5084
5108
|
|
|
5085
|
-
_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.233/src/commands/cluster/agent/install.ts)_
|
|
5086
5110
|
|
|
5087
5111
|
## `codiac cluster agent uninstall [CLUSTER]`
|
|
5088
5112
|
|
|
@@ -5130,7 +5154,7 @@ EXAMPLES
|
|
|
5130
5154
|
$ codiac cluster agent uninstall my-cluster --to-script
|
|
5131
5155
|
```
|
|
5132
5156
|
|
|
5133
|
-
_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.233/src/commands/cluster/agent/uninstall.ts)_
|
|
5134
5158
|
|
|
5135
5159
|
## `codiac cluster bootstrap [NAME]`
|
|
5136
5160
|
|
|
@@ -5193,7 +5217,7 @@ EXAMPLES
|
|
|
5193
5217
|
$ codiac cluster bootstrap my-cluster --to-script
|
|
5194
5218
|
```
|
|
5195
5219
|
|
|
5196
|
-
_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.233/src/commands/cluster/bootstrap.ts)_
|
|
5197
5221
|
|
|
5198
5222
|
## `codiac cluster capture`
|
|
5199
5223
|
|
|
@@ -5278,7 +5302,7 @@ EXAMPLES
|
|
|
5278
5302
|
$ codiac cluster connect my-fav-cluster
|
|
5279
5303
|
```
|
|
5280
5304
|
|
|
5281
|
-
_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.233/src/commands/cluster/connect.ts)_
|
|
5282
5306
|
|
|
5283
5307
|
## `codiac cluster contents`
|
|
5284
5308
|
|
|
@@ -5943,7 +5967,7 @@ EXAMPLES
|
|
|
5943
5967
|
$ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
|
|
5944
5968
|
```
|
|
5945
5969
|
|
|
5946
|
-
_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.233/src/commands/cluster/install.ts)_
|
|
5947
5971
|
|
|
5948
5972
|
## `codiac cluster journal [CLUSTER]`
|
|
5949
5973
|
|
|
@@ -6232,7 +6256,7 @@ EXAMPLES
|
|
|
6232
6256
|
$ codiac cluster stack capture my-fav-cluster
|
|
6233
6257
|
```
|
|
6234
6258
|
|
|
6235
|
-
_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.233/src/commands/cluster/stack/capture.ts)_
|
|
6236
6260
|
|
|
6237
6261
|
## `codiac cluster stack install [CLUSTER]`
|
|
6238
6262
|
|
|
@@ -6284,7 +6308,7 @@ EXAMPLES
|
|
|
6284
6308
|
$ codiac cluster stack install my-cluster --to-script
|
|
6285
6309
|
```
|
|
6286
6310
|
|
|
6287
|
-
_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.233/src/commands/cluster/stack/install.ts)_
|
|
6288
6312
|
|
|
6289
6313
|
## `codiac cluster stack list`
|
|
6290
6314
|
|
|
@@ -6450,7 +6474,7 @@ EXAMPLES
|
|
|
6450
6474
|
$ codiac cluster start my-fav-cluster
|
|
6451
6475
|
```
|
|
6452
6476
|
|
|
6453
|
-
_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.233/src/commands/cluster/start.ts)_
|
|
6454
6478
|
|
|
6455
6479
|
## `codiac cluster stop [CLUSTER]`
|
|
6456
6480
|
|
|
@@ -6487,7 +6511,7 @@ EXAMPLES
|
|
|
6487
6511
|
$ codiac cluster start my-fav-cluster
|
|
6488
6512
|
```
|
|
6489
6513
|
|
|
6490
|
-
_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.233/src/commands/cluster/stop.ts)_
|
|
6491
6515
|
|
|
6492
6516
|
## `codiac cluster uninstall`
|
|
6493
6517
|
|
|
@@ -6549,7 +6573,7 @@ DESCRIPTION
|
|
|
6549
6573
|
Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
|
|
6550
6574
|
```
|
|
6551
6575
|
|
|
6552
|
-
_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.233/src/commands/commit.ts)_
|
|
6553
6577
|
|
|
6554
6578
|
## `codiac config add`
|
|
6555
6579
|
|
|
@@ -6689,7 +6713,7 @@ EXAMPLES
|
|
|
6689
6713
|
--escape-expressions
|
|
6690
6714
|
```
|
|
6691
6715
|
|
|
6692
|
-
_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.233/src/commands/config/add.ts)_
|
|
6693
6717
|
|
|
6694
6718
|
## `codiac config delete [SETTING]`
|
|
6695
6719
|
|
|
@@ -6758,7 +6782,7 @@ ALIASES
|
|
|
6758
6782
|
$ codiac cfg delete
|
|
6759
6783
|
```
|
|
6760
6784
|
|
|
6761
|
-
_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.233/src/commands/config/delete.ts)_
|
|
6762
6786
|
|
|
6763
6787
|
## `codiac config deploy`
|
|
6764
6788
|
|
|
@@ -6799,7 +6823,7 @@ EXAMPLES
|
|
|
6799
6823
|
$ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
|
|
6800
6824
|
```
|
|
6801
6825
|
|
|
6802
|
-
_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.233/src/commands/config/deploy.ts)_
|
|
6803
6827
|
|
|
6804
6828
|
## `codiac config import`
|
|
6805
6829
|
|
|
@@ -6860,7 +6884,7 @@ EXAMPLES
|
|
|
6860
6884
|
$ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
|
|
6861
6885
|
```
|
|
6862
6886
|
|
|
6863
|
-
_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.233/src/commands/config/import.ts)_
|
|
6864
6888
|
|
|
6865
6889
|
## `codiac config preview [SETTING]`
|
|
6866
6890
|
|
|
@@ -7131,7 +7155,7 @@ DESCRIPTION
|
|
|
7131
7155
|
Shows the list of clusters.
|
|
7132
7156
|
```
|
|
7133
7157
|
|
|
7134
|
-
_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.233/src/commands/config/settings/get.ts)_
|
|
7135
7159
|
|
|
7136
7160
|
## `codiac config view [SETTING]`
|
|
7137
7161
|
|
|
@@ -7196,7 +7220,7 @@ EXAMPLES
|
|
|
7196
7220
|
$ codiac config view -e myEnterprise -a myApi -c dev --to-script
|
|
7197
7221
|
```
|
|
7198
7222
|
|
|
7199
|
-
_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.233/src/commands/config/view.ts)_
|
|
7200
7224
|
|
|
7201
7225
|
## `codiac csp creds list`
|
|
7202
7226
|
|
|
@@ -7244,7 +7268,7 @@ EXAMPLES
|
|
|
7244
7268
|
$ codiac csp creds list
|
|
7245
7269
|
```
|
|
7246
7270
|
|
|
7247
|
-
_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.233/src/commands/csp/creds/list.ts)_
|
|
7248
7272
|
|
|
7249
7273
|
## `codiac csp login [PROVIDER]`
|
|
7250
7274
|
|
|
@@ -7322,7 +7346,7 @@ EXAMPLES
|
|
|
7322
7346
|
cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
|
|
7323
7347
|
```
|
|
7324
7348
|
|
|
7325
|
-
_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.233/src/commands/csp/login.ts)_
|
|
7326
7350
|
|
|
7327
7351
|
## `codiac csp logout [PROVIDER]`
|
|
7328
7352
|
|
|
@@ -7369,7 +7393,7 @@ EXAMPLES
|
|
|
7369
7393
|
$ codiac csp logout azure --to-script
|
|
7370
7394
|
```
|
|
7371
7395
|
|
|
7372
|
-
_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.233/src/commands/csp/logout.ts)_
|
|
7373
7397
|
|
|
7374
7398
|
## `codiac dep [NAME]`
|
|
7375
7399
|
|
|
@@ -7390,7 +7414,7 @@ DESCRIPTION
|
|
|
7390
7414
|
Installs a package into current project.
|
|
7391
7415
|
```
|
|
7392
7416
|
|
|
7393
|
-
_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.233/src/commands/dep.ts)_
|
|
7394
7418
|
|
|
7395
7419
|
## `codiac dep create [URL]`
|
|
7396
7420
|
|
|
@@ -7414,7 +7438,7 @@ DESCRIPTION
|
|
|
7414
7438
|
package version is used.
|
|
7415
7439
|
```
|
|
7416
7440
|
|
|
7417
|
-
_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.233/src/commands/dep/create.ts)_
|
|
7418
7442
|
|
|
7419
7443
|
## `codiac dep install`
|
|
7420
7444
|
|
|
@@ -7431,7 +7455,7 @@ DESCRIPTION
|
|
|
7431
7455
|
installs any missing dependency packages into the local project folder.
|
|
7432
7456
|
```
|
|
7433
7457
|
|
|
7434
|
-
_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.233/src/commands/dep/install.ts)_
|
|
7435
7459
|
|
|
7436
7460
|
## `codiac dep list`
|
|
7437
7461
|
|
|
@@ -7448,7 +7472,7 @@ DESCRIPTION
|
|
|
7448
7472
|
Shows the dependencies for the project.
|
|
7449
7473
|
```
|
|
7450
7474
|
|
|
7451
|
-
_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.233/src/commands/dep/list.ts)_
|
|
7452
7476
|
|
|
7453
7477
|
## `codiac dep remove [NAME]`
|
|
7454
7478
|
|
|
@@ -7471,7 +7495,7 @@ DESCRIPTION
|
|
|
7471
7495
|
Removes a dependency from the project.
|
|
7472
7496
|
```
|
|
7473
7497
|
|
|
7474
|
-
_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.233/src/commands/dep/remove.ts)_
|
|
7475
7499
|
|
|
7476
7500
|
## `codiac dep source [NAME]`
|
|
7477
7501
|
|
|
@@ -7497,7 +7521,7 @@ ALIASES
|
|
|
7497
7521
|
$ codiac dep src
|
|
7498
7522
|
```
|
|
7499
7523
|
|
|
7500
|
-
_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.233/src/commands/dep/source.ts)_
|
|
7501
7525
|
|
|
7502
7526
|
## `codiac dep src [NAME]`
|
|
7503
7527
|
|
|
@@ -7541,7 +7565,7 @@ DESCRIPTION
|
|
|
7541
7565
|
Publishes the dependency in its current state and upgrades to it in the main project.
|
|
7542
7566
|
```
|
|
7543
7567
|
|
|
7544
|
-
_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.233/src/commands/dep/syncup.ts)_
|
|
7545
7569
|
|
|
7546
7570
|
## `codiac dep unsource [NAME]`
|
|
7547
7571
|
|
|
@@ -7569,7 +7593,7 @@ ALIASES
|
|
|
7569
7593
|
$ codiac dep unsrc
|
|
7570
7594
|
```
|
|
7571
7595
|
|
|
7572
|
-
_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.233/src/commands/dep/unsource.ts)_
|
|
7573
7597
|
|
|
7574
7598
|
## `codiac dep unsrc [NAME]`
|
|
7575
7599
|
|
|
@@ -7616,7 +7640,7 @@ DESCRIPTION
|
|
|
7616
7640
|
describe the command here
|
|
7617
7641
|
```
|
|
7618
7642
|
|
|
7619
|
-
_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.233/src/commands/dep/upgrade.ts)_
|
|
7620
7644
|
|
|
7621
7645
|
## `codiac deploy`
|
|
7622
7646
|
|
|
@@ -7669,7 +7693,7 @@ EXAMPLES
|
|
|
7669
7693
|
$ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
|
|
7670
7694
|
```
|
|
7671
7695
|
|
|
7672
|
-
_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.233/src/commands/deploy.ts)_
|
|
7673
7697
|
|
|
7674
7698
|
## `codiac domain map [DOMAIN]`
|
|
7675
7699
|
|
|
@@ -7825,7 +7849,7 @@ EXAMPLES
|
|
|
7825
7849
|
cod enterprise create my-enterprise-code --silent
|
|
7826
7850
|
```
|
|
7827
7851
|
|
|
7828
|
-
_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.233/src/commands/enterprise/create.ts)_
|
|
7829
7853
|
|
|
7830
7854
|
## `codiac enterprise list`
|
|
7831
7855
|
|
|
@@ -7880,7 +7904,7 @@ EXAMPLES
|
|
|
7880
7904
|
$ codiac enterprise list --to-script
|
|
7881
7905
|
```
|
|
7882
7906
|
|
|
7883
|
-
_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.233/src/commands/enterprise/list.ts)_
|
|
7884
7908
|
|
|
7885
7909
|
## `codiac env add [SETTING]`
|
|
7886
7910
|
|
|
@@ -7930,7 +7954,7 @@ EXAMPLES
|
|
|
7930
7954
|
$ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
|
|
7931
7955
|
```
|
|
7932
7956
|
|
|
7933
|
-
_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.233/src/commands/env/add.ts)_
|
|
7934
7958
|
|
|
7935
7959
|
## `codiac enviro cluster attach`
|
|
7936
7960
|
|
|
@@ -8233,7 +8257,7 @@ ALIASES
|
|
|
8233
8257
|
$ codiac infrx enviro cluster attach
|
|
8234
8258
|
```
|
|
8235
8259
|
|
|
8236
|
-
_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.233/src/commands/environment/cluster/attach.ts)_
|
|
8237
8261
|
|
|
8238
8262
|
## `codiac environment cluster detach`
|
|
8239
8263
|
|
|
@@ -8279,7 +8303,7 @@ ALIASES
|
|
|
8279
8303
|
$ codiac infrx enviro cluster detach
|
|
8280
8304
|
```
|
|
8281
8305
|
|
|
8282
|
-
_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.233/src/commands/environment/cluster/detach.ts)_
|
|
8283
8307
|
|
|
8284
8308
|
## `codiac environment create [NAME]`
|
|
8285
8309
|
|
|
@@ -8342,7 +8366,7 @@ EXAMPLES
|
|
|
8342
8366
|
cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
|
|
8343
8367
|
```
|
|
8344
8368
|
|
|
8345
|
-
_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.233/src/commands/environment/create.ts)_
|
|
8346
8370
|
|
|
8347
8371
|
## `codiac environment delete [NAME]`
|
|
8348
8372
|
|
|
@@ -8403,7 +8427,7 @@ EXAMPLES
|
|
|
8403
8427
|
$ codiac environment delete dev --enterprise main --to-script
|
|
8404
8428
|
```
|
|
8405
8429
|
|
|
8406
|
-
_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.233/src/commands/environment/delete.ts)_
|
|
8407
8431
|
|
|
8408
8432
|
## `codiac environment list`
|
|
8409
8433
|
|
|
@@ -8454,7 +8478,7 @@ EXAMPLES
|
|
|
8454
8478
|
$ codiac environment list -e myEnterprise --silent
|
|
8455
8479
|
```
|
|
8456
8480
|
|
|
8457
|
-
_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.233/src/commands/environment/list.ts)_
|
|
8458
8482
|
|
|
8459
8483
|
## `codiac fileshare capture`
|
|
8460
8484
|
|
|
@@ -8538,7 +8562,7 @@ ALIASES
|
|
|
8538
8562
|
$ codiac fileshare capture
|
|
8539
8563
|
```
|
|
8540
8564
|
|
|
8541
|
-
_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.233/src/commands/filestore/capture.ts)_
|
|
8542
8566
|
|
|
8543
8567
|
## `codiac filestore forget`
|
|
8544
8568
|
|
|
@@ -8585,7 +8609,7 @@ EXAMPLES
|
|
|
8585
8609
|
$ codiac filestore forget
|
|
8586
8610
|
```
|
|
8587
8611
|
|
|
8588
|
-
_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.233/src/commands/filestore/forget.ts)_
|
|
8589
8613
|
|
|
8590
8614
|
## `codiac filestore list`
|
|
8591
8615
|
|
|
@@ -8631,7 +8655,7 @@ EXAMPLES
|
|
|
8631
8655
|
$ codiac filestore list
|
|
8632
8656
|
```
|
|
8633
8657
|
|
|
8634
|
-
_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.233/src/commands/filestore/list.ts)_
|
|
8635
8659
|
|
|
8636
8660
|
## `codiac help [COMMANDS]`
|
|
8637
8661
|
|
|
@@ -8717,7 +8741,7 @@ EXAMPLES
|
|
|
8717
8741
|
$ codiac host delete
|
|
8718
8742
|
```
|
|
8719
8743
|
|
|
8720
|
-
_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.233/src/commands/host/delete.ts)_
|
|
8721
8745
|
|
|
8722
8746
|
## `codiac host list [DOMAIN]`
|
|
8723
8747
|
|
|
@@ -8761,7 +8785,7 @@ EXAMPLES
|
|
|
8761
8785
|
$ codiac host list
|
|
8762
8786
|
```
|
|
8763
8787
|
|
|
8764
|
-
_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.233/src/commands/host/list.ts)_
|
|
8765
8789
|
|
|
8766
8790
|
## `codiac host map [DOMAIN]`
|
|
8767
8791
|
|
|
@@ -8815,7 +8839,7 @@ EXAMPLES
|
|
|
8815
8839
|
$ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
|
|
8816
8840
|
```
|
|
8817
8841
|
|
|
8818
|
-
_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.233/src/commands/host/map.ts)_
|
|
8819
8843
|
|
|
8820
8844
|
## `codiac host view [DOMAIN]`
|
|
8821
8845
|
|
|
@@ -8860,7 +8884,7 @@ EXAMPLES
|
|
|
8860
8884
|
$ codiac host view
|
|
8861
8885
|
```
|
|
8862
8886
|
|
|
8863
|
-
_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.233/src/commands/host/view.ts)_
|
|
8864
8888
|
|
|
8865
8889
|
## `codiac identify [TOKENNAME]`
|
|
8866
8890
|
|
|
@@ -8932,7 +8956,7 @@ ALIASES
|
|
|
8932
8956
|
$ codiac token
|
|
8933
8957
|
```
|
|
8934
8958
|
|
|
8935
|
-
_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.233/src/commands/identity.ts)_
|
|
8936
8960
|
|
|
8937
8961
|
## `codiac identity delete [NAME]`
|
|
8938
8962
|
|
|
@@ -8957,7 +8981,7 @@ ALIASES
|
|
|
8957
8981
|
$ codiac token remove
|
|
8958
8982
|
```
|
|
8959
8983
|
|
|
8960
|
-
_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.233/src/commands/identity/delete.ts)_
|
|
8961
8985
|
|
|
8962
8986
|
## `codiac identity list`
|
|
8963
8987
|
|
|
@@ -8979,7 +9003,7 @@ ALIASES
|
|
|
8979
9003
|
$ codiac token list
|
|
8980
9004
|
```
|
|
8981
9005
|
|
|
8982
|
-
_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.233/src/commands/identity/list.ts)_
|
|
8983
9007
|
|
|
8984
9008
|
## `codiac identity remove [NAME]`
|
|
8985
9009
|
|
|
@@ -9300,7 +9324,7 @@ DESCRIPTION
|
|
|
9300
9324
|
Saves a reference to an existing container registry.
|
|
9301
9325
|
```
|
|
9302
9326
|
|
|
9303
|
-
_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.233/src/commands/imageRegistry/capture.ts)_
|
|
9304
9328
|
|
|
9305
9329
|
## `codiac imageRegistry forget`
|
|
9306
9330
|
|
|
@@ -9321,7 +9345,7 @@ DESCRIPTION
|
|
|
9321
9345
|
Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
|
|
9322
9346
|
```
|
|
9323
9347
|
|
|
9324
|
-
_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.233/src/commands/imageRegistry/forget.ts)_
|
|
9325
9349
|
|
|
9326
9350
|
## `codiac imageRegistry list`
|
|
9327
9351
|
|
|
@@ -9363,7 +9387,7 @@ EXAMPLES
|
|
|
9363
9387
|
$ codiac imageRegistry list -o yaml > registries.yaml
|
|
9364
9388
|
```
|
|
9365
9389
|
|
|
9366
|
-
_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.233/src/commands/imageRegistry/list.ts)_
|
|
9367
9391
|
|
|
9368
9392
|
## `codiac imageRegistry pullSecret set`
|
|
9369
9393
|
|
|
@@ -9399,7 +9423,7 @@ ALIASES
|
|
|
9399
9423
|
$ codiac pullsecret
|
|
9400
9424
|
```
|
|
9401
9425
|
|
|
9402
|
-
_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.233/src/commands/imageRegistry/pullSecret/set.ts)_
|
|
9403
9427
|
|
|
9404
9428
|
## `codiac imageRegistry pullSecret unset`
|
|
9405
9429
|
|
|
@@ -9426,7 +9450,7 @@ ALIASES
|
|
|
9426
9450
|
$ codiac pullsecret unset
|
|
9427
9451
|
```
|
|
9428
9452
|
|
|
9429
|
-
_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.233/src/commands/imageRegistry/pullSecret/unset.ts)_
|
|
9430
9454
|
|
|
9431
9455
|
## `codiac images add [IMAGENAME]`
|
|
9432
9456
|
|
|
@@ -9487,7 +9511,7 @@ EXAMPLES
|
|
|
9487
9511
|
$ codiac images add your-company/your-image --to-script
|
|
9488
9512
|
```
|
|
9489
9513
|
|
|
9490
|
-
_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.233/src/commands/images/add.ts)_
|
|
9491
9515
|
|
|
9492
9516
|
## `codiac images list`
|
|
9493
9517
|
|
|
@@ -9510,7 +9534,7 @@ ALIASES
|
|
|
9510
9534
|
$ codiac img list
|
|
9511
9535
|
```
|
|
9512
9536
|
|
|
9513
|
-
_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.233/src/commands/images/list.ts)_
|
|
9514
9538
|
|
|
9515
9539
|
## `codiac images patch IMAGENAME`
|
|
9516
9540
|
|
|
@@ -9540,7 +9564,7 @@ ALIASES
|
|
|
9540
9564
|
$ codiac img patch
|
|
9541
9565
|
```
|
|
9542
9566
|
|
|
9543
|
-
_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.233/src/commands/images/patch.ts)_
|
|
9544
9568
|
|
|
9545
9569
|
## `codiac images remove IMAGENAME`
|
|
9546
9570
|
|
|
@@ -9566,7 +9590,7 @@ ALIASES
|
|
|
9566
9590
|
$ codiac img delete
|
|
9567
9591
|
```
|
|
9568
9592
|
|
|
9569
|
-
_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.233/src/commands/images/remove.ts)_
|
|
9570
9594
|
|
|
9571
9595
|
## `codiac images version NAME`
|
|
9572
9596
|
|
|
@@ -9592,7 +9616,7 @@ ALIASES
|
|
|
9592
9616
|
$ codiac img version get
|
|
9593
9617
|
```
|
|
9594
9618
|
|
|
9595
|
-
_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.233/src/commands/images/version.ts)_
|
|
9596
9620
|
|
|
9597
9621
|
## `codiac images version bump NAME`
|
|
9598
9622
|
|
|
@@ -9625,7 +9649,7 @@ ALIASES
|
|
|
9625
9649
|
$ codiac img version bump
|
|
9626
9650
|
```
|
|
9627
9651
|
|
|
9628
|
-
_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.233/src/commands/images/version/bump.ts)_
|
|
9629
9653
|
|
|
9630
9654
|
## `codiac img [IMAGENAME]`
|
|
9631
9655
|
|
|
@@ -9903,27 +9927,30 @@ Scans all deployments in the current Kubernetes cluster and generates the Codiac
|
|
|
9903
9927
|
|
|
9904
9928
|
```
|
|
9905
9929
|
USAGE
|
|
9906
|
-
$ codiac import cluster [--run-in-cluster] [--enterprise <value>] [--environment <value>] [--cluster <value>]
|
|
9907
|
-
[--generate-cabinet] [--generate-secret-store] [--generate-pvcs] [--generate-volume-mounts]
|
|
9908
|
-
[--keyvault-name <value>]
|
|
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>]
|
|
9909
9933
|
|
|
9910
9934
|
FLAGS
|
|
9911
|
-
--
|
|
9912
|
-
|
|
9913
|
-
--
|
|
9914
|
-
|
|
9915
|
-
--
|
|
9916
|
-
|
|
9917
|
-
--generate-
|
|
9918
|
-
|
|
9919
|
-
--generate-
|
|
9920
|
-
|
|
9921
|
-
|
|
9922
|
-
|
|
9923
|
-
--
|
|
9924
|
-
|
|
9925
|
-
--
|
|
9926
|
-
|
|
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.
|
|
9927
9954
|
|
|
9928
9955
|
DESCRIPTION
|
|
9929
9956
|
Scans all deployments in the current Kubernetes cluster and generates the Codiac CLI commands to import them.
|
|
@@ -9934,9 +9961,11 @@ EXAMPLES
|
|
|
9934
9961
|
$ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-cabinet --generate-secret-store
|
|
9935
9962
|
|
|
9936
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
|
|
9937
9966
|
```
|
|
9938
9967
|
|
|
9939
|
-
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9968
|
+
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.233/src/commands/import/cluster.ts)_
|
|
9940
9969
|
|
|
9941
9970
|
## `codiac infrx cab create [CABINET]`
|
|
9942
9971
|
|
|
@@ -10781,7 +10810,7 @@ DESCRIPTION
|
|
|
10781
10810
|
Declares the given folder as a project root
|
|
10782
10811
|
```
|
|
10783
10812
|
|
|
10784
|
-
_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.233/src/commands/init.ts)_
|
|
10785
10814
|
|
|
10786
10815
|
## `codiac kit create`
|
|
10787
10816
|
|
|
@@ -10824,7 +10853,7 @@ EXAMPLES
|
|
|
10824
10853
|
$ codiac kit create -e myEnterprise -a myApi --to-script
|
|
10825
10854
|
```
|
|
10826
10855
|
|
|
10827
|
-
_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.233/src/commands/kit/create.ts)_
|
|
10828
10857
|
|
|
10829
10858
|
## `codiac login`
|
|
10830
10859
|
|
|
@@ -10883,7 +10912,7 @@ EXAMPLES
|
|
|
10883
10912
|
$ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
|
|
10884
10913
|
```
|
|
10885
10914
|
|
|
10886
|
-
_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.233/src/commands/login.ts)_
|
|
10887
10916
|
|
|
10888
10917
|
## `codiac logout`
|
|
10889
10918
|
|
|
@@ -10916,7 +10945,7 @@ EXAMPLES
|
|
|
10916
10945
|
$ codiac logout --to-script
|
|
10917
10946
|
```
|
|
10918
10947
|
|
|
10919
|
-
_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.233/src/commands/logout.ts)_
|
|
10920
10949
|
|
|
10921
10950
|
## `codiac merge [BRANCH]`
|
|
10922
10951
|
|
|
@@ -10937,7 +10966,7 @@ DESCRIPTION
|
|
|
10937
10966
|
Merges the given branch into the current branch of the main project and on any sourced dependencies.
|
|
10938
10967
|
```
|
|
10939
10968
|
|
|
10940
|
-
_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.233/src/commands/merge.ts)_
|
|
10941
10970
|
|
|
10942
10971
|
## `codiac noc cluster capture`
|
|
10943
10972
|
|
|
@@ -10989,7 +11018,7 @@ EXAMPLES
|
|
|
10989
11018
|
cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
|
|
10990
11019
|
```
|
|
10991
11020
|
|
|
10992
|
-
_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.233/src/commands/noc/cluster/capture.ts)_
|
|
10993
11022
|
|
|
10994
11023
|
## `codiac noc cluster create [NAME]`
|
|
10995
11024
|
|
|
@@ -11079,7 +11108,7 @@ FLAG DESCRIPTIONS
|
|
|
11079
11108
|
initialization is always skipped in that mode.
|
|
11080
11109
|
```
|
|
11081
11110
|
|
|
11082
|
-
_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.233/src/commands/noc/cluster/create.ts)_
|
|
11083
11112
|
|
|
11084
11113
|
## `codiac noc cluster credentials-set [NAME]`
|
|
11085
11114
|
|
|
@@ -11134,7 +11163,7 @@ EXAMPLES
|
|
|
11134
11163
|
$ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
|
|
11135
11164
|
```
|
|
11136
11165
|
|
|
11137
|
-
_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.233/src/commands/noc/cluster/credentials-set.ts)_
|
|
11138
11167
|
|
|
11139
11168
|
## `codiac noc cluster define [NAME]`
|
|
11140
11169
|
|
|
@@ -11208,7 +11237,7 @@ EXAMPLES
|
|
|
11208
11237
|
$ codiac noc cluster define my-cluster --to-script
|
|
11209
11238
|
```
|
|
11210
11239
|
|
|
11211
|
-
_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.233/src/commands/noc/cluster/define.ts)_
|
|
11212
11241
|
|
|
11213
11242
|
## `codiac noc cluster deinit`
|
|
11214
11243
|
|
|
@@ -11248,7 +11277,7 @@ EXAMPLES
|
|
|
11248
11277
|
$ codiac noc cluster deinit -n my-cluster --to-script
|
|
11249
11278
|
```
|
|
11250
11279
|
|
|
11251
|
-
_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.233/src/commands/noc/cluster/deinit.ts)_
|
|
11252
11281
|
|
|
11253
11282
|
## `codiac noc cluster destroy [NAME]`
|
|
11254
11283
|
|
|
@@ -11282,7 +11311,7 @@ ALIASES
|
|
|
11282
11311
|
$ codiac cluster destroy
|
|
11283
11312
|
```
|
|
11284
11313
|
|
|
11285
|
-
_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.233/src/commands/noc/cluster/destroy.ts)_
|
|
11286
11315
|
|
|
11287
11316
|
## `codiac noc cluster forget`
|
|
11288
11317
|
|
|
@@ -11333,7 +11362,7 @@ EXAMPLES
|
|
|
11333
11362
|
$ codiac noc cluster forget --running
|
|
11334
11363
|
```
|
|
11335
11364
|
|
|
11336
|
-
_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.233/src/commands/noc/cluster/forget.ts)_
|
|
11337
11366
|
|
|
11338
11367
|
## `codiac noc cluster grant`
|
|
11339
11368
|
|
|
@@ -11371,7 +11400,7 @@ EXAMPLES
|
|
|
11371
11400
|
$ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
|
|
11372
11401
|
```
|
|
11373
11402
|
|
|
11374
|
-
_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.233/src/commands/noc/cluster/grant.ts)_
|
|
11375
11404
|
|
|
11376
11405
|
## `codiac noc cluster init`
|
|
11377
11406
|
|
|
@@ -11417,7 +11446,7 @@ EXAMPLES
|
|
|
11417
11446
|
$ codiac noc cluster init -n my-cluster --to-script
|
|
11418
11447
|
```
|
|
11419
11448
|
|
|
11420
|
-
_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.233/src/commands/noc/cluster/init.ts)_
|
|
11421
11450
|
|
|
11422
11451
|
## `codiac noc cluster journal [CLUSTER]`
|
|
11423
11452
|
|
|
@@ -11466,7 +11495,7 @@ EXAMPLES
|
|
|
11466
11495
|
$ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
|
|
11467
11496
|
```
|
|
11468
11497
|
|
|
11469
|
-
_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.233/src/commands/noc/cluster/journal.ts)_
|
|
11470
11499
|
|
|
11471
11500
|
## `codiac noc cluster list`
|
|
11472
11501
|
|
|
@@ -11527,7 +11556,7 @@ EXAMPLES
|
|
|
11527
11556
|
$ codiac noc cluster list -e myEnterprise --to-script
|
|
11528
11557
|
```
|
|
11529
11558
|
|
|
11530
|
-
_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.233/src/commands/noc/cluster/list.ts)_
|
|
11531
11560
|
|
|
11532
11561
|
## `codiac noc cluster restore [NAME]`
|
|
11533
11562
|
|
|
@@ -11587,7 +11616,7 @@ EXAMPLES
|
|
|
11587
11616
|
$ codiac noc cluster restore prod-cluster-1 --to-script
|
|
11588
11617
|
```
|
|
11589
11618
|
|
|
11590
|
-
_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.233/src/commands/noc/cluster/restore.ts)_
|
|
11591
11620
|
|
|
11592
11621
|
## `codiac pkg add [DEFINITIONFILE]`
|
|
11593
11622
|
|
|
@@ -11621,7 +11650,7 @@ DESCRIPTION
|
|
|
11621
11650
|
Configures a package to be built and published by the project.
|
|
11622
11651
|
```
|
|
11623
11652
|
|
|
11624
|
-
_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.233/src/commands/pkg/add.ts)_
|
|
11625
11654
|
|
|
11626
11655
|
## `codiac pkg delete [PACKAGENAME]`
|
|
11627
11656
|
|
|
@@ -11659,7 +11688,7 @@ DESCRIPTION
|
|
|
11659
11688
|
Renders the list of packages that are configured as project exports.
|
|
11660
11689
|
```
|
|
11661
11690
|
|
|
11662
|
-
_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.233/src/commands/pkg/list.ts)_
|
|
11663
11692
|
|
|
11664
11693
|
## `codiac pkg patch PACKAGENAME`
|
|
11665
11694
|
|
|
@@ -11685,7 +11714,7 @@ DESCRIPTION
|
|
|
11685
11714
|
registryUrl and/or environment.
|
|
11686
11715
|
```
|
|
11687
11716
|
|
|
11688
|
-
_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.233/src/commands/pkg/patch.ts)_
|
|
11689
11718
|
|
|
11690
11719
|
## `codiac pkg remove [PACKAGENAME]`
|
|
11691
11720
|
|
|
@@ -11708,7 +11737,7 @@ ALIASES
|
|
|
11708
11737
|
$ codiac pkg delete
|
|
11709
11738
|
```
|
|
11710
11739
|
|
|
11711
|
-
_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.233/src/commands/pkg/remove.ts)_
|
|
11712
11741
|
|
|
11713
11742
|
## `codiac portal`
|
|
11714
11743
|
|
|
@@ -11741,7 +11770,7 @@ EXAMPLES
|
|
|
11741
11770
|
$ codiac portal --to-script
|
|
11742
11771
|
```
|
|
11743
11772
|
|
|
11744
|
-
_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.233/src/commands/portal.ts)_
|
|
11745
11774
|
|
|
11746
11775
|
## `codiac probe create [CMD]`
|
|
11747
11776
|
|
|
@@ -11862,7 +11891,7 @@ DESCRIPTION
|
|
|
11862
11891
|
Publishes the exports (packages and images) declared in the ProjectConfig.
|
|
11863
11892
|
```
|
|
11864
11893
|
|
|
11865
|
-
_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.233/src/commands/publish.ts)_
|
|
11866
11895
|
|
|
11867
11896
|
## `codiac pull [NAME]`
|
|
11868
11897
|
|
|
@@ -11886,7 +11915,7 @@ DESCRIPTION
|
|
|
11886
11915
|
Pulls all commits from upstream to local.
|
|
11887
11916
|
```
|
|
11888
11917
|
|
|
11889
|
-
_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.233/src/commands/pull.ts)_
|
|
11890
11919
|
|
|
11891
11920
|
## `codiac pullsecret`
|
|
11892
11921
|
|
|
@@ -11969,7 +11998,7 @@ DESCRIPTION
|
|
|
11969
11998
|
Pushes all local commits upstream.
|
|
11970
11999
|
```
|
|
11971
12000
|
|
|
11972
|
-
_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.233/src/commands/push.ts)_
|
|
11973
12002
|
|
|
11974
12003
|
## `codiac pvc create`
|
|
11975
12004
|
|
|
@@ -12053,7 +12082,7 @@ EXAMPLES
|
|
|
12053
12082
|
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
|
|
12054
12083
|
```
|
|
12055
12084
|
|
|
12056
|
-
_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.233/src/commands/pvc/create.ts)_
|
|
12057
12086
|
|
|
12058
12087
|
## `codiac pvc delete`
|
|
12059
12088
|
|
|
@@ -12100,7 +12129,7 @@ EXAMPLES
|
|
|
12100
12129
|
$ codiac pvc delete --id <fileStoreDefId> --silent
|
|
12101
12130
|
```
|
|
12102
12131
|
|
|
12103
|
-
_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.233/src/commands/pvc/delete.ts)_
|
|
12104
12133
|
|
|
12105
12134
|
## `codiac pvc get`
|
|
12106
12135
|
|
|
@@ -12141,7 +12170,7 @@ EXAMPLES
|
|
|
12141
12170
|
$ codiac pvc get --name app-documents-share --silent -o json
|
|
12142
12171
|
```
|
|
12143
12172
|
|
|
12144
|
-
_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.233/src/commands/pvc/get.ts)_
|
|
12145
12174
|
|
|
12146
12175
|
## `codiac pvc list`
|
|
12147
12176
|
|
|
@@ -12184,7 +12213,7 @@ EXAMPLES
|
|
|
12184
12213
|
$ codiac pvc list -o yaml
|
|
12185
12214
|
```
|
|
12186
12215
|
|
|
12187
|
-
_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.233/src/commands/pvc/list.ts)_
|
|
12188
12217
|
|
|
12189
12218
|
## `codiac relay-version`
|
|
12190
12219
|
|
|
@@ -12201,7 +12230,7 @@ EXAMPLES
|
|
|
12201
12230
|
$ codiac relay-version
|
|
12202
12231
|
```
|
|
12203
12232
|
|
|
12204
|
-
_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.233/src/commands/relay-version.ts)_
|
|
12205
12234
|
|
|
12206
12235
|
## `codiac run`
|
|
12207
12236
|
|
|
@@ -12243,7 +12272,7 @@ DESCRIPTION
|
|
|
12243
12272
|
Runs the latest build of the api container locally.
|
|
12244
12273
|
```
|
|
12245
12274
|
|
|
12246
|
-
_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.233/src/commands/run.ts)_
|
|
12247
12276
|
|
|
12248
12277
|
## `codiac secretStore`
|
|
12249
12278
|
|
|
@@ -12251,18 +12280,19 @@ Upserts a reference to an existing secretStore.
|
|
|
12251
12280
|
|
|
12252
12281
|
```
|
|
12253
12282
|
USAGE
|
|
12254
|
-
$ codiac secretStore [-h] [-u <value>] [-p artifactHub|aws|azure|dockerHub|localMachine|other] [-
|
|
12255
|
-
<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>]]
|
|
12256
12285
|
|
|
12257
12286
|
FLAGS
|
|
12258
12287
|
-h, --help Show CLI help.
|
|
12259
12288
|
-l, --location=<value> The region or data center in which the secret store resides (use the code name, eg: in
|
|
12260
12289
|
Aws use 'us-east-1', NOT 'Virginia, US').
|
|
12261
12290
|
-n, --name=<value> The resource name of the secret store within the cloud provider subscription.
|
|
12262
|
-
-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).
|
|
12263
12292
|
<options: artifactHub|aws|azure|dockerHub|localMachine|other>
|
|
12264
12293
|
-s, --subscriptionId=<value> The id of the cloud provider account in which the secret store resides (in Aws, this is
|
|
12265
|
-
the 'AccountId').
|
|
12294
|
+
the 'AccountId'). Required in silent mode only when multiple cached subscriptions are
|
|
12295
|
+
present.
|
|
12266
12296
|
-u, --url=<value> The container registry url.
|
|
12267
12297
|
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
12268
12298
|
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
@@ -12273,6 +12303,24 @@ DESCRIPTION
|
|
|
12273
12303
|
|
|
12274
12304
|
ALIASES
|
|
12275
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
|
|
12276
12324
|
```
|
|
12277
12325
|
|
|
12278
12326
|
## `codiac secretStore capture`
|
|
@@ -12281,18 +12329,19 @@ Upserts a reference to an existing secretStore.
|
|
|
12281
12329
|
|
|
12282
12330
|
```
|
|
12283
12331
|
USAGE
|
|
12284
|
-
$ codiac secretStore capture [-h] [-u <value>] [-p artifactHub|aws|azure|dockerHub|localMachine|other] [-
|
|
12285
|
-
<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>]]
|
|
12286
12334
|
|
|
12287
12335
|
FLAGS
|
|
12288
12336
|
-h, --help Show CLI help.
|
|
12289
12337
|
-l, --location=<value> The region or data center in which the secret store resides (use the code name, eg: in
|
|
12290
12338
|
Aws use 'us-east-1', NOT 'Virginia, US').
|
|
12291
12339
|
-n, --name=<value> The resource name of the secret store within the cloud provider subscription.
|
|
12292
|
-
-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).
|
|
12293
12341
|
<options: artifactHub|aws|azure|dockerHub|localMachine|other>
|
|
12294
12342
|
-s, --subscriptionId=<value> The id of the cloud provider account in which the secret store resides (in Aws, this is
|
|
12295
|
-
the 'AccountId').
|
|
12343
|
+
the 'AccountId'). Required in silent mode only when multiple cached subscriptions are
|
|
12344
|
+
present.
|
|
12296
12345
|
-u, --url=<value> The container registry url.
|
|
12297
12346
|
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
12298
12347
|
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
@@ -12303,9 +12352,27 @@ DESCRIPTION
|
|
|
12303
12352
|
|
|
12304
12353
|
ALIASES
|
|
12305
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
|
|
12306
12373
|
```
|
|
12307
12374
|
|
|
12308
|
-
_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.233/src/commands/secretStore/capture.ts)_
|
|
12309
12376
|
|
|
12310
12377
|
## `codiac secretStore forget`
|
|
12311
12378
|
|
|
@@ -12326,7 +12393,7 @@ DESCRIPTION
|
|
|
12326
12393
|
Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
|
|
12327
12394
|
```
|
|
12328
12395
|
|
|
12329
|
-
_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.233/src/commands/secretStore/forget.ts)_
|
|
12330
12397
|
|
|
12331
12398
|
## `codiac secretStore list`
|
|
12332
12399
|
|
|
@@ -12371,7 +12438,7 @@ EXAMPLES
|
|
|
12371
12438
|
$ codiac secretStore list
|
|
12372
12439
|
```
|
|
12373
12440
|
|
|
12374
|
-
_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.233/src/commands/secretStore/list.ts)_
|
|
12375
12442
|
|
|
12376
12443
|
## `codiac shell init`
|
|
12377
12444
|
|
|
@@ -12409,7 +12476,7 @@ EXAMPLES
|
|
|
12409
12476
|
Invoke-Expression (codiac shell init --shell powershell)
|
|
12410
12477
|
```
|
|
12411
12478
|
|
|
12412
|
-
_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.233/src/commands/shell/init.ts)_
|
|
12413
12480
|
|
|
12414
12481
|
## `codiac snapshot deploy`
|
|
12415
12482
|
|
|
@@ -12437,7 +12504,7 @@ DESCRIPTION
|
|
|
12437
12504
|
Deploys all assets in a snapshot to a target cabinet.
|
|
12438
12505
|
```
|
|
12439
12506
|
|
|
12440
|
-
_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.233/src/commands/snapshot/deploy.ts)_
|
|
12441
12508
|
|
|
12442
12509
|
## `codiac snapshot list`
|
|
12443
12510
|
|
|
@@ -12486,7 +12553,7 @@ EXAMPLES
|
|
|
12486
12553
|
$ codiac snapshot list -e myEnterprise --silent
|
|
12487
12554
|
```
|
|
12488
12555
|
|
|
12489
|
-
_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.233/src/commands/snapshot/list.ts)_
|
|
12490
12557
|
|
|
12491
12558
|
## `codiac snapshot tag`
|
|
12492
12559
|
|
|
@@ -12529,7 +12596,7 @@ EXAMPLES
|
|
|
12529
12596
|
$ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12530
12597
|
```
|
|
12531
12598
|
|
|
12532
|
-
_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.233/src/commands/snapshot/tag.ts)_
|
|
12533
12600
|
|
|
12534
12601
|
## `codiac snapshot untag`
|
|
12535
12602
|
|
|
@@ -12572,7 +12639,7 @@ EXAMPLES
|
|
|
12572
12639
|
$ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12573
12640
|
```
|
|
12574
12641
|
|
|
12575
|
-
_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.233/src/commands/snapshot/untag.ts)_
|
|
12576
12643
|
|
|
12577
12644
|
## `codiac stage [FILES]`
|
|
12578
12645
|
|
|
@@ -12594,7 +12661,7 @@ DESCRIPTION
|
|
|
12594
12661
|
Flags files to be included in the next commit.
|
|
12595
12662
|
```
|
|
12596
12663
|
|
|
12597
|
-
_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.233/src/commands/stage.ts)_
|
|
12598
12665
|
|
|
12599
12666
|
## `codiac stash [FILE]`
|
|
12600
12667
|
|
|
@@ -12616,7 +12683,7 @@ DESCRIPTION
|
|
|
12616
12683
|
describe the command here
|
|
12617
12684
|
```
|
|
12618
12685
|
|
|
12619
|
-
_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.233/src/commands/stash.ts)_
|
|
12620
12687
|
|
|
12621
12688
|
## `codiac status`
|
|
12622
12689
|
|
|
@@ -12635,7 +12702,7 @@ DESCRIPTION
|
|
|
12635
12702
|
Shows the current uncommitted changes in the current branch.
|
|
12636
12703
|
```
|
|
12637
12704
|
|
|
12638
|
-
_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.233/src/commands/status.ts)_
|
|
12639
12706
|
|
|
12640
12707
|
## `codiac stop`
|
|
12641
12708
|
|
|
@@ -12653,7 +12720,7 @@ DESCRIPTION
|
|
|
12653
12720
|
Stops the running container for this project
|
|
12654
12721
|
```
|
|
12655
12722
|
|
|
12656
|
-
_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.233/src/commands/stop.ts)_
|
|
12657
12724
|
|
|
12658
12725
|
## `codiac switch [NAME]`
|
|
12659
12726
|
|
|
@@ -12673,7 +12740,7 @@ DESCRIPTION
|
|
|
12673
12740
|
Changes branch on the main project and any sourced dependencies.
|
|
12674
12741
|
```
|
|
12675
12742
|
|
|
12676
|
-
_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.233/src/commands/switch.ts)_
|
|
12677
12744
|
|
|
12678
12745
|
## `codiac sync [NAME]`
|
|
12679
12746
|
|
|
@@ -12698,7 +12765,7 @@ DESCRIPTION
|
|
|
12698
12765
|
Merges the given branch into the current branch.
|
|
12699
12766
|
```
|
|
12700
12767
|
|
|
12701
|
-
_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.233/src/commands/sync.ts)_
|
|
12702
12769
|
|
|
12703
12770
|
## `codiac tenant create [NAME]`
|
|
12704
12771
|
|
|
@@ -12741,7 +12808,7 @@ EXAMPLES
|
|
|
12741
12808
|
$ codiac tenant create -n 'Acme Corp' -c acme --to-script
|
|
12742
12809
|
```
|
|
12743
12810
|
|
|
12744
|
-
_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.233/src/commands/tenant/create.ts)_
|
|
12745
12812
|
|
|
12746
12813
|
## `codiac tenant switch [CODE]`
|
|
12747
12814
|
|
|
@@ -12781,7 +12848,7 @@ EXAMPLES
|
|
|
12781
12848
|
$ codiac tenant switch my-tenant-code --to-script
|
|
12782
12849
|
```
|
|
12783
12850
|
|
|
12784
|
-
_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.233/src/commands/tenant/switch.ts)_
|
|
12785
12852
|
|
|
12786
12853
|
## `codiac token [TOKENNAME]`
|
|
12787
12854
|
|
|
@@ -12903,7 +12970,7 @@ DESCRIPTION
|
|
|
12903
12970
|
Flags files to be included in the next commit.
|
|
12904
12971
|
```
|
|
12905
12972
|
|
|
12906
|
-
_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.233/src/commands/unstage.ts)_
|
|
12907
12974
|
|
|
12908
12975
|
## `codiac update [CHANNEL]`
|
|
12909
12976
|
|
|
@@ -13090,7 +13157,7 @@ EXAMPLES
|
|
|
13090
13157
|
$ codiac whereami --to-script
|
|
13091
13158
|
```
|
|
13092
13159
|
|
|
13093
|
-
_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.233/src/commands/whereami.ts)_
|
|
13094
13161
|
|
|
13095
13162
|
## `codiac whoami`
|
|
13096
13163
|
|
|
@@ -13132,5 +13199,5 @@ EXAMPLES
|
|
|
13132
13199
|
$ codiac whoami --to-script
|
|
13133
13200
|
```
|
|
13134
13201
|
|
|
13135
|
-
_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.233/src/commands/whoami.ts)_
|
|
13136
13203
|
<!-- commandsstop -->
|