File tree Expand file tree Collapse file tree 2 files changed +3
-18
lines changed
Expand file tree Collapse file tree 2 files changed +3
-18
lines changed Original file line number Diff line number Diff line change @@ -7,20 +7,6 @@ External hypervisor support is currently being developed.
77See [ the main tracking issue] ( https://github.com/kata-containers/kata-containers/issues/4634 )
88for further details.
99
10- ### Cloud Hypervisor
11-
12- A basic implementation currently exists for Cloud Hypervisor. However,
13- since it is not yet fully functional, the feature is disabled by
14- default. When the implementation matures, the feature will be enabled
15- by default.
16-
17- > ** Note:**
18- >
19- > To enable the feature, follow the instructions on https://github.com/kata-containers/kata-containers/pull/6201 .
20-
21- See the [ Cloud Hypervisor tracking issue] ( https://github.com/kata-containers/kata-containers/issues/6263 )
22- for further details.
23-
2410Some key points for supporting multi-vmm in rust runtime.
2511## 1. Hypervisor Config
2612
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ tracing = "0.1.36"
2828
2929agent = { path = " ../../agent" }
3030common = { path = " ../common" }
31- hypervisor = { path = " ../../hypervisor" }
31+ hypervisor = { path = " ../../hypervisor" , features = [ " cloud-hypervisor " ] }
3232kata-sys-util = { path = " ../../../../libs/kata-sys-util" }
3333kata-types = { path = " ../../../../libs/kata-types" }
3434logging = { path = " ../../../../libs/logging" }
@@ -37,8 +37,7 @@ persist = { path = "../../persist"}
3737resource = { path = " ../../resource" }
3838
3939[features ]
40- default = []
40+ default = [" cloud-hypervisor " ]
4141
42- # Feature is not yet complete, so not enabled by default.
43- # See https://github.com/kata-containers/kata-containers/issues/6264.
42+ # Enable the Cloud Hypervisor driver
4443cloud-hypervisor = []
You can’t perform that action at this time.
0 commit comments