Bladeren bron

Replace hostvars with vars for openshift env facts when ansible >= v2.

Andrew Butcher 9 jaren geleden
bovenliggende
commit
60c4e41791

+ 3 - 1
roles/openshift_builddefaults/tasks/main.yml

@@ -5,7 +5,9 @@
     # TODO: add ability to define builddefaults env vars sort of like this
     # may need to move the config generation to a filter however.
     # openshift_env: "{{ hostvars[inventory_hostname]
-    #                    | oo_merge_dicts(hostvars)
+    #                    | oo_merge_dicts(vars if (ansible_version.full
+    #                                              | version_compare('2.0', 'ge')
+    #                                              | bool) else hostvars)
     #                    | oo_openshift_env }}"
     # openshift_env_structures:
     # - 'openshift.builddefaults.env.*'

+ 3 - 1
roles/openshift_cloud_provider/tasks/main.yml

@@ -3,7 +3,9 @@
   openshift_facts:
     role: cloudprovider
     openshift_env: "{{ hostvars[inventory_hostname]
-                       | oo_merge_dicts(hostvars)
+                       | oo_merge_dicts(vars if (ansible_version.full
+                                                 | version_compare('2.0', 'ge')
+                                                 | bool) else hostvars)
                        | oo_openshift_env }}"
     openshift_env_structures:
     - 'openshift.cloudprovider.aws.*'

+ 3 - 1
roles/openshift_hosted_facts/tasks/main.yml

@@ -3,5 +3,7 @@
   openshift_facts:
     role: hosted
     openshift_env: "{{ hostvars[inventory_hostname]
-                       | oo_merge_dicts(hostvars)
+                       | oo_merge_dicts(vars if (ansible_version.full
+                                                 | version_compare('2.0', 'ge')
+                                                 | bool) else hostvars)
                        | oo_openshift_env }}"