mirror of
https://github.com/openshift/community.okd.git
synced 2026-07-29 02:44:32 +00:00
@@ -5,6 +5,21 @@ OKD Collection Release Notes
|
|||||||
.. contents:: Topics
|
.. 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
|
v0.2.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.2.0
|
VERSION = 0.3.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
|
||||||
|
|||||||
@@ -36,7 +36,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.2.0
|
version: 0.3.0
|
||||||
```
|
```
|
||||||
|
|
||||||
### Installing the OpenShift Python Library
|
### 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:
|
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. 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`.
|
||||||
|
|||||||
@@ -44,3 +44,20 @@ releases:
|
|||||||
name: openshift_auth
|
name: openshift_auth
|
||||||
namespace: ''
|
namespace: ''
|
||||||
release_date: '2020-09-24'
|
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'
|
||||||
|
|||||||
3
changelogs/fragments/40-openshift_route.yml
Normal file
3
changelogs/fragments/40-openshift_route.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
major_changes:
|
||||||
|
- Add openshift_route module for creating routes from services (https://github.com/ansible-collections/community.okd/pull/40).
|
||||||
3
changelogs/fragments/44-openshift_process.yml
Normal file
3
changelogs/fragments/44-openshift_process.yml
Normal file
@@ -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).
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
# - All functions are prefixed with f_ so it's obvious where they come
|
# - All functions are prefixed with f_ so it's obvious where they come
|
||||||
# from when in use throughout the script
|
# from when in use throughout the script
|
||||||
|
|
||||||
DOWNSTREAM_VERSION="0.1.0"
|
DOWNSTREAM_VERSION="0.3.0"
|
||||||
KEEP_DOWNSTREAM_TMPDIR="${KEEP_DOWNSTREAM_TMPDIR:-''}"
|
KEEP_DOWNSTREAM_TMPDIR="${KEEP_DOWNSTREAM_TMPDIR:-''}"
|
||||||
_build_dir=""
|
_build_dir=""
|
||||||
|
|
||||||
|
|||||||
@@ -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.2.0
|
version: 0.3.0
|
||||||
|
|||||||
Reference in New Issue
Block a user