Browse Source

Merge pull request #9622 from vrutkovs/skip-extra-pkg-check

Skip base package check for openshift_ca role
Vadim Rutkovsky 6 years ago
parent
commit
d9dd8f6923
1 changed files with 0 additions and 10 deletions
  1. 0 10
      roles/openshift_ca/tasks/main.yml

+ 0 - 10
roles/openshift_ca/tasks/main.yml

@@ -3,16 +3,6 @@
     msg: "Both 'certfile' and 'keyfile' keys must be supplied when configuring openshift_master_ca_certificate"
   when: openshift_master_ca_certificate is defined and ('certfile' not in openshift_master_ca_certificate or 'keyfile' not in openshift_master_ca_certificate)
 
-- name: Install the base package for admin tooling
-  package:
-    name: "{{ openshift_service_type }}{{ openshift_pkg_version | default('') | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}"
-    state: present
-  when: not hostvars[openshift_ca_host].openshift_is_atomic | bool
-  register: install_result
-  until: install_result is succeeded
-  delegate_to: "{{ openshift_ca_host }}"
-  run_once: true
-
 - name: Reload generated facts
   openshift_facts:
   when: