Devan Goodwin 9 éve
szülő
commit
dcb7289d9c

+ 6 - 0
roles/openshift_cli/tasks/main.yml

@@ -1,4 +1,10 @@
 ---
+- debug: var=openshift_version
+- debug: var=openshift_release
+- debug: var=openshift_image_tag
+- debug: var=openshift.common
+- debug: var=openshift.docker
+
 - name: Install clients
   action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-clients state=present"
   when: not openshift.common.is_containerized | bool

+ 3 - 0
roles/openshift_docker/tasks/main.yml

@@ -8,6 +8,9 @@
     # in non-upgrade scenarios:
     has_image_tag_fact: "{{ hostvars[inventory_hostname].openshift.docker.openshift_image_tag is defined }}"
 
+- debug: var=openshift_image_tag
+- debug: var=openshift_release
+
 - name: Set version when containerized
   command: >
     docker run --rm {{ openshift.common.cli_image }} version

+ 2 - 0
roles/openshift_master/tasks/main.yml

@@ -23,6 +23,8 @@
     msg: "Pacemaker based HA is not supported at this time when used with containerized installs"
   when: openshift_master_ha | bool and openshift_master_cluster_method == "pacemaker" and openshift.common.is_containerized | bool
 
+- debug: var=openshift_version
+
 - name: Install Master package
   action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-master{{ openshift_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
   when: not openshift.common.is_containerized | bool