@codiac.io/codiac-cli 1.3.261 → 1.3.263
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 +279 -169
- package/dist/commands/environment/create.js +8 -0
- package/dist/commands/environment/create.js.map +1 -1
- 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/oclif.manifest.json +104 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ $ npm install -g @codiac.io/codiac-cli
|
|
|
21
21
|
$ codiac COMMAND
|
|
22
22
|
running command...
|
|
23
23
|
$ codiac (--version|-v)
|
|
24
|
-
@codiac.io/codiac-cli/1.3.
|
|
24
|
+
@codiac.io/codiac-cli/1.3.263 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)
|
|
@@ -430,6 +431,7 @@ USAGE
|
|
|
430
431
|
* [`codiac noc cluster define [NAME]`](#codiac-noc-cluster-define-name)
|
|
431
432
|
* [`codiac noc cluster deinit`](#codiac-noc-cluster-deinit)
|
|
432
433
|
* [`codiac noc cluster destroy [NAME]`](#codiac-noc-cluster-destroy-name)
|
|
434
|
+
* [`codiac noc cluster edit [NAME]`](#codiac-noc-cluster-edit-name)
|
|
433
435
|
* [`codiac noc cluster forget`](#codiac-noc-cluster-forget)
|
|
434
436
|
* [`codiac noc cluster grant`](#codiac-noc-cluster-grant)
|
|
435
437
|
* [`codiac noc cluster init`](#codiac-noc-cluster-init)
|
|
@@ -539,7 +541,7 @@ EXAMPLES
|
|
|
539
541
|
$ codiac ai agent install -e ben -t hermes -c dev --to-script
|
|
540
542
|
```
|
|
541
543
|
|
|
542
|
-
_See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
544
|
+
_See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/ai/agent/install.ts)_
|
|
543
545
|
|
|
544
546
|
## `codiac ai model attach`
|
|
545
547
|
|
|
@@ -574,7 +576,7 @@ EXAMPLES
|
|
|
574
576
|
$ codiac ai model attach -e ben -m qwen3-dev --agent hermes-agent -c dev --silent
|
|
575
577
|
```
|
|
576
578
|
|
|
577
|
-
_See code: [src/commands/ai/model/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
579
|
+
_See code: [src/commands/ai/model/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/ai/model/attach.ts)_
|
|
578
580
|
|
|
579
581
|
## `codiac ai model install`
|
|
580
582
|
|
|
@@ -646,7 +648,7 @@ EXAMPLES
|
|
|
646
648
|
$ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev --to-script
|
|
647
649
|
```
|
|
648
650
|
|
|
649
|
-
_See code: [src/commands/ai/model/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
651
|
+
_See code: [src/commands/ai/model/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/ai/model/install.ts)_
|
|
650
652
|
|
|
651
653
|
## `codiac ai model list`
|
|
652
654
|
|
|
@@ -702,7 +704,7 @@ EXAMPLES
|
|
|
702
704
|
$ codiac ai model list -e ben --silent
|
|
703
705
|
```
|
|
704
706
|
|
|
705
|
-
_See code: [src/commands/ai/model/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
707
|
+
_See code: [src/commands/ai/model/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/ai/model/list.ts)_
|
|
706
708
|
|
|
707
709
|
## `codiac ai model ls`
|
|
708
710
|
|
|
@@ -826,7 +828,7 @@ EXAMPLES
|
|
|
826
828
|
$ codiac ai model uninstall -e ben -m qwen3-dev -c dev --silent
|
|
827
829
|
```
|
|
828
830
|
|
|
829
|
-
_See code: [src/commands/ai/model/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
831
|
+
_See code: [src/commands/ai/model/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/ai/model/uninstall.ts)_
|
|
830
832
|
|
|
831
833
|
## `codiac ai model view`
|
|
832
834
|
|
|
@@ -871,7 +873,7 @@ EXAMPLES
|
|
|
871
873
|
$ codiac ai model view -e ben -m qwen3-dev --silent
|
|
872
874
|
```
|
|
873
875
|
|
|
874
|
-
_See code: [src/commands/ai/model/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
876
|
+
_See code: [src/commands/ai/model/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/ai/model/view.ts)_
|
|
875
877
|
|
|
876
878
|
## `codiac asset create`
|
|
877
879
|
|
|
@@ -992,7 +994,7 @@ EXAMPLES
|
|
|
992
994
|
$ codiac asset create -e myEnterprise -n redis --helm --chart redis --chart-repo bitnami --silent
|
|
993
995
|
```
|
|
994
996
|
|
|
995
|
-
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
997
|
+
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/create.ts)_
|
|
996
998
|
|
|
997
999
|
## `codiac asset edit`
|
|
998
1000
|
|
|
@@ -1058,7 +1060,7 @@ EXAMPLES
|
|
|
1058
1060
|
$ codiac asset edit -e myEnterprise -n my-api --registry devCodiacContainers --silent
|
|
1059
1061
|
```
|
|
1060
1062
|
|
|
1061
|
-
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1063
|
+
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/edit.ts)_
|
|
1062
1064
|
|
|
1063
1065
|
## `codiac asset entrypoint`
|
|
1064
1066
|
|
|
@@ -1179,7 +1181,7 @@ EXAMPLES
|
|
|
1179
1181
|
$ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
|
|
1180
1182
|
```
|
|
1181
1183
|
|
|
1182
|
-
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1184
|
+
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/entrypoint/delete.ts)_
|
|
1183
1185
|
|
|
1184
1186
|
## `codiac asset entrypoint set`
|
|
1185
1187
|
|
|
@@ -1248,7 +1250,7 @@ EXAMPLES
|
|
|
1248
1250
|
--input=/backup/workflows'
|
|
1249
1251
|
```
|
|
1250
1252
|
|
|
1251
|
-
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1253
|
+
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/entrypoint/set.ts)_
|
|
1252
1254
|
|
|
1253
1255
|
## `codiac asset get [CMD]`
|
|
1254
1256
|
|
|
@@ -1356,7 +1358,7 @@ EXAMPLES
|
|
|
1356
1358
|
$ codiac asset list -e myEnterprise --to-script
|
|
1357
1359
|
```
|
|
1358
1360
|
|
|
1359
|
-
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1361
|
+
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/list.ts)_
|
|
1360
1362
|
|
|
1361
1363
|
## `codiac asset mon [CMD]`
|
|
1362
1364
|
|
|
@@ -1617,7 +1619,7 @@ EXAMPLES
|
|
|
1617
1619
|
$ codiac asset obliterate -e main -n my-api
|
|
1618
1620
|
```
|
|
1619
1621
|
|
|
1620
|
-
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1622
|
+
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/obliterate.ts)_
|
|
1621
1623
|
|
|
1622
1624
|
## `codiac asset probe create [CMD]`
|
|
1623
1625
|
|
|
@@ -1707,7 +1709,7 @@ EXAMPLES
|
|
|
1707
1709
|
$ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
|
|
1708
1710
|
```
|
|
1709
1711
|
|
|
1710
|
-
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1712
|
+
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/probe/create.ts)_
|
|
1711
1713
|
|
|
1712
1714
|
## `codiac asset probe delete`
|
|
1713
1715
|
|
|
@@ -1762,7 +1764,7 @@ EXAMPLES
|
|
|
1762
1764
|
$ codiac asset probe delete
|
|
1763
1765
|
```
|
|
1764
1766
|
|
|
1765
|
-
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1767
|
+
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/probe/delete.ts)_
|
|
1766
1768
|
|
|
1767
1769
|
## `codiac asset probe list`
|
|
1768
1770
|
|
|
@@ -1814,7 +1816,7 @@ EXAMPLES
|
|
|
1814
1816
|
$ codiac asset probe list
|
|
1815
1817
|
```
|
|
1816
1818
|
|
|
1817
|
-
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1819
|
+
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/probe/list.ts)_
|
|
1818
1820
|
|
|
1819
1821
|
## `codiac asset recycle`
|
|
1820
1822
|
|
|
@@ -1854,7 +1856,7 @@ DESCRIPTION
|
|
|
1854
1856
|
Deploys a given asset to a given cabinet. Defaults to current version.
|
|
1855
1857
|
```
|
|
1856
1858
|
|
|
1857
|
-
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1859
|
+
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/recycle.ts)_
|
|
1858
1860
|
|
|
1859
1861
|
## `codiac asset undeploy`
|
|
1860
1862
|
|
|
@@ -1898,7 +1900,7 @@ EXAMPLES
|
|
|
1898
1900
|
$ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
|
|
1899
1901
|
```
|
|
1900
1902
|
|
|
1901
|
-
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1903
|
+
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/undeploy.ts)_
|
|
1902
1904
|
|
|
1903
1905
|
## `codiac asset view [CMD]`
|
|
1904
1906
|
|
|
@@ -1954,7 +1956,7 @@ ALIASES
|
|
|
1954
1956
|
$ codiac asset get
|
|
1955
1957
|
```
|
|
1956
1958
|
|
|
1957
|
-
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1959
|
+
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/view.ts)_
|
|
1958
1960
|
|
|
1959
1961
|
## `codiac asset vol add [MOUNTPATH]`
|
|
1960
1962
|
|
|
@@ -2225,7 +2227,7 @@ ALIASES
|
|
|
2225
2227
|
$ codiac asset volume add
|
|
2226
2228
|
```
|
|
2227
2229
|
|
|
2228
|
-
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2230
|
+
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/volume/create.ts)_
|
|
2229
2231
|
|
|
2230
2232
|
## `codiac asset volume del`
|
|
2231
2233
|
|
|
@@ -2313,7 +2315,7 @@ EXAMPLES
|
|
|
2313
2315
|
$ codiac asset volume delete -e myEnterprise -n myMount --to-script
|
|
2314
2316
|
```
|
|
2315
2317
|
|
|
2316
|
-
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2318
|
+
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/volume/delete.ts)_
|
|
2317
2319
|
|
|
2318
2320
|
## `codiac asset volume list`
|
|
2319
2321
|
|
|
@@ -2362,7 +2364,7 @@ EXAMPLES
|
|
|
2362
2364
|
$ codiac asset volume list -e myEnterprise --silent
|
|
2363
2365
|
```
|
|
2364
2366
|
|
|
2365
|
-
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2367
|
+
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/volume/list.ts)_
|
|
2366
2368
|
|
|
2367
2369
|
## `codiac asset volumes del`
|
|
2368
2370
|
|
|
@@ -2529,7 +2531,7 @@ EXAMPLES
|
|
|
2529
2531
|
$ codiac asset where -e main -a my-api --silent
|
|
2530
2532
|
```
|
|
2531
2533
|
|
|
2532
|
-
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2534
|
+
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/asset/where.ts)_
|
|
2533
2535
|
|
|
2534
2536
|
## `codiac auth cab allow`
|
|
2535
2537
|
|
|
@@ -2691,7 +2693,7 @@ EXAMPLES
|
|
|
2691
2693
|
$ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
|
|
2692
2694
|
```
|
|
2693
2695
|
|
|
2694
|
-
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2696
|
+
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/cabinet/allow.ts)_
|
|
2695
2697
|
|
|
2696
2698
|
## `codiac auth cabinet allowed`
|
|
2697
2699
|
|
|
@@ -2739,7 +2741,7 @@ EXAMPLES
|
|
|
2739
2741
|
$ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
|
|
2740
2742
|
```
|
|
2741
2743
|
|
|
2742
|
-
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2744
|
+
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/cabinet/allowed.ts)_
|
|
2743
2745
|
|
|
2744
2746
|
## `codiac auth ent allow`
|
|
2745
2747
|
|
|
@@ -2930,7 +2932,7 @@ EXAMPLES
|
|
|
2930
2932
|
$ codiac auth enterprise allow -r deployer -p none
|
|
2931
2933
|
```
|
|
2932
2934
|
|
|
2933
|
-
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2935
|
+
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/enterprise/allow.ts)_
|
|
2934
2936
|
|
|
2935
2937
|
## `codiac auth enterprise allow onEnvironments`
|
|
2936
2938
|
|
|
@@ -2984,7 +2986,7 @@ EXAMPLES
|
|
|
2984
2986
|
$ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
|
|
2985
2987
|
```
|
|
2986
2988
|
|
|
2987
|
-
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2989
|
+
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/enterprise/allow/onEnvironments.ts)_
|
|
2988
2990
|
|
|
2989
2991
|
## `codiac auth enterprise allowed`
|
|
2990
2992
|
|
|
@@ -3025,7 +3027,7 @@ EXAMPLES
|
|
|
3025
3027
|
$ codiac auth enterprise allowed --enterprise modeling
|
|
3026
3028
|
```
|
|
3027
3029
|
|
|
3028
|
-
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3030
|
+
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/enterprise/allowed.ts)_
|
|
3029
3031
|
|
|
3030
3032
|
## `codiac auth env allowed`
|
|
3031
3033
|
|
|
@@ -3232,7 +3234,7 @@ EXAMPLES
|
|
|
3232
3234
|
$ codiac auth environment allow -e qa -r productmanager -p read
|
|
3233
3235
|
```
|
|
3234
3236
|
|
|
3235
|
-
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3237
|
+
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/environment/allow.ts)_
|
|
3236
3238
|
|
|
3237
3239
|
## `codiac auth environment allow onCabinets`
|
|
3238
3240
|
|
|
@@ -3289,7 +3291,7 @@ EXAMPLES
|
|
|
3289
3291
|
$ codiac auth environment allow onCabinets -e qa -r productmanager -p read
|
|
3290
3292
|
```
|
|
3291
3293
|
|
|
3292
|
-
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3294
|
+
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/environment/allow/onCabinets.ts)_
|
|
3293
3295
|
|
|
3294
3296
|
## `codiac auth environment allowed`
|
|
3295
3297
|
|
|
@@ -3334,7 +3336,7 @@ EXAMPLES
|
|
|
3334
3336
|
$ codiac auth environment allowed --enterprise modeling -e dev
|
|
3335
3337
|
```
|
|
3336
3338
|
|
|
3337
|
-
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3339
|
+
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/environment/allowed.ts)_
|
|
3338
3340
|
|
|
3339
3341
|
## `codiac auth register`
|
|
3340
3342
|
|
|
@@ -3380,7 +3382,7 @@ EXAMPLES
|
|
|
3380
3382
|
$ codiac auth register
|
|
3381
3383
|
```
|
|
3382
3384
|
|
|
3383
|
-
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3385
|
+
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/register.ts)_
|
|
3384
3386
|
|
|
3385
3387
|
## `codiac auth role allowed [NAME]`
|
|
3386
3388
|
|
|
@@ -3427,7 +3429,7 @@ EXAMPLES
|
|
|
3427
3429
|
$ codiac auth role allowed -n deployer -e main
|
|
3428
3430
|
```
|
|
3429
3431
|
|
|
3430
|
-
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3432
|
+
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/role/allowed.ts)_
|
|
3431
3433
|
|
|
3432
3434
|
## `codiac auth role assign`
|
|
3433
3435
|
|
|
@@ -3459,7 +3461,7 @@ EXAMPLES
|
|
|
3459
3461
|
$ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
|
|
3460
3462
|
```
|
|
3461
3463
|
|
|
3462
|
-
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3464
|
+
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/role/assign.ts)_
|
|
3463
3465
|
|
|
3464
3466
|
## `codiac auth role create [NAME]`
|
|
3465
3467
|
|
|
@@ -3492,7 +3494,7 @@ EXAMPLES
|
|
|
3492
3494
|
$ codiac auth role create -n deployer
|
|
3493
3495
|
```
|
|
3494
3496
|
|
|
3495
|
-
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3497
|
+
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/role/create.ts)_
|
|
3496
3498
|
|
|
3497
3499
|
## `codiac auth role delete [NAME]`
|
|
3498
3500
|
|
|
@@ -3528,7 +3530,7 @@ EXAMPLES
|
|
|
3528
3530
|
$ codiac auth role delete --id abc123def456
|
|
3529
3531
|
```
|
|
3530
3532
|
|
|
3531
|
-
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3533
|
+
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/role/delete.ts)_
|
|
3532
3534
|
|
|
3533
3535
|
## `codiac auth role list`
|
|
3534
3536
|
|
|
@@ -3564,7 +3566,7 @@ EXAMPLES
|
|
|
3564
3566
|
$ codiac auth role list -o yaml > roles.yaml
|
|
3565
3567
|
```
|
|
3566
3568
|
|
|
3567
|
-
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3569
|
+
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/role/list.ts)_
|
|
3568
3570
|
|
|
3569
3571
|
## `codiac auth role unassign`
|
|
3570
3572
|
|
|
@@ -3596,7 +3598,7 @@ EXAMPLES
|
|
|
3596
3598
|
$ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
|
|
3597
3599
|
```
|
|
3598
3600
|
|
|
3599
|
-
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3601
|
+
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/role/unassign.ts)_
|
|
3600
3602
|
|
|
3601
3603
|
## `codiac auth user invite`
|
|
3602
3604
|
|
|
@@ -3636,7 +3638,7 @@ EXAMPLES
|
|
|
3636
3638
|
$ codiac auth user invite
|
|
3637
3639
|
```
|
|
3638
3640
|
|
|
3639
|
-
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3641
|
+
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/user/invite.ts)_
|
|
3640
3642
|
|
|
3641
3643
|
## `codiac auth user list`
|
|
3642
3644
|
|
|
@@ -3672,7 +3674,7 @@ EXAMPLES
|
|
|
3672
3674
|
$ codiac auth user list -o yaml > users.yaml
|
|
3673
3675
|
```
|
|
3674
3676
|
|
|
3675
|
-
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3677
|
+
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/auth/user/list.ts)_
|
|
3676
3678
|
|
|
3677
3679
|
## `codiac autocomplete [SHELL]`
|
|
3678
3680
|
|
|
@@ -3722,7 +3724,7 @@ DESCRIPTION
|
|
|
3722
3724
|
Creates a new branch for the parent project and any sourced dependencies.
|
|
3723
3725
|
```
|
|
3724
3726
|
|
|
3725
|
-
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3727
|
+
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/branch.ts)_
|
|
3726
3728
|
|
|
3727
3729
|
## `codiac branch current`
|
|
3728
3730
|
|
|
@@ -3742,7 +3744,7 @@ ALIASES
|
|
|
3742
3744
|
$ codiac branches current
|
|
3743
3745
|
```
|
|
3744
3746
|
|
|
3745
|
-
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3747
|
+
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/branch/current.ts)_
|
|
3746
3748
|
|
|
3747
3749
|
## `codiac branch list`
|
|
3748
3750
|
|
|
@@ -3764,7 +3766,7 @@ ALIASES
|
|
|
3764
3766
|
$ codiac branches list
|
|
3765
3767
|
```
|
|
3766
3768
|
|
|
3767
|
-
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3769
|
+
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/branch/list.ts)_
|
|
3768
3770
|
|
|
3769
3771
|
## `codiac branches current`
|
|
3770
3772
|
|
|
@@ -3854,7 +3856,7 @@ DESCRIPTION
|
|
|
3854
3856
|
Builds the project and the docker container
|
|
3855
3857
|
```
|
|
3856
3858
|
|
|
3857
|
-
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3859
|
+
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/build.ts)_
|
|
3858
3860
|
|
|
3859
3861
|
## `codiac cab attach`
|
|
3860
3862
|
|
|
@@ -4603,7 +4605,7 @@ EXAMPLES
|
|
|
4603
4605
|
prod-cluster-1 --to-script
|
|
4604
4606
|
```
|
|
4605
4607
|
|
|
4606
|
-
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4608
|
+
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/cluster/attach.ts)_
|
|
4607
4609
|
|
|
4608
4610
|
## `codiac cabinet contents`
|
|
4609
4611
|
|
|
@@ -4647,7 +4649,7 @@ EXAMPLES
|
|
|
4647
4649
|
$ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
|
|
4648
4650
|
```
|
|
4649
4651
|
|
|
4650
|
-
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4652
|
+
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/contents.ts)_
|
|
4651
4653
|
|
|
4652
4654
|
## `codiac cabinet create [CABINET]`
|
|
4653
4655
|
|
|
@@ -4714,7 +4716,7 @@ EXAMPLES
|
|
|
4714
4716
|
cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
|
|
4715
4717
|
```
|
|
4716
4718
|
|
|
4717
|
-
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4719
|
+
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/create.ts)_
|
|
4718
4720
|
|
|
4719
4721
|
## `codiac cabinet define [CABINET]`
|
|
4720
4722
|
|
|
@@ -4776,7 +4778,7 @@ EXAMPLES
|
|
|
4776
4778
|
$ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
|
|
4777
4779
|
```
|
|
4778
4780
|
|
|
4779
|
-
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4781
|
+
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/define.ts)_
|
|
4780
4782
|
|
|
4781
4783
|
## `codiac cabinet destroy [CABINET]`
|
|
4782
4784
|
|
|
@@ -4834,7 +4836,7 @@ EXAMPLES
|
|
|
4834
4836
|
--environment dev --silent
|
|
4835
4837
|
```
|
|
4836
4838
|
|
|
4837
|
-
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4839
|
+
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/destroy.ts)_
|
|
4838
4840
|
|
|
4839
4841
|
## `codiac cabinet detach [CABINET]`
|
|
4840
4842
|
|
|
@@ -4891,7 +4893,7 @@ EXAMPLES
|
|
|
4891
4893
|
main --environment dev
|
|
4892
4894
|
```
|
|
4893
4895
|
|
|
4894
|
-
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4896
|
+
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/detach.ts)_
|
|
4895
4897
|
|
|
4896
4898
|
## `codiac cabinet forget [CABINET]`
|
|
4897
4899
|
|
|
@@ -4946,7 +4948,7 @@ EXAMPLES
|
|
|
4946
4948
|
$ codiac cabinet forget --to-script
|
|
4947
4949
|
```
|
|
4948
4950
|
|
|
4949
|
-
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4951
|
+
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/forget.ts)_
|
|
4950
4952
|
|
|
4951
4953
|
## `codiac cabinet list`
|
|
4952
4954
|
|
|
@@ -4997,7 +4999,7 @@ EXAMPLES
|
|
|
4997
4999
|
$ codiac cabinet list -e myEnterprise --silent
|
|
4998
5000
|
```
|
|
4999
5001
|
|
|
5000
|
-
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5002
|
+
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/list.ts)_
|
|
5001
5003
|
|
|
5002
5004
|
## `codiac cabinet obliterate [CABINET]`
|
|
5003
5005
|
|
|
@@ -5039,7 +5041,7 @@ ALIASES
|
|
|
5039
5041
|
$ codiac infrx cab obliterate
|
|
5040
5042
|
```
|
|
5041
5043
|
|
|
5042
|
-
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5044
|
+
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/obliterate.ts)_
|
|
5043
5045
|
|
|
5044
5046
|
## `codiac cabinet restore`
|
|
5045
5047
|
|
|
@@ -5106,7 +5108,7 @@ EXAMPLES
|
|
|
5106
5108
|
$ codiac cabinet restore --cluster prod-cluster-1 --to-script
|
|
5107
5109
|
```
|
|
5108
5110
|
|
|
5109
|
-
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5111
|
+
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cabinet/restore.ts)_
|
|
5110
5112
|
|
|
5111
5113
|
## `codiac cfg add`
|
|
5112
5114
|
|
|
@@ -5428,7 +5430,7 @@ DESCRIPTION
|
|
|
5428
5430
|
Applies settings to the Codiac CLI itself (scoped to the local machine).
|
|
5429
5431
|
```
|
|
5430
5432
|
|
|
5431
|
-
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5433
|
+
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cli.ts)_
|
|
5432
5434
|
|
|
5433
5435
|
## `codiac cluster agent configure [CLUSTER]`
|
|
5434
5436
|
|
|
@@ -5496,7 +5498,7 @@ EXAMPLES
|
|
|
5496
5498
|
$ codiac cluster agent configure my-cluster --to-script
|
|
5497
5499
|
```
|
|
5498
5500
|
|
|
5499
|
-
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5501
|
+
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/agent/configure.ts)_
|
|
5500
5502
|
|
|
5501
5503
|
## `codiac cluster agent install [CLUSTER]`
|
|
5502
5504
|
|
|
@@ -5552,7 +5554,7 @@ EXAMPLES
|
|
|
5552
5554
|
$ codiac cluster agent install my-cluster --to-script
|
|
5553
5555
|
```
|
|
5554
5556
|
|
|
5555
|
-
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5557
|
+
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/agent/install.ts)_
|
|
5556
5558
|
|
|
5557
5559
|
## `codiac cluster agent uninstall [CLUSTER]`
|
|
5558
5560
|
|
|
@@ -5600,7 +5602,7 @@ EXAMPLES
|
|
|
5600
5602
|
$ codiac cluster agent uninstall my-cluster --to-script
|
|
5601
5603
|
```
|
|
5602
5604
|
|
|
5603
|
-
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5605
|
+
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/agent/uninstall.ts)_
|
|
5604
5606
|
|
|
5605
5607
|
## `codiac cluster bootstrap [NAME]`
|
|
5606
5608
|
|
|
@@ -5663,7 +5665,7 @@ EXAMPLES
|
|
|
5663
5665
|
$ codiac cluster bootstrap my-cluster --to-script
|
|
5664
5666
|
```
|
|
5665
5667
|
|
|
5666
|
-
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5668
|
+
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/bootstrap.ts)_
|
|
5667
5669
|
|
|
5668
5670
|
## `codiac cluster capture`
|
|
5669
5671
|
|
|
@@ -5748,7 +5750,7 @@ EXAMPLES
|
|
|
5748
5750
|
$ codiac cluster connect my-fav-cluster
|
|
5749
5751
|
```
|
|
5750
5752
|
|
|
5751
|
-
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5753
|
+
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/connect.ts)_
|
|
5752
5754
|
|
|
5753
5755
|
## `codiac cluster contents`
|
|
5754
5756
|
|
|
@@ -6075,6 +6077,59 @@ ALIASES
|
|
|
6075
6077
|
$ codiac cluster destroy
|
|
6076
6078
|
```
|
|
6077
6079
|
|
|
6080
|
+
## `codiac cluster edit [NAME]`
|
|
6081
|
+
|
|
6082
|
+
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.
|
|
6083
|
+
|
|
6084
|
+
```
|
|
6085
|
+
USAGE
|
|
6086
|
+
$ codiac cluster edit [NAME] [-h] [--server-url <value> | --clear-server-url] [--take-defaults] [--silent |
|
|
6087
|
+
--echo | --to-script]
|
|
6088
|
+
|
|
6089
|
+
ARGUMENTS
|
|
6090
|
+
NAME Name of the cluster whose record you want to edit. Run `cod cluster list` to see names.
|
|
6091
|
+
|
|
6092
|
+
FLAGS
|
|
6093
|
+
-h, --help Show CLI help.
|
|
6094
|
+
--clear-server-url Removes the recorded apiserver url, leaving it for the next `cod cluster capture` to repopulate.
|
|
6095
|
+
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
6096
|
+
--server-url=<value> The apiserver url Codiac should record for this cluster (the remote target for kubectl), eg:
|
|
6097
|
+
https://my-cluster.hcp.centralus.azmk8s.io:443. Omit to leave it unchanged.
|
|
6098
|
+
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
6099
|
+
--take-defaults Prevents prompting for confirmation on parameters that were passed in or defaulted.
|
|
6100
|
+
--to-script Renders the equivalent non-interactive command without executing it.
|
|
6101
|
+
|
|
6102
|
+
DESCRIPTION
|
|
6103
|
+
Changes the mutable connection metadata (apiserver url) on an existing cluster record. DOES NOT modify any
|
|
6104
|
+
infrastructure; it only corrects what Codiac has recorded about the cluster. The cluster name is immutable — use `cod
|
|
6105
|
+
cluster capture` to register a different cluster. Changing the apiserver url also invalidates the cached kube context
|
|
6106
|
+
for this cluster, forcing a fresh credential fetch from the cloud provider on next use.
|
|
6107
|
+
|
|
6108
|
+
ALIASES
|
|
6109
|
+
$ codiac cluster edit
|
|
6110
|
+
|
|
6111
|
+
EXAMPLES
|
|
6112
|
+
Edit a cluster interactively (select it, then change its apiserver url).
|
|
6113
|
+
|
|
6114
|
+
$ codiac cluster edit
|
|
6115
|
+
|
|
6116
|
+
Correct the apiserver url Codiac has recorded for a cluster.
|
|
6117
|
+
|
|
6118
|
+
$ codiac cluster edit my-cluster --server-url https://my-cluster.hcp.centralus.azmk8s.io:443 --silent
|
|
6119
|
+
|
|
6120
|
+
Point a private cluster at its private-link address.
|
|
6121
|
+
|
|
6122
|
+
$ codiac cluster edit my-cluster --server-url https://10.110.128.10:443 --silent
|
|
6123
|
+
|
|
6124
|
+
Drop the recorded url so the next capture repopulates it from the cloud provider.
|
|
6125
|
+
|
|
6126
|
+
$ codiac cluster edit my-cluster --clear-server-url --silent
|
|
6127
|
+
|
|
6128
|
+
Renders the equivalent silent command without executing it.
|
|
6129
|
+
|
|
6130
|
+
$ codiac cluster edit my-cluster --server-url https://10.110.128.10:443 --to-script
|
|
6131
|
+
```
|
|
6132
|
+
|
|
6078
6133
|
## `codiac cluster envoy configure [CLUSTER]`
|
|
6079
6134
|
|
|
6080
6135
|
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 +6468,7 @@ EXAMPLES
|
|
|
6413
6468
|
$ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
|
|
6414
6469
|
```
|
|
6415
6470
|
|
|
6416
|
-
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6471
|
+
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/install.ts)_
|
|
6417
6472
|
|
|
6418
6473
|
## `codiac cluster journal [CLUSTER]`
|
|
6419
6474
|
|
|
@@ -6702,7 +6757,7 @@ EXAMPLES
|
|
|
6702
6757
|
$ codiac cluster stack capture my-fav-cluster
|
|
6703
6758
|
```
|
|
6704
6759
|
|
|
6705
|
-
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6760
|
+
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/stack/capture.ts)_
|
|
6706
6761
|
|
|
6707
6762
|
## `codiac cluster stack install [CLUSTER]`
|
|
6708
6763
|
|
|
@@ -6754,7 +6809,7 @@ EXAMPLES
|
|
|
6754
6809
|
$ codiac cluster stack install my-cluster --to-script
|
|
6755
6810
|
```
|
|
6756
6811
|
|
|
6757
|
-
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6812
|
+
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/stack/install.ts)_
|
|
6758
6813
|
|
|
6759
6814
|
## `codiac cluster stack list`
|
|
6760
6815
|
|
|
@@ -6920,7 +6975,7 @@ EXAMPLES
|
|
|
6920
6975
|
$ codiac cluster start my-fav-cluster
|
|
6921
6976
|
```
|
|
6922
6977
|
|
|
6923
|
-
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6978
|
+
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/start.ts)_
|
|
6924
6979
|
|
|
6925
6980
|
## `codiac cluster stop [CLUSTER]`
|
|
6926
6981
|
|
|
@@ -6957,7 +7012,7 @@ EXAMPLES
|
|
|
6957
7012
|
$ codiac cluster start my-fav-cluster
|
|
6958
7013
|
```
|
|
6959
7014
|
|
|
6960
|
-
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7015
|
+
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/cluster/stop.ts)_
|
|
6961
7016
|
|
|
6962
7017
|
## `codiac cluster uninstall`
|
|
6963
7018
|
|
|
@@ -7019,7 +7074,7 @@ DESCRIPTION
|
|
|
7019
7074
|
Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
|
|
7020
7075
|
```
|
|
7021
7076
|
|
|
7022
|
-
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7077
|
+
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/commit.ts)_
|
|
7023
7078
|
|
|
7024
7079
|
## `codiac config add`
|
|
7025
7080
|
|
|
@@ -7194,7 +7249,7 @@ EXAMPLES
|
|
|
7194
7249
|
'[{"op":"replace","path":"/spec/replicas","value":2}]' --value-type string
|
|
7195
7250
|
```
|
|
7196
7251
|
|
|
7197
|
-
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7252
|
+
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/config/add.ts)_
|
|
7198
7253
|
|
|
7199
7254
|
## `codiac config delete [SETTING]`
|
|
7200
7255
|
|
|
@@ -7263,7 +7318,7 @@ ALIASES
|
|
|
7263
7318
|
$ codiac cfg delete
|
|
7264
7319
|
```
|
|
7265
7320
|
|
|
7266
|
-
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7321
|
+
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/config/delete.ts)_
|
|
7267
7322
|
|
|
7268
7323
|
## `codiac config deploy`
|
|
7269
7324
|
|
|
@@ -7304,7 +7359,7 @@ EXAMPLES
|
|
|
7304
7359
|
$ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
|
|
7305
7360
|
```
|
|
7306
7361
|
|
|
7307
|
-
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7362
|
+
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/config/deploy.ts)_
|
|
7308
7363
|
|
|
7309
7364
|
## `codiac config import`
|
|
7310
7365
|
|
|
@@ -7365,7 +7420,7 @@ EXAMPLES
|
|
|
7365
7420
|
$ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
|
|
7366
7421
|
```
|
|
7367
7422
|
|
|
7368
|
-
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7423
|
+
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/config/import.ts)_
|
|
7369
7424
|
|
|
7370
7425
|
## `codiac config preview [SETTING]`
|
|
7371
7426
|
|
|
@@ -7671,7 +7726,7 @@ DESCRIPTION
|
|
|
7671
7726
|
Shows the list of clusters.
|
|
7672
7727
|
```
|
|
7673
7728
|
|
|
7674
|
-
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7729
|
+
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/config/settings/get.ts)_
|
|
7675
7730
|
|
|
7676
7731
|
## `codiac config view [SETTING]`
|
|
7677
7732
|
|
|
@@ -7736,7 +7791,7 @@ EXAMPLES
|
|
|
7736
7791
|
$ codiac config view -e myEnterprise -a myApi -c dev --to-script
|
|
7737
7792
|
```
|
|
7738
7793
|
|
|
7739
|
-
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7794
|
+
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/config/view.ts)_
|
|
7740
7795
|
|
|
7741
7796
|
## `codiac csp creds list`
|
|
7742
7797
|
|
|
@@ -7784,7 +7839,7 @@ EXAMPLES
|
|
|
7784
7839
|
$ codiac csp creds list
|
|
7785
7840
|
```
|
|
7786
7841
|
|
|
7787
|
-
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7842
|
+
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/csp/creds/list.ts)_
|
|
7788
7843
|
|
|
7789
7844
|
## `codiac csp login [PROVIDER]`
|
|
7790
7845
|
|
|
@@ -7862,7 +7917,7 @@ EXAMPLES
|
|
|
7862
7917
|
cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
|
|
7863
7918
|
```
|
|
7864
7919
|
|
|
7865
|
-
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7920
|
+
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/csp/login.ts)_
|
|
7866
7921
|
|
|
7867
7922
|
## `codiac csp logout [PROVIDER]`
|
|
7868
7923
|
|
|
@@ -7909,7 +7964,7 @@ EXAMPLES
|
|
|
7909
7964
|
$ codiac csp logout azure --to-script
|
|
7910
7965
|
```
|
|
7911
7966
|
|
|
7912
|
-
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7967
|
+
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/csp/logout.ts)_
|
|
7913
7968
|
|
|
7914
7969
|
## `codiac dep [NAME]`
|
|
7915
7970
|
|
|
@@ -7930,7 +7985,7 @@ DESCRIPTION
|
|
|
7930
7985
|
Installs a package into current project.
|
|
7931
7986
|
```
|
|
7932
7987
|
|
|
7933
|
-
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7988
|
+
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/dep.ts)_
|
|
7934
7989
|
|
|
7935
7990
|
## `codiac dep create [URL]`
|
|
7936
7991
|
|
|
@@ -7954,7 +8009,7 @@ DESCRIPTION
|
|
|
7954
8009
|
package version is used.
|
|
7955
8010
|
```
|
|
7956
8011
|
|
|
7957
|
-
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8012
|
+
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/dep/create.ts)_
|
|
7958
8013
|
|
|
7959
8014
|
## `codiac dep install`
|
|
7960
8015
|
|
|
@@ -7971,7 +8026,7 @@ DESCRIPTION
|
|
|
7971
8026
|
installs any missing dependency packages into the local project folder.
|
|
7972
8027
|
```
|
|
7973
8028
|
|
|
7974
|
-
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8029
|
+
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/dep/install.ts)_
|
|
7975
8030
|
|
|
7976
8031
|
## `codiac dep list`
|
|
7977
8032
|
|
|
@@ -7988,7 +8043,7 @@ DESCRIPTION
|
|
|
7988
8043
|
Shows the dependencies for the project.
|
|
7989
8044
|
```
|
|
7990
8045
|
|
|
7991
|
-
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8046
|
+
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/dep/list.ts)_
|
|
7992
8047
|
|
|
7993
8048
|
## `codiac dep remove [NAME]`
|
|
7994
8049
|
|
|
@@ -8011,7 +8066,7 @@ DESCRIPTION
|
|
|
8011
8066
|
Removes a dependency from the project.
|
|
8012
8067
|
```
|
|
8013
8068
|
|
|
8014
|
-
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8069
|
+
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/dep/remove.ts)_
|
|
8015
8070
|
|
|
8016
8071
|
## `codiac dep source [NAME]`
|
|
8017
8072
|
|
|
@@ -8037,7 +8092,7 @@ ALIASES
|
|
|
8037
8092
|
$ codiac dep src
|
|
8038
8093
|
```
|
|
8039
8094
|
|
|
8040
|
-
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8095
|
+
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/dep/source.ts)_
|
|
8041
8096
|
|
|
8042
8097
|
## `codiac dep src [NAME]`
|
|
8043
8098
|
|
|
@@ -8081,7 +8136,7 @@ DESCRIPTION
|
|
|
8081
8136
|
Publishes the dependency in its current state and upgrades to it in the main project.
|
|
8082
8137
|
```
|
|
8083
8138
|
|
|
8084
|
-
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8139
|
+
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/dep/syncup.ts)_
|
|
8085
8140
|
|
|
8086
8141
|
## `codiac dep unsource [NAME]`
|
|
8087
8142
|
|
|
@@ -8109,7 +8164,7 @@ ALIASES
|
|
|
8109
8164
|
$ codiac dep unsrc
|
|
8110
8165
|
```
|
|
8111
8166
|
|
|
8112
|
-
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8167
|
+
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/dep/unsource.ts)_
|
|
8113
8168
|
|
|
8114
8169
|
## `codiac dep unsrc [NAME]`
|
|
8115
8170
|
|
|
@@ -8156,7 +8211,7 @@ DESCRIPTION
|
|
|
8156
8211
|
describe the command here
|
|
8157
8212
|
```
|
|
8158
8213
|
|
|
8159
|
-
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8214
|
+
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/dep/upgrade.ts)_
|
|
8160
8215
|
|
|
8161
8216
|
## `codiac deploy`
|
|
8162
8217
|
|
|
@@ -8209,7 +8264,7 @@ EXAMPLES
|
|
|
8209
8264
|
$ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
|
|
8210
8265
|
```
|
|
8211
8266
|
|
|
8212
|
-
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8267
|
+
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/deploy.ts)_
|
|
8213
8268
|
|
|
8214
8269
|
## `codiac domain map [DOMAIN]`
|
|
8215
8270
|
|
|
@@ -8365,7 +8420,7 @@ EXAMPLES
|
|
|
8365
8420
|
cod enterprise create my-enterprise-code --silent
|
|
8366
8421
|
```
|
|
8367
8422
|
|
|
8368
|
-
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8423
|
+
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/enterprise/create.ts)_
|
|
8369
8424
|
|
|
8370
8425
|
## `codiac enterprise list`
|
|
8371
8426
|
|
|
@@ -8420,7 +8475,7 @@ EXAMPLES
|
|
|
8420
8475
|
$ codiac enterprise list --to-script
|
|
8421
8476
|
```
|
|
8422
8477
|
|
|
8423
|
-
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8478
|
+
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/enterprise/list.ts)_
|
|
8424
8479
|
|
|
8425
8480
|
## `codiac env add [SETTING]`
|
|
8426
8481
|
|
|
@@ -8470,7 +8525,7 @@ EXAMPLES
|
|
|
8470
8525
|
$ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
|
|
8471
8526
|
```
|
|
8472
8527
|
|
|
8473
|
-
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8528
|
+
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/env/add.ts)_
|
|
8474
8529
|
|
|
8475
8530
|
## `codiac enviro cluster attach`
|
|
8476
8531
|
|
|
@@ -8773,7 +8828,7 @@ ALIASES
|
|
|
8773
8828
|
$ codiac infrx enviro cluster attach
|
|
8774
8829
|
```
|
|
8775
8830
|
|
|
8776
|
-
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8831
|
+
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/environment/cluster/attach.ts)_
|
|
8777
8832
|
|
|
8778
8833
|
## `codiac environment cluster detach`
|
|
8779
8834
|
|
|
@@ -8819,7 +8874,7 @@ ALIASES
|
|
|
8819
8874
|
$ codiac infrx enviro cluster detach
|
|
8820
8875
|
```
|
|
8821
8876
|
|
|
8822
|
-
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8877
|
+
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/environment/cluster/detach.ts)_
|
|
8823
8878
|
|
|
8824
8879
|
## `codiac environment create [NAME]`
|
|
8825
8880
|
|
|
@@ -8882,7 +8937,7 @@ EXAMPLES
|
|
|
8882
8937
|
cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
|
|
8883
8938
|
```
|
|
8884
8939
|
|
|
8885
|
-
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8940
|
+
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/environment/create.ts)_
|
|
8886
8941
|
|
|
8887
8942
|
## `codiac environment delete [NAME]`
|
|
8888
8943
|
|
|
@@ -8943,7 +8998,7 @@ EXAMPLES
|
|
|
8943
8998
|
$ codiac environment delete dev --enterprise main --to-script
|
|
8944
8999
|
```
|
|
8945
9000
|
|
|
8946
|
-
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9001
|
+
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/environment/delete.ts)_
|
|
8947
9002
|
|
|
8948
9003
|
## `codiac environment list`
|
|
8949
9004
|
|
|
@@ -8994,7 +9049,7 @@ EXAMPLES
|
|
|
8994
9049
|
$ codiac environment list -e myEnterprise --silent
|
|
8995
9050
|
```
|
|
8996
9051
|
|
|
8997
|
-
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9052
|
+
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/environment/list.ts)_
|
|
8998
9053
|
|
|
8999
9054
|
## `codiac fileshare capture`
|
|
9000
9055
|
|
|
@@ -9078,7 +9133,7 @@ ALIASES
|
|
|
9078
9133
|
$ codiac fileshare capture
|
|
9079
9134
|
```
|
|
9080
9135
|
|
|
9081
|
-
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9136
|
+
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/filestore/capture.ts)_
|
|
9082
9137
|
|
|
9083
9138
|
## `codiac filestore forget`
|
|
9084
9139
|
|
|
@@ -9125,7 +9180,7 @@ EXAMPLES
|
|
|
9125
9180
|
$ codiac filestore forget
|
|
9126
9181
|
```
|
|
9127
9182
|
|
|
9128
|
-
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9183
|
+
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/filestore/forget.ts)_
|
|
9129
9184
|
|
|
9130
9185
|
## `codiac filestore list`
|
|
9131
9186
|
|
|
@@ -9171,7 +9226,7 @@ EXAMPLES
|
|
|
9171
9226
|
$ codiac filestore list
|
|
9172
9227
|
```
|
|
9173
9228
|
|
|
9174
|
-
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9229
|
+
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/filestore/list.ts)_
|
|
9175
9230
|
|
|
9176
9231
|
## `codiac help [COMMANDS]`
|
|
9177
9232
|
|
|
@@ -9257,7 +9312,7 @@ EXAMPLES
|
|
|
9257
9312
|
$ codiac host delete
|
|
9258
9313
|
```
|
|
9259
9314
|
|
|
9260
|
-
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9315
|
+
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/host/delete.ts)_
|
|
9261
9316
|
|
|
9262
9317
|
## `codiac host list [DOMAIN]`
|
|
9263
9318
|
|
|
@@ -9301,7 +9356,7 @@ EXAMPLES
|
|
|
9301
9356
|
$ codiac host list
|
|
9302
9357
|
```
|
|
9303
9358
|
|
|
9304
|
-
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9359
|
+
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/host/list.ts)_
|
|
9305
9360
|
|
|
9306
9361
|
## `codiac host map [DOMAIN]`
|
|
9307
9362
|
|
|
@@ -9355,7 +9410,7 @@ EXAMPLES
|
|
|
9355
9410
|
$ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
|
|
9356
9411
|
```
|
|
9357
9412
|
|
|
9358
|
-
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9413
|
+
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/host/map.ts)_
|
|
9359
9414
|
|
|
9360
9415
|
## `codiac host view [DOMAIN]`
|
|
9361
9416
|
|
|
@@ -9400,7 +9455,7 @@ EXAMPLES
|
|
|
9400
9455
|
$ codiac host view
|
|
9401
9456
|
```
|
|
9402
9457
|
|
|
9403
|
-
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9458
|
+
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/host/view.ts)_
|
|
9404
9459
|
|
|
9405
9460
|
## `codiac identify [TOKENNAME]`
|
|
9406
9461
|
|
|
@@ -9472,7 +9527,7 @@ ALIASES
|
|
|
9472
9527
|
$ codiac token
|
|
9473
9528
|
```
|
|
9474
9529
|
|
|
9475
|
-
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9530
|
+
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/identity.ts)_
|
|
9476
9531
|
|
|
9477
9532
|
## `codiac identity delete [NAME]`
|
|
9478
9533
|
|
|
@@ -9497,7 +9552,7 @@ ALIASES
|
|
|
9497
9552
|
$ codiac token remove
|
|
9498
9553
|
```
|
|
9499
9554
|
|
|
9500
|
-
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9555
|
+
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/identity/delete.ts)_
|
|
9501
9556
|
|
|
9502
9557
|
## `codiac identity list`
|
|
9503
9558
|
|
|
@@ -9519,7 +9574,7 @@ ALIASES
|
|
|
9519
9574
|
$ codiac token list
|
|
9520
9575
|
```
|
|
9521
9576
|
|
|
9522
|
-
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9577
|
+
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/identity/list.ts)_
|
|
9523
9578
|
|
|
9524
9579
|
## `codiac identity remove [NAME]`
|
|
9525
9580
|
|
|
@@ -9842,7 +9897,7 @@ DESCRIPTION
|
|
|
9842
9897
|
Saves a reference to an existing container registry.
|
|
9843
9898
|
```
|
|
9844
9899
|
|
|
9845
|
-
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9900
|
+
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/imageRegistry/capture.ts)_
|
|
9846
9901
|
|
|
9847
9902
|
## `codiac imageRegistry edit`
|
|
9848
9903
|
|
|
@@ -9885,7 +9940,7 @@ EXAMPLES
|
|
|
9885
9940
|
$ codiac imageRegistry edit --registry devCodiacContainers --url newname.azurecr.io --to-script
|
|
9886
9941
|
```
|
|
9887
9942
|
|
|
9888
|
-
_See code: [src/commands/imageRegistry/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9943
|
+
_See code: [src/commands/imageRegistry/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/imageRegistry/edit.ts)_
|
|
9889
9944
|
|
|
9890
9945
|
## `codiac imageRegistry forget`
|
|
9891
9946
|
|
|
@@ -9906,7 +9961,7 @@ DESCRIPTION
|
|
|
9906
9961
|
Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
|
|
9907
9962
|
```
|
|
9908
9963
|
|
|
9909
|
-
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9964
|
+
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/imageRegistry/forget.ts)_
|
|
9910
9965
|
|
|
9911
9966
|
## `codiac imageRegistry list`
|
|
9912
9967
|
|
|
@@ -9948,7 +10003,7 @@ EXAMPLES
|
|
|
9948
10003
|
$ codiac imageRegistry list -o yaml > registries.yaml
|
|
9949
10004
|
```
|
|
9950
10005
|
|
|
9951
|
-
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10006
|
+
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/imageRegistry/list.ts)_
|
|
9952
10007
|
|
|
9953
10008
|
## `codiac imageRegistry pullSecret set`
|
|
9954
10009
|
|
|
@@ -9984,7 +10039,7 @@ ALIASES
|
|
|
9984
10039
|
$ codiac pullsecret
|
|
9985
10040
|
```
|
|
9986
10041
|
|
|
9987
|
-
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10042
|
+
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/imageRegistry/pullSecret/set.ts)_
|
|
9988
10043
|
|
|
9989
10044
|
## `codiac imageRegistry pullSecret unset`
|
|
9990
10045
|
|
|
@@ -10011,7 +10066,7 @@ ALIASES
|
|
|
10011
10066
|
$ codiac pullsecret unset
|
|
10012
10067
|
```
|
|
10013
10068
|
|
|
10014
|
-
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10069
|
+
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/imageRegistry/pullSecret/unset.ts)_
|
|
10015
10070
|
|
|
10016
10071
|
## `codiac images add [IMAGENAME]`
|
|
10017
10072
|
|
|
@@ -10072,7 +10127,7 @@ EXAMPLES
|
|
|
10072
10127
|
$ codiac images add your-company/your-image --to-script
|
|
10073
10128
|
```
|
|
10074
10129
|
|
|
10075
|
-
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10130
|
+
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/images/add.ts)_
|
|
10076
10131
|
|
|
10077
10132
|
## `codiac images list`
|
|
10078
10133
|
|
|
@@ -10095,7 +10150,7 @@ ALIASES
|
|
|
10095
10150
|
$ codiac img list
|
|
10096
10151
|
```
|
|
10097
10152
|
|
|
10098
|
-
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10153
|
+
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/images/list.ts)_
|
|
10099
10154
|
|
|
10100
10155
|
## `codiac images patch IMAGENAME`
|
|
10101
10156
|
|
|
@@ -10125,7 +10180,7 @@ ALIASES
|
|
|
10125
10180
|
$ codiac img patch
|
|
10126
10181
|
```
|
|
10127
10182
|
|
|
10128
|
-
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10183
|
+
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/images/patch.ts)_
|
|
10129
10184
|
|
|
10130
10185
|
## `codiac images remove IMAGENAME`
|
|
10131
10186
|
|
|
@@ -10151,7 +10206,7 @@ ALIASES
|
|
|
10151
10206
|
$ codiac img delete
|
|
10152
10207
|
```
|
|
10153
10208
|
|
|
10154
|
-
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10209
|
+
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/images/remove.ts)_
|
|
10155
10210
|
|
|
10156
10211
|
## `codiac images version NAME`
|
|
10157
10212
|
|
|
@@ -10177,7 +10232,7 @@ ALIASES
|
|
|
10177
10232
|
$ codiac img version get
|
|
10178
10233
|
```
|
|
10179
10234
|
|
|
10180
|
-
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10235
|
+
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/images/version.ts)_
|
|
10181
10236
|
|
|
10182
10237
|
## `codiac images version bump NAME`
|
|
10183
10238
|
|
|
@@ -10210,7 +10265,7 @@ ALIASES
|
|
|
10210
10265
|
$ codiac img version bump
|
|
10211
10266
|
```
|
|
10212
10267
|
|
|
10213
|
-
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10268
|
+
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/images/version/bump.ts)_
|
|
10214
10269
|
|
|
10215
10270
|
## `codiac img [IMAGENAME]`
|
|
10216
10271
|
|
|
@@ -10526,7 +10581,7 @@ EXAMPLES
|
|
|
10526
10581
|
$ 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
10582
|
```
|
|
10528
10583
|
|
|
10529
|
-
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10584
|
+
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/import/cluster.ts)_
|
|
10530
10585
|
|
|
10531
10586
|
## `codiac infrx cab create [CABINET]`
|
|
10532
10587
|
|
|
@@ -11371,7 +11426,7 @@ DESCRIPTION
|
|
|
11371
11426
|
Declares the given folder as a project root
|
|
11372
11427
|
```
|
|
11373
11428
|
|
|
11374
|
-
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11429
|
+
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/init.ts)_
|
|
11375
11430
|
|
|
11376
11431
|
## `codiac kit create`
|
|
11377
11432
|
|
|
@@ -11414,7 +11469,7 @@ EXAMPLES
|
|
|
11414
11469
|
$ codiac kit create -e myEnterprise -a myApi --to-script
|
|
11415
11470
|
```
|
|
11416
11471
|
|
|
11417
|
-
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11472
|
+
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/kit/create.ts)_
|
|
11418
11473
|
|
|
11419
11474
|
## `codiac login`
|
|
11420
11475
|
|
|
@@ -11473,7 +11528,7 @@ EXAMPLES
|
|
|
11473
11528
|
$ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
|
|
11474
11529
|
```
|
|
11475
11530
|
|
|
11476
|
-
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11531
|
+
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/login.ts)_
|
|
11477
11532
|
|
|
11478
11533
|
## `codiac logout`
|
|
11479
11534
|
|
|
@@ -11506,7 +11561,7 @@ EXAMPLES
|
|
|
11506
11561
|
$ codiac logout --to-script
|
|
11507
11562
|
```
|
|
11508
11563
|
|
|
11509
|
-
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11564
|
+
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/logout.ts)_
|
|
11510
11565
|
|
|
11511
11566
|
## `codiac merge [BRANCH]`
|
|
11512
11567
|
|
|
@@ -11527,7 +11582,7 @@ DESCRIPTION
|
|
|
11527
11582
|
Merges the given branch into the current branch of the main project and on any sourced dependencies.
|
|
11528
11583
|
```
|
|
11529
11584
|
|
|
11530
|
-
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11585
|
+
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/merge.ts)_
|
|
11531
11586
|
|
|
11532
11587
|
## `codiac noc cluster capture`
|
|
11533
11588
|
|
|
@@ -11579,7 +11634,7 @@ EXAMPLES
|
|
|
11579
11634
|
cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
|
|
11580
11635
|
```
|
|
11581
11636
|
|
|
11582
|
-
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11637
|
+
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/capture.ts)_
|
|
11583
11638
|
|
|
11584
11639
|
## `codiac noc cluster create [NAME]`
|
|
11585
11640
|
|
|
@@ -11669,7 +11724,7 @@ FLAG DESCRIPTIONS
|
|
|
11669
11724
|
initialization is always skipped in that mode.
|
|
11670
11725
|
```
|
|
11671
11726
|
|
|
11672
|
-
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11727
|
+
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/create.ts)_
|
|
11673
11728
|
|
|
11674
11729
|
## `codiac noc cluster credentials-set [NAME]`
|
|
11675
11730
|
|
|
@@ -11724,7 +11779,7 @@ EXAMPLES
|
|
|
11724
11779
|
$ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
|
|
11725
11780
|
```
|
|
11726
11781
|
|
|
11727
|
-
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11782
|
+
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/credentials-set.ts)_
|
|
11728
11783
|
|
|
11729
11784
|
## `codiac noc cluster define [NAME]`
|
|
11730
11785
|
|
|
@@ -11798,7 +11853,7 @@ EXAMPLES
|
|
|
11798
11853
|
$ codiac noc cluster define my-cluster --to-script
|
|
11799
11854
|
```
|
|
11800
11855
|
|
|
11801
|
-
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11856
|
+
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/define.ts)_
|
|
11802
11857
|
|
|
11803
11858
|
## `codiac noc cluster deinit`
|
|
11804
11859
|
|
|
@@ -11838,7 +11893,7 @@ EXAMPLES
|
|
|
11838
11893
|
$ codiac noc cluster deinit -n my-cluster --to-script
|
|
11839
11894
|
```
|
|
11840
11895
|
|
|
11841
|
-
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11896
|
+
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/deinit.ts)_
|
|
11842
11897
|
|
|
11843
11898
|
## `codiac noc cluster destroy [NAME]`
|
|
11844
11899
|
|
|
@@ -11872,7 +11927,62 @@ ALIASES
|
|
|
11872
11927
|
$ codiac cluster destroy
|
|
11873
11928
|
```
|
|
11874
11929
|
|
|
11875
|
-
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11930
|
+
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/destroy.ts)_
|
|
11931
|
+
|
|
11932
|
+
## `codiac noc cluster edit [NAME]`
|
|
11933
|
+
|
|
11934
|
+
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.
|
|
11935
|
+
|
|
11936
|
+
```
|
|
11937
|
+
USAGE
|
|
11938
|
+
$ codiac noc cluster edit [NAME] [-h] [--server-url <value> | --clear-server-url] [--take-defaults] [--silent |
|
|
11939
|
+
--echo | --to-script]
|
|
11940
|
+
|
|
11941
|
+
ARGUMENTS
|
|
11942
|
+
NAME Name of the cluster whose record you want to edit. Run `cod cluster list` to see names.
|
|
11943
|
+
|
|
11944
|
+
FLAGS
|
|
11945
|
+
-h, --help Show CLI help.
|
|
11946
|
+
--clear-server-url Removes the recorded apiserver url, leaving it for the next `cod cluster capture` to repopulate.
|
|
11947
|
+
--echo Renders the equivalent non-interactive command for future use before executing.
|
|
11948
|
+
--server-url=<value> The apiserver url Codiac should record for this cluster (the remote target for kubectl), eg:
|
|
11949
|
+
https://my-cluster.hcp.centralus.azmk8s.io:443. Omit to leave it unchanged.
|
|
11950
|
+
--silent Executes without any user interaction; fails on missing or invalid arguments.
|
|
11951
|
+
--take-defaults Prevents prompting for confirmation on parameters that were passed in or defaulted.
|
|
11952
|
+
--to-script Renders the equivalent non-interactive command without executing it.
|
|
11953
|
+
|
|
11954
|
+
DESCRIPTION
|
|
11955
|
+
Changes the mutable connection metadata (apiserver url) on an existing cluster record. DOES NOT modify any
|
|
11956
|
+
infrastructure; it only corrects what Codiac has recorded about the cluster. The cluster name is immutable — use `cod
|
|
11957
|
+
cluster capture` to register a different cluster. Changing the apiserver url also invalidates the cached kube context
|
|
11958
|
+
for this cluster, forcing a fresh credential fetch from the cloud provider on next use.
|
|
11959
|
+
|
|
11960
|
+
ALIASES
|
|
11961
|
+
$ codiac cluster edit
|
|
11962
|
+
|
|
11963
|
+
EXAMPLES
|
|
11964
|
+
Edit a cluster interactively (select it, then change its apiserver url).
|
|
11965
|
+
|
|
11966
|
+
$ codiac noc cluster edit
|
|
11967
|
+
|
|
11968
|
+
Correct the apiserver url Codiac has recorded for a cluster.
|
|
11969
|
+
|
|
11970
|
+
$ codiac noc cluster edit my-cluster --server-url https://my-cluster.hcp.centralus.azmk8s.io:443 --silent
|
|
11971
|
+
|
|
11972
|
+
Point a private cluster at its private-link address.
|
|
11973
|
+
|
|
11974
|
+
$ codiac noc cluster edit my-cluster --server-url https://10.110.128.10:443 --silent
|
|
11975
|
+
|
|
11976
|
+
Drop the recorded url so the next capture repopulates it from the cloud provider.
|
|
11977
|
+
|
|
11978
|
+
$ codiac noc cluster edit my-cluster --clear-server-url --silent
|
|
11979
|
+
|
|
11980
|
+
Renders the equivalent silent command without executing it.
|
|
11981
|
+
|
|
11982
|
+
$ codiac noc cluster edit my-cluster --server-url https://10.110.128.10:443 --to-script
|
|
11983
|
+
```
|
|
11984
|
+
|
|
11985
|
+
_See code: [src/commands/noc/cluster/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/edit.ts)_
|
|
11876
11986
|
|
|
11877
11987
|
## `codiac noc cluster forget`
|
|
11878
11988
|
|
|
@@ -11923,7 +12033,7 @@ EXAMPLES
|
|
|
11923
12033
|
$ codiac noc cluster forget --running
|
|
11924
12034
|
```
|
|
11925
12035
|
|
|
11926
|
-
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12036
|
+
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/forget.ts)_
|
|
11927
12037
|
|
|
11928
12038
|
## `codiac noc cluster grant`
|
|
11929
12039
|
|
|
@@ -11961,7 +12071,7 @@ EXAMPLES
|
|
|
11961
12071
|
$ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
|
|
11962
12072
|
```
|
|
11963
12073
|
|
|
11964
|
-
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12074
|
+
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/grant.ts)_
|
|
11965
12075
|
|
|
11966
12076
|
## `codiac noc cluster init`
|
|
11967
12077
|
|
|
@@ -12007,7 +12117,7 @@ EXAMPLES
|
|
|
12007
12117
|
$ codiac noc cluster init -n my-cluster --to-script
|
|
12008
12118
|
```
|
|
12009
12119
|
|
|
12010
|
-
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12120
|
+
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/init.ts)_
|
|
12011
12121
|
|
|
12012
12122
|
## `codiac noc cluster journal [CLUSTER]`
|
|
12013
12123
|
|
|
@@ -12056,7 +12166,7 @@ EXAMPLES
|
|
|
12056
12166
|
$ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
|
|
12057
12167
|
```
|
|
12058
12168
|
|
|
12059
|
-
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12169
|
+
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/journal.ts)_
|
|
12060
12170
|
|
|
12061
12171
|
## `codiac noc cluster list`
|
|
12062
12172
|
|
|
@@ -12117,7 +12227,7 @@ EXAMPLES
|
|
|
12117
12227
|
$ codiac noc cluster list -e myEnterprise --to-script
|
|
12118
12228
|
```
|
|
12119
12229
|
|
|
12120
|
-
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12230
|
+
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/list.ts)_
|
|
12121
12231
|
|
|
12122
12232
|
## `codiac noc cluster restore [NAME]`
|
|
12123
12233
|
|
|
@@ -12177,7 +12287,7 @@ EXAMPLES
|
|
|
12177
12287
|
$ codiac noc cluster restore prod-cluster-1 --to-script
|
|
12178
12288
|
```
|
|
12179
12289
|
|
|
12180
|
-
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12290
|
+
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/noc/cluster/restore.ts)_
|
|
12181
12291
|
|
|
12182
12292
|
## `codiac pkg add [DEFINITIONFILE]`
|
|
12183
12293
|
|
|
@@ -12211,7 +12321,7 @@ DESCRIPTION
|
|
|
12211
12321
|
Configures a package to be built and published by the project.
|
|
12212
12322
|
```
|
|
12213
12323
|
|
|
12214
|
-
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12324
|
+
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/pkg/add.ts)_
|
|
12215
12325
|
|
|
12216
12326
|
## `codiac pkg delete [PACKAGENAME]`
|
|
12217
12327
|
|
|
@@ -12249,7 +12359,7 @@ DESCRIPTION
|
|
|
12249
12359
|
Renders the list of packages that are configured as project exports.
|
|
12250
12360
|
```
|
|
12251
12361
|
|
|
12252
|
-
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12362
|
+
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/pkg/list.ts)_
|
|
12253
12363
|
|
|
12254
12364
|
## `codiac pkg patch PACKAGENAME`
|
|
12255
12365
|
|
|
@@ -12275,7 +12385,7 @@ DESCRIPTION
|
|
|
12275
12385
|
registryUrl and/or environment.
|
|
12276
12386
|
```
|
|
12277
12387
|
|
|
12278
|
-
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12388
|
+
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/pkg/patch.ts)_
|
|
12279
12389
|
|
|
12280
12390
|
## `codiac pkg remove [PACKAGENAME]`
|
|
12281
12391
|
|
|
@@ -12298,7 +12408,7 @@ ALIASES
|
|
|
12298
12408
|
$ codiac pkg delete
|
|
12299
12409
|
```
|
|
12300
12410
|
|
|
12301
|
-
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12411
|
+
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/pkg/remove.ts)_
|
|
12302
12412
|
|
|
12303
12413
|
## `codiac portal`
|
|
12304
12414
|
|
|
@@ -12331,7 +12441,7 @@ EXAMPLES
|
|
|
12331
12441
|
$ codiac portal --to-script
|
|
12332
12442
|
```
|
|
12333
12443
|
|
|
12334
|
-
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12444
|
+
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/portal.ts)_
|
|
12335
12445
|
|
|
12336
12446
|
## `codiac probe create [CMD]`
|
|
12337
12447
|
|
|
@@ -12452,7 +12562,7 @@ DESCRIPTION
|
|
|
12452
12562
|
Publishes the exports (packages and images) declared in the ProjectConfig.
|
|
12453
12563
|
```
|
|
12454
12564
|
|
|
12455
|
-
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12565
|
+
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/publish.ts)_
|
|
12456
12566
|
|
|
12457
12567
|
## `codiac pull [NAME]`
|
|
12458
12568
|
|
|
@@ -12476,7 +12586,7 @@ DESCRIPTION
|
|
|
12476
12586
|
Pulls all commits from upstream to local.
|
|
12477
12587
|
```
|
|
12478
12588
|
|
|
12479
|
-
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12589
|
+
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/pull.ts)_
|
|
12480
12590
|
|
|
12481
12591
|
## `codiac pullsecret`
|
|
12482
12592
|
|
|
@@ -12559,7 +12669,7 @@ DESCRIPTION
|
|
|
12559
12669
|
Pushes all local commits upstream.
|
|
12560
12670
|
```
|
|
12561
12671
|
|
|
12562
|
-
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12672
|
+
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/push.ts)_
|
|
12563
12673
|
|
|
12564
12674
|
## `codiac pvc create`
|
|
12565
12675
|
|
|
@@ -12643,7 +12753,7 @@ EXAMPLES
|
|
|
12643
12753
|
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
|
|
12644
12754
|
```
|
|
12645
12755
|
|
|
12646
|
-
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12756
|
+
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/pvc/create.ts)_
|
|
12647
12757
|
|
|
12648
12758
|
## `codiac pvc delete`
|
|
12649
12759
|
|
|
@@ -12690,7 +12800,7 @@ EXAMPLES
|
|
|
12690
12800
|
$ codiac pvc delete --id <fileStoreDefId> --silent
|
|
12691
12801
|
```
|
|
12692
12802
|
|
|
12693
|
-
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12803
|
+
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/pvc/delete.ts)_
|
|
12694
12804
|
|
|
12695
12805
|
## `codiac pvc get`
|
|
12696
12806
|
|
|
@@ -12731,7 +12841,7 @@ EXAMPLES
|
|
|
12731
12841
|
$ codiac pvc get --name app-documents-share --silent -o json
|
|
12732
12842
|
```
|
|
12733
12843
|
|
|
12734
|
-
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12844
|
+
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/pvc/get.ts)_
|
|
12735
12845
|
|
|
12736
12846
|
## `codiac pvc list`
|
|
12737
12847
|
|
|
@@ -12774,7 +12884,7 @@ EXAMPLES
|
|
|
12774
12884
|
$ codiac pvc list -o yaml
|
|
12775
12885
|
```
|
|
12776
12886
|
|
|
12777
|
-
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12887
|
+
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/pvc/list.ts)_
|
|
12778
12888
|
|
|
12779
12889
|
## `codiac relay-version`
|
|
12780
12890
|
|
|
@@ -12791,7 +12901,7 @@ EXAMPLES
|
|
|
12791
12901
|
$ codiac relay-version
|
|
12792
12902
|
```
|
|
12793
12903
|
|
|
12794
|
-
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12904
|
+
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/relay-version.ts)_
|
|
12795
12905
|
|
|
12796
12906
|
## `codiac run`
|
|
12797
12907
|
|
|
@@ -12833,7 +12943,7 @@ DESCRIPTION
|
|
|
12833
12943
|
Runs the latest build of the api container locally.
|
|
12834
12944
|
```
|
|
12835
12945
|
|
|
12836
|
-
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12946
|
+
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/run.ts)_
|
|
12837
12947
|
|
|
12838
12948
|
## `codiac secretStore`
|
|
12839
12949
|
|
|
@@ -12951,7 +13061,7 @@ EXAMPLES
|
|
|
12951
13061
|
$ codiac secretStore capture --echo
|
|
12952
13062
|
```
|
|
12953
13063
|
|
|
12954
|
-
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13064
|
+
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/secretStore/capture.ts)_
|
|
12955
13065
|
|
|
12956
13066
|
## `codiac secretStore forget`
|
|
12957
13067
|
|
|
@@ -12972,7 +13082,7 @@ DESCRIPTION
|
|
|
12972
13082
|
Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
|
|
12973
13083
|
```
|
|
12974
13084
|
|
|
12975
|
-
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13085
|
+
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/secretStore/forget.ts)_
|
|
12976
13086
|
|
|
12977
13087
|
## `codiac secretStore list`
|
|
12978
13088
|
|
|
@@ -13017,7 +13127,7 @@ EXAMPLES
|
|
|
13017
13127
|
$ codiac secretStore list
|
|
13018
13128
|
```
|
|
13019
13129
|
|
|
13020
|
-
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13130
|
+
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/secretStore/list.ts)_
|
|
13021
13131
|
|
|
13022
13132
|
## `codiac shell init`
|
|
13023
13133
|
|
|
@@ -13055,7 +13165,7 @@ EXAMPLES
|
|
|
13055
13165
|
Invoke-Expression (codiac shell init --shell powershell)
|
|
13056
13166
|
```
|
|
13057
13167
|
|
|
13058
|
-
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13168
|
+
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/shell/init.ts)_
|
|
13059
13169
|
|
|
13060
13170
|
## `codiac skill install`
|
|
13061
13171
|
|
|
@@ -13090,7 +13200,7 @@ EXAMPLES
|
|
|
13090
13200
|
$ codiac skill install --force
|
|
13091
13201
|
```
|
|
13092
13202
|
|
|
13093
|
-
_See code: [src/commands/skill/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13203
|
+
_See code: [src/commands/skill/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/skill/install.ts)_
|
|
13094
13204
|
|
|
13095
13205
|
## `codiac skill path`
|
|
13096
13206
|
|
|
@@ -13113,7 +13223,7 @@ EXAMPLES
|
|
|
13113
13223
|
$ codiac skill path
|
|
13114
13224
|
```
|
|
13115
13225
|
|
|
13116
|
-
_See code: [src/commands/skill/path.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13226
|
+
_See code: [src/commands/skill/path.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/skill/path.ts)_
|
|
13117
13227
|
|
|
13118
13228
|
## `codiac skill show`
|
|
13119
13229
|
|
|
@@ -13152,7 +13262,7 @@ EXAMPLES
|
|
|
13152
13262
|
$ codiac skill show --list
|
|
13153
13263
|
```
|
|
13154
13264
|
|
|
13155
|
-
_See code: [src/commands/skill/show.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13265
|
+
_See code: [src/commands/skill/show.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/skill/show.ts)_
|
|
13156
13266
|
|
|
13157
13267
|
## `codiac snapshot deploy`
|
|
13158
13268
|
|
|
@@ -13180,7 +13290,7 @@ DESCRIPTION
|
|
|
13180
13290
|
Deploys all assets in a snapshot to a target cabinet.
|
|
13181
13291
|
```
|
|
13182
13292
|
|
|
13183
|
-
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13293
|
+
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/snapshot/deploy.ts)_
|
|
13184
13294
|
|
|
13185
13295
|
## `codiac snapshot list`
|
|
13186
13296
|
|
|
@@ -13229,7 +13339,7 @@ EXAMPLES
|
|
|
13229
13339
|
$ codiac snapshot list -e myEnterprise --silent
|
|
13230
13340
|
```
|
|
13231
13341
|
|
|
13232
|
-
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13342
|
+
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/snapshot/list.ts)_
|
|
13233
13343
|
|
|
13234
13344
|
## `codiac snapshot tag`
|
|
13235
13345
|
|
|
@@ -13272,7 +13382,7 @@ EXAMPLES
|
|
|
13272
13382
|
$ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
13273
13383
|
```
|
|
13274
13384
|
|
|
13275
|
-
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13385
|
+
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/snapshot/tag.ts)_
|
|
13276
13386
|
|
|
13277
13387
|
## `codiac snapshot untag`
|
|
13278
13388
|
|
|
@@ -13315,7 +13425,7 @@ EXAMPLES
|
|
|
13315
13425
|
$ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
13316
13426
|
```
|
|
13317
13427
|
|
|
13318
|
-
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13428
|
+
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/snapshot/untag.ts)_
|
|
13319
13429
|
|
|
13320
13430
|
## `codiac stage [FILES]`
|
|
13321
13431
|
|
|
@@ -13337,7 +13447,7 @@ DESCRIPTION
|
|
|
13337
13447
|
Flags files to be included in the next commit.
|
|
13338
13448
|
```
|
|
13339
13449
|
|
|
13340
|
-
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13450
|
+
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/stage.ts)_
|
|
13341
13451
|
|
|
13342
13452
|
## `codiac stash [FILE]`
|
|
13343
13453
|
|
|
@@ -13359,7 +13469,7 @@ DESCRIPTION
|
|
|
13359
13469
|
describe the command here
|
|
13360
13470
|
```
|
|
13361
13471
|
|
|
13362
|
-
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13472
|
+
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/stash.ts)_
|
|
13363
13473
|
|
|
13364
13474
|
## `codiac status`
|
|
13365
13475
|
|
|
@@ -13378,7 +13488,7 @@ DESCRIPTION
|
|
|
13378
13488
|
Shows the current uncommitted changes in the current branch.
|
|
13379
13489
|
```
|
|
13380
13490
|
|
|
13381
|
-
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13491
|
+
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/status.ts)_
|
|
13382
13492
|
|
|
13383
13493
|
## `codiac stop`
|
|
13384
13494
|
|
|
@@ -13396,7 +13506,7 @@ DESCRIPTION
|
|
|
13396
13506
|
Stops the running container for this project
|
|
13397
13507
|
```
|
|
13398
13508
|
|
|
13399
|
-
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13509
|
+
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/stop.ts)_
|
|
13400
13510
|
|
|
13401
13511
|
## `codiac switch [NAME]`
|
|
13402
13512
|
|
|
@@ -13416,7 +13526,7 @@ DESCRIPTION
|
|
|
13416
13526
|
Changes branch on the main project and any sourced dependencies.
|
|
13417
13527
|
```
|
|
13418
13528
|
|
|
13419
|
-
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13529
|
+
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/switch.ts)_
|
|
13420
13530
|
|
|
13421
13531
|
## `codiac sync [NAME]`
|
|
13422
13532
|
|
|
@@ -13441,7 +13551,7 @@ DESCRIPTION
|
|
|
13441
13551
|
Merges the given branch into the current branch.
|
|
13442
13552
|
```
|
|
13443
13553
|
|
|
13444
|
-
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13554
|
+
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/sync.ts)_
|
|
13445
13555
|
|
|
13446
13556
|
## `codiac tenant create [NAME]`
|
|
13447
13557
|
|
|
@@ -13484,7 +13594,7 @@ EXAMPLES
|
|
|
13484
13594
|
$ codiac tenant create -n 'Acme Corp' -c acme --to-script
|
|
13485
13595
|
```
|
|
13486
13596
|
|
|
13487
|
-
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13597
|
+
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/tenant/create.ts)_
|
|
13488
13598
|
|
|
13489
13599
|
## `codiac tenant switch [CODE]`
|
|
13490
13600
|
|
|
@@ -13524,7 +13634,7 @@ EXAMPLES
|
|
|
13524
13634
|
$ codiac tenant switch my-tenant-code --to-script
|
|
13525
13635
|
```
|
|
13526
13636
|
|
|
13527
|
-
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13637
|
+
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/tenant/switch.ts)_
|
|
13528
13638
|
|
|
13529
13639
|
## `codiac token [TOKENNAME]`
|
|
13530
13640
|
|
|
@@ -13646,7 +13756,7 @@ DESCRIPTION
|
|
|
13646
13756
|
Flags files to be included in the next commit.
|
|
13647
13757
|
```
|
|
13648
13758
|
|
|
13649
|
-
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13759
|
+
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/unstage.ts)_
|
|
13650
13760
|
|
|
13651
13761
|
## `codiac update [CHANNEL]`
|
|
13652
13762
|
|
|
@@ -13833,7 +13943,7 @@ EXAMPLES
|
|
|
13833
13943
|
$ codiac whereami --to-script
|
|
13834
13944
|
```
|
|
13835
13945
|
|
|
13836
|
-
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13946
|
+
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/whereami.ts)_
|
|
13837
13947
|
|
|
13838
13948
|
## `codiac whoami`
|
|
13839
13949
|
|
|
@@ -13875,5 +13985,5 @@ EXAMPLES
|
|
|
13875
13985
|
$ codiac whoami --to-script
|
|
13876
13986
|
```
|
|
13877
13987
|
|
|
13878
|
-
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13988
|
+
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.263/src/commands/whoami.ts)_
|
|
13879
13989
|
<!-- commandsstop -->
|