Browse Source

Disable become for localhost (#4287)

pull/4305/head
Andrey Zhelnin 6 years ago
committed by Kubernetes Prow Robot
parent
commit
c66e9a6d62
5 changed files with 5 additions and 0 deletions
  1. 1
      cluster.yml
  2. 1
      remove-node.yml
  3. 1
      reset.yml
  4. 1
      scale.yml
  5. 1
      upgrade-cluster.yml

1
cluster.yml

@ -1,6 +1,7 @@
---
- hosts: localhost
gather_facts: false
become: no
tasks:
- name: "Check ansible version !=2.7.0"
assert:

1
remove-node.yml

@ -1,5 +1,6 @@
---
- hosts: localhost
become: no
tasks:
- name: "Check ansible version !=2.7.0"
assert:

1
reset.yml

@ -1,5 +1,6 @@
---
- hosts: localhost
become: no
tasks:
- name: "Check ansible version !=2.7.0"
assert:

1
scale.yml

@ -1,6 +1,7 @@
---
- hosts: localhost
gather_facts: False
become: no
tasks:
- name: "Check ansible version !=2.7.0"
assert:

1
upgrade-cluster.yml

@ -1,6 +1,7 @@
---
- hosts: localhost
gather_facts: false
become: no
tasks:
- name: "Check ansible version !=2.7.0"
assert:

Loading…
Cancel
Save