Skip to content

Commit

Permalink
Fix ansible task titles (kubernetes-sigs#5154)
Browse files Browse the repository at this point in the history
* Fix ansible task titles for CRI connection tasks

* Fix Azure subscription ID check task title
  • Loading branch information
EppO authored and k8s-ci-robot committed Sep 10, 2019
1 parent 9b0f57a commit 637f09f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions roles/download/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 637f09f

Please sign in to comment.