Browse Source

Add a debug statement to the image build to dump tag information.

Kenny Woodson 6 years ago
parent
commit
dc0975e44c
1 changed files with 12 additions and 0 deletions
  1. 12 0
      playbooks/azure/openshift-cluster/tasks/create_image_from_vm.yml

+ 12 - 0
playbooks/azure/openshift-cluster/tasks/create_image_from_vm.yml

@@ -52,3 +52,15 @@
     -g "{{ image_resource_group }}"
     -n "{{ image_name }}"
     --tags {% for k in final_tags %}{{ k }}={{ final_tags[k] }} {% endfor %}
+
+- name: log image resource group and name
+  debug:
+    msg: "{{ item }}"
+  with_items:
+  - "Resource group: {{ image_resource_group }}"
+  - "Image name: {{ image_name }}"
+
+- name: log image tag information
+  debug:
+    msg: "{{ item.key }}: {{ item.value }}"
+  with_dict: "{{ final_tags }}"