Skip to content

Commit 3a37f70

Browse files
committed
Changed yes to true
1 parent c6f153f commit 3a37f70

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tasks/init_cluster.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- name: Check cluster status
44
ansible.builtin.shell: kubectl get nodes
5-
ignore_errors: yes
5+
ignore_errors: true
66
register: cluster_exist
77

88
- set_fact:

tasks/install_longhorn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
delegate_to: "{{ groups['kubemaster'][0] }}"
66
run_once: true
77
register: longorn_namespace_exist
8-
ignore_errors: yes
8+
ignore_errors: true
99

1010
- block:
1111
- name: Download longhorn.yaml

tasks/install_nginx_ingress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
delegate_to: "{{ groups['kubemaster'][0] }}"
66
run_once: true
77
register: nginx_namespace_exist
8-
ignore_errors: yes
8+
ignore_errors: true
99

1010
- block:
1111
- name: Install ingress-nginx

0 commit comments

Comments
 (0)