Skip to content

Commit 8b146d9

Browse files
authored
release 2.2.0 (#86)
1 parent c0e3892 commit 8b146d9

File tree

11 files changed

+61
-34
lines changed

11 files changed

+61
-34
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
python-version:
22-
- 3.6
23-
- 2.7
22+
- 3.8
2423
group:
2524
- 1
2625
- 2

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ Apache CloudStack Collection Release Notes
55
.. contents:: Topics
66

77

8+
v2.2.0
9+
======
10+
11+
Minor Changes
12+
-------------
13+
14+
- cs_instance - add support for MAC address and IPv6 in ``ip_to_networks`` (https://github.com/ngine-io/ansible-collection-cloudstack/issues/78).
15+
- cs_instance_info - implemented support for ``host`` filter (https://github.com/ngine-io/ansible-collection-cloudstack/pull/83).
16+
- cs_network_offering - implemented support for ``tags``, ``zones`` and ``domains`` (https://github.com/ngine-io/ansible-collection-cloudstack/pull/82).
17+
18+
Bugfixes
19+
--------
20+
21+
- cs_instance - Fixed custom service offerings usage (https://github.com/ngine-io/ansible-collection-cloudstack/issues/79).
22+
823
v2.1.0
924
======
1025

changelogs/changelog.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,18 @@ releases:
7171
name: instance
7272
namespace: null
7373
release_date: '2021-04-12'
74+
2.2.0:
75+
changes:
76+
bugfixes:
77+
- cs_instance - Fixed custom service offerings usage (https://github.com/ngine-io/ansible-collection-cloudstack/issues/79).
78+
minor_changes:
79+
- cs_instance - add support for MAC address and IPv6 in ``ip_to_networks`` (https://github.com/ngine-io/ansible-collection-cloudstack/issues/78).
80+
- cs_instance_info - implemented support for ``host`` filter (https://github.com/ngine-io/ansible-collection-cloudstack/pull/83).
81+
- cs_network_offering - implemented support for ``tags``, ``zones`` and ``domains``
82+
(https://github.com/ngine-io/ansible-collection-cloudstack/pull/82).
83+
fragments:
84+
- 78-cs_instance_extend_ip_to_networks.yml
85+
- 79-cs_instance_fix_details.yml
86+
- 82-cs_network_offering_new_args.yml
87+
- 83-cs_instance_info_host_filter.yml
88+
release_date: '2021-09-01'

changelogs/fragments/78-cs_instance_extend_ip_to_networks.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/79-cs_instance_fix_details.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/82-cs_network_offering_new_args.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/83-cs_instance_info_host_filter.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ tags:
2323
- cloud
2424
- cloudstack
2525
- ngine_io
26-
version: 2.1.0
26+
version: 2.2.0

tests/integration/targets/cs_common/tasks/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
---
2+
- name: install cs
3+
pip:
4+
name:
5+
- cs
6+
- sshpubkeys
7+
28
- name: wait for system template available
39
cs_template:
410
name: "{{ cs_common_template }}"

tests/integration/targets/cs_vpn_connection/tasks/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cs_vpc:
44
name: my_vpc
55
display_text: my_vpc
6-
cidr: 10.10.1.0/16
6+
cidr: 10.79.1.1/16
77
zone: "{{ cs_common_zone_adv }}"
88
register: vpc
99
- name: verify setup vpc
@@ -14,11 +14,11 @@
1414
- name: setup customer gateway
1515
cs_vpn_customer_gateway:
1616
name: my_vpn_customer_gateway
17-
cidr: 192.168.123.0/24
17+
cidr: 192.168.79.0/24
1818
esp_policy: aes256-sha1;modp1536
19-
gateway: 10.11.1.1
19+
gateway: 10.79.1.1
2020
ike_policy: aes256-sha1;modp1536
21-
ipsec_psk: ~S3¢r3Tk3Y¼
21+
ipsec_psk: verysecurepassphrase
2222
esp_lifetime: 3600
2323
register: vcg
2424
- name: setup customer gateway

0 commit comments

Comments
 (0)