@codiac.io/codiac-cli 1.3.229 → 1.3.230
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 +200 -158
- package/dist/commands/import/cluster.d.ts +74 -0
- package/dist/commands/import/cluster.js +620 -0
- package/dist/commands/import/cluster.js.map +1 -0
- package/oclif.manifest.json +79 -1
- 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.230 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)
|
|
@@ -580,7 +581,7 @@ EXAMPLES
|
|
|
580
581
|
$ codiac asset create -e myEnterprise -n my-api --deploy-condition "environment.name = 'production'"
|
|
581
582
|
```
|
|
582
583
|
|
|
583
|
-
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
584
|
+
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/create.ts)_
|
|
584
585
|
|
|
585
586
|
## `codiac asset edit`
|
|
586
587
|
|
|
@@ -638,7 +639,7 @@ EXAMPLES
|
|
|
638
639
|
$ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
|
|
639
640
|
```
|
|
640
641
|
|
|
641
|
-
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
642
|
+
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/edit.ts)_
|
|
642
643
|
|
|
643
644
|
## `codiac asset entrypoint`
|
|
644
645
|
|
|
@@ -759,7 +760,7 @@ EXAMPLES
|
|
|
759
760
|
$ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
|
|
760
761
|
```
|
|
761
762
|
|
|
762
|
-
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
763
|
+
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/entrypoint/delete.ts)_
|
|
763
764
|
|
|
764
765
|
## `codiac asset entrypoint set`
|
|
765
766
|
|
|
@@ -828,7 +829,7 @@ EXAMPLES
|
|
|
828
829
|
--input=/backup/workflows'
|
|
829
830
|
```
|
|
830
831
|
|
|
831
|
-
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
832
|
+
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/entrypoint/set.ts)_
|
|
832
833
|
|
|
833
834
|
## `codiac asset get [CMD]`
|
|
834
835
|
|
|
@@ -935,7 +936,7 @@ EXAMPLES
|
|
|
935
936
|
$ codiac asset list -e myEnterprise --to-script
|
|
936
937
|
```
|
|
937
938
|
|
|
938
|
-
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
939
|
+
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/list.ts)_
|
|
939
940
|
|
|
940
941
|
## `codiac asset mon [CMD]`
|
|
941
942
|
|
|
@@ -1182,7 +1183,7 @@ EXAMPLES
|
|
|
1182
1183
|
$ codiac asset obliterate -e main -n my-api
|
|
1183
1184
|
```
|
|
1184
1185
|
|
|
1185
|
-
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1186
|
+
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/obliterate.ts)_
|
|
1186
1187
|
|
|
1187
1188
|
## `codiac asset probe create [CMD]`
|
|
1188
1189
|
|
|
@@ -1272,7 +1273,7 @@ EXAMPLES
|
|
|
1272
1273
|
$ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
|
|
1273
1274
|
```
|
|
1274
1275
|
|
|
1275
|
-
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1276
|
+
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/probe/create.ts)_
|
|
1276
1277
|
|
|
1277
1278
|
## `codiac asset probe delete`
|
|
1278
1279
|
|
|
@@ -1327,7 +1328,7 @@ EXAMPLES
|
|
|
1327
1328
|
$ codiac asset probe delete
|
|
1328
1329
|
```
|
|
1329
1330
|
|
|
1330
|
-
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1331
|
+
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/probe/delete.ts)_
|
|
1331
1332
|
|
|
1332
1333
|
## `codiac asset probe list`
|
|
1333
1334
|
|
|
@@ -1379,7 +1380,7 @@ EXAMPLES
|
|
|
1379
1380
|
$ codiac asset probe list
|
|
1380
1381
|
```
|
|
1381
1382
|
|
|
1382
|
-
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1383
|
+
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/probe/list.ts)_
|
|
1383
1384
|
|
|
1384
1385
|
## `codiac asset recycle`
|
|
1385
1386
|
|
|
@@ -1419,7 +1420,7 @@ DESCRIPTION
|
|
|
1419
1420
|
Deploys a given asset to a given cabinet. Defaults to current version.
|
|
1420
1421
|
```
|
|
1421
1422
|
|
|
1422
|
-
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1423
|
+
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/recycle.ts)_
|
|
1423
1424
|
|
|
1424
1425
|
## `codiac asset undeploy`
|
|
1425
1426
|
|
|
@@ -1463,7 +1464,7 @@ EXAMPLES
|
|
|
1463
1464
|
$ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
|
|
1464
1465
|
```
|
|
1465
1466
|
|
|
1466
|
-
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1467
|
+
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/undeploy.ts)_
|
|
1467
1468
|
|
|
1468
1469
|
## `codiac asset view [CMD]`
|
|
1469
1470
|
|
|
@@ -1518,7 +1519,7 @@ ALIASES
|
|
|
1518
1519
|
$ codiac asset get
|
|
1519
1520
|
```
|
|
1520
1521
|
|
|
1521
|
-
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1522
|
+
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/view.ts)_
|
|
1522
1523
|
|
|
1523
1524
|
## `codiac asset vol add [MOUNTPATH]`
|
|
1524
1525
|
|
|
@@ -1789,7 +1790,7 @@ ALIASES
|
|
|
1789
1790
|
$ codiac asset volume add
|
|
1790
1791
|
```
|
|
1791
1792
|
|
|
1792
|
-
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1793
|
+
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/volume/create.ts)_
|
|
1793
1794
|
|
|
1794
1795
|
## `codiac asset volume del`
|
|
1795
1796
|
|
|
@@ -1877,7 +1878,7 @@ EXAMPLES
|
|
|
1877
1878
|
$ codiac asset volume delete -e myEnterprise -n myMount --to-script
|
|
1878
1879
|
```
|
|
1879
1880
|
|
|
1880
|
-
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1881
|
+
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/volume/delete.ts)_
|
|
1881
1882
|
|
|
1882
1883
|
## `codiac asset volume list`
|
|
1883
1884
|
|
|
@@ -1926,7 +1927,7 @@ EXAMPLES
|
|
|
1926
1927
|
$ codiac asset volume list -e myEnterprise --silent
|
|
1927
1928
|
```
|
|
1928
1929
|
|
|
1929
|
-
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1930
|
+
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/volume/list.ts)_
|
|
1930
1931
|
|
|
1931
1932
|
## `codiac asset volumes del`
|
|
1932
1933
|
|
|
@@ -2093,7 +2094,7 @@ EXAMPLES
|
|
|
2093
2094
|
$ codiac asset where -e main -a my-api --silent
|
|
2094
2095
|
```
|
|
2095
2096
|
|
|
2096
|
-
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2097
|
+
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/asset/where.ts)_
|
|
2097
2098
|
|
|
2098
2099
|
## `codiac auth cab allow`
|
|
2099
2100
|
|
|
@@ -2255,7 +2256,7 @@ EXAMPLES
|
|
|
2255
2256
|
$ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
|
|
2256
2257
|
```
|
|
2257
2258
|
|
|
2258
|
-
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2259
|
+
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/cabinet/allow.ts)_
|
|
2259
2260
|
|
|
2260
2261
|
## `codiac auth cabinet allowed`
|
|
2261
2262
|
|
|
@@ -2303,7 +2304,7 @@ EXAMPLES
|
|
|
2303
2304
|
$ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
|
|
2304
2305
|
```
|
|
2305
2306
|
|
|
2306
|
-
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2307
|
+
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/cabinet/allowed.ts)_
|
|
2307
2308
|
|
|
2308
2309
|
## `codiac auth ent allow`
|
|
2309
2310
|
|
|
@@ -2494,7 +2495,7 @@ EXAMPLES
|
|
|
2494
2495
|
$ codiac auth enterprise allow -r deployer -p none
|
|
2495
2496
|
```
|
|
2496
2497
|
|
|
2497
|
-
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2498
|
+
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/enterprise/allow.ts)_
|
|
2498
2499
|
|
|
2499
2500
|
## `codiac auth enterprise allow onEnvironments`
|
|
2500
2501
|
|
|
@@ -2548,7 +2549,7 @@ EXAMPLES
|
|
|
2548
2549
|
$ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
|
|
2549
2550
|
```
|
|
2550
2551
|
|
|
2551
|
-
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2552
|
+
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/enterprise/allow/onEnvironments.ts)_
|
|
2552
2553
|
|
|
2553
2554
|
## `codiac auth enterprise allowed`
|
|
2554
2555
|
|
|
@@ -2589,7 +2590,7 @@ EXAMPLES
|
|
|
2589
2590
|
$ codiac auth enterprise allowed --enterprise modeling
|
|
2590
2591
|
```
|
|
2591
2592
|
|
|
2592
|
-
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2593
|
+
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/enterprise/allowed.ts)_
|
|
2593
2594
|
|
|
2594
2595
|
## `codiac auth env allowed`
|
|
2595
2596
|
|
|
@@ -2796,7 +2797,7 @@ EXAMPLES
|
|
|
2796
2797
|
$ codiac auth environment allow -e qa -r productmanager -p read
|
|
2797
2798
|
```
|
|
2798
2799
|
|
|
2799
|
-
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2800
|
+
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/environment/allow.ts)_
|
|
2800
2801
|
|
|
2801
2802
|
## `codiac auth environment allow onCabinets`
|
|
2802
2803
|
|
|
@@ -2853,7 +2854,7 @@ EXAMPLES
|
|
|
2853
2854
|
$ codiac auth environment allow onCabinets -e qa -r productmanager -p read
|
|
2854
2855
|
```
|
|
2855
2856
|
|
|
2856
|
-
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2857
|
+
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/environment/allow/onCabinets.ts)_
|
|
2857
2858
|
|
|
2858
2859
|
## `codiac auth environment allowed`
|
|
2859
2860
|
|
|
@@ -2898,7 +2899,7 @@ EXAMPLES
|
|
|
2898
2899
|
$ codiac auth environment allowed --enterprise modeling -e dev
|
|
2899
2900
|
```
|
|
2900
2901
|
|
|
2901
|
-
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2902
|
+
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/environment/allowed.ts)_
|
|
2902
2903
|
|
|
2903
2904
|
## `codiac auth register`
|
|
2904
2905
|
|
|
@@ -2944,7 +2945,7 @@ EXAMPLES
|
|
|
2944
2945
|
$ codiac auth register
|
|
2945
2946
|
```
|
|
2946
2947
|
|
|
2947
|
-
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2948
|
+
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/register.ts)_
|
|
2948
2949
|
|
|
2949
2950
|
## `codiac auth role allowed [NAME]`
|
|
2950
2951
|
|
|
@@ -2991,7 +2992,7 @@ EXAMPLES
|
|
|
2991
2992
|
$ codiac auth role allowed -n deployer -e main
|
|
2992
2993
|
```
|
|
2993
2994
|
|
|
2994
|
-
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2995
|
+
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/role/allowed.ts)_
|
|
2995
2996
|
|
|
2996
2997
|
## `codiac auth role assign`
|
|
2997
2998
|
|
|
@@ -3023,7 +3024,7 @@ EXAMPLES
|
|
|
3023
3024
|
$ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
|
|
3024
3025
|
```
|
|
3025
3026
|
|
|
3026
|
-
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3027
|
+
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/role/assign.ts)_
|
|
3027
3028
|
|
|
3028
3029
|
## `codiac auth role create [NAME]`
|
|
3029
3030
|
|
|
@@ -3056,7 +3057,7 @@ EXAMPLES
|
|
|
3056
3057
|
$ codiac auth role create -n deployer
|
|
3057
3058
|
```
|
|
3058
3059
|
|
|
3059
|
-
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3060
|
+
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/role/create.ts)_
|
|
3060
3061
|
|
|
3061
3062
|
## `codiac auth role delete [NAME]`
|
|
3062
3063
|
|
|
@@ -3092,7 +3093,7 @@ EXAMPLES
|
|
|
3092
3093
|
$ codiac auth role delete --id abc123def456
|
|
3093
3094
|
```
|
|
3094
3095
|
|
|
3095
|
-
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3096
|
+
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/role/delete.ts)_
|
|
3096
3097
|
|
|
3097
3098
|
## `codiac auth role list`
|
|
3098
3099
|
|
|
@@ -3128,7 +3129,7 @@ EXAMPLES
|
|
|
3128
3129
|
$ codiac auth role list -o yaml > roles.yaml
|
|
3129
3130
|
```
|
|
3130
3131
|
|
|
3131
|
-
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3132
|
+
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/role/list.ts)_
|
|
3132
3133
|
|
|
3133
3134
|
## `codiac auth role unassign`
|
|
3134
3135
|
|
|
@@ -3160,7 +3161,7 @@ EXAMPLES
|
|
|
3160
3161
|
$ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
|
|
3161
3162
|
```
|
|
3162
3163
|
|
|
3163
|
-
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3164
|
+
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/role/unassign.ts)_
|
|
3164
3165
|
|
|
3165
3166
|
## `codiac auth user invite`
|
|
3166
3167
|
|
|
@@ -3200,7 +3201,7 @@ EXAMPLES
|
|
|
3200
3201
|
$ codiac auth user invite
|
|
3201
3202
|
```
|
|
3202
3203
|
|
|
3203
|
-
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3204
|
+
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/user/invite.ts)_
|
|
3204
3205
|
|
|
3205
3206
|
## `codiac auth user list`
|
|
3206
3207
|
|
|
@@ -3236,7 +3237,7 @@ EXAMPLES
|
|
|
3236
3237
|
$ codiac auth user list -o yaml > users.yaml
|
|
3237
3238
|
```
|
|
3238
3239
|
|
|
3239
|
-
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3240
|
+
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/auth/user/list.ts)_
|
|
3240
3241
|
|
|
3241
3242
|
## `codiac autocomplete [SHELL]`
|
|
3242
3243
|
|
|
@@ -3286,7 +3287,7 @@ DESCRIPTION
|
|
|
3286
3287
|
Creates a new branch for the parent project and any sourced dependencies.
|
|
3287
3288
|
```
|
|
3288
3289
|
|
|
3289
|
-
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3290
|
+
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/branch.ts)_
|
|
3290
3291
|
|
|
3291
3292
|
## `codiac branch current`
|
|
3292
3293
|
|
|
@@ -3306,7 +3307,7 @@ ALIASES
|
|
|
3306
3307
|
$ codiac branches current
|
|
3307
3308
|
```
|
|
3308
3309
|
|
|
3309
|
-
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3310
|
+
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/branch/current.ts)_
|
|
3310
3311
|
|
|
3311
3312
|
## `codiac branch list`
|
|
3312
3313
|
|
|
@@ -3328,7 +3329,7 @@ ALIASES
|
|
|
3328
3329
|
$ codiac branches list
|
|
3329
3330
|
```
|
|
3330
3331
|
|
|
3331
|
-
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3332
|
+
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/branch/list.ts)_
|
|
3332
3333
|
|
|
3333
3334
|
## `codiac branches current`
|
|
3334
3335
|
|
|
@@ -3418,7 +3419,7 @@ DESCRIPTION
|
|
|
3418
3419
|
Builds the project and the docker container
|
|
3419
3420
|
```
|
|
3420
3421
|
|
|
3421
|
-
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3422
|
+
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/build.ts)_
|
|
3422
3423
|
|
|
3423
3424
|
## `codiac cab attach`
|
|
3424
3425
|
|
|
@@ -4167,7 +4168,7 @@ EXAMPLES
|
|
|
4167
4168
|
prod-cluster-1 --to-script
|
|
4168
4169
|
```
|
|
4169
4170
|
|
|
4170
|
-
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4171
|
+
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/cluster/attach.ts)_
|
|
4171
4172
|
|
|
4172
4173
|
## `codiac cabinet contents`
|
|
4173
4174
|
|
|
@@ -4211,7 +4212,7 @@ EXAMPLES
|
|
|
4211
4212
|
$ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
|
|
4212
4213
|
```
|
|
4213
4214
|
|
|
4214
|
-
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4215
|
+
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/contents.ts)_
|
|
4215
4216
|
|
|
4216
4217
|
## `codiac cabinet create [CABINET]`
|
|
4217
4218
|
|
|
@@ -4278,7 +4279,7 @@ EXAMPLES
|
|
|
4278
4279
|
cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
|
|
4279
4280
|
```
|
|
4280
4281
|
|
|
4281
|
-
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4282
|
+
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/create.ts)_
|
|
4282
4283
|
|
|
4283
4284
|
## `codiac cabinet define [CABINET]`
|
|
4284
4285
|
|
|
@@ -4340,7 +4341,7 @@ EXAMPLES
|
|
|
4340
4341
|
$ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
|
|
4341
4342
|
```
|
|
4342
4343
|
|
|
4343
|
-
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4344
|
+
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/define.ts)_
|
|
4344
4345
|
|
|
4345
4346
|
## `codiac cabinet destroy [CABINET]`
|
|
4346
4347
|
|
|
@@ -4398,7 +4399,7 @@ EXAMPLES
|
|
|
4398
4399
|
--environment dev --silent
|
|
4399
4400
|
```
|
|
4400
4401
|
|
|
4401
|
-
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4402
|
+
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/destroy.ts)_
|
|
4402
4403
|
|
|
4403
4404
|
## `codiac cabinet detach [CABINET]`
|
|
4404
4405
|
|
|
@@ -4455,7 +4456,7 @@ EXAMPLES
|
|
|
4455
4456
|
main --environment dev
|
|
4456
4457
|
```
|
|
4457
4458
|
|
|
4458
|
-
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4459
|
+
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/detach.ts)_
|
|
4459
4460
|
|
|
4460
4461
|
## `codiac cabinet forget [CABINET]`
|
|
4461
4462
|
|
|
@@ -4510,7 +4511,7 @@ EXAMPLES
|
|
|
4510
4511
|
$ codiac cabinet forget --to-script
|
|
4511
4512
|
```
|
|
4512
4513
|
|
|
4513
|
-
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4514
|
+
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/forget.ts)_
|
|
4514
4515
|
|
|
4515
4516
|
## `codiac cabinet list`
|
|
4516
4517
|
|
|
@@ -4561,7 +4562,7 @@ EXAMPLES
|
|
|
4561
4562
|
$ codiac cabinet list -e myEnterprise --silent
|
|
4562
4563
|
```
|
|
4563
4564
|
|
|
4564
|
-
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4565
|
+
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/list.ts)_
|
|
4565
4566
|
|
|
4566
4567
|
## `codiac cabinet obliterate [CABINET]`
|
|
4567
4568
|
|
|
@@ -4603,7 +4604,7 @@ ALIASES
|
|
|
4603
4604
|
$ codiac infrx cab obliterate
|
|
4604
4605
|
```
|
|
4605
4606
|
|
|
4606
|
-
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4607
|
+
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/obliterate.ts)_
|
|
4607
4608
|
|
|
4608
4609
|
## `codiac cabinet restore`
|
|
4609
4610
|
|
|
@@ -4670,7 +4671,7 @@ EXAMPLES
|
|
|
4670
4671
|
$ codiac cabinet restore --cluster prod-cluster-1 --to-script
|
|
4671
4672
|
```
|
|
4672
4673
|
|
|
4673
|
-
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4674
|
+
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cabinet/restore.ts)_
|
|
4674
4675
|
|
|
4675
4676
|
## `codiac cfg add`
|
|
4676
4677
|
|
|
@@ -4957,7 +4958,7 @@ DESCRIPTION
|
|
|
4957
4958
|
Applies settings to the Codiac CLI itself (scoped to the local machine).
|
|
4958
4959
|
```
|
|
4959
4960
|
|
|
4960
|
-
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4961
|
+
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cli.ts)_
|
|
4961
4962
|
|
|
4962
4963
|
## `codiac cluster agent configure [CLUSTER]`
|
|
4963
4964
|
|
|
@@ -5025,7 +5026,7 @@ EXAMPLES
|
|
|
5025
5026
|
$ codiac cluster agent configure my-cluster --to-script
|
|
5026
5027
|
```
|
|
5027
5028
|
|
|
5028
|
-
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5029
|
+
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/agent/configure.ts)_
|
|
5029
5030
|
|
|
5030
5031
|
## `codiac cluster agent install [CLUSTER]`
|
|
5031
5032
|
|
|
@@ -5081,7 +5082,7 @@ EXAMPLES
|
|
|
5081
5082
|
$ codiac cluster agent install my-cluster --to-script
|
|
5082
5083
|
```
|
|
5083
5084
|
|
|
5084
|
-
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5085
|
+
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/agent/install.ts)_
|
|
5085
5086
|
|
|
5086
5087
|
## `codiac cluster agent uninstall [CLUSTER]`
|
|
5087
5088
|
|
|
@@ -5129,7 +5130,7 @@ EXAMPLES
|
|
|
5129
5130
|
$ codiac cluster agent uninstall my-cluster --to-script
|
|
5130
5131
|
```
|
|
5131
5132
|
|
|
5132
|
-
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5133
|
+
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/agent/uninstall.ts)_
|
|
5133
5134
|
|
|
5134
5135
|
## `codiac cluster bootstrap [NAME]`
|
|
5135
5136
|
|
|
@@ -5192,7 +5193,7 @@ EXAMPLES
|
|
|
5192
5193
|
$ codiac cluster bootstrap my-cluster --to-script
|
|
5193
5194
|
```
|
|
5194
5195
|
|
|
5195
|
-
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5196
|
+
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/bootstrap.ts)_
|
|
5196
5197
|
|
|
5197
5198
|
## `codiac cluster capture`
|
|
5198
5199
|
|
|
@@ -5277,7 +5278,7 @@ EXAMPLES
|
|
|
5277
5278
|
$ codiac cluster connect my-fav-cluster
|
|
5278
5279
|
```
|
|
5279
5280
|
|
|
5280
|
-
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5281
|
+
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/connect.ts)_
|
|
5281
5282
|
|
|
5282
5283
|
## `codiac cluster contents`
|
|
5283
5284
|
|
|
@@ -5942,7 +5943,7 @@ EXAMPLES
|
|
|
5942
5943
|
$ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
|
|
5943
5944
|
```
|
|
5944
5945
|
|
|
5945
|
-
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5946
|
+
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/install.ts)_
|
|
5946
5947
|
|
|
5947
5948
|
## `codiac cluster journal [CLUSTER]`
|
|
5948
5949
|
|
|
@@ -6231,7 +6232,7 @@ EXAMPLES
|
|
|
6231
6232
|
$ codiac cluster stack capture my-fav-cluster
|
|
6232
6233
|
```
|
|
6233
6234
|
|
|
6234
|
-
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6235
|
+
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/stack/capture.ts)_
|
|
6235
6236
|
|
|
6236
6237
|
## `codiac cluster stack install [CLUSTER]`
|
|
6237
6238
|
|
|
@@ -6283,7 +6284,7 @@ EXAMPLES
|
|
|
6283
6284
|
$ codiac cluster stack install my-cluster --to-script
|
|
6284
6285
|
```
|
|
6285
6286
|
|
|
6286
|
-
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6287
|
+
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/stack/install.ts)_
|
|
6287
6288
|
|
|
6288
6289
|
## `codiac cluster stack list`
|
|
6289
6290
|
|
|
@@ -6449,7 +6450,7 @@ EXAMPLES
|
|
|
6449
6450
|
$ codiac cluster start my-fav-cluster
|
|
6450
6451
|
```
|
|
6451
6452
|
|
|
6452
|
-
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6453
|
+
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/start.ts)_
|
|
6453
6454
|
|
|
6454
6455
|
## `codiac cluster stop [CLUSTER]`
|
|
6455
6456
|
|
|
@@ -6486,7 +6487,7 @@ EXAMPLES
|
|
|
6486
6487
|
$ codiac cluster start my-fav-cluster
|
|
6487
6488
|
```
|
|
6488
6489
|
|
|
6489
|
-
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6490
|
+
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/cluster/stop.ts)_
|
|
6490
6491
|
|
|
6491
6492
|
## `codiac cluster uninstall`
|
|
6492
6493
|
|
|
@@ -6548,7 +6549,7 @@ DESCRIPTION
|
|
|
6548
6549
|
Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
|
|
6549
6550
|
```
|
|
6550
6551
|
|
|
6551
|
-
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6552
|
+
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/commit.ts)_
|
|
6552
6553
|
|
|
6553
6554
|
## `codiac config add`
|
|
6554
6555
|
|
|
@@ -6688,7 +6689,7 @@ EXAMPLES
|
|
|
6688
6689
|
--escape-expressions
|
|
6689
6690
|
```
|
|
6690
6691
|
|
|
6691
|
-
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6692
|
+
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/config/add.ts)_
|
|
6692
6693
|
|
|
6693
6694
|
## `codiac config delete [SETTING]`
|
|
6694
6695
|
|
|
@@ -6757,7 +6758,7 @@ ALIASES
|
|
|
6757
6758
|
$ codiac cfg delete
|
|
6758
6759
|
```
|
|
6759
6760
|
|
|
6760
|
-
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6761
|
+
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/config/delete.ts)_
|
|
6761
6762
|
|
|
6762
6763
|
## `codiac config deploy`
|
|
6763
6764
|
|
|
@@ -6798,7 +6799,7 @@ EXAMPLES
|
|
|
6798
6799
|
$ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
|
|
6799
6800
|
```
|
|
6800
6801
|
|
|
6801
|
-
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6802
|
+
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/config/deploy.ts)_
|
|
6802
6803
|
|
|
6803
6804
|
## `codiac config import`
|
|
6804
6805
|
|
|
@@ -6859,7 +6860,7 @@ EXAMPLES
|
|
|
6859
6860
|
$ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
|
|
6860
6861
|
```
|
|
6861
6862
|
|
|
6862
|
-
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6863
|
+
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/config/import.ts)_
|
|
6863
6864
|
|
|
6864
6865
|
## `codiac config preview [SETTING]`
|
|
6865
6866
|
|
|
@@ -7130,7 +7131,7 @@ DESCRIPTION
|
|
|
7130
7131
|
Shows the list of clusters.
|
|
7131
7132
|
```
|
|
7132
7133
|
|
|
7133
|
-
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7134
|
+
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/config/settings/get.ts)_
|
|
7134
7135
|
|
|
7135
7136
|
## `codiac config view [SETTING]`
|
|
7136
7137
|
|
|
@@ -7195,7 +7196,7 @@ EXAMPLES
|
|
|
7195
7196
|
$ codiac config view -e myEnterprise -a myApi -c dev --to-script
|
|
7196
7197
|
```
|
|
7197
7198
|
|
|
7198
|
-
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7199
|
+
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/config/view.ts)_
|
|
7199
7200
|
|
|
7200
7201
|
## `codiac csp creds list`
|
|
7201
7202
|
|
|
@@ -7243,7 +7244,7 @@ EXAMPLES
|
|
|
7243
7244
|
$ codiac csp creds list
|
|
7244
7245
|
```
|
|
7245
7246
|
|
|
7246
|
-
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7247
|
+
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/csp/creds/list.ts)_
|
|
7247
7248
|
|
|
7248
7249
|
## `codiac csp login [PROVIDER]`
|
|
7249
7250
|
|
|
@@ -7321,7 +7322,7 @@ EXAMPLES
|
|
|
7321
7322
|
cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
|
|
7322
7323
|
```
|
|
7323
7324
|
|
|
7324
|
-
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7325
|
+
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/csp/login.ts)_
|
|
7325
7326
|
|
|
7326
7327
|
## `codiac csp logout [PROVIDER]`
|
|
7327
7328
|
|
|
@@ -7368,7 +7369,7 @@ EXAMPLES
|
|
|
7368
7369
|
$ codiac csp logout azure --to-script
|
|
7369
7370
|
```
|
|
7370
7371
|
|
|
7371
|
-
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7372
|
+
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/csp/logout.ts)_
|
|
7372
7373
|
|
|
7373
7374
|
## `codiac dep [NAME]`
|
|
7374
7375
|
|
|
@@ -7389,7 +7390,7 @@ DESCRIPTION
|
|
|
7389
7390
|
Installs a package into current project.
|
|
7390
7391
|
```
|
|
7391
7392
|
|
|
7392
|
-
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7393
|
+
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/dep.ts)_
|
|
7393
7394
|
|
|
7394
7395
|
## `codiac dep create [URL]`
|
|
7395
7396
|
|
|
@@ -7413,7 +7414,7 @@ DESCRIPTION
|
|
|
7413
7414
|
package version is used.
|
|
7414
7415
|
```
|
|
7415
7416
|
|
|
7416
|
-
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7417
|
+
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/dep/create.ts)_
|
|
7417
7418
|
|
|
7418
7419
|
## `codiac dep install`
|
|
7419
7420
|
|
|
@@ -7430,7 +7431,7 @@ DESCRIPTION
|
|
|
7430
7431
|
installs any missing dependency packages into the local project folder.
|
|
7431
7432
|
```
|
|
7432
7433
|
|
|
7433
|
-
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7434
|
+
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/dep/install.ts)_
|
|
7434
7435
|
|
|
7435
7436
|
## `codiac dep list`
|
|
7436
7437
|
|
|
@@ -7447,7 +7448,7 @@ DESCRIPTION
|
|
|
7447
7448
|
Shows the dependencies for the project.
|
|
7448
7449
|
```
|
|
7449
7450
|
|
|
7450
|
-
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7451
|
+
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/dep/list.ts)_
|
|
7451
7452
|
|
|
7452
7453
|
## `codiac dep remove [NAME]`
|
|
7453
7454
|
|
|
@@ -7470,7 +7471,7 @@ DESCRIPTION
|
|
|
7470
7471
|
Removes a dependency from the project.
|
|
7471
7472
|
```
|
|
7472
7473
|
|
|
7473
|
-
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7474
|
+
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/dep/remove.ts)_
|
|
7474
7475
|
|
|
7475
7476
|
## `codiac dep source [NAME]`
|
|
7476
7477
|
|
|
@@ -7496,7 +7497,7 @@ ALIASES
|
|
|
7496
7497
|
$ codiac dep src
|
|
7497
7498
|
```
|
|
7498
7499
|
|
|
7499
|
-
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7500
|
+
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/dep/source.ts)_
|
|
7500
7501
|
|
|
7501
7502
|
## `codiac dep src [NAME]`
|
|
7502
7503
|
|
|
@@ -7540,7 +7541,7 @@ DESCRIPTION
|
|
|
7540
7541
|
Publishes the dependency in its current state and upgrades to it in the main project.
|
|
7541
7542
|
```
|
|
7542
7543
|
|
|
7543
|
-
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7544
|
+
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/dep/syncup.ts)_
|
|
7544
7545
|
|
|
7545
7546
|
## `codiac dep unsource [NAME]`
|
|
7546
7547
|
|
|
@@ -7568,7 +7569,7 @@ ALIASES
|
|
|
7568
7569
|
$ codiac dep unsrc
|
|
7569
7570
|
```
|
|
7570
7571
|
|
|
7571
|
-
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7572
|
+
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/dep/unsource.ts)_
|
|
7572
7573
|
|
|
7573
7574
|
## `codiac dep unsrc [NAME]`
|
|
7574
7575
|
|
|
@@ -7615,7 +7616,7 @@ DESCRIPTION
|
|
|
7615
7616
|
describe the command here
|
|
7616
7617
|
```
|
|
7617
7618
|
|
|
7618
|
-
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7619
|
+
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/dep/upgrade.ts)_
|
|
7619
7620
|
|
|
7620
7621
|
## `codiac deploy`
|
|
7621
7622
|
|
|
@@ -7668,7 +7669,7 @@ EXAMPLES
|
|
|
7668
7669
|
$ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
|
|
7669
7670
|
```
|
|
7670
7671
|
|
|
7671
|
-
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7672
|
+
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/deploy.ts)_
|
|
7672
7673
|
|
|
7673
7674
|
## `codiac domain map [DOMAIN]`
|
|
7674
7675
|
|
|
@@ -7824,7 +7825,7 @@ EXAMPLES
|
|
|
7824
7825
|
cod enterprise create my-enterprise-code --silent
|
|
7825
7826
|
```
|
|
7826
7827
|
|
|
7827
|
-
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7828
|
+
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/enterprise/create.ts)_
|
|
7828
7829
|
|
|
7829
7830
|
## `codiac enterprise list`
|
|
7830
7831
|
|
|
@@ -7879,7 +7880,7 @@ EXAMPLES
|
|
|
7879
7880
|
$ codiac enterprise list --to-script
|
|
7880
7881
|
```
|
|
7881
7882
|
|
|
7882
|
-
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7883
|
+
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/enterprise/list.ts)_
|
|
7883
7884
|
|
|
7884
7885
|
## `codiac env add [SETTING]`
|
|
7885
7886
|
|
|
@@ -7929,7 +7930,7 @@ EXAMPLES
|
|
|
7929
7930
|
$ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
|
|
7930
7931
|
```
|
|
7931
7932
|
|
|
7932
|
-
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7933
|
+
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/env/add.ts)_
|
|
7933
7934
|
|
|
7934
7935
|
## `codiac enviro cluster attach`
|
|
7935
7936
|
|
|
@@ -8232,7 +8233,7 @@ ALIASES
|
|
|
8232
8233
|
$ codiac infrx enviro cluster attach
|
|
8233
8234
|
```
|
|
8234
8235
|
|
|
8235
|
-
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8236
|
+
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/environment/cluster/attach.ts)_
|
|
8236
8237
|
|
|
8237
8238
|
## `codiac environment cluster detach`
|
|
8238
8239
|
|
|
@@ -8278,7 +8279,7 @@ ALIASES
|
|
|
8278
8279
|
$ codiac infrx enviro cluster detach
|
|
8279
8280
|
```
|
|
8280
8281
|
|
|
8281
|
-
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8282
|
+
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/environment/cluster/detach.ts)_
|
|
8282
8283
|
|
|
8283
8284
|
## `codiac environment create [NAME]`
|
|
8284
8285
|
|
|
@@ -8341,7 +8342,7 @@ EXAMPLES
|
|
|
8341
8342
|
cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
|
|
8342
8343
|
```
|
|
8343
8344
|
|
|
8344
|
-
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8345
|
+
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/environment/create.ts)_
|
|
8345
8346
|
|
|
8346
8347
|
## `codiac environment delete [NAME]`
|
|
8347
8348
|
|
|
@@ -8402,7 +8403,7 @@ EXAMPLES
|
|
|
8402
8403
|
$ codiac environment delete dev --enterprise main --to-script
|
|
8403
8404
|
```
|
|
8404
8405
|
|
|
8405
|
-
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8406
|
+
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/environment/delete.ts)_
|
|
8406
8407
|
|
|
8407
8408
|
## `codiac environment list`
|
|
8408
8409
|
|
|
@@ -8453,7 +8454,7 @@ EXAMPLES
|
|
|
8453
8454
|
$ codiac environment list -e myEnterprise --silent
|
|
8454
8455
|
```
|
|
8455
8456
|
|
|
8456
|
-
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8457
|
+
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/environment/list.ts)_
|
|
8457
8458
|
|
|
8458
8459
|
## `codiac fileshare capture`
|
|
8459
8460
|
|
|
@@ -8537,7 +8538,7 @@ ALIASES
|
|
|
8537
8538
|
$ codiac fileshare capture
|
|
8538
8539
|
```
|
|
8539
8540
|
|
|
8540
|
-
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8541
|
+
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/filestore/capture.ts)_
|
|
8541
8542
|
|
|
8542
8543
|
## `codiac filestore forget`
|
|
8543
8544
|
|
|
@@ -8584,7 +8585,7 @@ EXAMPLES
|
|
|
8584
8585
|
$ codiac filestore forget
|
|
8585
8586
|
```
|
|
8586
8587
|
|
|
8587
|
-
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8588
|
+
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/filestore/forget.ts)_
|
|
8588
8589
|
|
|
8589
8590
|
## `codiac filestore list`
|
|
8590
8591
|
|
|
@@ -8630,7 +8631,7 @@ EXAMPLES
|
|
|
8630
8631
|
$ codiac filestore list
|
|
8631
8632
|
```
|
|
8632
8633
|
|
|
8633
|
-
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8634
|
+
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/filestore/list.ts)_
|
|
8634
8635
|
|
|
8635
8636
|
## `codiac help [COMMANDS]`
|
|
8636
8637
|
|
|
@@ -8716,7 +8717,7 @@ EXAMPLES
|
|
|
8716
8717
|
$ codiac host delete
|
|
8717
8718
|
```
|
|
8718
8719
|
|
|
8719
|
-
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8720
|
+
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/host/delete.ts)_
|
|
8720
8721
|
|
|
8721
8722
|
## `codiac host list [DOMAIN]`
|
|
8722
8723
|
|
|
@@ -8760,7 +8761,7 @@ EXAMPLES
|
|
|
8760
8761
|
$ codiac host list
|
|
8761
8762
|
```
|
|
8762
8763
|
|
|
8763
|
-
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8764
|
+
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/host/list.ts)_
|
|
8764
8765
|
|
|
8765
8766
|
## `codiac host map [DOMAIN]`
|
|
8766
8767
|
|
|
@@ -8814,7 +8815,7 @@ EXAMPLES
|
|
|
8814
8815
|
$ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
|
|
8815
8816
|
```
|
|
8816
8817
|
|
|
8817
|
-
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8818
|
+
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/host/map.ts)_
|
|
8818
8819
|
|
|
8819
8820
|
## `codiac host view [DOMAIN]`
|
|
8820
8821
|
|
|
@@ -8859,7 +8860,7 @@ EXAMPLES
|
|
|
8859
8860
|
$ codiac host view
|
|
8860
8861
|
```
|
|
8861
8862
|
|
|
8862
|
-
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8863
|
+
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/host/view.ts)_
|
|
8863
8864
|
|
|
8864
8865
|
## `codiac identify [TOKENNAME]`
|
|
8865
8866
|
|
|
@@ -8931,7 +8932,7 @@ ALIASES
|
|
|
8931
8932
|
$ codiac token
|
|
8932
8933
|
```
|
|
8933
8934
|
|
|
8934
|
-
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8935
|
+
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/identity.ts)_
|
|
8935
8936
|
|
|
8936
8937
|
## `codiac identity delete [NAME]`
|
|
8937
8938
|
|
|
@@ -8956,7 +8957,7 @@ ALIASES
|
|
|
8956
8957
|
$ codiac token remove
|
|
8957
8958
|
```
|
|
8958
8959
|
|
|
8959
|
-
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8960
|
+
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/identity/delete.ts)_
|
|
8960
8961
|
|
|
8961
8962
|
## `codiac identity list`
|
|
8962
8963
|
|
|
@@ -8978,7 +8979,7 @@ ALIASES
|
|
|
8978
8979
|
$ codiac token list
|
|
8979
8980
|
```
|
|
8980
8981
|
|
|
8981
|
-
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8982
|
+
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/identity/list.ts)_
|
|
8982
8983
|
|
|
8983
8984
|
## `codiac identity remove [NAME]`
|
|
8984
8985
|
|
|
@@ -9299,7 +9300,7 @@ DESCRIPTION
|
|
|
9299
9300
|
Saves a reference to an existing container registry.
|
|
9300
9301
|
```
|
|
9301
9302
|
|
|
9302
|
-
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9303
|
+
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/imageRegistry/capture.ts)_
|
|
9303
9304
|
|
|
9304
9305
|
## `codiac imageRegistry forget`
|
|
9305
9306
|
|
|
@@ -9320,7 +9321,7 @@ DESCRIPTION
|
|
|
9320
9321
|
Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
|
|
9321
9322
|
```
|
|
9322
9323
|
|
|
9323
|
-
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9324
|
+
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/imageRegistry/forget.ts)_
|
|
9324
9325
|
|
|
9325
9326
|
## `codiac imageRegistry list`
|
|
9326
9327
|
|
|
@@ -9362,7 +9363,7 @@ EXAMPLES
|
|
|
9362
9363
|
$ codiac imageRegistry list -o yaml > registries.yaml
|
|
9363
9364
|
```
|
|
9364
9365
|
|
|
9365
|
-
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9366
|
+
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/imageRegistry/list.ts)_
|
|
9366
9367
|
|
|
9367
9368
|
## `codiac imageRegistry pullSecret set`
|
|
9368
9369
|
|
|
@@ -9398,7 +9399,7 @@ ALIASES
|
|
|
9398
9399
|
$ codiac pullsecret
|
|
9399
9400
|
```
|
|
9400
9401
|
|
|
9401
|
-
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9402
|
+
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/imageRegistry/pullSecret/set.ts)_
|
|
9402
9403
|
|
|
9403
9404
|
## `codiac imageRegistry pullSecret unset`
|
|
9404
9405
|
|
|
@@ -9425,7 +9426,7 @@ ALIASES
|
|
|
9425
9426
|
$ codiac pullsecret unset
|
|
9426
9427
|
```
|
|
9427
9428
|
|
|
9428
|
-
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9429
|
+
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/imageRegistry/pullSecret/unset.ts)_
|
|
9429
9430
|
|
|
9430
9431
|
## `codiac images add [IMAGENAME]`
|
|
9431
9432
|
|
|
@@ -9486,7 +9487,7 @@ EXAMPLES
|
|
|
9486
9487
|
$ codiac images add your-company/your-image --to-script
|
|
9487
9488
|
```
|
|
9488
9489
|
|
|
9489
|
-
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9490
|
+
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/images/add.ts)_
|
|
9490
9491
|
|
|
9491
9492
|
## `codiac images list`
|
|
9492
9493
|
|
|
@@ -9509,7 +9510,7 @@ ALIASES
|
|
|
9509
9510
|
$ codiac img list
|
|
9510
9511
|
```
|
|
9511
9512
|
|
|
9512
|
-
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9513
|
+
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/images/list.ts)_
|
|
9513
9514
|
|
|
9514
9515
|
## `codiac images patch IMAGENAME`
|
|
9515
9516
|
|
|
@@ -9539,7 +9540,7 @@ ALIASES
|
|
|
9539
9540
|
$ codiac img patch
|
|
9540
9541
|
```
|
|
9541
9542
|
|
|
9542
|
-
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9543
|
+
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/images/patch.ts)_
|
|
9543
9544
|
|
|
9544
9545
|
## `codiac images remove IMAGENAME`
|
|
9545
9546
|
|
|
@@ -9565,7 +9566,7 @@ ALIASES
|
|
|
9565
9566
|
$ codiac img delete
|
|
9566
9567
|
```
|
|
9567
9568
|
|
|
9568
|
-
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9569
|
+
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/images/remove.ts)_
|
|
9569
9570
|
|
|
9570
9571
|
## `codiac images version NAME`
|
|
9571
9572
|
|
|
@@ -9591,7 +9592,7 @@ ALIASES
|
|
|
9591
9592
|
$ codiac img version get
|
|
9592
9593
|
```
|
|
9593
9594
|
|
|
9594
|
-
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9595
|
+
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/images/version.ts)_
|
|
9595
9596
|
|
|
9596
9597
|
## `codiac images version bump NAME`
|
|
9597
9598
|
|
|
@@ -9624,7 +9625,7 @@ ALIASES
|
|
|
9624
9625
|
$ codiac img version bump
|
|
9625
9626
|
```
|
|
9626
9627
|
|
|
9627
|
-
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9628
|
+
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/images/version/bump.ts)_
|
|
9628
9629
|
|
|
9629
9630
|
## `codiac img [IMAGENAME]`
|
|
9630
9631
|
|
|
@@ -9896,6 +9897,47 @@ ALIASES
|
|
|
9896
9897
|
$ codiac img version get
|
|
9897
9898
|
```
|
|
9898
9899
|
|
|
9900
|
+
## `codiac import cluster`
|
|
9901
|
+
|
|
9902
|
+
Scans all deployments in the current Kubernetes cluster and generates the Codiac CLI commands to import them.
|
|
9903
|
+
|
|
9904
|
+
```
|
|
9905
|
+
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] [--include-default]
|
|
9908
|
+
[--keyvault-name <value>]
|
|
9909
|
+
|
|
9910
|
+
FLAGS
|
|
9911
|
+
--cluster=<value> Cluster name to include in generated cabinet create commands (required by
|
|
9912
|
+
--generate-cabinet).
|
|
9913
|
+
--enterprise=<value> Enterprise code to include in generated commands.
|
|
9914
|
+
--environment=<value> Environment name to include in generated commands (required by --generate-cabinet).
|
|
9915
|
+
--generate-cabinet Include codiac cabinet create commands in the output (one per namespace). Requires
|
|
9916
|
+
--enterprise, --environment, and --cluster.
|
|
9917
|
+
--generate-pvcs Include codiac pvc create commands (enterprise-scope) plus codiac config add -t filestore
|
|
9918
|
+
bindings for every PersistentVolumeClaim mounted by a discovered deployment.
|
|
9919
|
+
--generate-secret-store Include codiac secretStore:capture commands in the output for discovered Azure Key Vaults.
|
|
9920
|
+
--generate-volume-mounts Include codiac asset volume create commands for every container volumeMount backed by a PVC
|
|
9921
|
+
on a discovered deployment.
|
|
9922
|
+
--include-default Include the "default" namespace (excluded by default).
|
|
9923
|
+
--keyvault-name=<value> Azure Key Vault name to use in generated secret references. When omitted, the K8s Secret
|
|
9924
|
+
name is used as a placeholder.
|
|
9925
|
+
--run-in-cluster Run using in-cluster Kubernetes config (service account). Required for headless/pod
|
|
9926
|
+
execution.
|
|
9927
|
+
|
|
9928
|
+
DESCRIPTION
|
|
9929
|
+
Scans all deployments in the current Kubernetes cluster and generates the Codiac CLI commands to import them.
|
|
9930
|
+
|
|
9931
|
+
EXAMPLES
|
|
9932
|
+
$ codiac import cluster --run-in-cluster
|
|
9933
|
+
|
|
9934
|
+
$ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-cabinet --generate-secret-store
|
|
9935
|
+
|
|
9936
|
+
$ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-pvcs --generate-volume-mounts
|
|
9937
|
+
```
|
|
9938
|
+
|
|
9939
|
+
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/import/cluster.ts)_
|
|
9940
|
+
|
|
9899
9941
|
## `codiac infrx cab create [CABINET]`
|
|
9900
9942
|
|
|
9901
9943
|
Initializes a cabinet for a given enterprise and environment. Returns an error if the cabinet already exists.
|
|
@@ -10739,7 +10781,7 @@ DESCRIPTION
|
|
|
10739
10781
|
Declares the given folder as a project root
|
|
10740
10782
|
```
|
|
10741
10783
|
|
|
10742
|
-
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10784
|
+
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/init.ts)_
|
|
10743
10785
|
|
|
10744
10786
|
## `codiac kit create`
|
|
10745
10787
|
|
|
@@ -10782,7 +10824,7 @@ EXAMPLES
|
|
|
10782
10824
|
$ codiac kit create -e myEnterprise -a myApi --to-script
|
|
10783
10825
|
```
|
|
10784
10826
|
|
|
10785
|
-
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10827
|
+
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/kit/create.ts)_
|
|
10786
10828
|
|
|
10787
10829
|
## `codiac login`
|
|
10788
10830
|
|
|
@@ -10841,7 +10883,7 @@ EXAMPLES
|
|
|
10841
10883
|
$ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
|
|
10842
10884
|
```
|
|
10843
10885
|
|
|
10844
|
-
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10886
|
+
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/login.ts)_
|
|
10845
10887
|
|
|
10846
10888
|
## `codiac logout`
|
|
10847
10889
|
|
|
@@ -10874,7 +10916,7 @@ EXAMPLES
|
|
|
10874
10916
|
$ codiac logout --to-script
|
|
10875
10917
|
```
|
|
10876
10918
|
|
|
10877
|
-
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10919
|
+
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/logout.ts)_
|
|
10878
10920
|
|
|
10879
10921
|
## `codiac merge [BRANCH]`
|
|
10880
10922
|
|
|
@@ -10895,7 +10937,7 @@ DESCRIPTION
|
|
|
10895
10937
|
Merges the given branch into the current branch of the main project and on any sourced dependencies.
|
|
10896
10938
|
```
|
|
10897
10939
|
|
|
10898
|
-
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10940
|
+
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/merge.ts)_
|
|
10899
10941
|
|
|
10900
10942
|
## `codiac noc cluster capture`
|
|
10901
10943
|
|
|
@@ -10947,7 +10989,7 @@ EXAMPLES
|
|
|
10947
10989
|
cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
|
|
10948
10990
|
```
|
|
10949
10991
|
|
|
10950
|
-
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10992
|
+
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/capture.ts)_
|
|
10951
10993
|
|
|
10952
10994
|
## `codiac noc cluster create [NAME]`
|
|
10953
10995
|
|
|
@@ -11037,7 +11079,7 @@ FLAG DESCRIPTIONS
|
|
|
11037
11079
|
initialization is always skipped in that mode.
|
|
11038
11080
|
```
|
|
11039
11081
|
|
|
11040
|
-
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11082
|
+
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/create.ts)_
|
|
11041
11083
|
|
|
11042
11084
|
## `codiac noc cluster credentials-set [NAME]`
|
|
11043
11085
|
|
|
@@ -11092,7 +11134,7 @@ EXAMPLES
|
|
|
11092
11134
|
$ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
|
|
11093
11135
|
```
|
|
11094
11136
|
|
|
11095
|
-
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11137
|
+
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/credentials-set.ts)_
|
|
11096
11138
|
|
|
11097
11139
|
## `codiac noc cluster define [NAME]`
|
|
11098
11140
|
|
|
@@ -11166,7 +11208,7 @@ EXAMPLES
|
|
|
11166
11208
|
$ codiac noc cluster define my-cluster --to-script
|
|
11167
11209
|
```
|
|
11168
11210
|
|
|
11169
|
-
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11211
|
+
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/define.ts)_
|
|
11170
11212
|
|
|
11171
11213
|
## `codiac noc cluster deinit`
|
|
11172
11214
|
|
|
@@ -11206,7 +11248,7 @@ EXAMPLES
|
|
|
11206
11248
|
$ codiac noc cluster deinit -n my-cluster --to-script
|
|
11207
11249
|
```
|
|
11208
11250
|
|
|
11209
|
-
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11251
|
+
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/deinit.ts)_
|
|
11210
11252
|
|
|
11211
11253
|
## `codiac noc cluster destroy [NAME]`
|
|
11212
11254
|
|
|
@@ -11240,7 +11282,7 @@ ALIASES
|
|
|
11240
11282
|
$ codiac cluster destroy
|
|
11241
11283
|
```
|
|
11242
11284
|
|
|
11243
|
-
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11285
|
+
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/destroy.ts)_
|
|
11244
11286
|
|
|
11245
11287
|
## `codiac noc cluster forget`
|
|
11246
11288
|
|
|
@@ -11291,7 +11333,7 @@ EXAMPLES
|
|
|
11291
11333
|
$ codiac noc cluster forget --running
|
|
11292
11334
|
```
|
|
11293
11335
|
|
|
11294
|
-
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11336
|
+
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/forget.ts)_
|
|
11295
11337
|
|
|
11296
11338
|
## `codiac noc cluster grant`
|
|
11297
11339
|
|
|
@@ -11329,7 +11371,7 @@ EXAMPLES
|
|
|
11329
11371
|
$ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
|
|
11330
11372
|
```
|
|
11331
11373
|
|
|
11332
|
-
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11374
|
+
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/grant.ts)_
|
|
11333
11375
|
|
|
11334
11376
|
## `codiac noc cluster init`
|
|
11335
11377
|
|
|
@@ -11375,7 +11417,7 @@ EXAMPLES
|
|
|
11375
11417
|
$ codiac noc cluster init -n my-cluster --to-script
|
|
11376
11418
|
```
|
|
11377
11419
|
|
|
11378
|
-
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11420
|
+
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/init.ts)_
|
|
11379
11421
|
|
|
11380
11422
|
## `codiac noc cluster journal [CLUSTER]`
|
|
11381
11423
|
|
|
@@ -11424,7 +11466,7 @@ EXAMPLES
|
|
|
11424
11466
|
$ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
|
|
11425
11467
|
```
|
|
11426
11468
|
|
|
11427
|
-
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11469
|
+
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/journal.ts)_
|
|
11428
11470
|
|
|
11429
11471
|
## `codiac noc cluster list`
|
|
11430
11472
|
|
|
@@ -11485,7 +11527,7 @@ EXAMPLES
|
|
|
11485
11527
|
$ codiac noc cluster list -e myEnterprise --to-script
|
|
11486
11528
|
```
|
|
11487
11529
|
|
|
11488
|
-
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11530
|
+
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/list.ts)_
|
|
11489
11531
|
|
|
11490
11532
|
## `codiac noc cluster restore [NAME]`
|
|
11491
11533
|
|
|
@@ -11545,7 +11587,7 @@ EXAMPLES
|
|
|
11545
11587
|
$ codiac noc cluster restore prod-cluster-1 --to-script
|
|
11546
11588
|
```
|
|
11547
11589
|
|
|
11548
|
-
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11590
|
+
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/noc/cluster/restore.ts)_
|
|
11549
11591
|
|
|
11550
11592
|
## `codiac pkg add [DEFINITIONFILE]`
|
|
11551
11593
|
|
|
@@ -11579,7 +11621,7 @@ DESCRIPTION
|
|
|
11579
11621
|
Configures a package to be built and published by the project.
|
|
11580
11622
|
```
|
|
11581
11623
|
|
|
11582
|
-
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11624
|
+
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/pkg/add.ts)_
|
|
11583
11625
|
|
|
11584
11626
|
## `codiac pkg delete [PACKAGENAME]`
|
|
11585
11627
|
|
|
@@ -11617,7 +11659,7 @@ DESCRIPTION
|
|
|
11617
11659
|
Renders the list of packages that are configured as project exports.
|
|
11618
11660
|
```
|
|
11619
11661
|
|
|
11620
|
-
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11662
|
+
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/pkg/list.ts)_
|
|
11621
11663
|
|
|
11622
11664
|
## `codiac pkg patch PACKAGENAME`
|
|
11623
11665
|
|
|
@@ -11643,7 +11685,7 @@ DESCRIPTION
|
|
|
11643
11685
|
registryUrl and/or environment.
|
|
11644
11686
|
```
|
|
11645
11687
|
|
|
11646
|
-
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11688
|
+
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/pkg/patch.ts)_
|
|
11647
11689
|
|
|
11648
11690
|
## `codiac pkg remove [PACKAGENAME]`
|
|
11649
11691
|
|
|
@@ -11666,7 +11708,7 @@ ALIASES
|
|
|
11666
11708
|
$ codiac pkg delete
|
|
11667
11709
|
```
|
|
11668
11710
|
|
|
11669
|
-
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11711
|
+
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/pkg/remove.ts)_
|
|
11670
11712
|
|
|
11671
11713
|
## `codiac portal`
|
|
11672
11714
|
|
|
@@ -11699,7 +11741,7 @@ EXAMPLES
|
|
|
11699
11741
|
$ codiac portal --to-script
|
|
11700
11742
|
```
|
|
11701
11743
|
|
|
11702
|
-
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11744
|
+
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/portal.ts)_
|
|
11703
11745
|
|
|
11704
11746
|
## `codiac probe create [CMD]`
|
|
11705
11747
|
|
|
@@ -11820,7 +11862,7 @@ DESCRIPTION
|
|
|
11820
11862
|
Publishes the exports (packages and images) declared in the ProjectConfig.
|
|
11821
11863
|
```
|
|
11822
11864
|
|
|
11823
|
-
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11865
|
+
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/publish.ts)_
|
|
11824
11866
|
|
|
11825
11867
|
## `codiac pull [NAME]`
|
|
11826
11868
|
|
|
@@ -11844,7 +11886,7 @@ DESCRIPTION
|
|
|
11844
11886
|
Pulls all commits from upstream to local.
|
|
11845
11887
|
```
|
|
11846
11888
|
|
|
11847
|
-
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11889
|
+
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/pull.ts)_
|
|
11848
11890
|
|
|
11849
11891
|
## `codiac pullsecret`
|
|
11850
11892
|
|
|
@@ -11927,7 +11969,7 @@ DESCRIPTION
|
|
|
11927
11969
|
Pushes all local commits upstream.
|
|
11928
11970
|
```
|
|
11929
11971
|
|
|
11930
|
-
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11972
|
+
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/push.ts)_
|
|
11931
11973
|
|
|
11932
11974
|
## `codiac pvc create`
|
|
11933
11975
|
|
|
@@ -12011,7 +12053,7 @@ EXAMPLES
|
|
|
12011
12053
|
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
|
|
12012
12054
|
```
|
|
12013
12055
|
|
|
12014
|
-
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12056
|
+
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/pvc/create.ts)_
|
|
12015
12057
|
|
|
12016
12058
|
## `codiac pvc delete`
|
|
12017
12059
|
|
|
@@ -12058,7 +12100,7 @@ EXAMPLES
|
|
|
12058
12100
|
$ codiac pvc delete --id <fileStoreDefId> --silent
|
|
12059
12101
|
```
|
|
12060
12102
|
|
|
12061
|
-
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12103
|
+
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/pvc/delete.ts)_
|
|
12062
12104
|
|
|
12063
12105
|
## `codiac pvc get`
|
|
12064
12106
|
|
|
@@ -12099,7 +12141,7 @@ EXAMPLES
|
|
|
12099
12141
|
$ codiac pvc get --name app-documents-share --silent -o json
|
|
12100
12142
|
```
|
|
12101
12143
|
|
|
12102
|
-
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12144
|
+
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/pvc/get.ts)_
|
|
12103
12145
|
|
|
12104
12146
|
## `codiac pvc list`
|
|
12105
12147
|
|
|
@@ -12142,7 +12184,7 @@ EXAMPLES
|
|
|
12142
12184
|
$ codiac pvc list -o yaml
|
|
12143
12185
|
```
|
|
12144
12186
|
|
|
12145
|
-
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12187
|
+
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/pvc/list.ts)_
|
|
12146
12188
|
|
|
12147
12189
|
## `codiac relay-version`
|
|
12148
12190
|
|
|
@@ -12159,7 +12201,7 @@ EXAMPLES
|
|
|
12159
12201
|
$ codiac relay-version
|
|
12160
12202
|
```
|
|
12161
12203
|
|
|
12162
|
-
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12204
|
+
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/relay-version.ts)_
|
|
12163
12205
|
|
|
12164
12206
|
## `codiac run`
|
|
12165
12207
|
|
|
@@ -12201,7 +12243,7 @@ DESCRIPTION
|
|
|
12201
12243
|
Runs the latest build of the api container locally.
|
|
12202
12244
|
```
|
|
12203
12245
|
|
|
12204
|
-
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12246
|
+
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/run.ts)_
|
|
12205
12247
|
|
|
12206
12248
|
## `codiac secretStore`
|
|
12207
12249
|
|
|
@@ -12263,7 +12305,7 @@ ALIASES
|
|
|
12263
12305
|
$ codiac secretStore
|
|
12264
12306
|
```
|
|
12265
12307
|
|
|
12266
|
-
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12308
|
+
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/secretStore/capture.ts)_
|
|
12267
12309
|
|
|
12268
12310
|
## `codiac secretStore forget`
|
|
12269
12311
|
|
|
@@ -12284,7 +12326,7 @@ DESCRIPTION
|
|
|
12284
12326
|
Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
|
|
12285
12327
|
```
|
|
12286
12328
|
|
|
12287
|
-
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12329
|
+
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/secretStore/forget.ts)_
|
|
12288
12330
|
|
|
12289
12331
|
## `codiac secretStore list`
|
|
12290
12332
|
|
|
@@ -12329,7 +12371,7 @@ EXAMPLES
|
|
|
12329
12371
|
$ codiac secretStore list
|
|
12330
12372
|
```
|
|
12331
12373
|
|
|
12332
|
-
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12374
|
+
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/secretStore/list.ts)_
|
|
12333
12375
|
|
|
12334
12376
|
## `codiac shell init`
|
|
12335
12377
|
|
|
@@ -12367,7 +12409,7 @@ EXAMPLES
|
|
|
12367
12409
|
Invoke-Expression (codiac shell init --shell powershell)
|
|
12368
12410
|
```
|
|
12369
12411
|
|
|
12370
|
-
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12412
|
+
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/shell/init.ts)_
|
|
12371
12413
|
|
|
12372
12414
|
## `codiac snapshot deploy`
|
|
12373
12415
|
|
|
@@ -12395,7 +12437,7 @@ DESCRIPTION
|
|
|
12395
12437
|
Deploys all assets in a snapshot to a target cabinet.
|
|
12396
12438
|
```
|
|
12397
12439
|
|
|
12398
|
-
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12440
|
+
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/snapshot/deploy.ts)_
|
|
12399
12441
|
|
|
12400
12442
|
## `codiac snapshot list`
|
|
12401
12443
|
|
|
@@ -12444,7 +12486,7 @@ EXAMPLES
|
|
|
12444
12486
|
$ codiac snapshot list -e myEnterprise --silent
|
|
12445
12487
|
```
|
|
12446
12488
|
|
|
12447
|
-
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12489
|
+
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/snapshot/list.ts)_
|
|
12448
12490
|
|
|
12449
12491
|
## `codiac snapshot tag`
|
|
12450
12492
|
|
|
@@ -12487,7 +12529,7 @@ EXAMPLES
|
|
|
12487
12529
|
$ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12488
12530
|
```
|
|
12489
12531
|
|
|
12490
|
-
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12532
|
+
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/snapshot/tag.ts)_
|
|
12491
12533
|
|
|
12492
12534
|
## `codiac snapshot untag`
|
|
12493
12535
|
|
|
@@ -12530,7 +12572,7 @@ EXAMPLES
|
|
|
12530
12572
|
$ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12531
12573
|
```
|
|
12532
12574
|
|
|
12533
|
-
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12575
|
+
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/snapshot/untag.ts)_
|
|
12534
12576
|
|
|
12535
12577
|
## `codiac stage [FILES]`
|
|
12536
12578
|
|
|
@@ -12552,7 +12594,7 @@ DESCRIPTION
|
|
|
12552
12594
|
Flags files to be included in the next commit.
|
|
12553
12595
|
```
|
|
12554
12596
|
|
|
12555
|
-
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12597
|
+
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/stage.ts)_
|
|
12556
12598
|
|
|
12557
12599
|
## `codiac stash [FILE]`
|
|
12558
12600
|
|
|
@@ -12574,7 +12616,7 @@ DESCRIPTION
|
|
|
12574
12616
|
describe the command here
|
|
12575
12617
|
```
|
|
12576
12618
|
|
|
12577
|
-
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12619
|
+
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/stash.ts)_
|
|
12578
12620
|
|
|
12579
12621
|
## `codiac status`
|
|
12580
12622
|
|
|
@@ -12593,7 +12635,7 @@ DESCRIPTION
|
|
|
12593
12635
|
Shows the current uncommitted changes in the current branch.
|
|
12594
12636
|
```
|
|
12595
12637
|
|
|
12596
|
-
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12638
|
+
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/status.ts)_
|
|
12597
12639
|
|
|
12598
12640
|
## `codiac stop`
|
|
12599
12641
|
|
|
@@ -12611,7 +12653,7 @@ DESCRIPTION
|
|
|
12611
12653
|
Stops the running container for this project
|
|
12612
12654
|
```
|
|
12613
12655
|
|
|
12614
|
-
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12656
|
+
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/stop.ts)_
|
|
12615
12657
|
|
|
12616
12658
|
## `codiac switch [NAME]`
|
|
12617
12659
|
|
|
@@ -12631,7 +12673,7 @@ DESCRIPTION
|
|
|
12631
12673
|
Changes branch on the main project and any sourced dependencies.
|
|
12632
12674
|
```
|
|
12633
12675
|
|
|
12634
|
-
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12676
|
+
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/switch.ts)_
|
|
12635
12677
|
|
|
12636
12678
|
## `codiac sync [NAME]`
|
|
12637
12679
|
|
|
@@ -12656,7 +12698,7 @@ DESCRIPTION
|
|
|
12656
12698
|
Merges the given branch into the current branch.
|
|
12657
12699
|
```
|
|
12658
12700
|
|
|
12659
|
-
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12701
|
+
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/sync.ts)_
|
|
12660
12702
|
|
|
12661
12703
|
## `codiac tenant create [NAME]`
|
|
12662
12704
|
|
|
@@ -12699,7 +12741,7 @@ EXAMPLES
|
|
|
12699
12741
|
$ codiac tenant create -n 'Acme Corp' -c acme --to-script
|
|
12700
12742
|
```
|
|
12701
12743
|
|
|
12702
|
-
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12744
|
+
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/tenant/create.ts)_
|
|
12703
12745
|
|
|
12704
12746
|
## `codiac tenant switch [CODE]`
|
|
12705
12747
|
|
|
@@ -12739,7 +12781,7 @@ EXAMPLES
|
|
|
12739
12781
|
$ codiac tenant switch my-tenant-code --to-script
|
|
12740
12782
|
```
|
|
12741
12783
|
|
|
12742
|
-
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12784
|
+
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/tenant/switch.ts)_
|
|
12743
12785
|
|
|
12744
12786
|
## `codiac token [TOKENNAME]`
|
|
12745
12787
|
|
|
@@ -12861,7 +12903,7 @@ DESCRIPTION
|
|
|
12861
12903
|
Flags files to be included in the next commit.
|
|
12862
12904
|
```
|
|
12863
12905
|
|
|
12864
|
-
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12906
|
+
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/unstage.ts)_
|
|
12865
12907
|
|
|
12866
12908
|
## `codiac update [CHANNEL]`
|
|
12867
12909
|
|
|
@@ -13048,7 +13090,7 @@ EXAMPLES
|
|
|
13048
13090
|
$ codiac whereami --to-script
|
|
13049
13091
|
```
|
|
13050
13092
|
|
|
13051
|
-
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13093
|
+
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/whereami.ts)_
|
|
13052
13094
|
|
|
13053
13095
|
## `codiac whoami`
|
|
13054
13096
|
|
|
@@ -13090,5 +13132,5 @@ EXAMPLES
|
|
|
13090
13132
|
$ codiac whoami --to-script
|
|
13091
13133
|
```
|
|
13092
13134
|
|
|
13093
|
-
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13135
|
+
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.230/src/commands/whoami.ts)_
|
|
13094
13136
|
<!-- commandsstop -->
|