mirror of
https://github.com/openshift/community.okd.git
synced 2026-07-29 19:04:32 +00:00
Prepare to publish 0.2.0 release to Galaxy (#39)
* Issue #38: Add version_added to new openshift_auth module. * Fixes #38: Prepare for 0.2.0 release on Galaxy.
This commit is contained in:
@@ -5,6 +5,25 @@ OKD Collection Release Notes
|
|||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v0.2.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Major Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- openshift_auth - new module (migrated from k8s_auth in community.kubernetes) (https://github.com/ansible-collections/community.okd/pull/33).
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Add a contribution guide (https://github.com/ansible-collections/community.okd/pull/37).
|
||||||
|
- Use the API Group APIVersion for the `Route` object (https://github.com/ansible-collections/community.okd/pull/27).
|
||||||
|
|
||||||
|
New Modules
|
||||||
|
-----------
|
||||||
|
|
||||||
|
- openshift_auth - Authenticate to OpenShift clusters which require an explicit login step
|
||||||
|
|
||||||
v0.1.0
|
v0.1.0
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|||||||
2
Makefile
2
Makefile
@@ -1,5 +1,5 @@
|
|||||||
# Also needs to be updated in galaxy.yml
|
# Also needs to be updated in galaxy.yml
|
||||||
VERSION = 0.1.0
|
VERSION = 0.2.0
|
||||||
|
|
||||||
# To run sanity tests in a venv, set SANITY_TEST_ARGS to '--venv'
|
# To run sanity tests in a venv, set SANITY_TEST_ARGS to '--venv'
|
||||||
SANITY_TEST_ARGS ?= --docker --color
|
SANITY_TEST_ARGS ?= --docker --color
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ Click on the name of a plugin or module to view that content's documentation:
|
|||||||
- [openshift](https://docs.ansible.com/ansible/2.10/collections/community/kubernetes/openshift_inventory.html)
|
- [openshift](https://docs.ansible.com/ansible/2.10/collections/community/kubernetes/openshift_inventory.html)
|
||||||
- **Modules**:
|
- **Modules**:
|
||||||
- [k8s](https://docs.ansible.com/ansible/2.10/collections/community/kubernetes/k8s_inventory.html)
|
- [k8s](https://docs.ansible.com/ansible/2.10/collections/community/kubernetes/k8s_inventory.html)
|
||||||
|
- [openshift_auth](https://github.com/ansible-collections/community.okd/blob/main/plugins/modules/openshift_auth.py)
|
||||||
|
|
||||||
> **Note**: These documentation links currently link to older module versions. For the latest module documentation, please use `ansible-doc` in the CLI.
|
> **Note**: These documentation links currently link to older module versions. For the latest module documentation, please use `ansible-doc` in the CLI.
|
||||||
|
|
||||||
@@ -33,7 +34,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible
|
|||||||
---
|
---
|
||||||
collections:
|
collections:
|
||||||
- name: community.okd
|
- name: community.okd
|
||||||
version: 0.1.0
|
version: 0.2.0
|
||||||
```
|
```
|
||||||
|
|
||||||
### Installing the OpenShift Python Library
|
### Installing the OpenShift Python Library
|
||||||
@@ -99,7 +100,7 @@ where the `IMAGE_FORMAT` environment variable is the full reference to your cont
|
|||||||
|
|
||||||
Releases are automatically built and pushed to Ansible Galaxy for any new tag. Before tagging a release, make sure to do the following:
|
Releases are automatically built and pushed to Ansible Galaxy for any new tag. Before tagging a release, make sure to do the following:
|
||||||
|
|
||||||
1. Update `galaxy.yml` and this README's `requirements.yml` example with the new `version` for the collection.
|
1. Update `galaxy.yml`, this README's `requirements.yml` example, and the `Makefile` with the new `version` for the collection.
|
||||||
1. Update the CHANGELOG:
|
1. Update the CHANGELOG:
|
||||||
1. Make sure you have [`antsibull-changelog`](https://pypi.org/project/antsibull-changelog/) installed.
|
1. Make sure you have [`antsibull-changelog`](https://pypi.org/project/antsibull-changelog/) installed.
|
||||||
1. Make sure there are fragments for all known changes in `changelogs/fragments`.
|
1. Make sure there are fragments for all known changes in `changelogs/fragments`.
|
||||||
|
|||||||
@@ -26,3 +26,21 @@ releases:
|
|||||||
- 7-molecule-tests.yml
|
- 7-molecule-tests.yml
|
||||||
- 8-stale-bot.yml
|
- 8-stale-bot.yml
|
||||||
release_date: '2020-09-04'
|
release_date: '2020-09-04'
|
||||||
|
0.2.0:
|
||||||
|
changes:
|
||||||
|
major_changes:
|
||||||
|
- openshift_auth - new module (migrated from k8s_auth in community.kubernetes)
|
||||||
|
(https://github.com/ansible-collections/community.okd/pull/33).
|
||||||
|
minor_changes:
|
||||||
|
- Add a contribution guide (https://github.com/ansible-collections/community.okd/pull/37).
|
||||||
|
- Use the API Group APIVersion for the `Route` object (https://github.com/ansible-collections/community.okd/pull/27).
|
||||||
|
fragments:
|
||||||
|
- 27-route-api-group.yml
|
||||||
|
- 33-add-k8s_auth.yml
|
||||||
|
- 36-contribution-guide.yml
|
||||||
|
modules:
|
||||||
|
- description: Authenticate to OpenShift clusters which require an explicit login
|
||||||
|
step
|
||||||
|
name: openshift_auth
|
||||||
|
namespace: ''
|
||||||
|
release_date: '2020-09-24'
|
||||||
|
|||||||
3
changelogs/fragments/27-route-api-group.yml
Normal file
3
changelogs/fragments/27-route-api-group.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
minor_changes:
|
||||||
|
- Use the API Group APIVersion for the `Route` object (https://github.com/ansible-collections/community.okd/pull/27).
|
||||||
3
changelogs/fragments/33-add-k8s_auth.yml
Normal file
3
changelogs/fragments/33-add-k8s_auth.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
major_changes:
|
||||||
|
- openshift_auth - new module (migrated from k8s_auth in community.kubernetes) (https://github.com/ansible-collections/community.okd/pull/33).
|
||||||
3
changelogs/fragments/36-contribution-guide.yml
Normal file
3
changelogs/fragments/36-contribution-guide.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
minor_changes:
|
||||||
|
- Add a contribution guide (https://github.com/ansible-collections/community.okd/pull/37).
|
||||||
@@ -24,4 +24,4 @@ tags:
|
|||||||
- okd
|
- okd
|
||||||
- cluster
|
- cluster
|
||||||
# Also needs to be updated in the Makefile
|
# Also needs to be updated in the Makefile
|
||||||
version: 0.1.0
|
version: 0.2.0
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ module: openshift_auth
|
|||||||
|
|
||||||
short_description: Authenticate to OpenShift clusters which require an explicit login step
|
short_description: Authenticate to OpenShift clusters which require an explicit login step
|
||||||
|
|
||||||
|
version_added: "0.2.0"
|
||||||
|
|
||||||
author:
|
author:
|
||||||
- KubeVirt Team (@kubevirt)
|
- KubeVirt Team (@kubevirt)
|
||||||
- Fabian von Feilitzsch (@fabianvf)
|
- Fabian von Feilitzsch (@fabianvf)
|
||||||
|
|||||||
Reference in New Issue
Block a user