-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
42b7813
commit f139c62
Showing
4 changed files
with
299 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
title: "1.1 KubeVirt Configuration" | ||
weight: 110 | ||
labfoldernumber: "01" | ||
sectionnumber: 1.1 | ||
description: > | ||
Kubevirt Configuration | ||
--- | ||
|
||
|
||
## KubeVirt Installation | ||
|
||
On the kubernetes cluster used for this training the following operators have been installed. | ||
|
||
| Operator Name | Namespace | | ||
|----------------------------------|------------| | ||
| KubeVirt | kubevirt | | ||
| Containerized Data Impoter (CDI) | cdi | | ||
|
||
As the configuration and the required feature flags are subject to change we are referencing them on every section. | ||
|
||
|
||
### Emulation | ||
|
||
This cluster is using emulation. | ||
```yaml | ||
apiVersion: kubevirt.io/v1 | ||
kind: KubeVirt | ||
metadata: | ||
name: kubevirt | ||
namespace: kubevirt | ||
spec: | ||
configuration: | ||
developerConfiguration: | ||
useEmulation: true | ||
[...] | ||
``` | ||
|
||
|
||
### Enabled FeatureFlags | ||
|
||
In the cluster the following kubevirt feature flags are enabled. | ||
|
||
```yaml | ||
apiVersion: kubevirt.io/v1 | ||
kind: KubeVirt | ||
metadata: | ||
name: kubevirt | ||
namespace: kubevirt | ||
spec: | ||
configuration: | ||
developerConfiguration: | ||
featureGates: | ||
- Sidecar | ||
- CommonInstancetypesDeploymentGate | ||
- ExperimentalIgnitionSupport | ||
- HotplugVolumes | ||
- ExpandDisks | ||
- Snapshot | ||
- VMExport | ||
``` | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.