Skip to content

Commit 0a9f7ea

Browse files
authored
0.16.0+2.1.4 (#37)
* set min_ansible_version to 2.15 * update .gitignore * update .yamllint * fix ansible-lint issues
1 parent bc56f38 commit 0a9f7ea

File tree

7 files changed

+42
-10
lines changed

7 files changed

+42
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33

44
molecule/kvm/.vagrant
55
.vscode
6+
.ansible

.yamllint

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,13 @@ rules:
88
line-length:
99
max: 300
1010
level: warning
11+
12+
comments-indentation: disable
13+
comments:
14+
min-spaces-from-content: 1
15+
braces:
16+
min-spaces-inside: 0
17+
max-spaces-inside: 1
18+
octal-values:
19+
forbid-implicit-octal: true
20+
forbid-explicit-octal: true

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ SPDX-License-Identifier: GPL-3.0-or-later
55

66
# Changelog
77

8+
## 0.16.0+2.1.4
9+
10+
- **Breaking**
11+
- `meta/main.yml`: Change `min_ansible_version` to 2.15. Ansible 2.9 is end-of-life (EOL).
12+
13+
- **UPDATE**
14+
- update `containerd` to `v2.1.4`
15+
- update `.gitignore`
16+
- update `.yamllint`
17+
- fix `ansible-lint` issues
18+
819
## 0.15.0+2.1.3
920

1021
- **UPDATE**

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@ See full [CHANGELOG](https://github.com/githubixx/ansible-role-containerd/blob/m
1515

1616
**Recent changes:**
1717

18+
## 0.16.0+2.1.4
19+
20+
- **Breaking**
21+
- `meta/main.yml`: Change `min_ansible_version` to 2.15. Ansible 2.9 is end-of-life (EOL).
22+
23+
- **UPDATE**
24+
- update `containerd` to `v2.1.4`
25+
- update `.gitignore`
26+
- update `.yamllint`
27+
- fix `ansible-lint` issues
28+
1829
## 0.15.0+2.1.3
1930

2031
- **UPDATE**
@@ -56,7 +67,7 @@ See full [CHANGELOG](https://github.com/githubixx/ansible-role-containerd/blob/m
5667
roles:
5768
- name: githubixx.containerd
5869
src: https://github.com/githubixx/ansible-role-containerd.git
59-
version: 0.15.0+2.1.3
70+
version: 0.16.0+2.1.4
6071
```
6172
6273
## Role Variables
@@ -66,7 +77,7 @@ roles:
6677
containerd_flavor: "base"
6778

6879
# containerd version to install
69-
containerd_version: "2.1.3"
80+
containerd_version: "2.1.4"
7081

7182
# Directory where to store "containerd" binaries
7283
containerd_binary_directory: "/usr/local/bin"

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
containerd_flavor: "base"
77

88
# containerd version to install
9-
containerd_version: "2.1.3"
9+
containerd_version: "2.1.4"
1010

1111
# Directory where to store "containerd" binaries
1212
containerd_binary_directory: "/usr/local/bin"

meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@ galaxy_info:
66
author: Robert Wimmer
77
description: Ansible role to install containerd
88
license: GPLv3
9-
min_ansible_version: "2.9"
9+
min_ansible_version: "2.15"
1010
role_name: containerd
1111
namespace: githubixx
1212
platforms:
1313
- name: ArchLinux
1414
- name: Ubuntu
1515
versions:
16-
- "focal"
1716
- "jammy"
1817
- "noble"
1918
galaxy_tags:

tasks/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
ansible.builtin.file:
1313
path: "{{ containerd_tmp_directory }}"
1414
state: directory
15-
mode: 0700
15+
mode: "0700"
1616
owner: root
1717
group: root
1818
tags:
@@ -24,7 +24,7 @@
2424
url: "{{ containerd_url }}"
2525
dest: "{{ containerd_tmp_directory }}/containerd.tar.gz"
2626
checksum: "sha256:{{ containerd_url }}.sha256sum"
27-
mode: 0600
27+
mode: "0600"
2828
tags:
2929
- containerd-install
3030
- containerd-download
@@ -58,7 +58,7 @@
5858
ansible.builtin.file:
5959
path: "{{ containerd_config_directory }}"
6060
state: directory
61-
mode: 0755
61+
mode: "0755"
6262
owner: root
6363
group: root
6464
tags:
@@ -71,7 +71,7 @@
7171
dest: "{{ containerd_config_directory }}/config.toml"
7272
owner: root
7373
group: root
74-
mode: 0644
74+
mode: "0644"
7575
notify:
7676
- Restart containerd
7777
tags:
@@ -109,7 +109,7 @@
109109
dest: /etc/systemd/system/containerd.service
110110
owner: root
111111
group: root
112-
mode: 0644
112+
mode: "0644"
113113
notify:
114114
- Reload systemd
115115
- Restart containerd

0 commit comments

Comments
 (0)