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:
Felix Matouschek
2023-08-03 11:22:57 +02:00
parent 874003ed14
commit 38c76a9545
18 changed files with 46 additions and 46 deletions

View File

@@ -1,9 +1,9 @@
# Lean Ansible bindings for KubeVirt
<!-- Add CI and code coverage badges here. Samples included below. -->
[![CI](https://github.com/kubevirt/kubernetes.kubevirt/workflows/CI/badge.svg?event=push)](https://github.com/kubevirt/kubernetes.kubevirt/actions)
[![CI](https://github.com/kubevirt/kubevirt.core/workflows/CI/badge.svg?event=push)](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.