@codiac.io/codiac-cli 1.3.237 → 1.3.239
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 +218 -160
- package/dist/apis/codiac-relay/gen/client.d.ts +5 -1
- package/dist/apis/codiac-relay/gen/client.js +8 -0
- package/dist/apis/codiac-relay/gen/client.js.map +1 -1
- package/dist/apis/codiac-relay/gen/contracts/types.gen.d.ts +129 -0
- package/dist/apis/codiac-relay/gen/contracts/types.gen.js.map +1 -1
- package/dist/apis/codiac-relay/i-client.d.ts +4 -0
- package/dist/apis/codiac-relay-nats/gen/client.d.ts +5 -0
- package/dist/apis/codiac-relay-nats/gen/client.js +9 -0
- package/dist/apis/codiac-relay-nats/gen/client.js.map +1 -1
- package/dist/apis/codiac-relay-nats/gen/contracts/types.gen.d.ts +62 -0
- package/dist/commands/ai/agent/install.d.ts +73 -0
- package/dist/commands/ai/agent/install.js +432 -0
- package/dist/commands/ai/agent/install.js.map +1 -0
- package/dist/commands/imageRegistry/capture.d.ts +7 -1
- package/dist/commands/imageRegistry/capture.js +63 -4
- package/dist/commands/imageRegistry/capture.js.map +1 -1
- package/dist/message-contracts/workunit-contracts.d.ts +5 -0
- package/dist/uilogic/framework-spec.d.ts +13 -0
- package/dist/uilogic/framework-spec.js +17 -0
- package/dist/uilogic/framework-spec.js.map +1 -0
- package/dist/uilogic/lrp-watcher-utils.js +15 -2
- package/dist/uilogic/lrp-watcher-utils.js.map +1 -1
- package/oclif.manifest.json +143 -1
- package/package.json +2 -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.239 linux-x64 node-v22.15.1
|
|
25
25
|
$ codiac --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ codiac COMMAND
|
|
@@ -193,6 +193,7 @@ USAGE
|
|
|
193
193
|
- [`codiac whoami`](#codiac-whoami)
|
|
194
194
|
|
|
195
195
|
<!-- commands -->
|
|
196
|
+
* [`codiac ai agent install`](#codiac-ai-agent-install)
|
|
196
197
|
* [`codiac asset create`](#codiac-asset-create)
|
|
197
198
|
* [`codiac asset edit`](#codiac-asset-edit)
|
|
198
199
|
* [`codiac asset entrypoint`](#codiac-asset-entrypoint)
|
|
@@ -474,6 +475,61 @@ USAGE
|
|
|
474
475
|
* [`codiac whereami`](#codiac-whereami)
|
|
475
476
|
* [`codiac whoami`](#codiac-whoami)
|
|
476
477
|
|
|
478
|
+
## `codiac ai agent install`
|
|
479
|
+
|
|
480
|
+
Provisions a stateful Codiac agent workload (openclaw, hermes, or byoa) into an enterprise cabinet.
|
|
481
|
+
|
|
482
|
+
```
|
|
483
|
+
USAGE
|
|
484
|
+
$ codiac ai agent install [-h] [-e <value>] [-t openclaw|hermes|byoa] [-c <value>] [-n <value>] [-g] [--naming
|
|
485
|
+
<value>] [--domain <value>] [--input <value>] [--take-defaults | --silent] [--echo | --to-script | ]
|
|
486
|
+
|
|
487
|
+
FLAGS
|
|
488
|
+
-c, --cabinet=<value> Cabinet (environment) into which the agent workload is deployed.
|
|
489
|
+
-e, --enterpriseCode=<value> Code name identifying the target enterprise.
|
|
490
|
+
-g, --[no-]ingress Expose the agent web terminal through an ingress host (use --no-ingress to keep it
|
|
491
|
+
cluster-internal).
|
|
492
|
+
-h, --help Show CLI help.
|
|
493
|
+
-n, --name=<value> Asset name for the agent workload (defaults to <type>-agent).
|
|
494
|
+
-t, --type=<option> Agent framework to install: openclaw, hermes, or byoa (bring-your-own-agent).
|
|
495
|
+
<options: openclaw|hermes|byoa>
|
|
496
|
+
--domain=<value> Domain to use with the host-naming strategy for the ingress host.
|
|
497
|
+
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
498
|
+
--input=<value>... Pre-supply a needs_action input as key=value (repeatable), e.g. --input
|
|
499
|
+
openRouterKey=sk-... . Lets --silent/headless runs resolve secret/decision prompts
|
|
500
|
+
without interaction.
|
|
501
|
+
--naming=<value> Host-naming strategy to use for the ingress host (prompted during install when omitted).
|
|
502
|
+
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
503
|
+
--take-defaults Prevents prompting for confirmation on parameters that were passed in or were
|
|
504
|
+
automatically set to default values (Irrelevant in --silent mode). This behavior does
|
|
505
|
+
NOT apply to scenarios where the command needs to override invalid user input; such
|
|
506
|
+
cases will always prompt for confirmation.
|
|
507
|
+
--to-script Renders the equivalent non-interactive command without executing it.
|
|
508
|
+
|
|
509
|
+
DESCRIPTION
|
|
510
|
+
Provisions a stateful Codiac agent workload (openclaw, hermes, or byoa) into an enterprise cabinet.
|
|
511
|
+
|
|
512
|
+
EXAMPLES
|
|
513
|
+
Install a Hermes agent into the dev cabinet of the ben enterprise.
|
|
514
|
+
|
|
515
|
+
$ codiac ai agent install -e ben -t hermes -c dev
|
|
516
|
+
|
|
517
|
+
Non-interactive (scripted) invocation. Ingress defaults on, so a host-naming strategy must be given explicitly;
|
|
518
|
+
shared_ingress_ip needs no --domain.
|
|
519
|
+
|
|
520
|
+
$ codiac ai agent install -e ben -t hermes -c dev --silent --naming shared_ingress_ip
|
|
521
|
+
|
|
522
|
+
Renders the equivalent silent command and then executes.
|
|
523
|
+
|
|
524
|
+
$ codiac ai agent install -e ben -t hermes -c dev --echo
|
|
525
|
+
|
|
526
|
+
Renders the equivalent silent command without executing.
|
|
527
|
+
|
|
528
|
+
$ codiac ai agent install -e ben -t hermes -c dev --to-script
|
|
529
|
+
```
|
|
530
|
+
|
|
531
|
+
_See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/ai/agent/install.ts)_
|
|
532
|
+
|
|
477
533
|
## `codiac asset create`
|
|
478
534
|
|
|
479
535
|
Creates a new asset in the given enterprise from an image that exists in a container registry.
|
|
@@ -593,7 +649,7 @@ EXAMPLES
|
|
|
593
649
|
$ codiac asset create -e myEnterprise -n redis --helm --chart redis --chart-repo bitnami --silent
|
|
594
650
|
```
|
|
595
651
|
|
|
596
|
-
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
652
|
+
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/create.ts)_
|
|
597
653
|
|
|
598
654
|
## `codiac asset edit`
|
|
599
655
|
|
|
@@ -651,7 +707,7 @@ EXAMPLES
|
|
|
651
707
|
$ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
|
|
652
708
|
```
|
|
653
709
|
|
|
654
|
-
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
710
|
+
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/edit.ts)_
|
|
655
711
|
|
|
656
712
|
## `codiac asset entrypoint`
|
|
657
713
|
|
|
@@ -772,7 +828,7 @@ EXAMPLES
|
|
|
772
828
|
$ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
|
|
773
829
|
```
|
|
774
830
|
|
|
775
|
-
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
831
|
+
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/entrypoint/delete.ts)_
|
|
776
832
|
|
|
777
833
|
## `codiac asset entrypoint set`
|
|
778
834
|
|
|
@@ -841,7 +897,7 @@ EXAMPLES
|
|
|
841
897
|
--input=/backup/workflows'
|
|
842
898
|
```
|
|
843
899
|
|
|
844
|
-
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
900
|
+
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/entrypoint/set.ts)_
|
|
845
901
|
|
|
846
902
|
## `codiac asset get [CMD]`
|
|
847
903
|
|
|
@@ -948,7 +1004,7 @@ EXAMPLES
|
|
|
948
1004
|
$ codiac asset list -e myEnterprise --to-script
|
|
949
1005
|
```
|
|
950
1006
|
|
|
951
|
-
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1007
|
+
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/list.ts)_
|
|
952
1008
|
|
|
953
1009
|
## `codiac asset mon [CMD]`
|
|
954
1010
|
|
|
@@ -1207,7 +1263,7 @@ EXAMPLES
|
|
|
1207
1263
|
$ codiac asset obliterate -e main -n my-api
|
|
1208
1264
|
```
|
|
1209
1265
|
|
|
1210
|
-
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1266
|
+
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/obliterate.ts)_
|
|
1211
1267
|
|
|
1212
1268
|
## `codiac asset probe create [CMD]`
|
|
1213
1269
|
|
|
@@ -1297,7 +1353,7 @@ EXAMPLES
|
|
|
1297
1353
|
$ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
|
|
1298
1354
|
```
|
|
1299
1355
|
|
|
1300
|
-
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1356
|
+
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/probe/create.ts)_
|
|
1301
1357
|
|
|
1302
1358
|
## `codiac asset probe delete`
|
|
1303
1359
|
|
|
@@ -1352,7 +1408,7 @@ EXAMPLES
|
|
|
1352
1408
|
$ codiac asset probe delete
|
|
1353
1409
|
```
|
|
1354
1410
|
|
|
1355
|
-
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1411
|
+
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/probe/delete.ts)_
|
|
1356
1412
|
|
|
1357
1413
|
## `codiac asset probe list`
|
|
1358
1414
|
|
|
@@ -1404,7 +1460,7 @@ EXAMPLES
|
|
|
1404
1460
|
$ codiac asset probe list
|
|
1405
1461
|
```
|
|
1406
1462
|
|
|
1407
|
-
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1463
|
+
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/probe/list.ts)_
|
|
1408
1464
|
|
|
1409
1465
|
## `codiac asset recycle`
|
|
1410
1466
|
|
|
@@ -1444,7 +1500,7 @@ DESCRIPTION
|
|
|
1444
1500
|
Deploys a given asset to a given cabinet. Defaults to current version.
|
|
1445
1501
|
```
|
|
1446
1502
|
|
|
1447
|
-
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1503
|
+
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/recycle.ts)_
|
|
1448
1504
|
|
|
1449
1505
|
## `codiac asset undeploy`
|
|
1450
1506
|
|
|
@@ -1488,7 +1544,7 @@ EXAMPLES
|
|
|
1488
1544
|
$ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
|
|
1489
1545
|
```
|
|
1490
1546
|
|
|
1491
|
-
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1547
|
+
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/undeploy.ts)_
|
|
1492
1548
|
|
|
1493
1549
|
## `codiac asset view [CMD]`
|
|
1494
1550
|
|
|
@@ -1543,7 +1599,7 @@ ALIASES
|
|
|
1543
1599
|
$ codiac asset get
|
|
1544
1600
|
```
|
|
1545
1601
|
|
|
1546
|
-
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1602
|
+
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/view.ts)_
|
|
1547
1603
|
|
|
1548
1604
|
## `codiac asset vol add [MOUNTPATH]`
|
|
1549
1605
|
|
|
@@ -1814,7 +1870,7 @@ ALIASES
|
|
|
1814
1870
|
$ codiac asset volume add
|
|
1815
1871
|
```
|
|
1816
1872
|
|
|
1817
|
-
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1873
|
+
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/volume/create.ts)_
|
|
1818
1874
|
|
|
1819
1875
|
## `codiac asset volume del`
|
|
1820
1876
|
|
|
@@ -1902,7 +1958,7 @@ EXAMPLES
|
|
|
1902
1958
|
$ codiac asset volume delete -e myEnterprise -n myMount --to-script
|
|
1903
1959
|
```
|
|
1904
1960
|
|
|
1905
|
-
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1961
|
+
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/volume/delete.ts)_
|
|
1906
1962
|
|
|
1907
1963
|
## `codiac asset volume list`
|
|
1908
1964
|
|
|
@@ -1951,7 +2007,7 @@ EXAMPLES
|
|
|
1951
2007
|
$ codiac asset volume list -e myEnterprise --silent
|
|
1952
2008
|
```
|
|
1953
2009
|
|
|
1954
|
-
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2010
|
+
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/volume/list.ts)_
|
|
1955
2011
|
|
|
1956
2012
|
## `codiac asset volumes del`
|
|
1957
2013
|
|
|
@@ -2118,7 +2174,7 @@ EXAMPLES
|
|
|
2118
2174
|
$ codiac asset where -e main -a my-api --silent
|
|
2119
2175
|
```
|
|
2120
2176
|
|
|
2121
|
-
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2177
|
+
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/asset/where.ts)_
|
|
2122
2178
|
|
|
2123
2179
|
## `codiac auth cab allow`
|
|
2124
2180
|
|
|
@@ -2280,7 +2336,7 @@ EXAMPLES
|
|
|
2280
2336
|
$ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
|
|
2281
2337
|
```
|
|
2282
2338
|
|
|
2283
|
-
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2339
|
+
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/cabinet/allow.ts)_
|
|
2284
2340
|
|
|
2285
2341
|
## `codiac auth cabinet allowed`
|
|
2286
2342
|
|
|
@@ -2328,7 +2384,7 @@ EXAMPLES
|
|
|
2328
2384
|
$ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
|
|
2329
2385
|
```
|
|
2330
2386
|
|
|
2331
|
-
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2387
|
+
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/cabinet/allowed.ts)_
|
|
2332
2388
|
|
|
2333
2389
|
## `codiac auth ent allow`
|
|
2334
2390
|
|
|
@@ -2519,7 +2575,7 @@ EXAMPLES
|
|
|
2519
2575
|
$ codiac auth enterprise allow -r deployer -p none
|
|
2520
2576
|
```
|
|
2521
2577
|
|
|
2522
|
-
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2578
|
+
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/enterprise/allow.ts)_
|
|
2523
2579
|
|
|
2524
2580
|
## `codiac auth enterprise allow onEnvironments`
|
|
2525
2581
|
|
|
@@ -2573,7 +2629,7 @@ EXAMPLES
|
|
|
2573
2629
|
$ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
|
|
2574
2630
|
```
|
|
2575
2631
|
|
|
2576
|
-
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2632
|
+
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/enterprise/allow/onEnvironments.ts)_
|
|
2577
2633
|
|
|
2578
2634
|
## `codiac auth enterprise allowed`
|
|
2579
2635
|
|
|
@@ -2614,7 +2670,7 @@ EXAMPLES
|
|
|
2614
2670
|
$ codiac auth enterprise allowed --enterprise modeling
|
|
2615
2671
|
```
|
|
2616
2672
|
|
|
2617
|
-
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2673
|
+
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/enterprise/allowed.ts)_
|
|
2618
2674
|
|
|
2619
2675
|
## `codiac auth env allowed`
|
|
2620
2676
|
|
|
@@ -2821,7 +2877,7 @@ EXAMPLES
|
|
|
2821
2877
|
$ codiac auth environment allow -e qa -r productmanager -p read
|
|
2822
2878
|
```
|
|
2823
2879
|
|
|
2824
|
-
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2880
|
+
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/environment/allow.ts)_
|
|
2825
2881
|
|
|
2826
2882
|
## `codiac auth environment allow onCabinets`
|
|
2827
2883
|
|
|
@@ -2878,7 +2934,7 @@ EXAMPLES
|
|
|
2878
2934
|
$ codiac auth environment allow onCabinets -e qa -r productmanager -p read
|
|
2879
2935
|
```
|
|
2880
2936
|
|
|
2881
|
-
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2937
|
+
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/environment/allow/onCabinets.ts)_
|
|
2882
2938
|
|
|
2883
2939
|
## `codiac auth environment allowed`
|
|
2884
2940
|
|
|
@@ -2923,7 +2979,7 @@ EXAMPLES
|
|
|
2923
2979
|
$ codiac auth environment allowed --enterprise modeling -e dev
|
|
2924
2980
|
```
|
|
2925
2981
|
|
|
2926
|
-
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2982
|
+
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/environment/allowed.ts)_
|
|
2927
2983
|
|
|
2928
2984
|
## `codiac auth register`
|
|
2929
2985
|
|
|
@@ -2969,7 +3025,7 @@ EXAMPLES
|
|
|
2969
3025
|
$ codiac auth register
|
|
2970
3026
|
```
|
|
2971
3027
|
|
|
2972
|
-
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3028
|
+
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/register.ts)_
|
|
2973
3029
|
|
|
2974
3030
|
## `codiac auth role allowed [NAME]`
|
|
2975
3031
|
|
|
@@ -3016,7 +3072,7 @@ EXAMPLES
|
|
|
3016
3072
|
$ codiac auth role allowed -n deployer -e main
|
|
3017
3073
|
```
|
|
3018
3074
|
|
|
3019
|
-
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3075
|
+
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/role/allowed.ts)_
|
|
3020
3076
|
|
|
3021
3077
|
## `codiac auth role assign`
|
|
3022
3078
|
|
|
@@ -3048,7 +3104,7 @@ EXAMPLES
|
|
|
3048
3104
|
$ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
|
|
3049
3105
|
```
|
|
3050
3106
|
|
|
3051
|
-
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3107
|
+
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/role/assign.ts)_
|
|
3052
3108
|
|
|
3053
3109
|
## `codiac auth role create [NAME]`
|
|
3054
3110
|
|
|
@@ -3081,7 +3137,7 @@ EXAMPLES
|
|
|
3081
3137
|
$ codiac auth role create -n deployer
|
|
3082
3138
|
```
|
|
3083
3139
|
|
|
3084
|
-
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3140
|
+
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/role/create.ts)_
|
|
3085
3141
|
|
|
3086
3142
|
## `codiac auth role delete [NAME]`
|
|
3087
3143
|
|
|
@@ -3117,7 +3173,7 @@ EXAMPLES
|
|
|
3117
3173
|
$ codiac auth role delete --id abc123def456
|
|
3118
3174
|
```
|
|
3119
3175
|
|
|
3120
|
-
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3176
|
+
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/role/delete.ts)_
|
|
3121
3177
|
|
|
3122
3178
|
## `codiac auth role list`
|
|
3123
3179
|
|
|
@@ -3153,7 +3209,7 @@ EXAMPLES
|
|
|
3153
3209
|
$ codiac auth role list -o yaml > roles.yaml
|
|
3154
3210
|
```
|
|
3155
3211
|
|
|
3156
|
-
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3212
|
+
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/role/list.ts)_
|
|
3157
3213
|
|
|
3158
3214
|
## `codiac auth role unassign`
|
|
3159
3215
|
|
|
@@ -3185,7 +3241,7 @@ EXAMPLES
|
|
|
3185
3241
|
$ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
|
|
3186
3242
|
```
|
|
3187
3243
|
|
|
3188
|
-
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3244
|
+
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/role/unassign.ts)_
|
|
3189
3245
|
|
|
3190
3246
|
## `codiac auth user invite`
|
|
3191
3247
|
|
|
@@ -3225,7 +3281,7 @@ EXAMPLES
|
|
|
3225
3281
|
$ codiac auth user invite
|
|
3226
3282
|
```
|
|
3227
3283
|
|
|
3228
|
-
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3284
|
+
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/user/invite.ts)_
|
|
3229
3285
|
|
|
3230
3286
|
## `codiac auth user list`
|
|
3231
3287
|
|
|
@@ -3261,7 +3317,7 @@ EXAMPLES
|
|
|
3261
3317
|
$ codiac auth user list -o yaml > users.yaml
|
|
3262
3318
|
```
|
|
3263
3319
|
|
|
3264
|
-
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3320
|
+
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/auth/user/list.ts)_
|
|
3265
3321
|
|
|
3266
3322
|
## `codiac autocomplete [SHELL]`
|
|
3267
3323
|
|
|
@@ -3311,7 +3367,7 @@ DESCRIPTION
|
|
|
3311
3367
|
Creates a new branch for the parent project and any sourced dependencies.
|
|
3312
3368
|
```
|
|
3313
3369
|
|
|
3314
|
-
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3370
|
+
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/branch.ts)_
|
|
3315
3371
|
|
|
3316
3372
|
## `codiac branch current`
|
|
3317
3373
|
|
|
@@ -3331,7 +3387,7 @@ ALIASES
|
|
|
3331
3387
|
$ codiac branches current
|
|
3332
3388
|
```
|
|
3333
3389
|
|
|
3334
|
-
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3390
|
+
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/branch/current.ts)_
|
|
3335
3391
|
|
|
3336
3392
|
## `codiac branch list`
|
|
3337
3393
|
|
|
@@ -3353,7 +3409,7 @@ ALIASES
|
|
|
3353
3409
|
$ codiac branches list
|
|
3354
3410
|
```
|
|
3355
3411
|
|
|
3356
|
-
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3412
|
+
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/branch/list.ts)_
|
|
3357
3413
|
|
|
3358
3414
|
## `codiac branches current`
|
|
3359
3415
|
|
|
@@ -3443,7 +3499,7 @@ DESCRIPTION
|
|
|
3443
3499
|
Builds the project and the docker container
|
|
3444
3500
|
```
|
|
3445
3501
|
|
|
3446
|
-
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3502
|
+
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/build.ts)_
|
|
3447
3503
|
|
|
3448
3504
|
## `codiac cab attach`
|
|
3449
3505
|
|
|
@@ -4192,7 +4248,7 @@ EXAMPLES
|
|
|
4192
4248
|
prod-cluster-1 --to-script
|
|
4193
4249
|
```
|
|
4194
4250
|
|
|
4195
|
-
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4251
|
+
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/cluster/attach.ts)_
|
|
4196
4252
|
|
|
4197
4253
|
## `codiac cabinet contents`
|
|
4198
4254
|
|
|
@@ -4236,7 +4292,7 @@ EXAMPLES
|
|
|
4236
4292
|
$ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
|
|
4237
4293
|
```
|
|
4238
4294
|
|
|
4239
|
-
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4295
|
+
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/contents.ts)_
|
|
4240
4296
|
|
|
4241
4297
|
## `codiac cabinet create [CABINET]`
|
|
4242
4298
|
|
|
@@ -4303,7 +4359,7 @@ EXAMPLES
|
|
|
4303
4359
|
cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
|
|
4304
4360
|
```
|
|
4305
4361
|
|
|
4306
|
-
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4362
|
+
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/create.ts)_
|
|
4307
4363
|
|
|
4308
4364
|
## `codiac cabinet define [CABINET]`
|
|
4309
4365
|
|
|
@@ -4365,7 +4421,7 @@ EXAMPLES
|
|
|
4365
4421
|
$ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
|
|
4366
4422
|
```
|
|
4367
4423
|
|
|
4368
|
-
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4424
|
+
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/define.ts)_
|
|
4369
4425
|
|
|
4370
4426
|
## `codiac cabinet destroy [CABINET]`
|
|
4371
4427
|
|
|
@@ -4423,7 +4479,7 @@ EXAMPLES
|
|
|
4423
4479
|
--environment dev --silent
|
|
4424
4480
|
```
|
|
4425
4481
|
|
|
4426
|
-
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4482
|
+
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/destroy.ts)_
|
|
4427
4483
|
|
|
4428
4484
|
## `codiac cabinet detach [CABINET]`
|
|
4429
4485
|
|
|
@@ -4480,7 +4536,7 @@ EXAMPLES
|
|
|
4480
4536
|
main --environment dev
|
|
4481
4537
|
```
|
|
4482
4538
|
|
|
4483
|
-
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4539
|
+
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/detach.ts)_
|
|
4484
4540
|
|
|
4485
4541
|
## `codiac cabinet forget [CABINET]`
|
|
4486
4542
|
|
|
@@ -4535,7 +4591,7 @@ EXAMPLES
|
|
|
4535
4591
|
$ codiac cabinet forget --to-script
|
|
4536
4592
|
```
|
|
4537
4593
|
|
|
4538
|
-
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4594
|
+
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/forget.ts)_
|
|
4539
4595
|
|
|
4540
4596
|
## `codiac cabinet list`
|
|
4541
4597
|
|
|
@@ -4586,7 +4642,7 @@ EXAMPLES
|
|
|
4586
4642
|
$ codiac cabinet list -e myEnterprise --silent
|
|
4587
4643
|
```
|
|
4588
4644
|
|
|
4589
|
-
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4645
|
+
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/list.ts)_
|
|
4590
4646
|
|
|
4591
4647
|
## `codiac cabinet obliterate [CABINET]`
|
|
4592
4648
|
|
|
@@ -4628,7 +4684,7 @@ ALIASES
|
|
|
4628
4684
|
$ codiac infrx cab obliterate
|
|
4629
4685
|
```
|
|
4630
4686
|
|
|
4631
|
-
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4687
|
+
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/obliterate.ts)_
|
|
4632
4688
|
|
|
4633
4689
|
## `codiac cabinet restore`
|
|
4634
4690
|
|
|
@@ -4695,7 +4751,7 @@ EXAMPLES
|
|
|
4695
4751
|
$ codiac cabinet restore --cluster prod-cluster-1 --to-script
|
|
4696
4752
|
```
|
|
4697
4753
|
|
|
4698
|
-
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4754
|
+
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cabinet/restore.ts)_
|
|
4699
4755
|
|
|
4700
4756
|
## `codiac cfg add`
|
|
4701
4757
|
|
|
@@ -4982,7 +5038,7 @@ DESCRIPTION
|
|
|
4982
5038
|
Applies settings to the Codiac CLI itself (scoped to the local machine).
|
|
4983
5039
|
```
|
|
4984
5040
|
|
|
4985
|
-
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5041
|
+
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cli.ts)_
|
|
4986
5042
|
|
|
4987
5043
|
## `codiac cluster agent configure [CLUSTER]`
|
|
4988
5044
|
|
|
@@ -5050,7 +5106,7 @@ EXAMPLES
|
|
|
5050
5106
|
$ codiac cluster agent configure my-cluster --to-script
|
|
5051
5107
|
```
|
|
5052
5108
|
|
|
5053
|
-
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5109
|
+
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/agent/configure.ts)_
|
|
5054
5110
|
|
|
5055
5111
|
## `codiac cluster agent install [CLUSTER]`
|
|
5056
5112
|
|
|
@@ -5106,7 +5162,7 @@ EXAMPLES
|
|
|
5106
5162
|
$ codiac cluster agent install my-cluster --to-script
|
|
5107
5163
|
```
|
|
5108
5164
|
|
|
5109
|
-
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5165
|
+
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/agent/install.ts)_
|
|
5110
5166
|
|
|
5111
5167
|
## `codiac cluster agent uninstall [CLUSTER]`
|
|
5112
5168
|
|
|
@@ -5154,7 +5210,7 @@ EXAMPLES
|
|
|
5154
5210
|
$ codiac cluster agent uninstall my-cluster --to-script
|
|
5155
5211
|
```
|
|
5156
5212
|
|
|
5157
|
-
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5213
|
+
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/agent/uninstall.ts)_
|
|
5158
5214
|
|
|
5159
5215
|
## `codiac cluster bootstrap [NAME]`
|
|
5160
5216
|
|
|
@@ -5217,7 +5273,7 @@ EXAMPLES
|
|
|
5217
5273
|
$ codiac cluster bootstrap my-cluster --to-script
|
|
5218
5274
|
```
|
|
5219
5275
|
|
|
5220
|
-
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5276
|
+
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/bootstrap.ts)_
|
|
5221
5277
|
|
|
5222
5278
|
## `codiac cluster capture`
|
|
5223
5279
|
|
|
@@ -5302,7 +5358,7 @@ EXAMPLES
|
|
|
5302
5358
|
$ codiac cluster connect my-fav-cluster
|
|
5303
5359
|
```
|
|
5304
5360
|
|
|
5305
|
-
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5361
|
+
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/connect.ts)_
|
|
5306
5362
|
|
|
5307
5363
|
## `codiac cluster contents`
|
|
5308
5364
|
|
|
@@ -5967,7 +6023,7 @@ EXAMPLES
|
|
|
5967
6023
|
$ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
|
|
5968
6024
|
```
|
|
5969
6025
|
|
|
5970
|
-
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6026
|
+
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/install.ts)_
|
|
5971
6027
|
|
|
5972
6028
|
## `codiac cluster journal [CLUSTER]`
|
|
5973
6029
|
|
|
@@ -6256,7 +6312,7 @@ EXAMPLES
|
|
|
6256
6312
|
$ codiac cluster stack capture my-fav-cluster
|
|
6257
6313
|
```
|
|
6258
6314
|
|
|
6259
|
-
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6315
|
+
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/stack/capture.ts)_
|
|
6260
6316
|
|
|
6261
6317
|
## `codiac cluster stack install [CLUSTER]`
|
|
6262
6318
|
|
|
@@ -6308,7 +6364,7 @@ EXAMPLES
|
|
|
6308
6364
|
$ codiac cluster stack install my-cluster --to-script
|
|
6309
6365
|
```
|
|
6310
6366
|
|
|
6311
|
-
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6367
|
+
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/stack/install.ts)_
|
|
6312
6368
|
|
|
6313
6369
|
## `codiac cluster stack list`
|
|
6314
6370
|
|
|
@@ -6474,7 +6530,7 @@ EXAMPLES
|
|
|
6474
6530
|
$ codiac cluster start my-fav-cluster
|
|
6475
6531
|
```
|
|
6476
6532
|
|
|
6477
|
-
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6533
|
+
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/start.ts)_
|
|
6478
6534
|
|
|
6479
6535
|
## `codiac cluster stop [CLUSTER]`
|
|
6480
6536
|
|
|
@@ -6511,7 +6567,7 @@ EXAMPLES
|
|
|
6511
6567
|
$ codiac cluster start my-fav-cluster
|
|
6512
6568
|
```
|
|
6513
6569
|
|
|
6514
|
-
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6570
|
+
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/cluster/stop.ts)_
|
|
6515
6571
|
|
|
6516
6572
|
## `codiac cluster uninstall`
|
|
6517
6573
|
|
|
@@ -6573,7 +6629,7 @@ DESCRIPTION
|
|
|
6573
6629
|
Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
|
|
6574
6630
|
```
|
|
6575
6631
|
|
|
6576
|
-
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6632
|
+
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/commit.ts)_
|
|
6577
6633
|
|
|
6578
6634
|
## `codiac config add`
|
|
6579
6635
|
|
|
@@ -6713,7 +6769,7 @@ EXAMPLES
|
|
|
6713
6769
|
--escape-expressions
|
|
6714
6770
|
```
|
|
6715
6771
|
|
|
6716
|
-
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6772
|
+
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/config/add.ts)_
|
|
6717
6773
|
|
|
6718
6774
|
## `codiac config delete [SETTING]`
|
|
6719
6775
|
|
|
@@ -6782,7 +6838,7 @@ ALIASES
|
|
|
6782
6838
|
$ codiac cfg delete
|
|
6783
6839
|
```
|
|
6784
6840
|
|
|
6785
|
-
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6841
|
+
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/config/delete.ts)_
|
|
6786
6842
|
|
|
6787
6843
|
## `codiac config deploy`
|
|
6788
6844
|
|
|
@@ -6823,7 +6879,7 @@ EXAMPLES
|
|
|
6823
6879
|
$ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
|
|
6824
6880
|
```
|
|
6825
6881
|
|
|
6826
|
-
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6882
|
+
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/config/deploy.ts)_
|
|
6827
6883
|
|
|
6828
6884
|
## `codiac config import`
|
|
6829
6885
|
|
|
@@ -6884,7 +6940,7 @@ EXAMPLES
|
|
|
6884
6940
|
$ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
|
|
6885
6941
|
```
|
|
6886
6942
|
|
|
6887
|
-
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6943
|
+
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/config/import.ts)_
|
|
6888
6944
|
|
|
6889
6945
|
## `codiac config preview [SETTING]`
|
|
6890
6946
|
|
|
@@ -7155,7 +7211,7 @@ DESCRIPTION
|
|
|
7155
7211
|
Shows the list of clusters.
|
|
7156
7212
|
```
|
|
7157
7213
|
|
|
7158
|
-
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7214
|
+
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/config/settings/get.ts)_
|
|
7159
7215
|
|
|
7160
7216
|
## `codiac config view [SETTING]`
|
|
7161
7217
|
|
|
@@ -7220,7 +7276,7 @@ EXAMPLES
|
|
|
7220
7276
|
$ codiac config view -e myEnterprise -a myApi -c dev --to-script
|
|
7221
7277
|
```
|
|
7222
7278
|
|
|
7223
|
-
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7279
|
+
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/config/view.ts)_
|
|
7224
7280
|
|
|
7225
7281
|
## `codiac csp creds list`
|
|
7226
7282
|
|
|
@@ -7268,7 +7324,7 @@ EXAMPLES
|
|
|
7268
7324
|
$ codiac csp creds list
|
|
7269
7325
|
```
|
|
7270
7326
|
|
|
7271
|
-
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7327
|
+
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/csp/creds/list.ts)_
|
|
7272
7328
|
|
|
7273
7329
|
## `codiac csp login [PROVIDER]`
|
|
7274
7330
|
|
|
@@ -7346,7 +7402,7 @@ EXAMPLES
|
|
|
7346
7402
|
cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
|
|
7347
7403
|
```
|
|
7348
7404
|
|
|
7349
|
-
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7405
|
+
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/csp/login.ts)_
|
|
7350
7406
|
|
|
7351
7407
|
## `codiac csp logout [PROVIDER]`
|
|
7352
7408
|
|
|
@@ -7393,7 +7449,7 @@ EXAMPLES
|
|
|
7393
7449
|
$ codiac csp logout azure --to-script
|
|
7394
7450
|
```
|
|
7395
7451
|
|
|
7396
|
-
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7452
|
+
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/csp/logout.ts)_
|
|
7397
7453
|
|
|
7398
7454
|
## `codiac dep [NAME]`
|
|
7399
7455
|
|
|
@@ -7414,7 +7470,7 @@ DESCRIPTION
|
|
|
7414
7470
|
Installs a package into current project.
|
|
7415
7471
|
```
|
|
7416
7472
|
|
|
7417
|
-
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7473
|
+
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/dep.ts)_
|
|
7418
7474
|
|
|
7419
7475
|
## `codiac dep create [URL]`
|
|
7420
7476
|
|
|
@@ -7438,7 +7494,7 @@ DESCRIPTION
|
|
|
7438
7494
|
package version is used.
|
|
7439
7495
|
```
|
|
7440
7496
|
|
|
7441
|
-
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7497
|
+
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/dep/create.ts)_
|
|
7442
7498
|
|
|
7443
7499
|
## `codiac dep install`
|
|
7444
7500
|
|
|
@@ -7455,7 +7511,7 @@ DESCRIPTION
|
|
|
7455
7511
|
installs any missing dependency packages into the local project folder.
|
|
7456
7512
|
```
|
|
7457
7513
|
|
|
7458
|
-
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7514
|
+
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/dep/install.ts)_
|
|
7459
7515
|
|
|
7460
7516
|
## `codiac dep list`
|
|
7461
7517
|
|
|
@@ -7472,7 +7528,7 @@ DESCRIPTION
|
|
|
7472
7528
|
Shows the dependencies for the project.
|
|
7473
7529
|
```
|
|
7474
7530
|
|
|
7475
|
-
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7531
|
+
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/dep/list.ts)_
|
|
7476
7532
|
|
|
7477
7533
|
## `codiac dep remove [NAME]`
|
|
7478
7534
|
|
|
@@ -7495,7 +7551,7 @@ DESCRIPTION
|
|
|
7495
7551
|
Removes a dependency from the project.
|
|
7496
7552
|
```
|
|
7497
7553
|
|
|
7498
|
-
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7554
|
+
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/dep/remove.ts)_
|
|
7499
7555
|
|
|
7500
7556
|
## `codiac dep source [NAME]`
|
|
7501
7557
|
|
|
@@ -7521,7 +7577,7 @@ ALIASES
|
|
|
7521
7577
|
$ codiac dep src
|
|
7522
7578
|
```
|
|
7523
7579
|
|
|
7524
|
-
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7580
|
+
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/dep/source.ts)_
|
|
7525
7581
|
|
|
7526
7582
|
## `codiac dep src [NAME]`
|
|
7527
7583
|
|
|
@@ -7565,7 +7621,7 @@ DESCRIPTION
|
|
|
7565
7621
|
Publishes the dependency in its current state and upgrades to it in the main project.
|
|
7566
7622
|
```
|
|
7567
7623
|
|
|
7568
|
-
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7624
|
+
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/dep/syncup.ts)_
|
|
7569
7625
|
|
|
7570
7626
|
## `codiac dep unsource [NAME]`
|
|
7571
7627
|
|
|
@@ -7593,7 +7649,7 @@ ALIASES
|
|
|
7593
7649
|
$ codiac dep unsrc
|
|
7594
7650
|
```
|
|
7595
7651
|
|
|
7596
|
-
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7652
|
+
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/dep/unsource.ts)_
|
|
7597
7653
|
|
|
7598
7654
|
## `codiac dep unsrc [NAME]`
|
|
7599
7655
|
|
|
@@ -7640,7 +7696,7 @@ DESCRIPTION
|
|
|
7640
7696
|
describe the command here
|
|
7641
7697
|
```
|
|
7642
7698
|
|
|
7643
|
-
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7699
|
+
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/dep/upgrade.ts)_
|
|
7644
7700
|
|
|
7645
7701
|
## `codiac deploy`
|
|
7646
7702
|
|
|
@@ -7693,7 +7749,7 @@ EXAMPLES
|
|
|
7693
7749
|
$ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
|
|
7694
7750
|
```
|
|
7695
7751
|
|
|
7696
|
-
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7752
|
+
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/deploy.ts)_
|
|
7697
7753
|
|
|
7698
7754
|
## `codiac domain map [DOMAIN]`
|
|
7699
7755
|
|
|
@@ -7849,7 +7905,7 @@ EXAMPLES
|
|
|
7849
7905
|
cod enterprise create my-enterprise-code --silent
|
|
7850
7906
|
```
|
|
7851
7907
|
|
|
7852
|
-
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7908
|
+
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/enterprise/create.ts)_
|
|
7853
7909
|
|
|
7854
7910
|
## `codiac enterprise list`
|
|
7855
7911
|
|
|
@@ -7904,7 +7960,7 @@ EXAMPLES
|
|
|
7904
7960
|
$ codiac enterprise list --to-script
|
|
7905
7961
|
```
|
|
7906
7962
|
|
|
7907
|
-
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7963
|
+
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/enterprise/list.ts)_
|
|
7908
7964
|
|
|
7909
7965
|
## `codiac env add [SETTING]`
|
|
7910
7966
|
|
|
@@ -7954,7 +8010,7 @@ EXAMPLES
|
|
|
7954
8010
|
$ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
|
|
7955
8011
|
```
|
|
7956
8012
|
|
|
7957
|
-
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8013
|
+
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/env/add.ts)_
|
|
7958
8014
|
|
|
7959
8015
|
## `codiac enviro cluster attach`
|
|
7960
8016
|
|
|
@@ -8257,7 +8313,7 @@ ALIASES
|
|
|
8257
8313
|
$ codiac infrx enviro cluster attach
|
|
8258
8314
|
```
|
|
8259
8315
|
|
|
8260
|
-
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8316
|
+
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/environment/cluster/attach.ts)_
|
|
8261
8317
|
|
|
8262
8318
|
## `codiac environment cluster detach`
|
|
8263
8319
|
|
|
@@ -8303,7 +8359,7 @@ ALIASES
|
|
|
8303
8359
|
$ codiac infrx enviro cluster detach
|
|
8304
8360
|
```
|
|
8305
8361
|
|
|
8306
|
-
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8362
|
+
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/environment/cluster/detach.ts)_
|
|
8307
8363
|
|
|
8308
8364
|
## `codiac environment create [NAME]`
|
|
8309
8365
|
|
|
@@ -8366,7 +8422,7 @@ EXAMPLES
|
|
|
8366
8422
|
cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
|
|
8367
8423
|
```
|
|
8368
8424
|
|
|
8369
|
-
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8425
|
+
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/environment/create.ts)_
|
|
8370
8426
|
|
|
8371
8427
|
## `codiac environment delete [NAME]`
|
|
8372
8428
|
|
|
@@ -8427,7 +8483,7 @@ EXAMPLES
|
|
|
8427
8483
|
$ codiac environment delete dev --enterprise main --to-script
|
|
8428
8484
|
```
|
|
8429
8485
|
|
|
8430
|
-
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8486
|
+
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/environment/delete.ts)_
|
|
8431
8487
|
|
|
8432
8488
|
## `codiac environment list`
|
|
8433
8489
|
|
|
@@ -8478,7 +8534,7 @@ EXAMPLES
|
|
|
8478
8534
|
$ codiac environment list -e myEnterprise --silent
|
|
8479
8535
|
```
|
|
8480
8536
|
|
|
8481
|
-
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8537
|
+
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/environment/list.ts)_
|
|
8482
8538
|
|
|
8483
8539
|
## `codiac fileshare capture`
|
|
8484
8540
|
|
|
@@ -8562,7 +8618,7 @@ ALIASES
|
|
|
8562
8618
|
$ codiac fileshare capture
|
|
8563
8619
|
```
|
|
8564
8620
|
|
|
8565
|
-
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8621
|
+
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/filestore/capture.ts)_
|
|
8566
8622
|
|
|
8567
8623
|
## `codiac filestore forget`
|
|
8568
8624
|
|
|
@@ -8609,7 +8665,7 @@ EXAMPLES
|
|
|
8609
8665
|
$ codiac filestore forget
|
|
8610
8666
|
```
|
|
8611
8667
|
|
|
8612
|
-
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8668
|
+
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/filestore/forget.ts)_
|
|
8613
8669
|
|
|
8614
8670
|
## `codiac filestore list`
|
|
8615
8671
|
|
|
@@ -8655,7 +8711,7 @@ EXAMPLES
|
|
|
8655
8711
|
$ codiac filestore list
|
|
8656
8712
|
```
|
|
8657
8713
|
|
|
8658
|
-
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8714
|
+
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/filestore/list.ts)_
|
|
8659
8715
|
|
|
8660
8716
|
## `codiac help [COMMANDS]`
|
|
8661
8717
|
|
|
@@ -8741,7 +8797,7 @@ EXAMPLES
|
|
|
8741
8797
|
$ codiac host delete
|
|
8742
8798
|
```
|
|
8743
8799
|
|
|
8744
|
-
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8800
|
+
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/host/delete.ts)_
|
|
8745
8801
|
|
|
8746
8802
|
## `codiac host list [DOMAIN]`
|
|
8747
8803
|
|
|
@@ -8785,7 +8841,7 @@ EXAMPLES
|
|
|
8785
8841
|
$ codiac host list
|
|
8786
8842
|
```
|
|
8787
8843
|
|
|
8788
|
-
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8844
|
+
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/host/list.ts)_
|
|
8789
8845
|
|
|
8790
8846
|
## `codiac host map [DOMAIN]`
|
|
8791
8847
|
|
|
@@ -8839,7 +8895,7 @@ EXAMPLES
|
|
|
8839
8895
|
$ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
|
|
8840
8896
|
```
|
|
8841
8897
|
|
|
8842
|
-
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8898
|
+
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/host/map.ts)_
|
|
8843
8899
|
|
|
8844
8900
|
## `codiac host view [DOMAIN]`
|
|
8845
8901
|
|
|
@@ -8884,7 +8940,7 @@ EXAMPLES
|
|
|
8884
8940
|
$ codiac host view
|
|
8885
8941
|
```
|
|
8886
8942
|
|
|
8887
|
-
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8943
|
+
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/host/view.ts)_
|
|
8888
8944
|
|
|
8889
8945
|
## `codiac identify [TOKENNAME]`
|
|
8890
8946
|
|
|
@@ -8956,7 +9012,7 @@ ALIASES
|
|
|
8956
9012
|
$ codiac token
|
|
8957
9013
|
```
|
|
8958
9014
|
|
|
8959
|
-
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9015
|
+
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/identity.ts)_
|
|
8960
9016
|
|
|
8961
9017
|
## `codiac identity delete [NAME]`
|
|
8962
9018
|
|
|
@@ -8981,7 +9037,7 @@ ALIASES
|
|
|
8981
9037
|
$ codiac token remove
|
|
8982
9038
|
```
|
|
8983
9039
|
|
|
8984
|
-
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9040
|
+
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/identity/delete.ts)_
|
|
8985
9041
|
|
|
8986
9042
|
## `codiac identity list`
|
|
8987
9043
|
|
|
@@ -9003,7 +9059,7 @@ ALIASES
|
|
|
9003
9059
|
$ codiac token list
|
|
9004
9060
|
```
|
|
9005
9061
|
|
|
9006
|
-
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9062
|
+
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/identity/list.ts)_
|
|
9007
9063
|
|
|
9008
9064
|
## `codiac identity remove [NAME]`
|
|
9009
9065
|
|
|
@@ -9305,7 +9361,7 @@ Saves a reference to an existing container registry.
|
|
|
9305
9361
|
```
|
|
9306
9362
|
USAGE
|
|
9307
9363
|
$ codiac imageRegistry capture [-h] [-u <value>] [-p artifactHub|aws|azure|dockerHub|localMachine|other] [-n <value>] [-s
|
|
9308
|
-
<value>] [-l <value>] [--silent | --echo | --to-script]
|
|
9364
|
+
<value>] [-l <value>] [--private] [--silent | --echo | --to-script]
|
|
9309
9365
|
|
|
9310
9366
|
FLAGS
|
|
9311
9367
|
-h, --help Show CLI help.
|
|
@@ -9317,6 +9373,8 @@ FLAGS
|
|
|
9317
9373
|
-s, --subscriptionId=<value> The id of the cloud provider account in which the registry resides.
|
|
9318
9374
|
-u, --url=<value> The container registry url.
|
|
9319
9375
|
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
9376
|
+
--[no-]private Whether pulling from this registry requires authentication (default true; pass
|
|
9377
|
+
--no-private for a public registry).
|
|
9320
9378
|
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
9321
9379
|
--to-script Renders the equivalent non-interactive command without executing it.
|
|
9322
9380
|
|
|
@@ -9324,7 +9382,7 @@ DESCRIPTION
|
|
|
9324
9382
|
Saves a reference to an existing container registry.
|
|
9325
9383
|
```
|
|
9326
9384
|
|
|
9327
|
-
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9385
|
+
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/imageRegistry/capture.ts)_
|
|
9328
9386
|
|
|
9329
9387
|
## `codiac imageRegistry forget`
|
|
9330
9388
|
|
|
@@ -9345,7 +9403,7 @@ DESCRIPTION
|
|
|
9345
9403
|
Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
|
|
9346
9404
|
```
|
|
9347
9405
|
|
|
9348
|
-
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9406
|
+
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/imageRegistry/forget.ts)_
|
|
9349
9407
|
|
|
9350
9408
|
## `codiac imageRegistry list`
|
|
9351
9409
|
|
|
@@ -9387,7 +9445,7 @@ EXAMPLES
|
|
|
9387
9445
|
$ codiac imageRegistry list -o yaml > registries.yaml
|
|
9388
9446
|
```
|
|
9389
9447
|
|
|
9390
|
-
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9448
|
+
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/imageRegistry/list.ts)_
|
|
9391
9449
|
|
|
9392
9450
|
## `codiac imageRegistry pullSecret set`
|
|
9393
9451
|
|
|
@@ -9423,7 +9481,7 @@ ALIASES
|
|
|
9423
9481
|
$ codiac pullsecret
|
|
9424
9482
|
```
|
|
9425
9483
|
|
|
9426
|
-
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9484
|
+
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/imageRegistry/pullSecret/set.ts)_
|
|
9427
9485
|
|
|
9428
9486
|
## `codiac imageRegistry pullSecret unset`
|
|
9429
9487
|
|
|
@@ -9450,7 +9508,7 @@ ALIASES
|
|
|
9450
9508
|
$ codiac pullsecret unset
|
|
9451
9509
|
```
|
|
9452
9510
|
|
|
9453
|
-
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9511
|
+
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/imageRegistry/pullSecret/unset.ts)_
|
|
9454
9512
|
|
|
9455
9513
|
## `codiac images add [IMAGENAME]`
|
|
9456
9514
|
|
|
@@ -9511,7 +9569,7 @@ EXAMPLES
|
|
|
9511
9569
|
$ codiac images add your-company/your-image --to-script
|
|
9512
9570
|
```
|
|
9513
9571
|
|
|
9514
|
-
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9572
|
+
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/images/add.ts)_
|
|
9515
9573
|
|
|
9516
9574
|
## `codiac images list`
|
|
9517
9575
|
|
|
@@ -9534,7 +9592,7 @@ ALIASES
|
|
|
9534
9592
|
$ codiac img list
|
|
9535
9593
|
```
|
|
9536
9594
|
|
|
9537
|
-
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9595
|
+
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/images/list.ts)_
|
|
9538
9596
|
|
|
9539
9597
|
## `codiac images patch IMAGENAME`
|
|
9540
9598
|
|
|
@@ -9564,7 +9622,7 @@ ALIASES
|
|
|
9564
9622
|
$ codiac img patch
|
|
9565
9623
|
```
|
|
9566
9624
|
|
|
9567
|
-
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9625
|
+
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/images/patch.ts)_
|
|
9568
9626
|
|
|
9569
9627
|
## `codiac images remove IMAGENAME`
|
|
9570
9628
|
|
|
@@ -9590,7 +9648,7 @@ ALIASES
|
|
|
9590
9648
|
$ codiac img delete
|
|
9591
9649
|
```
|
|
9592
9650
|
|
|
9593
|
-
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9651
|
+
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/images/remove.ts)_
|
|
9594
9652
|
|
|
9595
9653
|
## `codiac images version NAME`
|
|
9596
9654
|
|
|
@@ -9616,7 +9674,7 @@ ALIASES
|
|
|
9616
9674
|
$ codiac img version get
|
|
9617
9675
|
```
|
|
9618
9676
|
|
|
9619
|
-
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9677
|
+
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/images/version.ts)_
|
|
9620
9678
|
|
|
9621
9679
|
## `codiac images version bump NAME`
|
|
9622
9680
|
|
|
@@ -9649,7 +9707,7 @@ ALIASES
|
|
|
9649
9707
|
$ codiac img version bump
|
|
9650
9708
|
```
|
|
9651
9709
|
|
|
9652
|
-
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9710
|
+
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/images/version/bump.ts)_
|
|
9653
9711
|
|
|
9654
9712
|
## `codiac img [IMAGENAME]`
|
|
9655
9713
|
|
|
@@ -9965,7 +10023,7 @@ EXAMPLES
|
|
|
9965
10023
|
$ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-cabinet --generate-secret-store --subscription-id 00000000-0000-0000-0000-000000000000
|
|
9966
10024
|
```
|
|
9967
10025
|
|
|
9968
|
-
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10026
|
+
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/import/cluster.ts)_
|
|
9969
10027
|
|
|
9970
10028
|
## `codiac infrx cab create [CABINET]`
|
|
9971
10029
|
|
|
@@ -10810,7 +10868,7 @@ DESCRIPTION
|
|
|
10810
10868
|
Declares the given folder as a project root
|
|
10811
10869
|
```
|
|
10812
10870
|
|
|
10813
|
-
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10871
|
+
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/init.ts)_
|
|
10814
10872
|
|
|
10815
10873
|
## `codiac kit create`
|
|
10816
10874
|
|
|
@@ -10853,7 +10911,7 @@ EXAMPLES
|
|
|
10853
10911
|
$ codiac kit create -e myEnterprise -a myApi --to-script
|
|
10854
10912
|
```
|
|
10855
10913
|
|
|
10856
|
-
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10914
|
+
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/kit/create.ts)_
|
|
10857
10915
|
|
|
10858
10916
|
## `codiac login`
|
|
10859
10917
|
|
|
@@ -10912,7 +10970,7 @@ EXAMPLES
|
|
|
10912
10970
|
$ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
|
|
10913
10971
|
```
|
|
10914
10972
|
|
|
10915
|
-
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10973
|
+
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/login.ts)_
|
|
10916
10974
|
|
|
10917
10975
|
## `codiac logout`
|
|
10918
10976
|
|
|
@@ -10945,7 +11003,7 @@ EXAMPLES
|
|
|
10945
11003
|
$ codiac logout --to-script
|
|
10946
11004
|
```
|
|
10947
11005
|
|
|
10948
|
-
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11006
|
+
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/logout.ts)_
|
|
10949
11007
|
|
|
10950
11008
|
## `codiac merge [BRANCH]`
|
|
10951
11009
|
|
|
@@ -10966,7 +11024,7 @@ DESCRIPTION
|
|
|
10966
11024
|
Merges the given branch into the current branch of the main project and on any sourced dependencies.
|
|
10967
11025
|
```
|
|
10968
11026
|
|
|
10969
|
-
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11027
|
+
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/merge.ts)_
|
|
10970
11028
|
|
|
10971
11029
|
## `codiac noc cluster capture`
|
|
10972
11030
|
|
|
@@ -11018,7 +11076,7 @@ EXAMPLES
|
|
|
11018
11076
|
cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
|
|
11019
11077
|
```
|
|
11020
11078
|
|
|
11021
|
-
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11079
|
+
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/capture.ts)_
|
|
11022
11080
|
|
|
11023
11081
|
## `codiac noc cluster create [NAME]`
|
|
11024
11082
|
|
|
@@ -11108,7 +11166,7 @@ FLAG DESCRIPTIONS
|
|
|
11108
11166
|
initialization is always skipped in that mode.
|
|
11109
11167
|
```
|
|
11110
11168
|
|
|
11111
|
-
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11169
|
+
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/create.ts)_
|
|
11112
11170
|
|
|
11113
11171
|
## `codiac noc cluster credentials-set [NAME]`
|
|
11114
11172
|
|
|
@@ -11163,7 +11221,7 @@ EXAMPLES
|
|
|
11163
11221
|
$ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
|
|
11164
11222
|
```
|
|
11165
11223
|
|
|
11166
|
-
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11224
|
+
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/credentials-set.ts)_
|
|
11167
11225
|
|
|
11168
11226
|
## `codiac noc cluster define [NAME]`
|
|
11169
11227
|
|
|
@@ -11237,7 +11295,7 @@ EXAMPLES
|
|
|
11237
11295
|
$ codiac noc cluster define my-cluster --to-script
|
|
11238
11296
|
```
|
|
11239
11297
|
|
|
11240
|
-
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11298
|
+
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/define.ts)_
|
|
11241
11299
|
|
|
11242
11300
|
## `codiac noc cluster deinit`
|
|
11243
11301
|
|
|
@@ -11277,7 +11335,7 @@ EXAMPLES
|
|
|
11277
11335
|
$ codiac noc cluster deinit -n my-cluster --to-script
|
|
11278
11336
|
```
|
|
11279
11337
|
|
|
11280
|
-
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11338
|
+
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/deinit.ts)_
|
|
11281
11339
|
|
|
11282
11340
|
## `codiac noc cluster destroy [NAME]`
|
|
11283
11341
|
|
|
@@ -11311,7 +11369,7 @@ ALIASES
|
|
|
11311
11369
|
$ codiac cluster destroy
|
|
11312
11370
|
```
|
|
11313
11371
|
|
|
11314
|
-
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11372
|
+
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/destroy.ts)_
|
|
11315
11373
|
|
|
11316
11374
|
## `codiac noc cluster forget`
|
|
11317
11375
|
|
|
@@ -11362,7 +11420,7 @@ EXAMPLES
|
|
|
11362
11420
|
$ codiac noc cluster forget --running
|
|
11363
11421
|
```
|
|
11364
11422
|
|
|
11365
|
-
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11423
|
+
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/forget.ts)_
|
|
11366
11424
|
|
|
11367
11425
|
## `codiac noc cluster grant`
|
|
11368
11426
|
|
|
@@ -11400,7 +11458,7 @@ EXAMPLES
|
|
|
11400
11458
|
$ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
|
|
11401
11459
|
```
|
|
11402
11460
|
|
|
11403
|
-
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11461
|
+
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/grant.ts)_
|
|
11404
11462
|
|
|
11405
11463
|
## `codiac noc cluster init`
|
|
11406
11464
|
|
|
@@ -11446,7 +11504,7 @@ EXAMPLES
|
|
|
11446
11504
|
$ codiac noc cluster init -n my-cluster --to-script
|
|
11447
11505
|
```
|
|
11448
11506
|
|
|
11449
|
-
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11507
|
+
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/init.ts)_
|
|
11450
11508
|
|
|
11451
11509
|
## `codiac noc cluster journal [CLUSTER]`
|
|
11452
11510
|
|
|
@@ -11495,7 +11553,7 @@ EXAMPLES
|
|
|
11495
11553
|
$ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
|
|
11496
11554
|
```
|
|
11497
11555
|
|
|
11498
|
-
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11556
|
+
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/journal.ts)_
|
|
11499
11557
|
|
|
11500
11558
|
## `codiac noc cluster list`
|
|
11501
11559
|
|
|
@@ -11556,7 +11614,7 @@ EXAMPLES
|
|
|
11556
11614
|
$ codiac noc cluster list -e myEnterprise --to-script
|
|
11557
11615
|
```
|
|
11558
11616
|
|
|
11559
|
-
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11617
|
+
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/list.ts)_
|
|
11560
11618
|
|
|
11561
11619
|
## `codiac noc cluster restore [NAME]`
|
|
11562
11620
|
|
|
@@ -11616,7 +11674,7 @@ EXAMPLES
|
|
|
11616
11674
|
$ codiac noc cluster restore prod-cluster-1 --to-script
|
|
11617
11675
|
```
|
|
11618
11676
|
|
|
11619
|
-
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11677
|
+
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/noc/cluster/restore.ts)_
|
|
11620
11678
|
|
|
11621
11679
|
## `codiac pkg add [DEFINITIONFILE]`
|
|
11622
11680
|
|
|
@@ -11650,7 +11708,7 @@ DESCRIPTION
|
|
|
11650
11708
|
Configures a package to be built and published by the project.
|
|
11651
11709
|
```
|
|
11652
11710
|
|
|
11653
|
-
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11711
|
+
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/pkg/add.ts)_
|
|
11654
11712
|
|
|
11655
11713
|
## `codiac pkg delete [PACKAGENAME]`
|
|
11656
11714
|
|
|
@@ -11688,7 +11746,7 @@ DESCRIPTION
|
|
|
11688
11746
|
Renders the list of packages that are configured as project exports.
|
|
11689
11747
|
```
|
|
11690
11748
|
|
|
11691
|
-
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11749
|
+
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/pkg/list.ts)_
|
|
11692
11750
|
|
|
11693
11751
|
## `codiac pkg patch PACKAGENAME`
|
|
11694
11752
|
|
|
@@ -11714,7 +11772,7 @@ DESCRIPTION
|
|
|
11714
11772
|
registryUrl and/or environment.
|
|
11715
11773
|
```
|
|
11716
11774
|
|
|
11717
|
-
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11775
|
+
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/pkg/patch.ts)_
|
|
11718
11776
|
|
|
11719
11777
|
## `codiac pkg remove [PACKAGENAME]`
|
|
11720
11778
|
|
|
@@ -11737,7 +11795,7 @@ ALIASES
|
|
|
11737
11795
|
$ codiac pkg delete
|
|
11738
11796
|
```
|
|
11739
11797
|
|
|
11740
|
-
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11798
|
+
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/pkg/remove.ts)_
|
|
11741
11799
|
|
|
11742
11800
|
## `codiac portal`
|
|
11743
11801
|
|
|
@@ -11770,7 +11828,7 @@ EXAMPLES
|
|
|
11770
11828
|
$ codiac portal --to-script
|
|
11771
11829
|
```
|
|
11772
11830
|
|
|
11773
|
-
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11831
|
+
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/portal.ts)_
|
|
11774
11832
|
|
|
11775
11833
|
## `codiac probe create [CMD]`
|
|
11776
11834
|
|
|
@@ -11891,7 +11949,7 @@ DESCRIPTION
|
|
|
11891
11949
|
Publishes the exports (packages and images) declared in the ProjectConfig.
|
|
11892
11950
|
```
|
|
11893
11951
|
|
|
11894
|
-
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11952
|
+
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/publish.ts)_
|
|
11895
11953
|
|
|
11896
11954
|
## `codiac pull [NAME]`
|
|
11897
11955
|
|
|
@@ -11915,7 +11973,7 @@ DESCRIPTION
|
|
|
11915
11973
|
Pulls all commits from upstream to local.
|
|
11916
11974
|
```
|
|
11917
11975
|
|
|
11918
|
-
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11976
|
+
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/pull.ts)_
|
|
11919
11977
|
|
|
11920
11978
|
## `codiac pullsecret`
|
|
11921
11979
|
|
|
@@ -11998,7 +12056,7 @@ DESCRIPTION
|
|
|
11998
12056
|
Pushes all local commits upstream.
|
|
11999
12057
|
```
|
|
12000
12058
|
|
|
12001
|
-
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12059
|
+
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/push.ts)_
|
|
12002
12060
|
|
|
12003
12061
|
## `codiac pvc create`
|
|
12004
12062
|
|
|
@@ -12082,7 +12140,7 @@ EXAMPLES
|
|
|
12082
12140
|
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
|
|
12083
12141
|
```
|
|
12084
12142
|
|
|
12085
|
-
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12143
|
+
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/pvc/create.ts)_
|
|
12086
12144
|
|
|
12087
12145
|
## `codiac pvc delete`
|
|
12088
12146
|
|
|
@@ -12129,7 +12187,7 @@ EXAMPLES
|
|
|
12129
12187
|
$ codiac pvc delete --id <fileStoreDefId> --silent
|
|
12130
12188
|
```
|
|
12131
12189
|
|
|
12132
|
-
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12190
|
+
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/pvc/delete.ts)_
|
|
12133
12191
|
|
|
12134
12192
|
## `codiac pvc get`
|
|
12135
12193
|
|
|
@@ -12170,7 +12228,7 @@ EXAMPLES
|
|
|
12170
12228
|
$ codiac pvc get --name app-documents-share --silent -o json
|
|
12171
12229
|
```
|
|
12172
12230
|
|
|
12173
|
-
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12231
|
+
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/pvc/get.ts)_
|
|
12174
12232
|
|
|
12175
12233
|
## `codiac pvc list`
|
|
12176
12234
|
|
|
@@ -12213,7 +12271,7 @@ EXAMPLES
|
|
|
12213
12271
|
$ codiac pvc list -o yaml
|
|
12214
12272
|
```
|
|
12215
12273
|
|
|
12216
|
-
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12274
|
+
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/pvc/list.ts)_
|
|
12217
12275
|
|
|
12218
12276
|
## `codiac relay-version`
|
|
12219
12277
|
|
|
@@ -12230,7 +12288,7 @@ EXAMPLES
|
|
|
12230
12288
|
$ codiac relay-version
|
|
12231
12289
|
```
|
|
12232
12290
|
|
|
12233
|
-
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12291
|
+
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/relay-version.ts)_
|
|
12234
12292
|
|
|
12235
12293
|
## `codiac run`
|
|
12236
12294
|
|
|
@@ -12272,7 +12330,7 @@ DESCRIPTION
|
|
|
12272
12330
|
Runs the latest build of the api container locally.
|
|
12273
12331
|
```
|
|
12274
12332
|
|
|
12275
|
-
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12333
|
+
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/run.ts)_
|
|
12276
12334
|
|
|
12277
12335
|
## `codiac secretStore`
|
|
12278
12336
|
|
|
@@ -12390,7 +12448,7 @@ EXAMPLES
|
|
|
12390
12448
|
$ codiac secretStore capture --echo
|
|
12391
12449
|
```
|
|
12392
12450
|
|
|
12393
|
-
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12451
|
+
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/secretStore/capture.ts)_
|
|
12394
12452
|
|
|
12395
12453
|
## `codiac secretStore forget`
|
|
12396
12454
|
|
|
@@ -12411,7 +12469,7 @@ DESCRIPTION
|
|
|
12411
12469
|
Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
|
|
12412
12470
|
```
|
|
12413
12471
|
|
|
12414
|
-
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12472
|
+
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/secretStore/forget.ts)_
|
|
12415
12473
|
|
|
12416
12474
|
## `codiac secretStore list`
|
|
12417
12475
|
|
|
@@ -12456,7 +12514,7 @@ EXAMPLES
|
|
|
12456
12514
|
$ codiac secretStore list
|
|
12457
12515
|
```
|
|
12458
12516
|
|
|
12459
|
-
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12517
|
+
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/secretStore/list.ts)_
|
|
12460
12518
|
|
|
12461
12519
|
## `codiac shell init`
|
|
12462
12520
|
|
|
@@ -12494,7 +12552,7 @@ EXAMPLES
|
|
|
12494
12552
|
Invoke-Expression (codiac shell init --shell powershell)
|
|
12495
12553
|
```
|
|
12496
12554
|
|
|
12497
|
-
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12555
|
+
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/shell/init.ts)_
|
|
12498
12556
|
|
|
12499
12557
|
## `codiac snapshot deploy`
|
|
12500
12558
|
|
|
@@ -12522,7 +12580,7 @@ DESCRIPTION
|
|
|
12522
12580
|
Deploys all assets in a snapshot to a target cabinet.
|
|
12523
12581
|
```
|
|
12524
12582
|
|
|
12525
|
-
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12583
|
+
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/snapshot/deploy.ts)_
|
|
12526
12584
|
|
|
12527
12585
|
## `codiac snapshot list`
|
|
12528
12586
|
|
|
@@ -12571,7 +12629,7 @@ EXAMPLES
|
|
|
12571
12629
|
$ codiac snapshot list -e myEnterprise --silent
|
|
12572
12630
|
```
|
|
12573
12631
|
|
|
12574
|
-
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12632
|
+
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/snapshot/list.ts)_
|
|
12575
12633
|
|
|
12576
12634
|
## `codiac snapshot tag`
|
|
12577
12635
|
|
|
@@ -12614,7 +12672,7 @@ EXAMPLES
|
|
|
12614
12672
|
$ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12615
12673
|
```
|
|
12616
12674
|
|
|
12617
|
-
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12675
|
+
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/snapshot/tag.ts)_
|
|
12618
12676
|
|
|
12619
12677
|
## `codiac snapshot untag`
|
|
12620
12678
|
|
|
@@ -12657,7 +12715,7 @@ EXAMPLES
|
|
|
12657
12715
|
$ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12658
12716
|
```
|
|
12659
12717
|
|
|
12660
|
-
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12718
|
+
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/snapshot/untag.ts)_
|
|
12661
12719
|
|
|
12662
12720
|
## `codiac stage [FILES]`
|
|
12663
12721
|
|
|
@@ -12679,7 +12737,7 @@ DESCRIPTION
|
|
|
12679
12737
|
Flags files to be included in the next commit.
|
|
12680
12738
|
```
|
|
12681
12739
|
|
|
12682
|
-
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12740
|
+
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/stage.ts)_
|
|
12683
12741
|
|
|
12684
12742
|
## `codiac stash [FILE]`
|
|
12685
12743
|
|
|
@@ -12701,7 +12759,7 @@ DESCRIPTION
|
|
|
12701
12759
|
describe the command here
|
|
12702
12760
|
```
|
|
12703
12761
|
|
|
12704
|
-
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12762
|
+
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/stash.ts)_
|
|
12705
12763
|
|
|
12706
12764
|
## `codiac status`
|
|
12707
12765
|
|
|
@@ -12720,7 +12778,7 @@ DESCRIPTION
|
|
|
12720
12778
|
Shows the current uncommitted changes in the current branch.
|
|
12721
12779
|
```
|
|
12722
12780
|
|
|
12723
|
-
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12781
|
+
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/status.ts)_
|
|
12724
12782
|
|
|
12725
12783
|
## `codiac stop`
|
|
12726
12784
|
|
|
@@ -12738,7 +12796,7 @@ DESCRIPTION
|
|
|
12738
12796
|
Stops the running container for this project
|
|
12739
12797
|
```
|
|
12740
12798
|
|
|
12741
|
-
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12799
|
+
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/stop.ts)_
|
|
12742
12800
|
|
|
12743
12801
|
## `codiac switch [NAME]`
|
|
12744
12802
|
|
|
@@ -12758,7 +12816,7 @@ DESCRIPTION
|
|
|
12758
12816
|
Changes branch on the main project and any sourced dependencies.
|
|
12759
12817
|
```
|
|
12760
12818
|
|
|
12761
|
-
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12819
|
+
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/switch.ts)_
|
|
12762
12820
|
|
|
12763
12821
|
## `codiac sync [NAME]`
|
|
12764
12822
|
|
|
@@ -12783,7 +12841,7 @@ DESCRIPTION
|
|
|
12783
12841
|
Merges the given branch into the current branch.
|
|
12784
12842
|
```
|
|
12785
12843
|
|
|
12786
|
-
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12844
|
+
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/sync.ts)_
|
|
12787
12845
|
|
|
12788
12846
|
## `codiac tenant create [NAME]`
|
|
12789
12847
|
|
|
@@ -12826,7 +12884,7 @@ EXAMPLES
|
|
|
12826
12884
|
$ codiac tenant create -n 'Acme Corp' -c acme --to-script
|
|
12827
12885
|
```
|
|
12828
12886
|
|
|
12829
|
-
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12887
|
+
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/tenant/create.ts)_
|
|
12830
12888
|
|
|
12831
12889
|
## `codiac tenant switch [CODE]`
|
|
12832
12890
|
|
|
@@ -12866,7 +12924,7 @@ EXAMPLES
|
|
|
12866
12924
|
$ codiac tenant switch my-tenant-code --to-script
|
|
12867
12925
|
```
|
|
12868
12926
|
|
|
12869
|
-
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12927
|
+
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/tenant/switch.ts)_
|
|
12870
12928
|
|
|
12871
12929
|
## `codiac token [TOKENNAME]`
|
|
12872
12930
|
|
|
@@ -12988,7 +13046,7 @@ DESCRIPTION
|
|
|
12988
13046
|
Flags files to be included in the next commit.
|
|
12989
13047
|
```
|
|
12990
13048
|
|
|
12991
|
-
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13049
|
+
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/unstage.ts)_
|
|
12992
13050
|
|
|
12993
13051
|
## `codiac update [CHANNEL]`
|
|
12994
13052
|
|
|
@@ -13175,7 +13233,7 @@ EXAMPLES
|
|
|
13175
13233
|
$ codiac whereami --to-script
|
|
13176
13234
|
```
|
|
13177
13235
|
|
|
13178
|
-
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13236
|
+
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/whereami.ts)_
|
|
13179
13237
|
|
|
13180
13238
|
## `codiac whoami`
|
|
13181
13239
|
|
|
@@ -13217,5 +13275,5 @@ EXAMPLES
|
|
|
13217
13275
|
$ codiac whoami --to-script
|
|
13218
13276
|
```
|
|
13219
13277
|
|
|
13220
|
-
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13278
|
+
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.239/src/commands/whoami.ts)_
|
|
13221
13279
|
<!-- commandsstop -->
|