39 lines
980 B
YAML
39 lines
980 B
YAML
---
|
|
- hosts: localhost
|
|
user: root
|
|
gather_facts: false
|
|
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
tasks:
|
|
- name: Configure the communishift virtualenv
|
|
ansible.builtin.pip:
|
|
name: "{{ communishift_package }}"
|
|
with_items: "{{ communishift_package_list }}"
|
|
loop_control:
|
|
loop_var: communishift_package
|
|
|
|
- name: Communishift Role
|
|
include_role:
|
|
name: communishift
|
|
tasks_from: administration-tasks
|
|
apply:
|
|
tags:
|
|
- deploy-operators
|
|
|
|
- name: Communishift Role
|
|
with_items: "{{ communishift_projects }}"
|
|
include_role:
|
|
name: communishift
|
|
tasks_from: main
|
|
apply:
|
|
tags:
|
|
- create_efs
|
|
loop: "{{ lookup('dict', communishift_projects) }}"
|
|
vars:
|
|
communishift_package_list:
|
|
- kubernetes
|
|
- boto3
|