diff options
Diffstat (limited to 'roles/openshift_master_ca')
| -rw-r--r-- | roles/openshift_master_ca/tasks/main.yml | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/roles/openshift_master_ca/tasks/main.yml b/roles/openshift_master_ca/tasks/main.yml index 17d832d26..3114c2464 100644 --- a/roles/openshift_master_ca/tasks/main.yml +++ b/roles/openshift_master_ca/tasks/main.yml @@ -12,10 +12,16 @@      path: "{{ openshift_master_config_dir }}"      state: directory +- name: Get docker images +  command: docker images +  changed_when: false +  when: openshift.common.is_containerized | bool +  register: docker_images +  - name: Pull required docker image    command: >      docker pull {{ openshift.common.cli_image }} -  when: openshift.common.is_containerized | bool +  when: openshift.common.is_containerized | bool and openshift.common.cli_image not in docker_images.stdout  - name: Create the master certificates if they do not already exist    command: > | 
