Browse Source

Merge pull request #8751 from pschiffe/azure-default-tag

Azure: use empty dict if input image has no tags
Jim Minter 6 years ago
parent
commit
170f24fab5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      playbooks/azure/openshift-cluster/tasks/create_image_from_vm.yml

+ 1 - 1
playbooks/azure/openshift-cluster/tasks/create_image_from_vm.yml

@@ -43,7 +43,7 @@
 
 - name: calculate final tags
   set_fact:
-    final_tags: "{{ input_image_tags_no_valid | combine(image_tags) }}"
+    final_tags: "{{ input_image_tags_no_valid | default({}) | combine(image_tags) }}"
 
 - name: tag image
   command: >