Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
fix precheck (#811) (#813)
Browse files Browse the repository at this point in the history
  • Loading branch information
liubo0127 authored Jul 5, 2019
1 parent 95a2d14 commit c916d93
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 40 deletions.
39 changes: 39 additions & 0 deletions roles/check_config_static/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,42 @@
ignore_errors: true
changed_when: false
failed_when: false

- name: Check ansible version
fail:
msg: "Stop if ansible version is too low, make sure that the Ansible version is 2.4.2 or later, otherwise a compatibility issue occurs. Current ansible version is {{ ansible_version.full }}"
when: ansible_version.full | version_compare('2.4.2', '<')

- name: Get if jmespath info[1]
shell: pip list | grep -iw jmespath | wc -l
register: jmespath_exist

- name: Get if jinja2 exist[1]
shell: pip list | grep -iw jinja2 | wc -l
register: jinja2_exist

- name: Preflight check - Fail when jmespath or jinja2 doesn't exist
fail:
msg: "Jmespath or Jinja2 does not exist, Please run `pip install -r requirements.txt` to install."
when: jmespath_exist.stdout | int == 0 or jinja2_exist.stdout | int == 0

- name: Get jmespath info[2]
shell: pip show jmespath | grep Version |grep -v Metadata-Version
register: jmespath

- name: Get jmespath version
set_fact:
jmespath_version: "{{ jmespath.stdout_lines[0] | replace('Version: ', '') }}"

- name: Get jinja2 info[2]
shell: pip show jinja2 | grep Version |grep -v Metadata-Version
register: jinja2

- name: Get jinja2 version
set_fact:
jinja2_version: "{{ jinja2.stdout_lines[0] | replace('Version: ', '') }}"

- name: Preflight check - Fail when the versions of jmespath and jinja2 doesn't meet the requirements
fail:
msg: "Jmespath({{ jmespath_version }}) or jinja2({{ jinja2_version }}) version is too low, Please run `pip install --upgrade -r requirements.txt` to upgrade."
when: jmespath_version | version_compare('0.9.0', '<') or jinja2_version | version_compare('2.9.6', '<')
41 changes: 1 addition & 40 deletions roles/check_system_static/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,43 +63,4 @@
- name: Preflight check - Fail when Linux kernel vm.overcommit_memory parameter is set to 2
fail:
msg: "It is not recommended to set vm.overcommit_memory to 2, set it to 0 or 1."
when: vm_overcommit_memory.stdout | int == 2

- name: Check ansible version
fail:
msg: "Stop if ansible version is too low, make sure that the Ansible version is 2.4.2 or later, otherwise a compatibility issue occurs. Current ansible version is {{ ansible_version.full }}"
when: ansible_version.full | version_compare('2.4.2', '<')

- name: Get if jmespath info[1]
shell: pip list | grep -iw jmespath | wc -l
register: jmespath_exist

- name: Get if jinja2 exist[1]
shell: pip list | grep -iw jinja2 | wc -l
register: jinja2_exist

- name: Preflight check - Fail when jmespath or jinja2 doesn't exist
fail:
msg: "Jmespath or Jinja2 does not exist, Please run `pip install -r requirements.txt` to install."
when: jmespath_exist.stdout | int == 0 or jinja2_exist.stdout | int == 0

- name: Get jmespath info[2]
shell: pip show jmespath | grep Version |grep -v Metadata-Version
register: jmespath

- name: Get jmespath version
set_fact:
jmespath_version: "{{ jmespath.stdout_lines[0] | replace('Version: ', '') }}"

- name: Get jinja2 info[2]
shell: pip show jinja2 | grep Version |grep -v Metadata-Version
register: jinja2

- name: Get jinja2 version
set_fact:
jinja2_version: "{{ jinja2.stdout_lines[0] | replace('Version: ', '') }}"

- name: Preflight check - Fail when the versions of jmespath and jinja2 doesn't meet the requirements
fail:
msg: "Jmespath({{ jmespath_version }}) or jinja2({{ jinja2_version }}) version is too low, Please run `pip install --upgrade -r requirements.txt` to upgrade."
when: jmespath_version | version_compare('0.9.0', '<') or jinja2_version | version_compare('2.9.6', '<')
when: vm_overcommit_memory.stdout | int == 2

0 comments on commit c916d93

Please sign in to comment.