-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsite.yml
49 lines (40 loc) · 1 KB
/
site.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
- hosts: all
sudo: yes
vars:
citadel_bucket: 'balanced-citadel'
rabbitmq_vhosts:
- localhost
redis_bind: 127.0.0.1
postgresql_ext_install_contrib: yes
postgresql_client_encoding: utf8
app_user: knox
app_group: knox
app_name: knox
app_home: /opt/knox
users:
- name: vagrant
pypi_scheme: https
pypi_username: omnibus
pypi_password: "{{ lookup('citadel', '/omnibus/devpi_password').strip() }}"
pypi_host: pypi.vandelay.io
pypi_index: /balanced/prod/+simple/
app_install_method: git
app_apt_version: null
app_git_repo: ssh://[email protected]/balanced/{{ app_name }}.git
app_git_version: master
vars_files:
- defaults/main.yml
roles:
- base
- postgresql
- rabbitmq
- redis
handlers:
- include: handlers/main.yml
tasks:
- name: setup vagrant box
include: tasks/vagrant.yml
- name: install pip dirs for vagrant user
include: roles/base/tasks/py.yml
tags: install-development