Skip to content

Commit

Permalink
13.1.1+3.5.13 (#35)
Browse files Browse the repository at this point in the history
* update etcd to v3.5.13

* Molecule: change IP addresses

* update Github workflow

* update CHANGELOG
  • Loading branch information
githubixx authored Apr 4, 2024
1 parent 165364d commit 58b9671
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,4 @@ jobs:

- name: Trigger a new import on Galaxy.
run: >-
ansible-galaxy role import --api-key ${{ secrets.GALAXY_API_KEY }}
$(echo ${{ github.repository }} | cut -d/ -f1) $(echo ${{ github.repository }} | cut -d/ -f2)
ansible-galaxy role import --token ${{ secrets.GALAXY_API_KEY }} -vvvvvvvv --role-name=$(echo ${{ github.repository }} | cut -d/ -f2 | sed 's/ansible-role-//' | sed 's/-/_/') $(echo ${{ github.repository }} | cut -d/ -f1) $(echo ${{ github.repository }} | cut -d/ -f2
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
---------

**13.1.1+3.5.13**

- update `etcd` to `v3.5.13`
- update Github workflow
- Molecule: change IP addresses

**13.1.0+3.5.9**

- `systemd` service `etcd` should start after network is online
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Upgrading a etcd cluster which was installed by this role is described in [here]
Versions
--------

I tag every release and try to stay with [semantic versioning](http://semver.org). If you want to use the role I recommend to checkout the latest tag. The master branch is basically development while the tags mark stable releases. But in general I try to keep master in good shape too. A tag `13.0.0+3.5.9` means this is release `13.0.0` of this role and it's meant to be used with etcd version `3.5.9` (but should work with newer versions also). If the role itself changes `X.Y.Z` before `+` will increase. If the etcd version changes `X.Y.Z` after `+` will increase. This allows to tag bugfixes and new major versions of the role while it's still developed for a specific etcd release.
I tag every release and try to stay with [semantic versioning](http://semver.org). If you want to use the role I recommend to checkout the latest tag. The master branch is basically development while the tags mark stable releases. But in general I try to keep master in good shape too. A tag `13.1.1+3.5.13` means this is release `13.1.1` of this role and it's meant to be used with etcd version `3.5.13` (but should work with newer versions also). If the role itself changes `X.Y.Z` before `+` will increase. If the etcd version changes `X.Y.Z` after `+` will increase. This allows to tag bugfixes and new major versions of the role while it's still developed for a specific etcd release.

Changelog
---------
Expand All @@ -38,7 +38,7 @@ etcd_ca_conf_directory: "{{ '~/etcd-certificates' | expanduser }}"
etcd_ansible_group: "k8s_etcd"

# etcd version
etcd_version: "3.5.9"
etcd_version: "3.5.13"

# Port where etcd listening for clients
etcd_client_port: "2379"
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ etcd_ca_conf_directory: "{{ '~/etcd-certificates' | expanduser }}"
etcd_ansible_group: "k8s_etcd"

# etcd version
etcd_version: "3.5.9"
etcd_version: "3.5.13"

# Port where etcd listening for clients
etcd_client_port: "2379"
Expand Down
8 changes: 4 additions & 4 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
# Copyright (C) 2022 Robert Wimmer
# Copyright (C) 2024 Robert Wimmer
# SPDX-License-Identifier: GPL-3.0-or-later

dependency:
Expand All @@ -24,7 +24,7 @@ platforms:
- auto_config: true
network_name: private_network
type: static
ip: 192.168.10.10
ip: 172.16.10.10
- name: test-etcd2-ubuntu2004
box: generic/ubuntu2004
memory: 2048
Expand All @@ -37,7 +37,7 @@ platforms:
- auto_config: true
network_name: private_network
type: static
ip: 192.168.10.20
ip: 172.16.10.20
- name: test-etcd3-ubuntu2004
box: generic/ubuntu2004
memory: 2048
Expand All @@ -50,7 +50,7 @@ platforms:
- auto_config: true
network_name: private_network
type: static
ip: 192.168.10.30
ip: 172.16.10.30

provisioner:
name: ansible
Expand Down

0 comments on commit 58b9671

Please sign in to comment.