Skip to content
Snippets Groups Projects
Commit 164dbfa7 authored by Gioacchino Vino's avatar Gioacchino Vino
Browse files

Added print for debugging

parent ce4a3d62
No related branches found
No related tags found
1 merge request!9Added print for debugging
Pipeline #109072 passed
......@@ -8,12 +8,19 @@
set_fact:
depcreate_cmd: "orchent depcreate --ojson template.yaml -g {{ paas_ci_iam_group }} {{ paas_ci_test.inputs }}"
- debug:
var: depcreate_cmd
- name: Create the deployment
command: "{{ depcreate_cmd }}"
args:
chdir: "{{ paas_ci_workdir }}"
register: depcreate_output
failed_when: "'CREATE' not in depcreate_output.stdout"
#failed_when: "'CREATE' not in depcreate_output.stdout"
- debug:
var: depcreate_output
- set_fact:
deployment: "{{ depcreate_output.stdout|from_json }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment