Explorar el Código

Merge pull request #8669 from jim-minter/deploy_leak

azure: add no_log: true to acs-engine deploy task
Jim Minter hace 7 años
padre
commit
6addd28fa1
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  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 }}"