diff --git a/README.md b/README.md index 748b96c..ef98dbe 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![build-test](https://github.com/darkwizard242/ansible-role-crictl/workflows/build-and-test/badge.svg?branch=master)](https://github.com/darkwizard242/ansible-role-crictl/actions?query=workflow%3Abuild-and-test) [![release](https://github.com/darkwizard242/ansible-role-crictl/workflows/release/badge.svg)](https://github.com/darkwizard242/ansible-role-crictl/actions?query=workflow%3Arelease) ![Ansible Role](https://img.shields.io/ansible/role/57030?color=dark%20green%20) ![Ansible Role](https://img.shields.io/ansible/role/d/57030?label=role%20downloads) ![Ansible Quality Score](https://img.shields.io/ansible/quality/57030?label=ansible%20quality%20score) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-crictl&metric=alert_status)](https://sonarcloud.io/dashboard?id=ansible-role-crictl) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-crictl&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=ansible-role-crictl) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-crictl&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=ansible-role-crictl) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-crictl&metric=security_rating)](https://sonarcloud.io/dashboard?id=ansible-role-crictl) ![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/darkwizard242/ansible-role-crictl?label=release) ![GitHub repo size](https://img.shields.io/github/repo-size/darkwizard242/ansible-role-crictl?color=orange&style=flat-square) +[![build-test](https://github.com/darkwizard242/ansible-role-crictl/workflows/build-and-test/badge.svg?branch=master)](https://github.com/darkwizard242/ansible-role-crictl/actions?query=workflow%3Abuild-and-test) [![release](https://github.com/darkwizard242/ansible-role-crictl/workflows/release/badge.svg)](https://github.com/darkwizard242/ansible-role-crictl/actions?query=workflow%3Arelease) ![Ansible Role](https://img.shields.io/ansible/role/d/darkwizard242/crictl) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-crictl&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=ansible-role-crictl) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-crictl&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=ansible-role-crictl) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-crictl&metric=security_rating)](https://sonarcloud.io/dashboard?id=ansible-role-crictl) ![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/darkwizard242/ansible-role-crictl?label=release) ![GitHub repo size](https://img.shields.io/github/repo-size/darkwizard242/ansible-role-crictl?color=orange&style=flat-square) # Ansible Role: crictl @@ -16,7 +16,7 @@ Available variables are listed below (located in `defaults/main.yml`): ```yaml crictl_app: crictl -crictl_version: 1.29.0 +crictl_version: 1.30.0 crictl_os: linux crictl_arch: amd64 crictl_dl_url: https://github.com/kubernetes-sigs/cri-tools/releases/download/v{{ crictl_version }}/{{ crictl_app }}-v{{ crictl_version }}-{{ crictl_os }}-{{ crictl_arch }}.tar.gz @@ -30,7 +30,7 @@ crictl_file_group: root Variable | Description ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- crictl_app | Defines the app to install i.e. **crictl** -crictl_version | Defined to dynamically fetch the desired version to install. Defaults to: **1.29.0** +crictl_version | Defined to dynamically fetch the desired version to install. Defaults to: **1.30.0** crictl_os | Defines os type. crictl_arch | Defines os architecture. Used for obtaining the correct type of binaries based on OS System Architecture. crictl_dl_url | Defines URL to download the crictl binary from. diff --git a/defaults/main.yml b/defaults/main.yml index ac33699..ba6fb9a 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -2,7 +2,7 @@ # defaults file for crictl crictl_app: crictl -crictl_version: 1.29.0 +crictl_version: 1.30.0 crictl_os: linux crictl_arch: amd64 crictl_dl_url: https://github.com/kubernetes-sigs/cri-tools/releases/download/v{{ crictl_version }}/{{ crictl_app }}-v{{ crictl_version }}-{{ crictl_os }}-{{ crictl_arch }}.tar.gz