diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 471553c..e3bfda1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,21 @@ OKD Collection Release Notes .. contents:: Topics +v0.3.0 +====== + +Major Changes +------------- + +- Add openshift_process module for template rendering and optional application of rendered resources (https://github.com/ansible-collections/community.okd/pull/44). +- Add openshift_route module for creating routes from services (https://github.com/ansible-collections/community.okd/pull/40). + +New Modules +----------- + +- openshift_process - Process an OpenShift template.openshift.io/v1 Template +- openshift_route - Expose a Service as an OpenShift Route. + v0.2.0 ====== diff --git a/Makefile b/Makefile index 89206fb..9bd89c6 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Also needs to be updated in galaxy.yml -VERSION = 0.2.0 +VERSION = 0.3.0 # To run sanity tests in a venv, set SANITY_TEST_ARGS to '--venv' SANITY_TEST_ARGS ?= --docker --color diff --git a/README.md b/README.md index 6f0bcf0..baccb61 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible --- collections: - name: community.okd - version: 0.2.0 + version: 0.3.0 ``` ### Installing the OpenShift Python Library @@ -102,7 +102,11 @@ 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: - 1. Update `galaxy.yml`, this README's `requirements.yml` example, and the `Makefile` with the new `version` for the collection. + 1. Update the version in the following places: + a. The `version` in `galaxy.yml` + b. This README's `requirements.yml` example + c. The `DOWNSTREAM_VERSION` in `ci/downstream.sh` + d. The `VERSION` in `Makefile` 1. Update the CHANGELOG: 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`. diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 1383256..fc1ed95 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -44,3 +44,20 @@ releases: name: openshift_auth namespace: '' release_date: '2020-09-24' + 0.3.0: + changes: + major_changes: + - Add openshift_process module for template rendering and optional application + of rendered resources (https://github.com/ansible-collections/community.okd/pull/44). + - Add openshift_route module for creating routes from services (https://github.com/ansible-collections/community.okd/pull/40). + fragments: + - 40-openshift_route.yml + - 44-openshift_process.yml + modules: + - description: Process an OpenShift template.openshift.io/v1 Template + name: openshift_process + namespace: '' + - description: Expose a Service as an OpenShift Route. + name: openshift_route + namespace: '' + release_date: '2020-10-12' diff --git a/changelogs/fragments/40-openshift_route.yml b/changelogs/fragments/40-openshift_route.yml new file mode 100644 index 0000000..1b4ab37 --- /dev/null +++ b/changelogs/fragments/40-openshift_route.yml @@ -0,0 +1,3 @@ +--- +major_changes: + - Add openshift_route module for creating routes from services (https://github.com/ansible-collections/community.okd/pull/40). diff --git a/changelogs/fragments/44-openshift_process.yml b/changelogs/fragments/44-openshift_process.yml new file mode 100644 index 0000000..059f6e4 --- /dev/null +++ b/changelogs/fragments/44-openshift_process.yml @@ -0,0 +1,3 @@ +--- +major_changes: + - Add openshift_process module for template rendering and optional application of rendered resources (https://github.com/ansible-collections/community.okd/pull/44). diff --git a/ci/downstream.sh b/ci/downstream.sh index c16eac6..cf34d9b 100755 --- a/ci/downstream.sh +++ b/ci/downstream.sh @@ -9,7 +9,7 @@ # - All functions are prefixed with f_ so it's obvious where they come # from when in use throughout the script -DOWNSTREAM_VERSION="0.1.0" +DOWNSTREAM_VERSION="0.3.0" KEEP_DOWNSTREAM_TMPDIR="${KEEP_DOWNSTREAM_TMPDIR:-''}" _build_dir="" diff --git a/galaxy.yml b/galaxy.yml index 54e2fd9..abee46c 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -24,4 +24,4 @@ tags: - okd - cluster # Also needs to be updated in the Makefile -version: 0.2.0 +version: 0.3.0