File tree Expand file tree Collapse file tree 7 files changed +42
-10
lines changed
Expand file tree Collapse file tree 7 files changed +42
-10
lines changed Original file line number Diff line number Diff line change 33
44molecule /kvm /.vagrant
55.vscode
6+ .ansible
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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**
Original file line number Diff line number Diff 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
5667roles :
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
6677containerd_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
7283containerd_binary_directory : " /usr/local/bin"
Original file line number Diff line number Diff line change 66containerd_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
1212containerd_binary_directory : " /usr/local/bin"
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 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 :
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
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 :
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 :
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
You can’t perform that action at this time.
0 commit comments