UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
README.md 1.53 KiB
Newer Older
runyontr's avatar
runyontr committed
# Kubevirt
[KubeVirt](https://kubevirt.io) is a CNCF incubating project hosted on [github](https://github.com/kubevirt/kubevirt) to run virtual machines in Kubernetes.
runyontr's avatar
runyontr committed

## Description
andrew.greene's avatar
andrew.greene committed
 Run virtual machines in Kubernetes, full integration with Big Bang is in progress.
runyontr's avatar
runyontr committed

## Badges
andrew.greene's avatar
andrew.greene committed
*coming soon...*
runyontr's avatar
runyontr committed

## Visuals
andrew.greene's avatar
andrew.greene committed
*coming soon...*
runyontr's avatar
runyontr committed

## Installation
andrew.greene's avatar
andrew.greene committed
*coming soon...*
runyontr's avatar
runyontr committed

## Usage
### Helm
#### Installing
```shell
helm install kv ./chart --create-namespace --namespace=kubevirt
```
With default values, Kubevirt will deploy the following:
- 2 virt-operators pods
- 2 virt-api pods
- 2 virt-controllers pods
- 3 virt-handlers pods
- 13 custom resource definitions

#### Removing
Per KubeVirt documentation the kubevirt custom resource should be deleted prior to removal of the operator.
```shell
kubectl delete -n kubevirt kubevirt kubevirt --wait=true
helm uninstall kubevirt --namespace=kubevirt
kubectl delete ns kubevirt
kubectl delete crd kubevirts.kubevirt.io
```
andrew.greene's avatar
andrew.greene committed

### Updating the KubeVirt Big Bang Chart
The helm chart needs to be created from raw manifests, as no equivalent alternative is publicly supported.
1. Generate the chart manifests
```shell
export VERSION=x.y.z # must manually set version 
make update-chart 
make clean
```
2. Review changes, update, and commit
runyontr's avatar
runyontr committed

## Support
andrew.greene's avatar
andrew.greene committed
*coming soon...*
runyontr's avatar
runyontr committed

## Roadmap
andrew.greene's avatar
andrew.greene committed
*coming soon...*
runyontr's avatar
runyontr committed

## Contributing
The KubeVirt package is open to contribution, view our [CONTRIBUTING.md](CONTRIBUTING.MD) guide for details.
runyontr's avatar
runyontr committed

## License
andrew.greene's avatar
andrew.greene committed
This project uses the [Apache License version 2.0](LICENSE)
runyontr's avatar
runyontr committed

## Project status
andrew.greene's avatar
andrew.greene committed
Active Development