You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
572 B
23 lines
572 B
---
|
|
|
|
- name: Deploy an API to a 3scale SaaS instance, with self-managed APIcasts
|
|
hosts: threescale
|
|
gather_facts: no
|
|
pre_tasks:
|
|
|
|
- assert:
|
|
that:
|
|
- "git_repo is defined"
|
|
|
|
- name: Clone the git repo containing the API Definition
|
|
git:
|
|
repo: '{{ git_repo }}'
|
|
dest: '{{ playbook_dir }}/api'
|
|
version: '{{ git_branch|default(''master'') }}'
|
|
delegate_to: localhost
|
|
|
|
- set_fact:
|
|
threescale_cicd_openapi_file: '{{ playbook_dir }}/api/{{ openapi_file|default(''openapi-spec.yaml'') }}'
|
|
|
|
roles:
|
|
- nmasse-itix.threescale-cicd
|
|
|