blob: d550a1e5d6916d51392c730ba5b07fb855c2b0a5 [file] [log] [blame]
---
- name: Install Apigee component for version {{ opdk_version }} or greater with proxy - {{ profile }}
command: '{{ apigee_setup }} -p {{ profile }} -f {{ opdk_installation_config_file }}'
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy }}"
when: opdk_debug_mode is not defined or opdk_debug_mode | trim | lower == 'off'
- name: DEBUG_MODE - Install Apigee component for version {{ opdk_version }} or greater with proxy - {{ profile }}
command: 'bash -x {{ apigee_setup }} -p {{ profile }} -f {{ opdk_installation_config_file }}'
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy }}"
when: opdk_debug_mode is defined and opdk_debug_mode | trim | lower == 'on'
- name: Wait for ready with no proxy
command: '{{ apigee_all }} wait_for_ready'
when: validate_ready | default(true)