@codiac.io/codiac-cli 1.3.262 → 1.3.264
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 +377 -179
- package/dist/commands/asset/create.js +1 -1
- package/dist/commands/asset/probe/create.d.ts +1 -0
- package/dist/commands/asset/probe/create.js +8 -0
- package/dist/commands/asset/probe/create.js.map +1 -1
- package/dist/commands/asset/probe/list.d.ts +7 -0
- package/dist/commands/asset/probe/list.js +36 -9
- package/dist/commands/asset/probe/list.js.map +1 -1
- package/dist/commands/host/recapture.d.ts +28 -0
- package/dist/commands/host/recapture.js +108 -0
- package/dist/commands/host/recapture.js.map +1 -0
- package/dist/commands/noc/cluster/edit.d.ts +56 -0
- package/dist/commands/noc/cluster/edit.js +216 -0
- package/dist/commands/noc/cluster/edit.js.map +1 -0
- package/dist/uilogic/cloud-resource-configurators/asset-configurator.js +3 -3
- package/oclif.manifest.json +192 -2
- package/package.json +4 -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.264 linux-x64 node-v22.15.1
|
|
25
25
|
$ codiac --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ codiac COMMAND
|
|
@@ -302,6 +302,7 @@ USAGE
|
|
|
302
302
|
* [`codiac cluster define [NAME]`](#codiac-cluster-define-name)
|
|
303
303
|
* [`codiac cluster deinit`](#codiac-cluster-deinit)
|
|
304
304
|
* [`codiac cluster destroy [NAME]`](#codiac-cluster-destroy-name)
|
|
305
|
+
* [`codiac cluster edit [NAME]`](#codiac-cluster-edit-name)
|
|
305
306
|
* [`codiac cluster envoy configure [CLUSTER]`](#codiac-cluster-envoy-configure-cluster)
|
|
306
307
|
* [`codiac cluster envoy install [CLUSTER]`](#codiac-cluster-envoy-install-cluster)
|
|
307
308
|
* [`codiac cluster envoy uninstall [CLUSTER]`](#codiac-cluster-envoy-uninstall-cluster)
|
|
@@ -368,6 +369,7 @@ USAGE
|
|
|
368
369
|
* [`codiac host delete`](#codiac-host-delete)
|
|
369
370
|
* [`codiac host list [DOMAIN]`](#codiac-host-list-domain)
|
|
370
371
|
* [`codiac host map [DOMAIN]`](#codiac-host-map-domain)
|
|
372
|
+
* [`codiac host recapture [CLUSTER]`](#codiac-host-recapture-cluster)
|
|
371
373
|
* [`codiac host view [DOMAIN]`](#codiac-host-view-domain)
|
|
372
374
|
* [`codiac identify [TOKENNAME]`](#codiac-identify-tokenname)
|
|
373
375
|
* [`codiac identity [TOKENNAME]`](#codiac-identity-tokenname)
|
|
@@ -419,6 +421,7 @@ USAGE
|
|
|
419
421
|
* [`codiac infrx environment create [NAME]`](#codiac-infrx-environment-create-name)
|
|
420
422
|
* [`codiac infrx environment delete [NAME]`](#codiac-infrx-environment-delete-name)
|
|
421
423
|
* [`codiac infrx environment list`](#codiac-infrx-environment-list)
|
|
424
|
+
* [`codiac ingress recapture [CLUSTER]`](#codiac-ingress-recapture-cluster)
|
|
422
425
|
* [`codiac init DIRECTORY`](#codiac-init-directory)
|
|
423
426
|
* [`codiac kit create`](#codiac-kit-create)
|
|
424
427
|
* [`codiac login`](#codiac-login)
|
|
@@ -430,6 +433,7 @@ USAGE
|
|
|
430
433
|
* [`codiac noc cluster define [NAME]`](#codiac-noc-cluster-define-name)
|
|
431
434
|
* [`codiac noc cluster deinit`](#codiac-noc-cluster-deinit)
|
|
432
435
|
* [`codiac noc cluster destroy [NAME]`](#codiac-noc-cluster-destroy-name)
|
|
436
|
+
* [`codiac noc cluster edit [NAME]`](#codiac-noc-cluster-edit-name)
|
|
433
437
|
* [`codiac noc cluster forget`](#codiac-noc-cluster-forget)
|
|
434
438
|
* [`codiac noc cluster grant`](#codiac-noc-cluster-grant)
|
|
435
439
|
* [`codiac noc cluster init`](#codiac-noc-cluster-init)
|
|
@@ -539,7 +543,7 @@ EXAMPLES
|
|
|
539
543
|
$ codiac ai agent install -e ben -t hermes -c dev --to-script
|
|
540
544
|
```
|
|
541
545
|
|
|
542
|
-
_See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
546
|
+
_See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/ai/agent/install.ts)_
|
|
543
547
|
|
|
544
548
|
## `codiac ai model attach`
|
|
545
549
|
|
|
@@ -574,7 +578,7 @@ EXAMPLES
|
|
|
574
578
|
$ codiac ai model attach -e ben -m qwen3-dev --agent hermes-agent -c dev --silent
|
|
575
579
|
```
|
|
576
580
|
|
|
577
|
-
_See code: [src/commands/ai/model/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
581
|
+
_See code: [src/commands/ai/model/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/ai/model/attach.ts)_
|
|
578
582
|
|
|
579
583
|
## `codiac ai model install`
|
|
580
584
|
|
|
@@ -646,7 +650,7 @@ EXAMPLES
|
|
|
646
650
|
$ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev --to-script
|
|
647
651
|
```
|
|
648
652
|
|
|
649
|
-
_See code: [src/commands/ai/model/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
653
|
+
_See code: [src/commands/ai/model/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/ai/model/install.ts)_
|
|
650
654
|
|
|
651
655
|
## `codiac ai model list`
|
|
652
656
|
|
|
@@ -702,7 +706,7 @@ EXAMPLES
|
|
|
702
706
|
$ codiac ai model list -e ben --silent
|
|
703
707
|
```
|
|
704
708
|
|
|
705
|
-
_See code: [src/commands/ai/model/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
709
|
+
_See code: [src/commands/ai/model/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/ai/model/list.ts)_
|
|
706
710
|
|
|
707
711
|
## `codiac ai model ls`
|
|
708
712
|
|
|
@@ -826,7 +830,7 @@ EXAMPLES
|
|
|
826
830
|
$ codiac ai model uninstall -e ben -m qwen3-dev -c dev --silent
|
|
827
831
|
```
|
|
828
832
|
|
|
829
|
-
_See code: [src/commands/ai/model/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
833
|
+
_See code: [src/commands/ai/model/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/ai/model/uninstall.ts)_
|
|
830
834
|
|
|
831
835
|
## `codiac ai model view`
|
|
832
836
|
|
|
@@ -871,7 +875,7 @@ EXAMPLES
|
|
|
871
875
|
$ codiac ai model view -e ben -m qwen3-dev --silent
|
|
872
876
|
```
|
|
873
877
|
|
|
874
|
-
_See code: [src/commands/ai/model/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
878
|
+
_See code: [src/commands/ai/model/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/ai/model/view.ts)_
|
|
875
879
|
|
|
876
880
|
## `codiac asset create`
|
|
877
881
|
|
|
@@ -913,7 +917,7 @@ FLAGS
|
|
|
913
917
|
root/naked) (optional: defaults to false).
|
|
914
918
|
|
|
915
919
|
-p, --port=<value>...
|
|
916
|
-
The default port number (from
|
|
920
|
+
The default port number (from 1 to 65535) to assign the asset when deployed to a cabinet (optional). To specify
|
|
917
921
|
port forwarding (betw the service and container), use format: `<service-port>:<container-port>`, eg: `3555:80`
|
|
918
922
|
|
|
919
923
|
-r, --registry=<value>
|
|
@@ -992,7 +996,7 @@ EXAMPLES
|
|
|
992
996
|
$ codiac asset create -e myEnterprise -n redis --helm --chart redis --chart-repo bitnami --silent
|
|
993
997
|
```
|
|
994
998
|
|
|
995
|
-
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
999
|
+
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/create.ts)_
|
|
996
1000
|
|
|
997
1001
|
## `codiac asset edit`
|
|
998
1002
|
|
|
@@ -1058,7 +1062,7 @@ EXAMPLES
|
|
|
1058
1062
|
$ codiac asset edit -e myEnterprise -n my-api --registry devCodiacContainers --silent
|
|
1059
1063
|
```
|
|
1060
1064
|
|
|
1061
|
-
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1065
|
+
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/edit.ts)_
|
|
1062
1066
|
|
|
1063
1067
|
## `codiac asset entrypoint`
|
|
1064
1068
|
|
|
@@ -1179,7 +1183,7 @@ EXAMPLES
|
|
|
1179
1183
|
$ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
|
|
1180
1184
|
```
|
|
1181
1185
|
|
|
1182
|
-
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1186
|
+
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/entrypoint/delete.ts)_
|
|
1183
1187
|
|
|
1184
1188
|
## `codiac asset entrypoint set`
|
|
1185
1189
|
|
|
@@ -1248,7 +1252,7 @@ EXAMPLES
|
|
|
1248
1252
|
--input=/backup/workflows'
|
|
1249
1253
|
```
|
|
1250
1254
|
|
|
1251
|
-
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1255
|
+
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/entrypoint/set.ts)_
|
|
1252
1256
|
|
|
1253
1257
|
## `codiac asset get [CMD]`
|
|
1254
1258
|
|
|
@@ -1356,7 +1360,7 @@ EXAMPLES
|
|
|
1356
1360
|
$ codiac asset list -e myEnterprise --to-script
|
|
1357
1361
|
```
|
|
1358
1362
|
|
|
1359
|
-
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1363
|
+
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/list.ts)_
|
|
1360
1364
|
|
|
1361
1365
|
## `codiac asset mon [CMD]`
|
|
1362
1366
|
|
|
@@ -1506,7 +1510,7 @@ FLAGS
|
|
|
1506
1510
|
root/naked) (optional: defaults to false).
|
|
1507
1511
|
|
|
1508
1512
|
-p, --port=<value>...
|
|
1509
|
-
The default port number (from
|
|
1513
|
+
The default port number (from 1 to 65535) to assign the asset when deployed to a cabinet (optional). To specify
|
|
1510
1514
|
port forwarding (betw the service and container), use format: `<service-port>:<container-port>`, eg: `3555:80`
|
|
1511
1515
|
|
|
1512
1516
|
-r, --registry=<value>
|
|
@@ -1617,7 +1621,7 @@ EXAMPLES
|
|
|
1617
1621
|
$ codiac asset obliterate -e main -n my-api
|
|
1618
1622
|
```
|
|
1619
1623
|
|
|
1620
|
-
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1624
|
+
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/obliterate.ts)_
|
|
1621
1625
|
|
|
1622
1626
|
## `codiac asset probe create [CMD]`
|
|
1623
1627
|
|
|
@@ -1626,10 +1630,10 @@ Declares the implementation of a health or readiness probe for an asset.
|
|
|
1626
1630
|
```
|
|
1627
1631
|
USAGE
|
|
1628
1632
|
$ codiac asset probe create [CMD] -u readiness|liveness|startup [-h] [-n <value>] [-a <value>] [-v <value>] [-d
|
|
1629
|
-
<value>] [-p <value>] [-t <value>] [--success-threshold <value>] [--failure-threshold <value>] [--
|
|
1630
|
-
| --exec | --grpc | --http | --socket] [-x <value>] [--grpcHost <value> ] [--grpcPort <value>
|
|
1631
|
-
http|https ] [--httpHost <value> ] [--httpPort <value> ] [--httpPath <value> ] [-r <value> ]
|
|
1632
|
-
[--socketPort <value> ] [--silent | --echo | --to-script]
|
|
1633
|
+
<value>] [-p <value>] [-t <value>] [--success-threshold <value>] [--failure-threshold <value>] [--disabled]
|
|
1634
|
+
[--predefined <value> | --exec | --grpc | --http | --socket] [-x <value>] [--grpcHost <value> ] [--grpcPort <value>
|
|
1635
|
+
] [--httpScheme http|https ] [--httpHost <value> ] [--httpPort <value> ] [--httpPath <value> ] [-r <value> ]
|
|
1636
|
+
[--socketHost <value> ] [--socketPort <value> ] [--silent | --echo | --to-script]
|
|
1633
1637
|
|
|
1634
1638
|
ARGUMENTS
|
|
1635
1639
|
CMD (requires --exec) command and its space-separated arguments to run in the target replica.
|
|
@@ -1649,6 +1653,8 @@ FLAGS
|
|
|
1649
1653
|
-v, --versions=<value> Asset version range for which this probe is to be used. (optional: defaults to >=latest)
|
|
1650
1654
|
-x, --action=<value> The JSON specification for the probe action itself. The structure follows the
|
|
1651
1655
|
actionType.
|
|
1656
|
+
--[no-]disabled Keeps the definition on record but stops it being applied to the asset at deploy time.
|
|
1657
|
+
Pass --disabled to park a probe without deleting it; omit to leave it active.
|
|
1652
1658
|
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
1653
1659
|
--exec Declares the probe shall be carried out as an executable CLI command. A return code of
|
|
1654
1660
|
zero indicates success. Any nonzero result indicates failure.
|
|
@@ -1707,7 +1713,7 @@ EXAMPLES
|
|
|
1707
1713
|
$ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
|
|
1708
1714
|
```
|
|
1709
1715
|
|
|
1710
|
-
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1716
|
+
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/probe/create.ts)_
|
|
1711
1717
|
|
|
1712
1718
|
## `codiac asset probe delete`
|
|
1713
1719
|
|
|
@@ -1762,7 +1768,7 @@ EXAMPLES
|
|
|
1762
1768
|
$ codiac asset probe delete
|
|
1763
1769
|
```
|
|
1764
1770
|
|
|
1765
|
-
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1771
|
+
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/probe/delete.ts)_
|
|
1766
1772
|
|
|
1767
1773
|
## `codiac asset probe list`
|
|
1768
1774
|
|
|
@@ -1814,7 +1820,7 @@ EXAMPLES
|
|
|
1814
1820
|
$ codiac asset probe list
|
|
1815
1821
|
```
|
|
1816
1822
|
|
|
1817
|
-
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1823
|
+
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/probe/list.ts)_
|
|
1818
1824
|
|
|
1819
1825
|
## `codiac asset recycle`
|
|
1820
1826
|
|
|
@@ -1854,7 +1860,7 @@ DESCRIPTION
|
|
|
1854
1860
|
Deploys a given asset to a given cabinet. Defaults to current version.
|
|
1855
1861
|
```
|
|
1856
1862
|
|
|
1857
|
-
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1863
|
+
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/recycle.ts)_
|
|
1858
1864
|
|
|
1859
1865
|
## `codiac asset undeploy`
|
|
1860
1866
|
|
|
@@ -1898,7 +1904,7 @@ EXAMPLES
|
|
|
1898
1904
|
$ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
|
|
1899
1905
|
```
|
|
1900
1906
|
|
|
1901
|
-
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1907
|
+
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/undeploy.ts)_
|
|
1902
1908
|
|
|
1903
1909
|
## `codiac asset view [CMD]`
|
|
1904
1910
|
|
|
@@ -1954,7 +1960,7 @@ ALIASES
|
|
|
1954
1960
|
$ codiac asset get
|
|
1955
1961
|
```
|
|
1956
1962
|
|
|
1957
|
-
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1963
|
+
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/view.ts)_
|
|
1958
1964
|
|
|
1959
1965
|
## `codiac asset vol add [MOUNTPATH]`
|
|
1960
1966
|
|
|
@@ -2225,7 +2231,7 @@ ALIASES
|
|
|
2225
2231
|
$ codiac asset volume add
|
|
2226
2232
|
```
|
|
2227
2233
|
|
|
2228
|
-
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2234
|
+
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/volume/create.ts)_
|
|
2229
2235
|
|
|
2230
2236
|
## `codiac asset volume del`
|
|
2231
2237
|
|
|
@@ -2313,7 +2319,7 @@ EXAMPLES
|
|
|
2313
2319
|
$ codiac asset volume delete -e myEnterprise -n myMount --to-script
|
|
2314
2320
|
```
|
|
2315
2321
|
|
|
2316
|
-
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2322
|
+
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/volume/delete.ts)_
|
|
2317
2323
|
|
|
2318
2324
|
## `codiac asset volume list`
|
|
2319
2325
|
|
|
@@ -2362,7 +2368,7 @@ EXAMPLES
|
|
|
2362
2368
|
$ codiac asset volume list -e myEnterprise --silent
|
|
2363
2369
|
```
|
|
2364
2370
|
|
|
2365
|
-
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2371
|
+
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/volume/list.ts)_
|
|
2366
2372
|
|
|
2367
2373
|
## `codiac asset volumes del`
|
|
2368
2374
|
|
|
@@ -2529,7 +2535,7 @@ EXAMPLES
|
|
|
2529
2535
|
$ codiac asset where -e main -a my-api --silent
|
|
2530
2536
|
```
|
|
2531
2537
|
|
|
2532
|
-
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2538
|
+
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/asset/where.ts)_
|
|
2533
2539
|
|
|
2534
2540
|
## `codiac auth cab allow`
|
|
2535
2541
|
|
|
@@ -2691,7 +2697,7 @@ EXAMPLES
|
|
|
2691
2697
|
$ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
|
|
2692
2698
|
```
|
|
2693
2699
|
|
|
2694
|
-
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2700
|
+
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/cabinet/allow.ts)_
|
|
2695
2701
|
|
|
2696
2702
|
## `codiac auth cabinet allowed`
|
|
2697
2703
|
|
|
@@ -2739,7 +2745,7 @@ EXAMPLES
|
|
|
2739
2745
|
$ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
|
|
2740
2746
|
```
|
|
2741
2747
|
|
|
2742
|
-
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2748
|
+
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/cabinet/allowed.ts)_
|
|
2743
2749
|
|
|
2744
2750
|
## `codiac auth ent allow`
|
|
2745
2751
|
|
|
@@ -2930,7 +2936,7 @@ EXAMPLES
|
|
|
2930
2936
|
$ codiac auth enterprise allow -r deployer -p none
|
|
2931
2937
|
```
|
|
2932
2938
|
|
|
2933
|
-
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2939
|
+
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/enterprise/allow.ts)_
|
|
2934
2940
|
|
|
2935
2941
|
## `codiac auth enterprise allow onEnvironments`
|
|
2936
2942
|
|
|
@@ -2984,7 +2990,7 @@ EXAMPLES
|
|
|
2984
2990
|
$ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
|
|
2985
2991
|
```
|
|
2986
2992
|
|
|
2987
|
-
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2993
|
+
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/enterprise/allow/onEnvironments.ts)_
|
|
2988
2994
|
|
|
2989
2995
|
## `codiac auth enterprise allowed`
|
|
2990
2996
|
|
|
@@ -3025,7 +3031,7 @@ EXAMPLES
|
|
|
3025
3031
|
$ codiac auth enterprise allowed --enterprise modeling
|
|
3026
3032
|
```
|
|
3027
3033
|
|
|
3028
|
-
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3034
|
+
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/enterprise/allowed.ts)_
|
|
3029
3035
|
|
|
3030
3036
|
## `codiac auth env allowed`
|
|
3031
3037
|
|
|
@@ -3232,7 +3238,7 @@ EXAMPLES
|
|
|
3232
3238
|
$ codiac auth environment allow -e qa -r productmanager -p read
|
|
3233
3239
|
```
|
|
3234
3240
|
|
|
3235
|
-
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3241
|
+
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/environment/allow.ts)_
|
|
3236
3242
|
|
|
3237
3243
|
## `codiac auth environment allow onCabinets`
|
|
3238
3244
|
|
|
@@ -3289,7 +3295,7 @@ EXAMPLES
|
|
|
3289
3295
|
$ codiac auth environment allow onCabinets -e qa -r productmanager -p read
|
|
3290
3296
|
```
|
|
3291
3297
|
|
|
3292
|
-
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3298
|
+
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/environment/allow/onCabinets.ts)_
|
|
3293
3299
|
|
|
3294
3300
|
## `codiac auth environment allowed`
|
|
3295
3301
|
|
|
@@ -3334,7 +3340,7 @@ EXAMPLES
|
|
|
3334
3340
|
$ codiac auth environment allowed --enterprise modeling -e dev
|
|
3335
3341
|
```
|
|
3336
3342
|
|
|
3337
|
-
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3343
|
+
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/environment/allowed.ts)_
|
|
3338
3344
|
|
|
3339
3345
|
## `codiac auth register`
|
|
3340
3346
|
|
|
@@ -3380,7 +3386,7 @@ EXAMPLES
|
|
|
3380
3386
|
$ codiac auth register
|
|
3381
3387
|
```
|
|
3382
3388
|
|
|
3383
|
-
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3389
|
+
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/register.ts)_
|
|
3384
3390
|
|
|
3385
3391
|
## `codiac auth role allowed [NAME]`
|
|
3386
3392
|
|
|
@@ -3427,7 +3433,7 @@ EXAMPLES
|
|
|
3427
3433
|
$ codiac auth role allowed -n deployer -e main
|
|
3428
3434
|
```
|
|
3429
3435
|
|
|
3430
|
-
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3436
|
+
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/role/allowed.ts)_
|
|
3431
3437
|
|
|
3432
3438
|
## `codiac auth role assign`
|
|
3433
3439
|
|
|
@@ -3459,7 +3465,7 @@ EXAMPLES
|
|
|
3459
3465
|
$ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
|
|
3460
3466
|
```
|
|
3461
3467
|
|
|
3462
|
-
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3468
|
+
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/role/assign.ts)_
|
|
3463
3469
|
|
|
3464
3470
|
## `codiac auth role create [NAME]`
|
|
3465
3471
|
|
|
@@ -3492,7 +3498,7 @@ EXAMPLES
|
|
|
3492
3498
|
$ codiac auth role create -n deployer
|
|
3493
3499
|
```
|
|
3494
3500
|
|
|
3495
|
-
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3501
|
+
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/role/create.ts)_
|
|
3496
3502
|
|
|
3497
3503
|
## `codiac auth role delete [NAME]`
|
|
3498
3504
|
|
|
@@ -3528,7 +3534,7 @@ EXAMPLES
|
|
|
3528
3534
|
$ codiac auth role delete --id abc123def456
|
|
3529
3535
|
```
|
|
3530
3536
|
|
|
3531
|
-
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3537
|
+
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/role/delete.ts)_
|
|
3532
3538
|
|
|
3533
3539
|
## `codiac auth role list`
|
|
3534
3540
|
|
|
@@ -3564,7 +3570,7 @@ EXAMPLES
|
|
|
3564
3570
|
$ codiac auth role list -o yaml > roles.yaml
|
|
3565
3571
|
```
|
|
3566
3572
|
|
|
3567
|
-
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3573
|
+
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/role/list.ts)_
|
|
3568
3574
|
|
|
3569
3575
|
## `codiac auth role unassign`
|
|
3570
3576
|
|
|
@@ -3596,7 +3602,7 @@ EXAMPLES
|
|
|
3596
3602
|
$ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
|
|
3597
3603
|
```
|
|
3598
3604
|
|
|
3599
|
-
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3605
|
+
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/role/unassign.ts)_
|
|
3600
3606
|
|
|
3601
3607
|
## `codiac auth user invite`
|
|
3602
3608
|
|
|
@@ -3636,7 +3642,7 @@ EXAMPLES
|
|
|
3636
3642
|
$ codiac auth user invite
|
|
3637
3643
|
```
|
|
3638
3644
|
|
|
3639
|
-
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3645
|
+
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/user/invite.ts)_
|
|
3640
3646
|
|
|
3641
3647
|
## `codiac auth user list`
|
|
3642
3648
|
|
|
@@ -3672,7 +3678,7 @@ EXAMPLES
|
|
|
3672
3678
|
$ codiac auth user list -o yaml > users.yaml
|
|
3673
3679
|
```
|
|
3674
3680
|
|
|
3675
|
-
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3681
|
+
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/auth/user/list.ts)_
|
|
3676
3682
|
|
|
3677
3683
|
## `codiac autocomplete [SHELL]`
|
|
3678
3684
|
|
|
@@ -3722,7 +3728,7 @@ DESCRIPTION
|
|
|
3722
3728
|
Creates a new branch for the parent project and any sourced dependencies.
|
|
3723
3729
|
```
|
|
3724
3730
|
|
|
3725
|
-
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3731
|
+
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/branch.ts)_
|
|
3726
3732
|
|
|
3727
3733
|
## `codiac branch current`
|
|
3728
3734
|
|
|
@@ -3742,7 +3748,7 @@ ALIASES
|
|
|
3742
3748
|
$ codiac branches current
|
|
3743
3749
|
```
|
|
3744
3750
|
|
|
3745
|
-
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3751
|
+
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/branch/current.ts)_
|
|
3746
3752
|
|
|
3747
3753
|
## `codiac branch list`
|
|
3748
3754
|
|
|
@@ -3764,7 +3770,7 @@ ALIASES
|
|
|
3764
3770
|
$ codiac branches list
|
|
3765
3771
|
```
|
|
3766
3772
|
|
|
3767
|
-
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3773
|
+
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/branch/list.ts)_
|
|
3768
3774
|
|
|
3769
3775
|
## `codiac branches current`
|
|
3770
3776
|
|
|
@@ -3854,7 +3860,7 @@ DESCRIPTION
|
|
|
3854
3860
|
Builds the project and the docker container
|
|
3855
3861
|
```
|
|
3856
3862
|
|
|
3857
|
-
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3863
|
+
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/build.ts)_
|
|
3858
3864
|
|
|
3859
3865
|
## `codiac cab attach`
|
|
3860
3866
|
|
|
@@ -4603,7 +4609,7 @@ EXAMPLES
|
|
|
4603
4609
|
prod-cluster-1 --to-script
|
|
4604
4610
|
```
|
|
4605
4611
|
|
|
4606
|
-
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4612
|
+
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/cluster/attach.ts)_
|
|
4607
4613
|
|
|
4608
4614
|
## `codiac cabinet contents`
|
|
4609
4615
|
|
|
@@ -4647,7 +4653,7 @@ EXAMPLES
|
|
|
4647
4653
|
$ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
|
|
4648
4654
|
```
|
|
4649
4655
|
|
|
4650
|
-
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4656
|
+
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/contents.ts)_
|
|
4651
4657
|
|
|
4652
4658
|
## `codiac cabinet create [CABINET]`
|
|
4653
4659
|
|
|
@@ -4714,7 +4720,7 @@ EXAMPLES
|
|
|
4714
4720
|
cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
|
|
4715
4721
|
```
|
|
4716
4722
|
|
|
4717
|
-
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4723
|
+
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/create.ts)_
|
|
4718
4724
|
|
|
4719
4725
|
## `codiac cabinet define [CABINET]`
|
|
4720
4726
|
|
|
@@ -4776,7 +4782,7 @@ EXAMPLES
|
|
|
4776
4782
|
$ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
|
|
4777
4783
|
```
|
|
4778
4784
|
|
|
4779
|
-
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4785
|
+
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/define.ts)_
|
|
4780
4786
|
|
|
4781
4787
|
## `codiac cabinet destroy [CABINET]`
|
|
4782
4788
|
|
|
@@ -4834,7 +4840,7 @@ EXAMPLES
|
|
|
4834
4840
|
--environment dev --silent
|
|
4835
4841
|
```
|
|
4836
4842
|
|
|
4837
|
-
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4843
|
+
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/destroy.ts)_
|
|
4838
4844
|
|
|
4839
4845
|
## `codiac cabinet detach [CABINET]`
|
|
4840
4846
|
|
|
@@ -4891,7 +4897,7 @@ EXAMPLES
|
|
|
4891
4897
|
main --environment dev
|
|
4892
4898
|
```
|
|
4893
4899
|
|
|
4894
|
-
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4900
|
+
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/detach.ts)_
|
|
4895
4901
|
|
|
4896
4902
|
## `codiac cabinet forget [CABINET]`
|
|
4897
4903
|
|
|
@@ -4946,7 +4952,7 @@ EXAMPLES
|
|
|
4946
4952
|
$ codiac cabinet forget --to-script
|
|
4947
4953
|
```
|
|
4948
4954
|
|
|
4949
|
-
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4955
|
+
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/forget.ts)_
|
|
4950
4956
|
|
|
4951
4957
|
## `codiac cabinet list`
|
|
4952
4958
|
|
|
@@ -4997,7 +5003,7 @@ EXAMPLES
|
|
|
4997
5003
|
$ codiac cabinet list -e myEnterprise --silent
|
|
4998
5004
|
```
|
|
4999
5005
|
|
|
5000
|
-
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5006
|
+
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/list.ts)_
|
|
5001
5007
|
|
|
5002
5008
|
## `codiac cabinet obliterate [CABINET]`
|
|
5003
5009
|
|
|
@@ -5039,7 +5045,7 @@ ALIASES
|
|
|
5039
5045
|
$ codiac infrx cab obliterate
|
|
5040
5046
|
```
|
|
5041
5047
|
|
|
5042
|
-
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5048
|
+
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/obliterate.ts)_
|
|
5043
5049
|
|
|
5044
5050
|
## `codiac cabinet restore`
|
|
5045
5051
|
|
|
@@ -5106,7 +5112,7 @@ EXAMPLES
|
|
|
5106
5112
|
$ codiac cabinet restore --cluster prod-cluster-1 --to-script
|
|
5107
5113
|
```
|
|
5108
5114
|
|
|
5109
|
-
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5115
|
+
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cabinet/restore.ts)_
|
|
5110
5116
|
|
|
5111
5117
|
## `codiac cfg add`
|
|
5112
5118
|
|
|
@@ -5428,7 +5434,7 @@ DESCRIPTION
|
|
|
5428
5434
|
Applies settings to the Codiac CLI itself (scoped to the local machine).
|
|
5429
5435
|
```
|
|
5430
5436
|
|
|
5431
|
-
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5437
|
+
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cli.ts)_
|
|
5432
5438
|
|
|
5433
5439
|
## `codiac cluster agent configure [CLUSTER]`
|
|
5434
5440
|
|
|
@@ -5496,7 +5502,7 @@ EXAMPLES
|
|
|
5496
5502
|
$ codiac cluster agent configure my-cluster --to-script
|
|
5497
5503
|
```
|
|
5498
5504
|
|
|
5499
|
-
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5505
|
+
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/agent/configure.ts)_
|
|
5500
5506
|
|
|
5501
5507
|
## `codiac cluster agent install [CLUSTER]`
|
|
5502
5508
|
|
|
@@ -5552,7 +5558,7 @@ EXAMPLES
|
|
|
5552
5558
|
$ codiac cluster agent install my-cluster --to-script
|
|
5553
5559
|
```
|
|
5554
5560
|
|
|
5555
|
-
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5561
|
+
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/agent/install.ts)_
|
|
5556
5562
|
|
|
5557
5563
|
## `codiac cluster agent uninstall [CLUSTER]`
|
|
5558
5564
|
|
|
@@ -5600,7 +5606,7 @@ EXAMPLES
|
|
|
5600
5606
|
$ codiac cluster agent uninstall my-cluster --to-script
|
|
5601
5607
|
```
|
|
5602
5608
|
|
|
5603
|
-
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5609
|
+
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/agent/uninstall.ts)_
|
|
5604
5610
|
|
|
5605
5611
|
## `codiac cluster bootstrap [NAME]`
|
|
5606
5612
|
|
|
@@ -5663,7 +5669,7 @@ EXAMPLES
|
|
|
5663
5669
|
$ codiac cluster bootstrap my-cluster --to-script
|
|
5664
5670
|
```
|
|
5665
5671
|
|
|
5666
|
-
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5672
|
+
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/bootstrap.ts)_
|
|
5667
5673
|
|
|
5668
5674
|
## `codiac cluster capture`
|
|
5669
5675
|
|
|
@@ -5748,7 +5754,7 @@ EXAMPLES
|
|
|
5748
5754
|
$ codiac cluster connect my-fav-cluster
|
|
5749
5755
|
```
|
|
5750
5756
|
|
|
5751
|
-
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5757
|
+
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/connect.ts)_
|
|
5752
5758
|
|
|
5753
5759
|
## `codiac cluster contents`
|
|
5754
5760
|
|
|
@@ -6075,6 +6081,59 @@ ALIASES
|
|
|
6075
6081
|
$ codiac cluster destroy
|
|
6076
6082
|
```
|
|
6077
6083
|
|
|
6084
|
+
## `codiac cluster edit [NAME]`
|
|
6085
|
+
|
|
6086
|
+
Changes the mutable connection metadata (apiserver url) on an existing cluster record. DOES NOT modify any infrastructure; it only corrects what Codiac has recorded about the cluster. The cluster name is immutable — use `cod cluster capture` to register a different cluster. Changing the apiserver url also invalidates the cached kube context for this cluster, forcing a fresh credential fetch from the cloud provider on next use.
|
|
6087
|
+
|
|
6088
|
+
```
|
|
6089
|
+
USAGE
|
|
6090
|
+
$ codiac cluster edit [NAME] [-h] [--server-url <value> | --clear-server-url] [--take-defaults] [--silent |
|
|
6091
|
+
--echo | --to-script]
|
|
6092
|
+
|
|
6093
|
+
ARGUMENTS
|
|
6094
|
+
NAME Name of the cluster whose record you want to edit. Run `cod cluster list` to see names.
|
|
6095
|
+
|
|
6096
|
+
FLAGS
|
|
6097
|
+
-h, --help Show CLI help.
|
|
6098
|
+
--clear-server-url Removes the recorded apiserver url, leaving it for the next `cod cluster capture` to repopulate.
|
|
6099
|
+
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
6100
|
+
--server-url=<value> The apiserver url Codiac should record for this cluster (the remote target for kubectl), eg:
|
|
6101
|
+
https://my-cluster.hcp.centralus.azmk8s.io:443. Omit to leave it unchanged.
|
|
6102
|
+
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
6103
|
+
--take-defaults Prevents prompting for confirmation on parameters that were passed in or defaulted.
|
|
6104
|
+
--to-script Renders the equivalent non-interactive command without executing it.
|
|
6105
|
+
|
|
6106
|
+
DESCRIPTION
|
|
6107
|
+
Changes the mutable connection metadata (apiserver url) on an existing cluster record. DOES NOT modify any
|
|
6108
|
+
infrastructure; it only corrects what Codiac has recorded about the cluster. The cluster name is immutable — use `cod
|
|
6109
|
+
cluster capture` to register a different cluster. Changing the apiserver url also invalidates the cached kube context
|
|
6110
|
+
for this cluster, forcing a fresh credential fetch from the cloud provider on next use.
|
|
6111
|
+
|
|
6112
|
+
ALIASES
|
|
6113
|
+
$ codiac cluster edit
|
|
6114
|
+
|
|
6115
|
+
EXAMPLES
|
|
6116
|
+
Edit a cluster interactively (select it, then change its apiserver url).
|
|
6117
|
+
|
|
6118
|
+
$ codiac cluster edit
|
|
6119
|
+
|
|
6120
|
+
Correct the apiserver url Codiac has recorded for a cluster.
|
|
6121
|
+
|
|
6122
|
+
$ codiac cluster edit my-cluster --server-url https://my-cluster.hcp.centralus.azmk8s.io:443 --silent
|
|
6123
|
+
|
|
6124
|
+
Point a private cluster at its private-link address.
|
|
6125
|
+
|
|
6126
|
+
$ codiac cluster edit my-cluster --server-url https://10.110.128.10:443 --silent
|
|
6127
|
+
|
|
6128
|
+
Drop the recorded url so the next capture repopulates it from the cloud provider.
|
|
6129
|
+
|
|
6130
|
+
$ codiac cluster edit my-cluster --clear-server-url --silent
|
|
6131
|
+
|
|
6132
|
+
Renders the equivalent silent command without executing it.
|
|
6133
|
+
|
|
6134
|
+
$ codiac cluster edit my-cluster --server-url https://10.110.128.10:443 --to-script
|
|
6135
|
+
```
|
|
6136
|
+
|
|
6078
6137
|
## `codiac cluster envoy configure [CLUSTER]`
|
|
6079
6138
|
|
|
6080
6139
|
Applies configuration settings to the Codiac agent on the given cluster. Use "overlay" mode (default) to merge settings on top of the existing configuration, or "replace" mode to overwrite the configuration entirely. Settings can be provided as a JSON or YAML string via --settings, piped in via stdin, or entered interactively as a single key-value pair.
|
|
@@ -6413,7 +6472,7 @@ EXAMPLES
|
|
|
6413
6472
|
$ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
|
|
6414
6473
|
```
|
|
6415
6474
|
|
|
6416
|
-
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6475
|
+
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/install.ts)_
|
|
6417
6476
|
|
|
6418
6477
|
## `codiac cluster journal [CLUSTER]`
|
|
6419
6478
|
|
|
@@ -6702,7 +6761,7 @@ EXAMPLES
|
|
|
6702
6761
|
$ codiac cluster stack capture my-fav-cluster
|
|
6703
6762
|
```
|
|
6704
6763
|
|
|
6705
|
-
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6764
|
+
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/stack/capture.ts)_
|
|
6706
6765
|
|
|
6707
6766
|
## `codiac cluster stack install [CLUSTER]`
|
|
6708
6767
|
|
|
@@ -6754,7 +6813,7 @@ EXAMPLES
|
|
|
6754
6813
|
$ codiac cluster stack install my-cluster --to-script
|
|
6755
6814
|
```
|
|
6756
6815
|
|
|
6757
|
-
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6816
|
+
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/stack/install.ts)_
|
|
6758
6817
|
|
|
6759
6818
|
## `codiac cluster stack list`
|
|
6760
6819
|
|
|
@@ -6920,7 +6979,7 @@ EXAMPLES
|
|
|
6920
6979
|
$ codiac cluster start my-fav-cluster
|
|
6921
6980
|
```
|
|
6922
6981
|
|
|
6923
|
-
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6982
|
+
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/start.ts)_
|
|
6924
6983
|
|
|
6925
6984
|
## `codiac cluster stop [CLUSTER]`
|
|
6926
6985
|
|
|
@@ -6957,7 +7016,7 @@ EXAMPLES
|
|
|
6957
7016
|
$ codiac cluster start my-fav-cluster
|
|
6958
7017
|
```
|
|
6959
7018
|
|
|
6960
|
-
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7019
|
+
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/cluster/stop.ts)_
|
|
6961
7020
|
|
|
6962
7021
|
## `codiac cluster uninstall`
|
|
6963
7022
|
|
|
@@ -7019,7 +7078,7 @@ DESCRIPTION
|
|
|
7019
7078
|
Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
|
|
7020
7079
|
```
|
|
7021
7080
|
|
|
7022
|
-
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7081
|
+
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/commit.ts)_
|
|
7023
7082
|
|
|
7024
7083
|
## `codiac config add`
|
|
7025
7084
|
|
|
@@ -7194,7 +7253,7 @@ EXAMPLES
|
|
|
7194
7253
|
'[{"op":"replace","path":"/spec/replicas","value":2}]' --value-type string
|
|
7195
7254
|
```
|
|
7196
7255
|
|
|
7197
|
-
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7256
|
+
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/config/add.ts)_
|
|
7198
7257
|
|
|
7199
7258
|
## `codiac config delete [SETTING]`
|
|
7200
7259
|
|
|
@@ -7263,7 +7322,7 @@ ALIASES
|
|
|
7263
7322
|
$ codiac cfg delete
|
|
7264
7323
|
```
|
|
7265
7324
|
|
|
7266
|
-
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7325
|
+
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/config/delete.ts)_
|
|
7267
7326
|
|
|
7268
7327
|
## `codiac config deploy`
|
|
7269
7328
|
|
|
@@ -7304,7 +7363,7 @@ EXAMPLES
|
|
|
7304
7363
|
$ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
|
|
7305
7364
|
```
|
|
7306
7365
|
|
|
7307
|
-
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7366
|
+
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/config/deploy.ts)_
|
|
7308
7367
|
|
|
7309
7368
|
## `codiac config import`
|
|
7310
7369
|
|
|
@@ -7365,7 +7424,7 @@ EXAMPLES
|
|
|
7365
7424
|
$ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
|
|
7366
7425
|
```
|
|
7367
7426
|
|
|
7368
|
-
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7427
|
+
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/config/import.ts)_
|
|
7369
7428
|
|
|
7370
7429
|
## `codiac config preview [SETTING]`
|
|
7371
7430
|
|
|
@@ -7671,7 +7730,7 @@ DESCRIPTION
|
|
|
7671
7730
|
Shows the list of clusters.
|
|
7672
7731
|
```
|
|
7673
7732
|
|
|
7674
|
-
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7733
|
+
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/config/settings/get.ts)_
|
|
7675
7734
|
|
|
7676
7735
|
## `codiac config view [SETTING]`
|
|
7677
7736
|
|
|
@@ -7736,7 +7795,7 @@ EXAMPLES
|
|
|
7736
7795
|
$ codiac config view -e myEnterprise -a myApi -c dev --to-script
|
|
7737
7796
|
```
|
|
7738
7797
|
|
|
7739
|
-
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7798
|
+
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/config/view.ts)_
|
|
7740
7799
|
|
|
7741
7800
|
## `codiac csp creds list`
|
|
7742
7801
|
|
|
@@ -7784,7 +7843,7 @@ EXAMPLES
|
|
|
7784
7843
|
$ codiac csp creds list
|
|
7785
7844
|
```
|
|
7786
7845
|
|
|
7787
|
-
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7846
|
+
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/csp/creds/list.ts)_
|
|
7788
7847
|
|
|
7789
7848
|
## `codiac csp login [PROVIDER]`
|
|
7790
7849
|
|
|
@@ -7862,7 +7921,7 @@ EXAMPLES
|
|
|
7862
7921
|
cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
|
|
7863
7922
|
```
|
|
7864
7923
|
|
|
7865
|
-
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7924
|
+
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/csp/login.ts)_
|
|
7866
7925
|
|
|
7867
7926
|
## `codiac csp logout [PROVIDER]`
|
|
7868
7927
|
|
|
@@ -7909,7 +7968,7 @@ EXAMPLES
|
|
|
7909
7968
|
$ codiac csp logout azure --to-script
|
|
7910
7969
|
```
|
|
7911
7970
|
|
|
7912
|
-
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7971
|
+
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/csp/logout.ts)_
|
|
7913
7972
|
|
|
7914
7973
|
## `codiac dep [NAME]`
|
|
7915
7974
|
|
|
@@ -7930,7 +7989,7 @@ DESCRIPTION
|
|
|
7930
7989
|
Installs a package into current project.
|
|
7931
7990
|
```
|
|
7932
7991
|
|
|
7933
|
-
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7992
|
+
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/dep.ts)_
|
|
7934
7993
|
|
|
7935
7994
|
## `codiac dep create [URL]`
|
|
7936
7995
|
|
|
@@ -7954,7 +8013,7 @@ DESCRIPTION
|
|
|
7954
8013
|
package version is used.
|
|
7955
8014
|
```
|
|
7956
8015
|
|
|
7957
|
-
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8016
|
+
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/dep/create.ts)_
|
|
7958
8017
|
|
|
7959
8018
|
## `codiac dep install`
|
|
7960
8019
|
|
|
@@ -7971,7 +8030,7 @@ DESCRIPTION
|
|
|
7971
8030
|
installs any missing dependency packages into the local project folder.
|
|
7972
8031
|
```
|
|
7973
8032
|
|
|
7974
|
-
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8033
|
+
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/dep/install.ts)_
|
|
7975
8034
|
|
|
7976
8035
|
## `codiac dep list`
|
|
7977
8036
|
|
|
@@ -7988,7 +8047,7 @@ DESCRIPTION
|
|
|
7988
8047
|
Shows the dependencies for the project.
|
|
7989
8048
|
```
|
|
7990
8049
|
|
|
7991
|
-
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8050
|
+
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/dep/list.ts)_
|
|
7992
8051
|
|
|
7993
8052
|
## `codiac dep remove [NAME]`
|
|
7994
8053
|
|
|
@@ -8011,7 +8070,7 @@ DESCRIPTION
|
|
|
8011
8070
|
Removes a dependency from the project.
|
|
8012
8071
|
```
|
|
8013
8072
|
|
|
8014
|
-
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8073
|
+
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/dep/remove.ts)_
|
|
8015
8074
|
|
|
8016
8075
|
## `codiac dep source [NAME]`
|
|
8017
8076
|
|
|
@@ -8037,7 +8096,7 @@ ALIASES
|
|
|
8037
8096
|
$ codiac dep src
|
|
8038
8097
|
```
|
|
8039
8098
|
|
|
8040
|
-
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8099
|
+
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/dep/source.ts)_
|
|
8041
8100
|
|
|
8042
8101
|
## `codiac dep src [NAME]`
|
|
8043
8102
|
|
|
@@ -8081,7 +8140,7 @@ DESCRIPTION
|
|
|
8081
8140
|
Publishes the dependency in its current state and upgrades to it in the main project.
|
|
8082
8141
|
```
|
|
8083
8142
|
|
|
8084
|
-
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8143
|
+
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/dep/syncup.ts)_
|
|
8085
8144
|
|
|
8086
8145
|
## `codiac dep unsource [NAME]`
|
|
8087
8146
|
|
|
@@ -8109,7 +8168,7 @@ ALIASES
|
|
|
8109
8168
|
$ codiac dep unsrc
|
|
8110
8169
|
```
|
|
8111
8170
|
|
|
8112
|
-
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8171
|
+
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/dep/unsource.ts)_
|
|
8113
8172
|
|
|
8114
8173
|
## `codiac dep unsrc [NAME]`
|
|
8115
8174
|
|
|
@@ -8156,7 +8215,7 @@ DESCRIPTION
|
|
|
8156
8215
|
describe the command here
|
|
8157
8216
|
```
|
|
8158
8217
|
|
|
8159
|
-
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8218
|
+
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/dep/upgrade.ts)_
|
|
8160
8219
|
|
|
8161
8220
|
## `codiac deploy`
|
|
8162
8221
|
|
|
@@ -8209,7 +8268,7 @@ EXAMPLES
|
|
|
8209
8268
|
$ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
|
|
8210
8269
|
```
|
|
8211
8270
|
|
|
8212
|
-
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8271
|
+
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/deploy.ts)_
|
|
8213
8272
|
|
|
8214
8273
|
## `codiac domain map [DOMAIN]`
|
|
8215
8274
|
|
|
@@ -8365,7 +8424,7 @@ EXAMPLES
|
|
|
8365
8424
|
cod enterprise create my-enterprise-code --silent
|
|
8366
8425
|
```
|
|
8367
8426
|
|
|
8368
|
-
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8427
|
+
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/enterprise/create.ts)_
|
|
8369
8428
|
|
|
8370
8429
|
## `codiac enterprise list`
|
|
8371
8430
|
|
|
@@ -8420,7 +8479,7 @@ EXAMPLES
|
|
|
8420
8479
|
$ codiac enterprise list --to-script
|
|
8421
8480
|
```
|
|
8422
8481
|
|
|
8423
|
-
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8482
|
+
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/enterprise/list.ts)_
|
|
8424
8483
|
|
|
8425
8484
|
## `codiac env add [SETTING]`
|
|
8426
8485
|
|
|
@@ -8470,7 +8529,7 @@ EXAMPLES
|
|
|
8470
8529
|
$ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
|
|
8471
8530
|
```
|
|
8472
8531
|
|
|
8473
|
-
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8532
|
+
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/env/add.ts)_
|
|
8474
8533
|
|
|
8475
8534
|
## `codiac enviro cluster attach`
|
|
8476
8535
|
|
|
@@ -8773,7 +8832,7 @@ ALIASES
|
|
|
8773
8832
|
$ codiac infrx enviro cluster attach
|
|
8774
8833
|
```
|
|
8775
8834
|
|
|
8776
|
-
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8835
|
+
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/environment/cluster/attach.ts)_
|
|
8777
8836
|
|
|
8778
8837
|
## `codiac environment cluster detach`
|
|
8779
8838
|
|
|
@@ -8819,7 +8878,7 @@ ALIASES
|
|
|
8819
8878
|
$ codiac infrx enviro cluster detach
|
|
8820
8879
|
```
|
|
8821
8880
|
|
|
8822
|
-
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8881
|
+
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/environment/cluster/detach.ts)_
|
|
8823
8882
|
|
|
8824
8883
|
## `codiac environment create [NAME]`
|
|
8825
8884
|
|
|
@@ -8882,7 +8941,7 @@ EXAMPLES
|
|
|
8882
8941
|
cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
|
|
8883
8942
|
```
|
|
8884
8943
|
|
|
8885
|
-
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8944
|
+
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/environment/create.ts)_
|
|
8886
8945
|
|
|
8887
8946
|
## `codiac environment delete [NAME]`
|
|
8888
8947
|
|
|
@@ -8943,7 +9002,7 @@ EXAMPLES
|
|
|
8943
9002
|
$ codiac environment delete dev --enterprise main --to-script
|
|
8944
9003
|
```
|
|
8945
9004
|
|
|
8946
|
-
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9005
|
+
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/environment/delete.ts)_
|
|
8947
9006
|
|
|
8948
9007
|
## `codiac environment list`
|
|
8949
9008
|
|
|
@@ -8994,7 +9053,7 @@ EXAMPLES
|
|
|
8994
9053
|
$ codiac environment list -e myEnterprise --silent
|
|
8995
9054
|
```
|
|
8996
9055
|
|
|
8997
|
-
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9056
|
+
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/environment/list.ts)_
|
|
8998
9057
|
|
|
8999
9058
|
## `codiac fileshare capture`
|
|
9000
9059
|
|
|
@@ -9078,7 +9137,7 @@ ALIASES
|
|
|
9078
9137
|
$ codiac fileshare capture
|
|
9079
9138
|
```
|
|
9080
9139
|
|
|
9081
|
-
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9140
|
+
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/filestore/capture.ts)_
|
|
9082
9141
|
|
|
9083
9142
|
## `codiac filestore forget`
|
|
9084
9143
|
|
|
@@ -9125,7 +9184,7 @@ EXAMPLES
|
|
|
9125
9184
|
$ codiac filestore forget
|
|
9126
9185
|
```
|
|
9127
9186
|
|
|
9128
|
-
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9187
|
+
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/filestore/forget.ts)_
|
|
9129
9188
|
|
|
9130
9189
|
## `codiac filestore list`
|
|
9131
9190
|
|
|
@@ -9171,7 +9230,7 @@ EXAMPLES
|
|
|
9171
9230
|
$ codiac filestore list
|
|
9172
9231
|
```
|
|
9173
9232
|
|
|
9174
|
-
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9233
|
+
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/filestore/list.ts)_
|
|
9175
9234
|
|
|
9176
9235
|
## `codiac help [COMMANDS]`
|
|
9177
9236
|
|
|
@@ -9257,7 +9316,7 @@ EXAMPLES
|
|
|
9257
9316
|
$ codiac host delete
|
|
9258
9317
|
```
|
|
9259
9318
|
|
|
9260
|
-
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9319
|
+
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/host/delete.ts)_
|
|
9261
9320
|
|
|
9262
9321
|
## `codiac host list [DOMAIN]`
|
|
9263
9322
|
|
|
@@ -9301,7 +9360,7 @@ EXAMPLES
|
|
|
9301
9360
|
$ codiac host list
|
|
9302
9361
|
```
|
|
9303
9362
|
|
|
9304
|
-
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9363
|
+
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/host/list.ts)_
|
|
9305
9364
|
|
|
9306
9365
|
## `codiac host map [DOMAIN]`
|
|
9307
9366
|
|
|
@@ -9355,7 +9414,49 @@ EXAMPLES
|
|
|
9355
9414
|
$ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
|
|
9356
9415
|
```
|
|
9357
9416
|
|
|
9358
|
-
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9417
|
+
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/host/map.ts)_
|
|
9418
|
+
|
|
9419
|
+
## `codiac host recapture [CLUSTER]`
|
|
9420
|
+
|
|
9421
|
+
Re-reads a cluster's ingress (LoadBalancer) IP from the cluster and updates the cluster record, clearing a !MISSING! ingress IP in the host-naming map.
|
|
9422
|
+
|
|
9423
|
+
```
|
|
9424
|
+
USAGE
|
|
9425
|
+
$ codiac host recapture [CLUSTER] [-h] [-e <value>] [--silent | --echo | --to-script]
|
|
9426
|
+
|
|
9427
|
+
ARGUMENTS
|
|
9428
|
+
CLUSTER Name of the cluster whose ingress IP to recapture (optional when there is only one cluster).
|
|
9429
|
+
|
|
9430
|
+
FLAGS
|
|
9431
|
+
-e, --enterprise=<value> The enterprise whose rootmap contains the cluster (optional when there is only one
|
|
9432
|
+
enterprise).
|
|
9433
|
+
-h, --help Show CLI help.
|
|
9434
|
+
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
9435
|
+
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
9436
|
+
--to-script Renders the equivalent non-interactive command without executing it.
|
|
9437
|
+
|
|
9438
|
+
DESCRIPTION
|
|
9439
|
+
Re-reads a cluster's ingress (LoadBalancer) IP from the cluster and updates the cluster record, clearing a !MISSING!
|
|
9440
|
+
ingress IP in the host-naming map.
|
|
9441
|
+
|
|
9442
|
+
ALIASES
|
|
9443
|
+
$ codiac ingress recapture
|
|
9444
|
+
|
|
9445
|
+
EXAMPLES
|
|
9446
|
+
Recapture interactively (prompts for the cluster).
|
|
9447
|
+
|
|
9448
|
+
$ codiac host recapture
|
|
9449
|
+
|
|
9450
|
+
Recapture a specific cluster non-interactively.
|
|
9451
|
+
|
|
9452
|
+
$ codiac host recapture my-cluster -e myEnterprise --silent
|
|
9453
|
+
|
|
9454
|
+
Renders the equivalent silent command without executing.
|
|
9455
|
+
|
|
9456
|
+
$ codiac host recapture my-cluster --to-script
|
|
9457
|
+
```
|
|
9458
|
+
|
|
9459
|
+
_See code: [src/commands/host/recapture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/host/recapture.ts)_
|
|
9359
9460
|
|
|
9360
9461
|
## `codiac host view [DOMAIN]`
|
|
9361
9462
|
|
|
@@ -9400,7 +9501,7 @@ EXAMPLES
|
|
|
9400
9501
|
$ codiac host view
|
|
9401
9502
|
```
|
|
9402
9503
|
|
|
9403
|
-
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9504
|
+
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/host/view.ts)_
|
|
9404
9505
|
|
|
9405
9506
|
## `codiac identify [TOKENNAME]`
|
|
9406
9507
|
|
|
@@ -9472,7 +9573,7 @@ ALIASES
|
|
|
9472
9573
|
$ codiac token
|
|
9473
9574
|
```
|
|
9474
9575
|
|
|
9475
|
-
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9576
|
+
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/identity.ts)_
|
|
9476
9577
|
|
|
9477
9578
|
## `codiac identity delete [NAME]`
|
|
9478
9579
|
|
|
@@ -9497,7 +9598,7 @@ ALIASES
|
|
|
9497
9598
|
$ codiac token remove
|
|
9498
9599
|
```
|
|
9499
9600
|
|
|
9500
|
-
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9601
|
+
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/identity/delete.ts)_
|
|
9501
9602
|
|
|
9502
9603
|
## `codiac identity list`
|
|
9503
9604
|
|
|
@@ -9519,7 +9620,7 @@ ALIASES
|
|
|
9519
9620
|
$ codiac token list
|
|
9520
9621
|
```
|
|
9521
9622
|
|
|
9522
|
-
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9623
|
+
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/identity/list.ts)_
|
|
9523
9624
|
|
|
9524
9625
|
## `codiac identity remove [NAME]`
|
|
9525
9626
|
|
|
@@ -9842,7 +9943,7 @@ DESCRIPTION
|
|
|
9842
9943
|
Saves a reference to an existing container registry.
|
|
9843
9944
|
```
|
|
9844
9945
|
|
|
9845
|
-
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9946
|
+
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/imageRegistry/capture.ts)_
|
|
9846
9947
|
|
|
9847
9948
|
## `codiac imageRegistry edit`
|
|
9848
9949
|
|
|
@@ -9885,7 +9986,7 @@ EXAMPLES
|
|
|
9885
9986
|
$ codiac imageRegistry edit --registry devCodiacContainers --url newname.azurecr.io --to-script
|
|
9886
9987
|
```
|
|
9887
9988
|
|
|
9888
|
-
_See code: [src/commands/imageRegistry/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9989
|
+
_See code: [src/commands/imageRegistry/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/imageRegistry/edit.ts)_
|
|
9889
9990
|
|
|
9890
9991
|
## `codiac imageRegistry forget`
|
|
9891
9992
|
|
|
@@ -9906,7 +10007,7 @@ DESCRIPTION
|
|
|
9906
10007
|
Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
|
|
9907
10008
|
```
|
|
9908
10009
|
|
|
9909
|
-
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10010
|
+
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/imageRegistry/forget.ts)_
|
|
9910
10011
|
|
|
9911
10012
|
## `codiac imageRegistry list`
|
|
9912
10013
|
|
|
@@ -9948,7 +10049,7 @@ EXAMPLES
|
|
|
9948
10049
|
$ codiac imageRegistry list -o yaml > registries.yaml
|
|
9949
10050
|
```
|
|
9950
10051
|
|
|
9951
|
-
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10052
|
+
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/imageRegistry/list.ts)_
|
|
9952
10053
|
|
|
9953
10054
|
## `codiac imageRegistry pullSecret set`
|
|
9954
10055
|
|
|
@@ -9984,7 +10085,7 @@ ALIASES
|
|
|
9984
10085
|
$ codiac pullsecret
|
|
9985
10086
|
```
|
|
9986
10087
|
|
|
9987
|
-
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10088
|
+
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/imageRegistry/pullSecret/set.ts)_
|
|
9988
10089
|
|
|
9989
10090
|
## `codiac imageRegistry pullSecret unset`
|
|
9990
10091
|
|
|
@@ -10011,7 +10112,7 @@ ALIASES
|
|
|
10011
10112
|
$ codiac pullsecret unset
|
|
10012
10113
|
```
|
|
10013
10114
|
|
|
10014
|
-
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10115
|
+
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/imageRegistry/pullSecret/unset.ts)_
|
|
10015
10116
|
|
|
10016
10117
|
## `codiac images add [IMAGENAME]`
|
|
10017
10118
|
|
|
@@ -10072,7 +10173,7 @@ EXAMPLES
|
|
|
10072
10173
|
$ codiac images add your-company/your-image --to-script
|
|
10073
10174
|
```
|
|
10074
10175
|
|
|
10075
|
-
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10176
|
+
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/images/add.ts)_
|
|
10076
10177
|
|
|
10077
10178
|
## `codiac images list`
|
|
10078
10179
|
|
|
@@ -10095,7 +10196,7 @@ ALIASES
|
|
|
10095
10196
|
$ codiac img list
|
|
10096
10197
|
```
|
|
10097
10198
|
|
|
10098
|
-
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10199
|
+
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/images/list.ts)_
|
|
10099
10200
|
|
|
10100
10201
|
## `codiac images patch IMAGENAME`
|
|
10101
10202
|
|
|
@@ -10125,7 +10226,7 @@ ALIASES
|
|
|
10125
10226
|
$ codiac img patch
|
|
10126
10227
|
```
|
|
10127
10228
|
|
|
10128
|
-
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10229
|
+
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/images/patch.ts)_
|
|
10129
10230
|
|
|
10130
10231
|
## `codiac images remove IMAGENAME`
|
|
10131
10232
|
|
|
@@ -10151,7 +10252,7 @@ ALIASES
|
|
|
10151
10252
|
$ codiac img delete
|
|
10152
10253
|
```
|
|
10153
10254
|
|
|
10154
|
-
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10255
|
+
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/images/remove.ts)_
|
|
10155
10256
|
|
|
10156
10257
|
## `codiac images version NAME`
|
|
10157
10258
|
|
|
@@ -10177,7 +10278,7 @@ ALIASES
|
|
|
10177
10278
|
$ codiac img version get
|
|
10178
10279
|
```
|
|
10179
10280
|
|
|
10180
|
-
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10281
|
+
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/images/version.ts)_
|
|
10181
10282
|
|
|
10182
10283
|
## `codiac images version bump NAME`
|
|
10183
10284
|
|
|
@@ -10210,7 +10311,7 @@ ALIASES
|
|
|
10210
10311
|
$ codiac img version bump
|
|
10211
10312
|
```
|
|
10212
10313
|
|
|
10213
|
-
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10314
|
+
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/images/version/bump.ts)_
|
|
10214
10315
|
|
|
10215
10316
|
## `codiac img [IMAGENAME]`
|
|
10216
10317
|
|
|
@@ -10526,7 +10627,7 @@ EXAMPLES
|
|
|
10526
10627
|
$ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-cabinet --generate-secret-store --subscription-id 00000000-0000-0000-0000-000000000000
|
|
10527
10628
|
```
|
|
10528
10629
|
|
|
10529
|
-
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10630
|
+
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/import/cluster.ts)_
|
|
10530
10631
|
|
|
10531
10632
|
## `codiac infrx cab create [CABINET]`
|
|
10532
10633
|
|
|
@@ -11351,6 +11452,46 @@ EXAMPLES
|
|
|
11351
11452
|
$ codiac infrx environment list -e myEnterprise --silent
|
|
11352
11453
|
```
|
|
11353
11454
|
|
|
11455
|
+
## `codiac ingress recapture [CLUSTER]`
|
|
11456
|
+
|
|
11457
|
+
Re-reads a cluster's ingress (LoadBalancer) IP from the cluster and updates the cluster record, clearing a !MISSING! ingress IP in the host-naming map.
|
|
11458
|
+
|
|
11459
|
+
```
|
|
11460
|
+
USAGE
|
|
11461
|
+
$ codiac ingress recapture [CLUSTER] [-h] [-e <value>] [--silent | --echo | --to-script]
|
|
11462
|
+
|
|
11463
|
+
ARGUMENTS
|
|
11464
|
+
CLUSTER Name of the cluster whose ingress IP to recapture (optional when there is only one cluster).
|
|
11465
|
+
|
|
11466
|
+
FLAGS
|
|
11467
|
+
-e, --enterprise=<value> The enterprise whose rootmap contains the cluster (optional when there is only one
|
|
11468
|
+
enterprise).
|
|
11469
|
+
-h, --help Show CLI help.
|
|
11470
|
+
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
11471
|
+
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
11472
|
+
--to-script Renders the equivalent non-interactive command without executing it.
|
|
11473
|
+
|
|
11474
|
+
DESCRIPTION
|
|
11475
|
+
Re-reads a cluster's ingress (LoadBalancer) IP from the cluster and updates the cluster record, clearing a !MISSING!
|
|
11476
|
+
ingress IP in the host-naming map.
|
|
11477
|
+
|
|
11478
|
+
ALIASES
|
|
11479
|
+
$ codiac ingress recapture
|
|
11480
|
+
|
|
11481
|
+
EXAMPLES
|
|
11482
|
+
Recapture interactively (prompts for the cluster).
|
|
11483
|
+
|
|
11484
|
+
$ codiac ingress recapture
|
|
11485
|
+
|
|
11486
|
+
Recapture a specific cluster non-interactively.
|
|
11487
|
+
|
|
11488
|
+
$ codiac ingress recapture my-cluster -e myEnterprise --silent
|
|
11489
|
+
|
|
11490
|
+
Renders the equivalent silent command without executing.
|
|
11491
|
+
|
|
11492
|
+
$ codiac ingress recapture my-cluster --to-script
|
|
11493
|
+
```
|
|
11494
|
+
|
|
11354
11495
|
## `codiac init DIRECTORY`
|
|
11355
11496
|
|
|
11356
11497
|
Declares the given folder as a project root
|
|
@@ -11371,7 +11512,7 @@ DESCRIPTION
|
|
|
11371
11512
|
Declares the given folder as a project root
|
|
11372
11513
|
```
|
|
11373
11514
|
|
|
11374
|
-
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11515
|
+
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/init.ts)_
|
|
11375
11516
|
|
|
11376
11517
|
## `codiac kit create`
|
|
11377
11518
|
|
|
@@ -11414,7 +11555,7 @@ EXAMPLES
|
|
|
11414
11555
|
$ codiac kit create -e myEnterprise -a myApi --to-script
|
|
11415
11556
|
```
|
|
11416
11557
|
|
|
11417
|
-
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11558
|
+
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/kit/create.ts)_
|
|
11418
11559
|
|
|
11419
11560
|
## `codiac login`
|
|
11420
11561
|
|
|
@@ -11473,7 +11614,7 @@ EXAMPLES
|
|
|
11473
11614
|
$ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
|
|
11474
11615
|
```
|
|
11475
11616
|
|
|
11476
|
-
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11617
|
+
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/login.ts)_
|
|
11477
11618
|
|
|
11478
11619
|
## `codiac logout`
|
|
11479
11620
|
|
|
@@ -11506,7 +11647,7 @@ EXAMPLES
|
|
|
11506
11647
|
$ codiac logout --to-script
|
|
11507
11648
|
```
|
|
11508
11649
|
|
|
11509
|
-
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11650
|
+
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/logout.ts)_
|
|
11510
11651
|
|
|
11511
11652
|
## `codiac merge [BRANCH]`
|
|
11512
11653
|
|
|
@@ -11527,7 +11668,7 @@ DESCRIPTION
|
|
|
11527
11668
|
Merges the given branch into the current branch of the main project and on any sourced dependencies.
|
|
11528
11669
|
```
|
|
11529
11670
|
|
|
11530
|
-
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11671
|
+
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/merge.ts)_
|
|
11531
11672
|
|
|
11532
11673
|
## `codiac noc cluster capture`
|
|
11533
11674
|
|
|
@@ -11579,7 +11720,7 @@ EXAMPLES
|
|
|
11579
11720
|
cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
|
|
11580
11721
|
```
|
|
11581
11722
|
|
|
11582
|
-
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11723
|
+
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/capture.ts)_
|
|
11583
11724
|
|
|
11584
11725
|
## `codiac noc cluster create [NAME]`
|
|
11585
11726
|
|
|
@@ -11669,7 +11810,7 @@ FLAG DESCRIPTIONS
|
|
|
11669
11810
|
initialization is always skipped in that mode.
|
|
11670
11811
|
```
|
|
11671
11812
|
|
|
11672
|
-
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11813
|
+
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/create.ts)_
|
|
11673
11814
|
|
|
11674
11815
|
## `codiac noc cluster credentials-set [NAME]`
|
|
11675
11816
|
|
|
@@ -11724,7 +11865,7 @@ EXAMPLES
|
|
|
11724
11865
|
$ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
|
|
11725
11866
|
```
|
|
11726
11867
|
|
|
11727
|
-
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11868
|
+
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/credentials-set.ts)_
|
|
11728
11869
|
|
|
11729
11870
|
## `codiac noc cluster define [NAME]`
|
|
11730
11871
|
|
|
@@ -11798,7 +11939,7 @@ EXAMPLES
|
|
|
11798
11939
|
$ codiac noc cluster define my-cluster --to-script
|
|
11799
11940
|
```
|
|
11800
11941
|
|
|
11801
|
-
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11942
|
+
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/define.ts)_
|
|
11802
11943
|
|
|
11803
11944
|
## `codiac noc cluster deinit`
|
|
11804
11945
|
|
|
@@ -11838,7 +11979,7 @@ EXAMPLES
|
|
|
11838
11979
|
$ codiac noc cluster deinit -n my-cluster --to-script
|
|
11839
11980
|
```
|
|
11840
11981
|
|
|
11841
|
-
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11982
|
+
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/deinit.ts)_
|
|
11842
11983
|
|
|
11843
11984
|
## `codiac noc cluster destroy [NAME]`
|
|
11844
11985
|
|
|
@@ -11872,7 +12013,62 @@ ALIASES
|
|
|
11872
12013
|
$ codiac cluster destroy
|
|
11873
12014
|
```
|
|
11874
12015
|
|
|
11875
|
-
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12016
|
+
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/destroy.ts)_
|
|
12017
|
+
|
|
12018
|
+
## `codiac noc cluster edit [NAME]`
|
|
12019
|
+
|
|
12020
|
+
Changes the mutable connection metadata (apiserver url) on an existing cluster record. DOES NOT modify any infrastructure; it only corrects what Codiac has recorded about the cluster. The cluster name is immutable — use `cod cluster capture` to register a different cluster. Changing the apiserver url also invalidates the cached kube context for this cluster, forcing a fresh credential fetch from the cloud provider on next use.
|
|
12021
|
+
|
|
12022
|
+
```
|
|
12023
|
+
USAGE
|
|
12024
|
+
$ codiac noc cluster edit [NAME] [-h] [--server-url <value> | --clear-server-url] [--take-defaults] [--silent |
|
|
12025
|
+
--echo | --to-script]
|
|
12026
|
+
|
|
12027
|
+
ARGUMENTS
|
|
12028
|
+
NAME Name of the cluster whose record you want to edit. Run `cod cluster list` to see names.
|
|
12029
|
+
|
|
12030
|
+
FLAGS
|
|
12031
|
+
-h, --help Show CLI help.
|
|
12032
|
+
--clear-server-url Removes the recorded apiserver url, leaving it for the next `cod cluster capture` to repopulate.
|
|
12033
|
+
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
12034
|
+
--server-url=<value> The apiserver url Codiac should record for this cluster (the remote target for kubectl), eg:
|
|
12035
|
+
https://my-cluster.hcp.centralus.azmk8s.io:443. Omit to leave it unchanged.
|
|
12036
|
+
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
12037
|
+
--take-defaults Prevents prompting for confirmation on parameters that were passed in or defaulted.
|
|
12038
|
+
--to-script Renders the equivalent non-interactive command without executing it.
|
|
12039
|
+
|
|
12040
|
+
DESCRIPTION
|
|
12041
|
+
Changes the mutable connection metadata (apiserver url) on an existing cluster record. DOES NOT modify any
|
|
12042
|
+
infrastructure; it only corrects what Codiac has recorded about the cluster. The cluster name is immutable — use `cod
|
|
12043
|
+
cluster capture` to register a different cluster. Changing the apiserver url also invalidates the cached kube context
|
|
12044
|
+
for this cluster, forcing a fresh credential fetch from the cloud provider on next use.
|
|
12045
|
+
|
|
12046
|
+
ALIASES
|
|
12047
|
+
$ codiac cluster edit
|
|
12048
|
+
|
|
12049
|
+
EXAMPLES
|
|
12050
|
+
Edit a cluster interactively (select it, then change its apiserver url).
|
|
12051
|
+
|
|
12052
|
+
$ codiac noc cluster edit
|
|
12053
|
+
|
|
12054
|
+
Correct the apiserver url Codiac has recorded for a cluster.
|
|
12055
|
+
|
|
12056
|
+
$ codiac noc cluster edit my-cluster --server-url https://my-cluster.hcp.centralus.azmk8s.io:443 --silent
|
|
12057
|
+
|
|
12058
|
+
Point a private cluster at its private-link address.
|
|
12059
|
+
|
|
12060
|
+
$ codiac noc cluster edit my-cluster --server-url https://10.110.128.10:443 --silent
|
|
12061
|
+
|
|
12062
|
+
Drop the recorded url so the next capture repopulates it from the cloud provider.
|
|
12063
|
+
|
|
12064
|
+
$ codiac noc cluster edit my-cluster --clear-server-url --silent
|
|
12065
|
+
|
|
12066
|
+
Renders the equivalent silent command without executing it.
|
|
12067
|
+
|
|
12068
|
+
$ codiac noc cluster edit my-cluster --server-url https://10.110.128.10:443 --to-script
|
|
12069
|
+
```
|
|
12070
|
+
|
|
12071
|
+
_See code: [src/commands/noc/cluster/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/edit.ts)_
|
|
11876
12072
|
|
|
11877
12073
|
## `codiac noc cluster forget`
|
|
11878
12074
|
|
|
@@ -11923,7 +12119,7 @@ EXAMPLES
|
|
|
11923
12119
|
$ codiac noc cluster forget --running
|
|
11924
12120
|
```
|
|
11925
12121
|
|
|
11926
|
-
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12122
|
+
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/forget.ts)_
|
|
11927
12123
|
|
|
11928
12124
|
## `codiac noc cluster grant`
|
|
11929
12125
|
|
|
@@ -11961,7 +12157,7 @@ EXAMPLES
|
|
|
11961
12157
|
$ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
|
|
11962
12158
|
```
|
|
11963
12159
|
|
|
11964
|
-
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12160
|
+
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/grant.ts)_
|
|
11965
12161
|
|
|
11966
12162
|
## `codiac noc cluster init`
|
|
11967
12163
|
|
|
@@ -12007,7 +12203,7 @@ EXAMPLES
|
|
|
12007
12203
|
$ codiac noc cluster init -n my-cluster --to-script
|
|
12008
12204
|
```
|
|
12009
12205
|
|
|
12010
|
-
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12206
|
+
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/init.ts)_
|
|
12011
12207
|
|
|
12012
12208
|
## `codiac noc cluster journal [CLUSTER]`
|
|
12013
12209
|
|
|
@@ -12056,7 +12252,7 @@ EXAMPLES
|
|
|
12056
12252
|
$ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
|
|
12057
12253
|
```
|
|
12058
12254
|
|
|
12059
|
-
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12255
|
+
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/journal.ts)_
|
|
12060
12256
|
|
|
12061
12257
|
## `codiac noc cluster list`
|
|
12062
12258
|
|
|
@@ -12117,7 +12313,7 @@ EXAMPLES
|
|
|
12117
12313
|
$ codiac noc cluster list -e myEnterprise --to-script
|
|
12118
12314
|
```
|
|
12119
12315
|
|
|
12120
|
-
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12316
|
+
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/list.ts)_
|
|
12121
12317
|
|
|
12122
12318
|
## `codiac noc cluster restore [NAME]`
|
|
12123
12319
|
|
|
@@ -12177,7 +12373,7 @@ EXAMPLES
|
|
|
12177
12373
|
$ codiac noc cluster restore prod-cluster-1 --to-script
|
|
12178
12374
|
```
|
|
12179
12375
|
|
|
12180
|
-
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12376
|
+
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/noc/cluster/restore.ts)_
|
|
12181
12377
|
|
|
12182
12378
|
## `codiac pkg add [DEFINITIONFILE]`
|
|
12183
12379
|
|
|
@@ -12211,7 +12407,7 @@ DESCRIPTION
|
|
|
12211
12407
|
Configures a package to be built and published by the project.
|
|
12212
12408
|
```
|
|
12213
12409
|
|
|
12214
|
-
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12410
|
+
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/pkg/add.ts)_
|
|
12215
12411
|
|
|
12216
12412
|
## `codiac pkg delete [PACKAGENAME]`
|
|
12217
12413
|
|
|
@@ -12249,7 +12445,7 @@ DESCRIPTION
|
|
|
12249
12445
|
Renders the list of packages that are configured as project exports.
|
|
12250
12446
|
```
|
|
12251
12447
|
|
|
12252
|
-
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12448
|
+
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/pkg/list.ts)_
|
|
12253
12449
|
|
|
12254
12450
|
## `codiac pkg patch PACKAGENAME`
|
|
12255
12451
|
|
|
@@ -12275,7 +12471,7 @@ DESCRIPTION
|
|
|
12275
12471
|
registryUrl and/or environment.
|
|
12276
12472
|
```
|
|
12277
12473
|
|
|
12278
|
-
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12474
|
+
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/pkg/patch.ts)_
|
|
12279
12475
|
|
|
12280
12476
|
## `codiac pkg remove [PACKAGENAME]`
|
|
12281
12477
|
|
|
@@ -12298,7 +12494,7 @@ ALIASES
|
|
|
12298
12494
|
$ codiac pkg delete
|
|
12299
12495
|
```
|
|
12300
12496
|
|
|
12301
|
-
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12497
|
+
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/pkg/remove.ts)_
|
|
12302
12498
|
|
|
12303
12499
|
## `codiac portal`
|
|
12304
12500
|
|
|
@@ -12331,7 +12527,7 @@ EXAMPLES
|
|
|
12331
12527
|
$ codiac portal --to-script
|
|
12332
12528
|
```
|
|
12333
12529
|
|
|
12334
|
-
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12530
|
+
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/portal.ts)_
|
|
12335
12531
|
|
|
12336
12532
|
## `codiac probe create [CMD]`
|
|
12337
12533
|
|
|
@@ -12340,10 +12536,10 @@ Declares the implementation of a health or readiness probe for an asset.
|
|
|
12340
12536
|
```
|
|
12341
12537
|
USAGE
|
|
12342
12538
|
$ codiac probe create [CMD] -u readiness|liveness|startup [-h] [-n <value>] [-a <value>] [-v <value>] [-d
|
|
12343
|
-
<value>] [-p <value>] [-t <value>] [--success-threshold <value>] [--failure-threshold <value>] [--
|
|
12344
|
-
| --exec | --grpc | --http | --socket] [-x <value>] [--grpcHost <value> ] [--grpcPort <value>
|
|
12345
|
-
http|https ] [--httpHost <value> ] [--httpPort <value> ] [--httpPath <value> ] [-r <value> ]
|
|
12346
|
-
[--socketPort <value> ] [--silent | --echo | --to-script]
|
|
12539
|
+
<value>] [-p <value>] [-t <value>] [--success-threshold <value>] [--failure-threshold <value>] [--disabled]
|
|
12540
|
+
[--predefined <value> | --exec | --grpc | --http | --socket] [-x <value>] [--grpcHost <value> ] [--grpcPort <value>
|
|
12541
|
+
] [--httpScheme http|https ] [--httpHost <value> ] [--httpPort <value> ] [--httpPath <value> ] [-r <value> ]
|
|
12542
|
+
[--socketHost <value> ] [--socketPort <value> ] [--silent | --echo | --to-script]
|
|
12347
12543
|
|
|
12348
12544
|
ARGUMENTS
|
|
12349
12545
|
CMD (requires --exec) command and its space-separated arguments to run in the target replica.
|
|
@@ -12363,6 +12559,8 @@ FLAGS
|
|
|
12363
12559
|
-v, --versions=<value> Asset version range for which this probe is to be used. (optional: defaults to >=latest)
|
|
12364
12560
|
-x, --action=<value> The JSON specification for the probe action itself. The structure follows the
|
|
12365
12561
|
actionType.
|
|
12562
|
+
--[no-]disabled Keeps the definition on record but stops it being applied to the asset at deploy time.
|
|
12563
|
+
Pass --disabled to park a probe without deleting it; omit to leave it active.
|
|
12366
12564
|
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
12367
12565
|
--exec Declares the probe shall be carried out as an executable CLI command. A return code of
|
|
12368
12566
|
zero indicates success. Any nonzero result indicates failure.
|
|
@@ -12452,7 +12650,7 @@ DESCRIPTION
|
|
|
12452
12650
|
Publishes the exports (packages and images) declared in the ProjectConfig.
|
|
12453
12651
|
```
|
|
12454
12652
|
|
|
12455
|
-
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12653
|
+
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/publish.ts)_
|
|
12456
12654
|
|
|
12457
12655
|
## `codiac pull [NAME]`
|
|
12458
12656
|
|
|
@@ -12476,7 +12674,7 @@ DESCRIPTION
|
|
|
12476
12674
|
Pulls all commits from upstream to local.
|
|
12477
12675
|
```
|
|
12478
12676
|
|
|
12479
|
-
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12677
|
+
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/pull.ts)_
|
|
12480
12678
|
|
|
12481
12679
|
## `codiac pullsecret`
|
|
12482
12680
|
|
|
@@ -12559,7 +12757,7 @@ DESCRIPTION
|
|
|
12559
12757
|
Pushes all local commits upstream.
|
|
12560
12758
|
```
|
|
12561
12759
|
|
|
12562
|
-
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12760
|
+
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/push.ts)_
|
|
12563
12761
|
|
|
12564
12762
|
## `codiac pvc create`
|
|
12565
12763
|
|
|
@@ -12643,7 +12841,7 @@ EXAMPLES
|
|
|
12643
12841
|
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
|
|
12644
12842
|
```
|
|
12645
12843
|
|
|
12646
|
-
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12844
|
+
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/pvc/create.ts)_
|
|
12647
12845
|
|
|
12648
12846
|
## `codiac pvc delete`
|
|
12649
12847
|
|
|
@@ -12690,7 +12888,7 @@ EXAMPLES
|
|
|
12690
12888
|
$ codiac pvc delete --id <fileStoreDefId> --silent
|
|
12691
12889
|
```
|
|
12692
12890
|
|
|
12693
|
-
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12891
|
+
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/pvc/delete.ts)_
|
|
12694
12892
|
|
|
12695
12893
|
## `codiac pvc get`
|
|
12696
12894
|
|
|
@@ -12731,7 +12929,7 @@ EXAMPLES
|
|
|
12731
12929
|
$ codiac pvc get --name app-documents-share --silent -o json
|
|
12732
12930
|
```
|
|
12733
12931
|
|
|
12734
|
-
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12932
|
+
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/pvc/get.ts)_
|
|
12735
12933
|
|
|
12736
12934
|
## `codiac pvc list`
|
|
12737
12935
|
|
|
@@ -12774,7 +12972,7 @@ EXAMPLES
|
|
|
12774
12972
|
$ codiac pvc list -o yaml
|
|
12775
12973
|
```
|
|
12776
12974
|
|
|
12777
|
-
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12975
|
+
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/pvc/list.ts)_
|
|
12778
12976
|
|
|
12779
12977
|
## `codiac relay-version`
|
|
12780
12978
|
|
|
@@ -12791,7 +12989,7 @@ EXAMPLES
|
|
|
12791
12989
|
$ codiac relay-version
|
|
12792
12990
|
```
|
|
12793
12991
|
|
|
12794
|
-
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12992
|
+
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/relay-version.ts)_
|
|
12795
12993
|
|
|
12796
12994
|
## `codiac run`
|
|
12797
12995
|
|
|
@@ -12833,7 +13031,7 @@ DESCRIPTION
|
|
|
12833
13031
|
Runs the latest build of the api container locally.
|
|
12834
13032
|
```
|
|
12835
13033
|
|
|
12836
|
-
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13034
|
+
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/run.ts)_
|
|
12837
13035
|
|
|
12838
13036
|
## `codiac secretStore`
|
|
12839
13037
|
|
|
@@ -12951,7 +13149,7 @@ EXAMPLES
|
|
|
12951
13149
|
$ codiac secretStore capture --echo
|
|
12952
13150
|
```
|
|
12953
13151
|
|
|
12954
|
-
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13152
|
+
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/secretStore/capture.ts)_
|
|
12955
13153
|
|
|
12956
13154
|
## `codiac secretStore forget`
|
|
12957
13155
|
|
|
@@ -12972,7 +13170,7 @@ DESCRIPTION
|
|
|
12972
13170
|
Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
|
|
12973
13171
|
```
|
|
12974
13172
|
|
|
12975
|
-
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13173
|
+
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/secretStore/forget.ts)_
|
|
12976
13174
|
|
|
12977
13175
|
## `codiac secretStore list`
|
|
12978
13176
|
|
|
@@ -13017,7 +13215,7 @@ EXAMPLES
|
|
|
13017
13215
|
$ codiac secretStore list
|
|
13018
13216
|
```
|
|
13019
13217
|
|
|
13020
|
-
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13218
|
+
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/secretStore/list.ts)_
|
|
13021
13219
|
|
|
13022
13220
|
## `codiac shell init`
|
|
13023
13221
|
|
|
@@ -13055,7 +13253,7 @@ EXAMPLES
|
|
|
13055
13253
|
Invoke-Expression (codiac shell init --shell powershell)
|
|
13056
13254
|
```
|
|
13057
13255
|
|
|
13058
|
-
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13256
|
+
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/shell/init.ts)_
|
|
13059
13257
|
|
|
13060
13258
|
## `codiac skill install`
|
|
13061
13259
|
|
|
@@ -13090,7 +13288,7 @@ EXAMPLES
|
|
|
13090
13288
|
$ codiac skill install --force
|
|
13091
13289
|
```
|
|
13092
13290
|
|
|
13093
|
-
_See code: [src/commands/skill/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13291
|
+
_See code: [src/commands/skill/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/skill/install.ts)_
|
|
13094
13292
|
|
|
13095
13293
|
## `codiac skill path`
|
|
13096
13294
|
|
|
@@ -13113,7 +13311,7 @@ EXAMPLES
|
|
|
13113
13311
|
$ codiac skill path
|
|
13114
13312
|
```
|
|
13115
13313
|
|
|
13116
|
-
_See code: [src/commands/skill/path.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13314
|
+
_See code: [src/commands/skill/path.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/skill/path.ts)_
|
|
13117
13315
|
|
|
13118
13316
|
## `codiac skill show`
|
|
13119
13317
|
|
|
@@ -13152,7 +13350,7 @@ EXAMPLES
|
|
|
13152
13350
|
$ codiac skill show --list
|
|
13153
13351
|
```
|
|
13154
13352
|
|
|
13155
|
-
_See code: [src/commands/skill/show.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13353
|
+
_See code: [src/commands/skill/show.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/skill/show.ts)_
|
|
13156
13354
|
|
|
13157
13355
|
## `codiac snapshot deploy`
|
|
13158
13356
|
|
|
@@ -13180,7 +13378,7 @@ DESCRIPTION
|
|
|
13180
13378
|
Deploys all assets in a snapshot to a target cabinet.
|
|
13181
13379
|
```
|
|
13182
13380
|
|
|
13183
|
-
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13381
|
+
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/snapshot/deploy.ts)_
|
|
13184
13382
|
|
|
13185
13383
|
## `codiac snapshot list`
|
|
13186
13384
|
|
|
@@ -13229,7 +13427,7 @@ EXAMPLES
|
|
|
13229
13427
|
$ codiac snapshot list -e myEnterprise --silent
|
|
13230
13428
|
```
|
|
13231
13429
|
|
|
13232
|
-
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13430
|
+
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/snapshot/list.ts)_
|
|
13233
13431
|
|
|
13234
13432
|
## `codiac snapshot tag`
|
|
13235
13433
|
|
|
@@ -13272,7 +13470,7 @@ EXAMPLES
|
|
|
13272
13470
|
$ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
13273
13471
|
```
|
|
13274
13472
|
|
|
13275
|
-
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13473
|
+
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/snapshot/tag.ts)_
|
|
13276
13474
|
|
|
13277
13475
|
## `codiac snapshot untag`
|
|
13278
13476
|
|
|
@@ -13315,7 +13513,7 @@ EXAMPLES
|
|
|
13315
13513
|
$ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
13316
13514
|
```
|
|
13317
13515
|
|
|
13318
|
-
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13516
|
+
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/snapshot/untag.ts)_
|
|
13319
13517
|
|
|
13320
13518
|
## `codiac stage [FILES]`
|
|
13321
13519
|
|
|
@@ -13337,7 +13535,7 @@ DESCRIPTION
|
|
|
13337
13535
|
Flags files to be included in the next commit.
|
|
13338
13536
|
```
|
|
13339
13537
|
|
|
13340
|
-
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13538
|
+
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/stage.ts)_
|
|
13341
13539
|
|
|
13342
13540
|
## `codiac stash [FILE]`
|
|
13343
13541
|
|
|
@@ -13359,7 +13557,7 @@ DESCRIPTION
|
|
|
13359
13557
|
describe the command here
|
|
13360
13558
|
```
|
|
13361
13559
|
|
|
13362
|
-
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13560
|
+
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/stash.ts)_
|
|
13363
13561
|
|
|
13364
13562
|
## `codiac status`
|
|
13365
13563
|
|
|
@@ -13378,7 +13576,7 @@ DESCRIPTION
|
|
|
13378
13576
|
Shows the current uncommitted changes in the current branch.
|
|
13379
13577
|
```
|
|
13380
13578
|
|
|
13381
|
-
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13579
|
+
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/status.ts)_
|
|
13382
13580
|
|
|
13383
13581
|
## `codiac stop`
|
|
13384
13582
|
|
|
@@ -13396,7 +13594,7 @@ DESCRIPTION
|
|
|
13396
13594
|
Stops the running container for this project
|
|
13397
13595
|
```
|
|
13398
13596
|
|
|
13399
|
-
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13597
|
+
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/stop.ts)_
|
|
13400
13598
|
|
|
13401
13599
|
## `codiac switch [NAME]`
|
|
13402
13600
|
|
|
@@ -13416,7 +13614,7 @@ DESCRIPTION
|
|
|
13416
13614
|
Changes branch on the main project and any sourced dependencies.
|
|
13417
13615
|
```
|
|
13418
13616
|
|
|
13419
|
-
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13617
|
+
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/switch.ts)_
|
|
13420
13618
|
|
|
13421
13619
|
## `codiac sync [NAME]`
|
|
13422
13620
|
|
|
@@ -13441,7 +13639,7 @@ DESCRIPTION
|
|
|
13441
13639
|
Merges the given branch into the current branch.
|
|
13442
13640
|
```
|
|
13443
13641
|
|
|
13444
|
-
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13642
|
+
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/sync.ts)_
|
|
13445
13643
|
|
|
13446
13644
|
## `codiac tenant create [NAME]`
|
|
13447
13645
|
|
|
@@ -13484,7 +13682,7 @@ EXAMPLES
|
|
|
13484
13682
|
$ codiac tenant create -n 'Acme Corp' -c acme --to-script
|
|
13485
13683
|
```
|
|
13486
13684
|
|
|
13487
|
-
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13685
|
+
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/tenant/create.ts)_
|
|
13488
13686
|
|
|
13489
13687
|
## `codiac tenant switch [CODE]`
|
|
13490
13688
|
|
|
@@ -13524,7 +13722,7 @@ EXAMPLES
|
|
|
13524
13722
|
$ codiac tenant switch my-tenant-code --to-script
|
|
13525
13723
|
```
|
|
13526
13724
|
|
|
13527
|
-
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13725
|
+
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/tenant/switch.ts)_
|
|
13528
13726
|
|
|
13529
13727
|
## `codiac token [TOKENNAME]`
|
|
13530
13728
|
|
|
@@ -13646,7 +13844,7 @@ DESCRIPTION
|
|
|
13646
13844
|
Flags files to be included in the next commit.
|
|
13647
13845
|
```
|
|
13648
13846
|
|
|
13649
|
-
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13847
|
+
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/unstage.ts)_
|
|
13650
13848
|
|
|
13651
13849
|
## `codiac update [CHANNEL]`
|
|
13652
13850
|
|
|
@@ -13833,7 +14031,7 @@ EXAMPLES
|
|
|
13833
14031
|
$ codiac whereami --to-script
|
|
13834
14032
|
```
|
|
13835
14033
|
|
|
13836
|
-
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
14034
|
+
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/whereami.ts)_
|
|
13837
14035
|
|
|
13838
14036
|
## `codiac whoami`
|
|
13839
14037
|
|
|
@@ -13875,5 +14073,5 @@ EXAMPLES
|
|
|
13875
14073
|
$ codiac whoami --to-script
|
|
13876
14074
|
```
|
|
13877
14075
|
|
|
13878
|
-
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
14076
|
+
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.264/src/commands/whoami.ts)_
|
|
13879
14077
|
<!-- commandsstop -->
|