Browse Source

Merge pull request #8669 from jim-minter/deploy_leak

azure: add no_log: true to acs-engine deploy task
Jim Minter 6 năm trước cách đây
mục cha
commit
6addd28fa1
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  1. 7 0
      playbooks/azure/openshift-cluster/launch.yml

+ 7 - 0
playbooks/azure/openshift-cluster/launch.yml

@@ -85,9 +85,16 @@
         --client-id {{ lookup('env', 'AZURE_CLIENT_ID') }} \
         --client-secret {{ lookup('env', 'AZURE_SECRET') }} \
         {{ tmp.path }}/openshift.json
+    no_log: true
     ignore_errors: yes
     register: deploy
 
+  - debug:
+      msg: "{{ deploy.stdout }}"
+
+  - debug:
+      msg: "{{ deploy.stderr }}"
+
   - name: delete temporary directory
     file:
       path: "{{ tmp.path }}"