Przeglądaj źródła

Move the `is_atomic` check from `update_repos_and_packages.yml` to `rhel_subscribe`

Lénaïc Huard 9 lat temu
rodzic
commit
3e450c25f2

+ 0 - 1
playbooks/common/openshift-cluster/update_repos_and_packages.yml

@@ -8,6 +8,5 @@
           ansible_distribution == "RedHat" and
           lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
             default('no', True) | lower in ['no', 'false']
-          and not openshift.common.is_atomic | bool
   - openshift_repos
   - os_update_latest

+ 2 - 0
roles/rhel_subscribe/meta/main.yml

@@ -0,0 +1,2 @@
+dependencies:
+  - openshift_facts

+ 2 - 1
roles/rhel_subscribe/tasks/main.yml

@@ -41,4 +41,5 @@
   command: subscription-manager subscribe --pool {{ openshift_pool_id.stdout_lines[0] }}
 
 - include: enterprise.yml
-  when: deployment_type in [ 'enterprise', 'atomic-enterprise', 'openshift-enterprise' ]
+  when: deployment_type in [ 'enterprise', 'atomic-enterprise', 'openshift-enterprise' ] and
+        not openshift.common.is_atomic | bool