mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-05-12 20:42:08 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8280bb78c0 | ||
|
|
2eca446f09 | ||
|
|
cd72b6d7df | ||
|
|
b50f1f2fc9 |
@@ -5,6 +5,15 @@ Kubernetes Collection Release Notes
|
|||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v2.1.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- remove cloud.common as default dependency (https://github.com/ansible-collections/kubernetes.core/pull/148).
|
||||||
|
- temporarily disable turbo mode (https://github.com/ansible-collections/kubernetes.core/pull/149).
|
||||||
|
|
||||||
v2.0.2
|
v2.0.2
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|||||||
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 = 2.0.2
|
VERSION = 2.1.0
|
||||||
|
|
||||||
TEST_ARGS ?= ""
|
TEST_ARGS ?= ""
|
||||||
PYTHON_VERSION ?= `python -c 'import platform; print("{0}.{1}".format(platform.python_version_tuple()[0], platform.python_version_tuple()[1]))'`
|
PYTHON_VERSION ?= `python -c 'import platform; print("{0}.{1}".format(platform.python_version_tuple()[0], platform.python_version_tuple()[1]))'`
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible
|
|||||||
---
|
---
|
||||||
collections:
|
collections:
|
||||||
- name: kubernetes.core
|
- name: kubernetes.core
|
||||||
version: 2.0.2
|
version: 2.1.0
|
||||||
```
|
```
|
||||||
|
|
||||||
### Installing the Kubernetes Python Library
|
### Installing the Kubernetes Python Library
|
||||||
@@ -159,11 +159,6 @@ If upgrading older playbooks which were built prior to Ansible 2.10 and this col
|
|||||||
|
|
||||||
For documentation on how to use individual modules and other content included in this collection, please see the links in the 'Included content' section earlier in this README.
|
For documentation on how to use individual modules and other content included in this collection, please see the links in the 'Included content' section earlier in this README.
|
||||||
|
|
||||||
## Ansible Turbo mode
|
|
||||||
|
|
||||||
The ``kubernetes.core`` collection supports Ansible Turbo mode via ``cloud.common`` collection. Please read more about Ansible Turbo mode - [here](https://github.com/ansible-collections/kubernetes.core/blob/main/docs/ansible_turbo_mode.rst).
|
|
||||||
|
|
||||||
|
|
||||||
## Testing and Development
|
## Testing and Development
|
||||||
|
|
||||||
If you want to develop new content for this collection or improve what's already here, the easiest way to work on the collection is to clone it into one of the configured [`COLLECTIONS_PATHS`](https://docs.ansible.com/ansible/latest/reference_appendices/config.html#collections-paths), and work on it there.
|
If you want to develop new content for this collection or improve what's already here, the easiest way to work on the collection is to clone it into one of the configured [`COLLECTIONS_PATHS`](https://docs.ansible.com/ansible/latest/reference_appendices/config.html#collections-paths), and work on it there.
|
||||||
|
|||||||
@@ -413,3 +413,12 @@ releases:
|
|||||||
- 129-k8s-fix-apply-array-with-empty-dict.yml
|
- 129-k8s-fix-apply-array-with-empty-dict.yml
|
||||||
- 135-rename-apply-function.yml
|
- 135-rename-apply-function.yml
|
||||||
release_date: '2021-06-16'
|
release_date: '2021-06-16'
|
||||||
|
2.1.0:
|
||||||
|
changes:
|
||||||
|
minor_changes:
|
||||||
|
- remove cloud.common as default dependency (https://github.com/ansible-collections/kubernetes.core/pull/148).
|
||||||
|
- temporarily disable turbo mode (https://github.com/ansible-collections/kubernetes.core/pull/149).
|
||||||
|
fragments:
|
||||||
|
- 148-remove-cloud-common-dependency.yaml
|
||||||
|
- 149-disable-turbo-mode.yaml
|
||||||
|
release_date: '2021-06-23'
|
||||||
|
|||||||
@@ -8,8 +8,6 @@ authors:
|
|||||||
- willthames (https://github.com/willthames)
|
- willthames (https://github.com/willthames)
|
||||||
- mmazur (https://github.com/mmazur)
|
- mmazur (https://github.com/mmazur)
|
||||||
- jamescassell (https://github.com/jamescassell)
|
- jamescassell (https://github.com/jamescassell)
|
||||||
dependencies:
|
|
||||||
cloud.common: '>=2.0.1'
|
|
||||||
description: Kubernetes Collection for Ansible.
|
description: Kubernetes Collection for Ansible.
|
||||||
documentation: ''
|
documentation: ''
|
||||||
homepage: ''
|
homepage: ''
|
||||||
@@ -27,7 +25,7 @@ tags:
|
|||||||
- openshift
|
- openshift
|
||||||
- okd
|
- okd
|
||||||
- cluster
|
- cluster
|
||||||
version: 2.0.2
|
version: 2.1.0
|
||||||
build_ignore:
|
build_ignore:
|
||||||
- .DS_Store
|
- .DS_Store
|
||||||
- '*.tar.gz'
|
- '*.tar.gz'
|
||||||
|
|||||||
@@ -46,6 +46,9 @@
|
|||||||
wait: yes
|
wait: yes
|
||||||
wait_timeout: 100
|
wait_timeout: 100
|
||||||
register: job
|
register: job
|
||||||
|
until: job.resources[0].status.phase == "Running"
|
||||||
|
retries: 5
|
||||||
|
delay: 10
|
||||||
|
|
||||||
- name: Assert job's pod is running
|
- name: Assert job's pod is running
|
||||||
assert:
|
assert:
|
||||||
@@ -87,6 +90,9 @@
|
|||||||
wait: yes
|
wait: yes
|
||||||
wait_timeout: 100
|
wait_timeout: 100
|
||||||
register: job
|
register: job
|
||||||
|
until: job.resources[0].status.phase == "Running"
|
||||||
|
retries: 5
|
||||||
|
delay: 10
|
||||||
|
|
||||||
- name: Assert job's pod is running
|
- name: Assert job's pod is running
|
||||||
assert:
|
assert:
|
||||||
@@ -129,6 +135,9 @@
|
|||||||
wait: yes
|
wait: yes
|
||||||
wait_timeout: 100
|
wait_timeout: 100
|
||||||
register: job
|
register: job
|
||||||
|
until: job.resources[0].status.phase == "Running"
|
||||||
|
retries: 5
|
||||||
|
delay: 10
|
||||||
|
|
||||||
- name: Assert job's pod is running
|
- name: Assert job's pod is running
|
||||||
assert:
|
assert:
|
||||||
|
|||||||
@@ -3,10 +3,4 @@ from __future__ import (absolute_import, division, print_function)
|
|||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
try:
|
|
||||||
from ansible_collections.cloud.common.plugins.module_utils.turbo.module import (
|
|
||||||
AnsibleTurboModule as AnsibleModule,
|
|
||||||
) # noqa: F401
|
|
||||||
AnsibleModule.collection_name = "kubernetes.core"
|
|
||||||
except ImportError:
|
|
||||||
from ansible.module_utils.basic import AnsibleModule # noqa: F401
|
from ansible.module_utils.basic import AnsibleModule # noqa: F401
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
collections:
|
|
||||||
- cloud.common
|
|
||||||
Reference in New Issue
Block a user