Fix ansible task titles (#5154)

* Fix ansible task titles for CRI connection tasks

* Fix Azure subscription ID check task title
This commit is contained in:
Florent Monbillard 2019-09-10 04:34:54 -04:00 committed by Kubernetes Prow Robot
parent 9b0f57a0a6
commit 637f09f140
2 changed files with 3 additions and 3 deletions

View file

@ -12,12 +12,12 @@
cri_socket: /var/run/crio/crio.sock
when: container_manager == 'crio'
- name: Use containerd for cri connetion
- name: Use containerd for cri connection
set_fact:
cri_socket: /var/run/containerd/containerd.sock
when: container_manager == 'containerd'
- name: Use docker for cri connetion
- name: Use docker for cri connection
set_fact:
cri_socket: /var/run/dockershim.sock
when: container_manager == 'docker'

View file

@ -4,7 +4,7 @@
msg: "azure_tenant_id is missing"
when: azure_tenant_id is not defined or not azure_tenant_id
- name: check openstack_username value
- name: check azure_subscription_id value
fail:
msg: "azure_subscription_id is missing"
when: azure_subscription_id is not defined or not azure_subscription_id