Skip to content

Commit de649cd

Browse files
authored
Merge pull request #26 from gnawux/qa
Slightly reorg, and add a QA page for runtime
2 parents cef7766 + e92ae2f commit de649cd

File tree

5 files changed

+28
-3
lines changed

5 files changed

+28
-3
lines changed

Diff for: SUMMARY.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88
* [ Packet ](performance/perf-on-packet.md)
99
* [Get Started](get_started/README.md)
1010
* [Install](get_started/install.md)
11-
* [Linux](get_started/install/linux.md)
11+
* [Binary Packages](get_started/install/linux.md)
1212
* [Build from source](get_started/install/build.md)
13-
* [Pod](get_started/pod.md)
1413
* [Lifecycle](get_started/lifecycle.md)
1514
* [OCI Image Spec](get_started/oci_image.md)
15+
* [HyperContainer Internals](internal/README.md)
16+
* [Pod in HyperContainer](internal/pod.md)
17+
* [HyperContainer Q&A](internal/q_a.md)
1618
* [Reference](reference/README.md)
1719
* [Hyperd Config](reference/configuration.md)
1820
* [CLI](reference/cli.md)

Diff for: get_started/install/linux.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Install with Binary Packages
2+
13
## Requirements
24

35
- Hypervisor: at least one of
@@ -9,7 +11,7 @@
911
[the current version](../../release_notes/latest.md) supports the following Linux distros:
1012

1113
- Ubuntu ( > 14.04 )
12-
- CentOS/RHEL 7.x
14+
- CentOS/RHEL ( 7.x )
1315
- Fedora ( > 23 )
1416
- Debian ( > 7.0 )
1517

Diff for: internal/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# HyperContainer Internals
2+
3+
## [Pod in HyperContainer](pod.md)
4+
## [HyperContainer Q&A](q_a.md)

Diff for: get_started/pod.md renamed to internal/pod.md

File renamed without changes.

Diff for: internal/q_a.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# HyperContainer Q&A
2+
3+
## Isolation and Resource Provision
4+
5+
#### Where will be applied my resource constraints which I given in the POD definition? On container level, VM level or both?
6+
7+
A pod of hypercontainer is run in a VM, and the resource constraints are applied to a pod (vm).
8+
9+
> Source: ([hyperhq/hyperd#538][hyperhq/hyperd#538])
10+
11+
#### Can I scale in/out any kind of resources (e.g. adding more RAM or CPU)?
12+
13+
The memory and cpu are hotplug-able, however, we don't scale these resources now.
14+
15+
> Source: ([hyperhq/hyperd#538][hyperhq/hyperd#538])
16+
17+
[hyperhq/hyperd#538]:https://github.com/hyperhq/hyperd/issues/538

0 commit comments

Comments
 (0)