Add default inventory
This commit is contained in:
parent
4e886c293a
commit
fe72523a5a
2 changed files with 2 additions and 1 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
[defaults]
|
[defaults]
|
||||||
roles_path = ./roles
|
roles_path = ./roles
|
||||||
remote_user = ansible
|
remote_user = ansible
|
||||||
|
inventory = ./inventory.yml
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@
|
||||||
|
|
||||||
- name: install project dependencies
|
- name: install project dependencies
|
||||||
become_user: "{{ app_user }}"
|
become_user: "{{ app_user }}"
|
||||||
command: "poetry install" # noqa 301
|
command: 'poetry install --extras "sentry"' # noqa 301
|
||||||
args:
|
args:
|
||||||
chdir: "{{ app_dir }}"
|
chdir: "{{ app_dir }}"
|
||||||
environment:
|
environment:
|
||||||
|
|
|
||||||
Reference in a new issue