mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-05-13 13:02:04 +00:00
Rename collection to kubevirt.core
This replaces all occurences of the old kubernetes.core name. Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
This commit is contained in:
12
README.md
12
README.md
@@ -1,9 +1,9 @@
|
||||
# Lean Ansible bindings for KubeVirt
|
||||
<!-- Add CI and code coverage badges here. Samples included below. -->
|
||||
[](https://github.com/kubevirt/kubernetes.kubevirt/actions)
|
||||
[](https://github.com/kubevirt/kubevirt.core/actions)
|
||||
|
||||
<!-- Describe the collection and why a user would want to use it. What does the collection do? -->
|
||||
This repo hosts the kubernetes.kubevirt Ansible Collection.
|
||||
This repo hosts the kubevirt.core Ansible Collection.
|
||||
|
||||
The collection includes an inventory plugin for Ansible to automate the management of VMs running on KubeVirt.
|
||||
|
||||
@@ -89,25 +89,25 @@ Python libraries:
|
||||
|
||||
Before using this collection, you need to install it with the Ansible Galaxy command-line tool:
|
||||
```bash
|
||||
ansible-galaxy collection install kubernetes.kubevirt
|
||||
ansible-galaxy collection install kubevirt.core
|
||||
```
|
||||
|
||||
You can also include it in a `requirements.yml` file and install it with `ansible-galaxy collection install -r requirements.yml`, using the format:
|
||||
```yaml
|
||||
---
|
||||
collections:
|
||||
- name: kubernetes.kubevirt
|
||||
- name: kubevirt.core
|
||||
```
|
||||
|
||||
Note that if you install the collection from Ansible Galaxy, it will not be upgraded automatically when you upgrade the `ansible` package. To upgrade the collection to the latest available version, run the following command:
|
||||
```bash
|
||||
ansible-galaxy collection install kubernetes.kubevirt --upgrade
|
||||
ansible-galaxy collection install kubevirt.core --upgrade
|
||||
```
|
||||
|
||||
You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax to install version `0.1.0`:
|
||||
|
||||
```bash
|
||||
ansible-galaxy collection install kubernetes.kubevirt:==0.1.0
|
||||
ansible-galaxy collection install kubevirt.core:==0.1.0
|
||||
```
|
||||
|
||||
See [Ansible Using collections](https://docs.ansible.com/ansible/devel/user_guide/collections_using.html) for more details.
|
||||
|
||||
Reference in New Issue
Block a user