Skip to content

Commit

Permalink
Upgrade to Ansible 2.7.8 (kubernetes-sigs#4535)
Browse files Browse the repository at this point in the history
  • Loading branch information
Miouge1 authored and k8s-ci-robot committed Apr 17, 2019
1 parent 37eac01 commit f69b5f7
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ plugins can be deployed for a given single cluster.
Requirements
------------

- **Ansible v2.7.6 (or newer) and python-netaddr is installed on the machine
- **Ansible v2.7.8 (or newer) and python-netaddr is installed on the machine
that will run Ansible commands**
- **Jinja 2.9 (or newer) is required to run the Ansible Playbooks**
- The target servers must have **access to the Internet** in order to pull docker images. Otherwise, additional configuration is required (See [Offline Environment](https://github.com/kubernetes-sigs/kubespray/blob/master/docs/downloads.md#offline-environment))
Expand Down
6 changes: 3 additions & 3 deletions cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
gather_facts: false
become: no
tasks:
- name: "Check ansible version >=2.7.6"
- name: "Check ansible version >=2.7.8"
assert:
msg: "Ansible must be v2.7.6 or higher"
msg: "Ansible must be v2.7.8 or higher"
that:
- ansible_version.string is version("2.7.6", ">=")
- ansible_version.string is version("2.7.8", ">=")
tags:
- check
vars:
Expand Down
6 changes: 3 additions & 3 deletions remove-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
- hosts: localhost
become: no
tasks:
- name: "Check ansible version >=2.7.6"
- name: "Check ansible version >=2.7.8"
assert:
msg: "Ansible must be v2.7.6 or higher"
msg: "Ansible must be v2.7.8 or higher"
that:
- ansible_version.string is version("2.7.6", ">=")
- ansible_version.string is version("2.7.8", ">=")
tags:
- check
vars:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ansible>=2.7.6
ansible>=2.7.8
jinja2>=2.9.6
netaddr
pbr>=1.6
Expand Down
6 changes: 3 additions & 3 deletions reset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
- hosts: localhost
become: no
tasks:
- name: "Check ansible version >=2.7.6"
- name: "Check ansible version >=2.7.8"
assert:
msg: "Ansible must be v2.7.6 or higher"
msg: "Ansible must be v2.7.8 or higher"
that:
- ansible_version.string is version("2.7.6", ">=")
- ansible_version.string is version("2.7.8", ">=")
tags:
- check
vars:
Expand Down
6 changes: 3 additions & 3 deletions scale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
gather_facts: False
become: no
tasks:
- name: "Check ansible version >=2.7.6"
- name: "Check ansible version >=2.7.8"
assert:
msg: "Ansible must be v2.7.6 or higher"
msg: "Ansible must be v2.7.8 or higher"
that:
- ansible_version.string is version("2.7.6", ">=")
- ansible_version.string is version("2.7.8", ">=")
tags:
- check
vars:
Expand Down
6 changes: 3 additions & 3 deletions upgrade-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
gather_facts: false
become: no
tasks:
- name: "Check ansible version >=2.7.6"
- name: "Check ansible version >=2.7.8"
assert:
msg: "Ansible must be v2.7.6 or higher"
msg: "Ansible must be v2.7.8 or higher"
that:
- ansible_version.string is version("2.7.6", ">=")
- ansible_version.string is version("2.7.8", ">=")
tags:
- check
vars:
Expand Down

0 comments on commit f69b5f7

Please sign in to comment.