blob: 6a3d03d8f73f8993219f4fe4b99894102c5ff27f [file] [log] [blame]
---
# tasks file for apigee-opdk-start-components
- name: Start a specific Apigee component on the node
ignore_errors: yes
shell: '{{ apigee_service }} {{ component_name }} start'
when: component_name != 'all' and opdk_version | version_compare('4.16.01', '>=')
- name: Start all Apigee components on the node
ignore_errors: yes
shell: '{{ apigee_all }} start'
when: component_name == 'all' and opdk_version | version_compare('4.16.01', '>=')
- name: Wait for ready
shell: '{{ apigee_service }} {{ component_name }} wait_for_ready'
when: validate_ready | default(true)