22 lines
821 B
YAML
22 lines
821 B
YAML
|
---
|
||
|
- name: Deploy flux
|
||
|
hosts: all
|
||
|
remote_user: deploy
|
||
|
become: yes
|
||
|
vars:
|
||
|
ansistrano_deploy_from: /home/vhosts/ansible/flux/demo/
|
||
|
ansistrano_deploy_to: /home/vhosts/ansible/flux
|
||
|
ansistrano_version_dir: releases
|
||
|
ansistrano_current_dir: current
|
||
|
ansistrano_shared_paths: []
|
||
|
ansistrano_keep_releases: 4
|
||
|
ansistrano_deploy_via: rsync
|
||
|
ansistrano_allow_anonymous_stats: yes
|
||
|
# Variables used in the Git deployment strategy
|
||
|
#ansistrano_git_repo: ssh://git@192.168.78.249:10022/SCORES/flux.git
|
||
|
#ansistrano_git_branch: master
|
||
|
#ansistrano_git_identity_key_path: ""
|
||
|
# Hooks: custom tasks if you need them
|
||
|
#ansistrano_before_symlink_shared_tasks_file: "/home/vhosts/ansible/backoffice/tasks/my-before-symlink-shared-tasks.yml"
|
||
|
roles:
|
||
|
- { role: carlosbuenosvinos.ansistrano-deploy }
|