-
Notifications
You must be signed in to change notification settings - Fork 19
/
playbook.yml
227 lines (202 loc) · 6.73 KB
/
playbook.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
-
name: Install oddslingers
hosts: localhost
vars:
download_code_condition: "{{ download_code | default(false) }}"
init_db_condition: "{{ init_db | default(true) }}"
oddslingers_git_repo: https://github.com/monadical-sas/oddslingers.poker.git
tasks:
- name: Add key postgres repo
apt_key:
url: https://www.postgresql.org/media/keys/ACCC4CF8.asc
state: present
become: true
- name: Add repos
apt_repository:
repo: "{{ item }}"
state: present
loop:
- deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main
- ppa:maxmind/ppa
- ppa:trevorjay/pyflame
- ppa:fish-shell/release-3
become: true
- name: Install required packages
apt:
name: "{{ item }}"
update_cache: yes
loop:
- build-essential
- autoconf
- python3.7
- python3-pip
- python3.7-dev
- python-dev
- virtualenv
- pyflame
- redis-server
- git
- nodejs
- npm
- supervisor
- libmaxminddb0
- libmaxminddb-dev
- mmdb-bin
- fish
- zip
- unzip
- postgresql-12
- postgresql-server-dev-all
- postgresql-contrib
- nginx
- gzip
- expect
- jq
become: true
- name: Install node.js packages globally
npm:
name: "{{ item }}"
global: yes
loop:
- npm
- yarn
- name: Disable services
service:
name: "{{ item }}"
enabled: no
state: stopped
loop:
- postgresql
- redis-server
- nginx
become: true
- name: Download code
git:
repo: "{{ oddslingers_git_repo }}"
dest: "{{ oddslingers_root }}"
become: true
when: download_code_condition|bool
- name: Install setuptools and supervisor pip packages
pip:
name: "{{ item }}"
state: latest
become: true
loop:
- pip
- pipenv
- setuptools
- supervisor
- name: Run pipenv install
environment:
PIPENV_VENV_IN_PROJECT: "enabled"
command: "pipenv install --dev"
args:
chdir: "{{ oddslingers_root }}/core"
become: true
- name: Run yarn install
yarn:
path: "{{ oddslingers_root }}/core/js"
become: true
- name: Change owner .venv
file:
path: "{{ oddslingers_root }}/core/.venv"
state: directory
recurse: yes
owner: "{{ sudo_user }}"
group: "{{ sudo_user }}"
become: true
- name: Change owner node_modules
file:
path: "{{ oddslingers_root }}/core/js/node_modules"
state: directory
recurse: yes
owner: "{{ sudo_user }}"
group: "{{ sudo_user }}"
become: true
- name: Set host file
lineinfile:
path: /etc/hosts
line: 127.0.0.1 oddslingers.l
become: true
- name: Create data directory
file:
path: "{{ oddslingers_root }}/data"
state: directory
owner: "{{ sudo_user }}"
group: "{{ sudo_user }}"
become: true
- name: Delete default supervisord config
file:
path: /etc/supervisor/supervisord.conf
state: absent
become: true
- name: Create a symbolic link
file:
src: "{{ oddslingers_root }}/etc/supervisor/ubuntu-dev.conf"
dest: /etc/supervisor/supervisord.conf
state: link
become: true
- name: Create database directory
file:
path: "{{ oddslingers_root }}/data/postgres"
state: directory
recurse: yes
owner: postgres
group: postgres
become: true
- name: Init DB
become: yes
become_user: postgres
command: "/usr/lib/postgresql/12/bin/initdb -D \"{{ oddslingers_root }}/data/postgres\""
when: init_db_condition|bool
- name: Start Postgres
become: yes
become_user: postgres
command: "/usr/lib/postgresql/12/bin/pg_ctl -D \"{{ oddslingers_root }}/data/postgres\" start"
when: init_db_condition|bool
- name: Create Postgres User
become: yes
become_user: postgres
command: /usr/lib/postgresql/12/bin/psql -c "CREATE USER {{ db_user }} WITH PASSWORD '{{ db_password }}';" postgres
when: init_db_condition|bool
- name: Create Postgres DB
become: yes
become_user: postgres
command: /usr/lib/postgresql/12/bin/psql -c "CREATE DATABASE {{ db_name }} OWNER {{ db_user }};" postgres
when: init_db_condition|bool
- name: Grants Posgres DB
become: yes
become_user: postgres
command: /usr/lib/postgresql/12/bin/psql -c "GRANT ALL PRIVILEGES ON DATABASE {{ db_name }} TO {{ db_user }};" postgres
when: init_db_condition|bool
- name: Grants Posgres DB
become: yes
become_user: postgres
command: /usr/lib/postgresql/12/bin/psql -c "ALTER USER {{ db_user }} CREATEDB;;" postgres
when: init_db_condition|bool
- name: Write db config in a env file
lineinfile:
path: "{{ oddslingers_root }}/env/secrets.env"
line: "{{ item }}"
create: yes
loop:
- "POSTGRES_DB={{ db_name }}"
- "POSTGRES_USER={{ db_user }}"
- "POSTGRES_PASSWORD={{ db_password }}"
become: true
become_user: "{{ sudo_user }}"
- name: Create logs folder
file:
path: "{{ oddslingers_root }}/data/logs"
state: directory
owner: "{{ sudo_user }}"
group: "{{ sudo_user }}"
become: true
- name: Delete Postgres process lock
file:
path: "{{ oddslingers_root }}/data/postgres/postmaster.pid"
state: absent
become: true
- name: Reload Supervisor
command: supervisorctl reload
become: true