We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a3d2df3 + 2cc2e9f commit 001ef1aCopy full SHA for 001ef1a
1 file changed
templates/var/lib/ansible/playbooks/ipfailover.yml
@@ -16,6 +16,10 @@ cat << 'EOF' > /var/lib/os-apply-config/templates/var/lib/ansible/playbooks/ipfa
16
- name: Deploy Openshift IP failover for router
17
command: oadm ipfailover --create --service-account=ipfailover --interface=eth0 --selector='region=infra' --replicas={{ num_infra }} --virtual-ips="{{ router_vip }}" --credentials=/etc/origin/master/openshift-router.kubeconfig
18
when: ansible_first_run | default(false) | bool
19
+ # oadm ipfailover returns error code if service account already exists even
20
+ # if ipfailover pod is created successfully
21
+ # remove when https://bugzilla.redhat.com/show_bug.cgi?id=1332432 is fixed
22
+ ignore_errors: yes
23
24
- hosts: masters
25
sudo: yes
0 commit comments