Refactor.
This commit is contained in:
parent
2f5217ee17
commit
9d08dfeabe
@ -6,4 +6,4 @@ SCRIPTPATH=$(dirname $SCRIPT)
|
|||||||
|
|
||||||
cd $SCRIPTPATH
|
cd $SCRIPTPATH
|
||||||
USER=$(whoami)
|
USER=$(whoami)
|
||||||
sudo -E docker run --net=host --rm -e KEY -e SECRETS_ARCHIVE_PASSPHRASE -v ~/repository/docker-duplicity-stack:/root/docker-duplicity-stack -v $SCRIPTPATH:/root/duplicity_playbooks -i ansible /root/duplicity_playbooks/script.sh
|
sudo -E docker run --net=host --rm -e KEY -e DOC_KEY -e SECRETS_ARCHIVE_PASSPHRASE -e DUPLICITY_PASSPHRASE -e SCRIPT -v $SCRIPTPATH:/root/duplicity_playbooks -i ansible /root/duplicity_playbooks/script.sh
|
||||||
|
@ -1,9 +1,25 @@
|
|||||||
---
|
---
|
||||||
- name: Tear down existing services
|
#- name: Tear down existing services
|
||||||
community.docker.docker_compose:
|
# community.docker.docker_compose:
|
||||||
project_src: /root/docker-duplicity-stack
|
# project_src: /root/docker-duplicity-stack
|
||||||
docker_host: tcp://127.0.0.1:2375
|
# docker_host: tcp://127.0.0.1:2375
|
||||||
|
# state: absent
|
||||||
|
|
||||||
|
- name: Stop and remove duplicity container
|
||||||
|
community.docker.docker_container:
|
||||||
|
name: duplicity
|
||||||
state: absent
|
state: absent
|
||||||
|
remote_user: "{{ user }}"
|
||||||
|
delegate_to: 172.17.0.1
|
||||||
|
become: true
|
||||||
|
|
||||||
|
- name: Remove docker-duplicity-stack directory
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "/home/{{ user }}/repository/docker-duplicity-stack"
|
||||||
|
state: absent
|
||||||
|
remote_user: "{{ user }}"
|
||||||
|
delegate_to: 172.17.0.1
|
||||||
|
become: true
|
||||||
|
|
||||||
- name: unmount /mnt/cloud
|
- name: unmount /mnt/cloud
|
||||||
ansible.posix.mount:
|
ansible.posix.mount:
|
||||||
|
176
tasks/start.yml
176
tasks/start.yml
@ -1,11 +1,16 @@
|
|||||||
---
|
---
|
||||||
- name: Assert KEY variable is set
|
- name: Assert extra-vars are set
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- KEY | length > 0
|
- item | length > 0
|
||||||
msg: "KEY environment variable must be set"
|
msg: "{{ item }} environment variable must be set"
|
||||||
|
with_items:
|
||||||
|
- KEY
|
||||||
|
- DOC_KEY
|
||||||
|
- DUPLICITY_PASSPHRASE
|
||||||
|
- SCRIPT
|
||||||
|
|
||||||
- name: Assert SECRETS_ARCHIVE_PASSPHRASE variable is set
|
- name: Assert SECRETS_ARCHIVE_PASSPHRASE environment variable is set
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- lookup('env','SECRETS_ARCHIVE_PASSPHRASE') | length > 0
|
- lookup('env','SECRETS_ARCHIVE_PASSPHRASE') | length > 0
|
||||||
@ -16,6 +21,11 @@
|
|||||||
url: "https://{{ CLOUD_SERVER }}/s/{{ KEY }}/download?path=%2F&files=secrets.tar.gz.enc"
|
url: "https://{{ CLOUD_SERVER }}/s/{{ KEY }}/download?path=%2F&files=secrets.tar.gz.enc"
|
||||||
dest: /root/secrets.tar.gz.enc
|
dest: /root/secrets.tar.gz.enc
|
||||||
|
|
||||||
|
- name: Install openssh-client
|
||||||
|
ansible.builtin.package:
|
||||||
|
name: openssh-client
|
||||||
|
state: present
|
||||||
|
|
||||||
- name: Create /root/.ssh directory
|
- name: Create /root/.ssh directory
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /root/.ssh
|
path: /root/.ssh
|
||||||
@ -26,7 +36,7 @@
|
|||||||
shell: "openssl enc -aes-256-cbc -md md5 -pass env:SECRETS_ARCHIVE_PASSPHRASE -d -in /root/secrets.tar.gz.enc | tar -zxv -C {{ item.dir }} --strip 2 {{ item.name }}"
|
shell: "openssl enc -aes-256-cbc -md md5 -pass env:SECRETS_ARCHIVE_PASSPHRASE -d -in /root/secrets.tar.gz.enc | tar -zxv -C {{ item.dir }} --strip 2 {{ item.name }}"
|
||||||
with_items:
|
with_items:
|
||||||
- name: secrets/docker-duplicity-stack/mail_credentials.json
|
- name: secrets/docker-duplicity-stack/mail_credentials.json
|
||||||
dir: /root
|
dir: /root/
|
||||||
- name: secrets/bootstrap/id_rsa
|
- name: secrets/bootstrap/id_rsa
|
||||||
dir: /root/.ssh
|
dir: /root/.ssh
|
||||||
- name: secrets/docker-duplicity-stack/nextcloud_password.sh
|
- name: secrets/docker-duplicity-stack/nextcloud_password.sh
|
||||||
@ -39,6 +49,36 @@
|
|||||||
path: /root/.ssh/id_rsa
|
path: /root/.ssh/id_rsa
|
||||||
mode: '0400'
|
mode: '0400'
|
||||||
|
|
||||||
|
- name: Remove docker-duplicity-stack directory
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "/home/{{ user }}/repository/docker-duplicity-stack"
|
||||||
|
state: absent
|
||||||
|
remote_user: "{{ user }}"
|
||||||
|
delegate_to: 172.17.0.1
|
||||||
|
become: true
|
||||||
|
|
||||||
|
- name: Clone docker-duplicity-stack repo
|
||||||
|
ansible.builtin.git:
|
||||||
|
repo: 'https://git.scimetis.net/yohan/docker-duplicity-stack.git'
|
||||||
|
dest: "/home/{{ user }}/repository/docker-duplicity-stack"
|
||||||
|
clone: yes
|
||||||
|
update: no
|
||||||
|
remote_user: "{{ user }}"
|
||||||
|
delegate_to: 172.17.0.1
|
||||||
|
become: true
|
||||||
|
|
||||||
|
- name: Copy files
|
||||||
|
ansible.builtin.copy:
|
||||||
|
src: "{{ item }}"
|
||||||
|
dest: "/home/{{ user }}/repository/docker-duplicity-stack"
|
||||||
|
mode: '0400'
|
||||||
|
remote_user: "{{ user }}"
|
||||||
|
delegate_to: 172.17.0.1
|
||||||
|
become: true
|
||||||
|
with_items:
|
||||||
|
- /root/mail_credentials.json
|
||||||
|
- /root/.ssh/id_rsa
|
||||||
|
|
||||||
- name: Set Nextcloud credentials
|
- name: Set Nextcloud credentials
|
||||||
ansible.builtin.include_tasks: "tasks/source_vars.yml"
|
ansible.builtin.include_tasks: "tasks/source_vars.yml"
|
||||||
with_items:
|
with_items:
|
||||||
@ -108,17 +148,119 @@
|
|||||||
- name: duplicity_cache
|
- name: duplicity_cache
|
||||||
size: 5
|
size: 5
|
||||||
|
|
||||||
#cd $SCRIPTPATH
|
- name: Install git
|
||||||
#source vars
|
ansible.builtin.package:
|
||||||
#test -z $1 || SCRIPT="$1"
|
name: git
|
||||||
#USER=$(whoami)
|
state: present
|
||||||
#sudo chown root:root mail_credentials.json
|
|
||||||
#sudo chown $USER:$USER nextcloud_password.sh
|
|
||||||
#sudo chmod 400 nextcloud_password.sh mail_credentials.json
|
|
||||||
|
|
||||||
#- name: Tear down existing services
|
- name: Get docker-duplicity repo's last commit
|
||||||
|
ansible.builtin.git:
|
||||||
|
repo: 'https://git.scimetis.net/yohan/docker-duplicity.git'
|
||||||
|
clone: no
|
||||||
|
update: no
|
||||||
|
register: git
|
||||||
|
|
||||||
|
- name: Set fact tag
|
||||||
|
set_fact:
|
||||||
|
tag: "{{ git.after[0:10] }}"
|
||||||
|
|
||||||
|
- name: Search for image
|
||||||
|
community.docker.docker_image:
|
||||||
|
name: duplicity
|
||||||
|
tag: "{{ tag }}"
|
||||||
|
source: local
|
||||||
|
docker_host: tcp://127.0.0.1:2375
|
||||||
|
register: local_duplicity_image
|
||||||
|
failed_when: false
|
||||||
|
|
||||||
|
- name: Create image build directory
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: /root/build
|
||||||
|
state: directory
|
||||||
|
when:
|
||||||
|
- local_duplicity_image.msg is defined
|
||||||
|
- '"Cannot find the image" in local_duplicity_image.msg'
|
||||||
|
|
||||||
|
- name: Clone docker-duplicity repo
|
||||||
|
ansible.builtin.git:
|
||||||
|
repo: 'https://git.scimetis.net/yohan/docker-duplicity.git'
|
||||||
|
dest: /root/build
|
||||||
|
clone: yes
|
||||||
|
update: no
|
||||||
|
when:
|
||||||
|
- local_duplicity_image.msg is defined
|
||||||
|
- '"Cannot find the image" in local_duplicity_image.msg'
|
||||||
|
|
||||||
|
- name: Build duplicity image
|
||||||
|
community.docker.docker_image:
|
||||||
|
name: duplicity
|
||||||
|
tag: "{{ tag }}"
|
||||||
|
build:
|
||||||
|
path: /root/build/docker-duplicity
|
||||||
|
source: build
|
||||||
|
docker_host: tcp://127.0.0.1:2375
|
||||||
|
when:
|
||||||
|
- local_duplicity_image.msg is defined
|
||||||
|
- '"Cannot find the image" in local_duplicity_image.msg'
|
||||||
|
|
||||||
|
- name: Remove image build directory
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: /root/build
|
||||||
|
state: absent
|
||||||
|
when:
|
||||||
|
- local_duplicity_image.msg is defined
|
||||||
|
- '"Cannot find the image" in local_duplicity_image.msg'
|
||||||
|
|
||||||
|
- name: Install jsondiff from pip
|
||||||
|
ansible.builtin.pip:
|
||||||
|
name: jsondiff
|
||||||
|
remote_user: "{{ user }}"
|
||||||
|
delegate_to: 172.17.0.1
|
||||||
|
become: true
|
||||||
|
|
||||||
|
- name: Start duplicity container
|
||||||
|
community.docker.docker_container:
|
||||||
|
name: duplicity
|
||||||
|
image: "duplicity:{{ tag }}"
|
||||||
|
entrypoint:
|
||||||
|
- "/root/entrypoint.sh"
|
||||||
|
- "{{ SCRIPT }}"
|
||||||
|
auto_remove: true
|
||||||
|
network_mode: host
|
||||||
|
working_dir: "/home/{{ user }}/repository/docker-duplicity-stack"
|
||||||
|
volumes:
|
||||||
|
- /mnt/volumes:/mnt/volumes:z
|
||||||
|
- /mnt/cloud:/mnt/cloud:z
|
||||||
|
- /home/{{ user }}/repository/docker-duplicity-stack/backup_scripts:/mnt/scripts:z
|
||||||
|
- /home/{{ user }}/repository/docker-duplicity-stack/entrypoint.sh:/root/entrypoint.sh:z
|
||||||
|
- /home/{{ user }}/repository/docker-duplicity-stack/sendmail.py:/root/sendmail.py:z
|
||||||
|
- /home/{{ user }}/repository/docker-duplicity-stack/mail_credentials.json:/root/mail_credentials.json:z
|
||||||
|
- /home/{{ user }}/repository/docker-duplicity-stack/id_rsa:/root/.ssh/id_rsa:Z
|
||||||
|
- /home/{{ user }}/repository/docker-duplicity-stack/config:/root/.ssh/config:Z
|
||||||
|
env:
|
||||||
|
OS_AUTH_URL: "{{ OS_AUTH_URL }}"
|
||||||
|
OS_IDENTITY_API_VERSION: "{{ OS_IDENTITY_API_VERSION }}"
|
||||||
|
OS_USER_DOMAIN_NAME: "{{ OS_USER_DOMAIN_NAME }}"
|
||||||
|
OS_PROJECT_DOMAIN_NAME: "{{ OS_PROJECT_DOMAIN_NAME }}"
|
||||||
|
OS_TENANT_ID: "{{ OS_TENANT_ID }}"
|
||||||
|
OS_TENANT_NAME: "{{ OS_TENANT_NAME }}"
|
||||||
|
OS_USERNAME: "{{ OS_USERNAME }}"
|
||||||
|
OS_PASSWORD: "{{ OS_PASSWORD }}"
|
||||||
|
OS_REGION_NAME: "{{ OS_SWIFT_REGION_NAME }}"
|
||||||
|
KEY: "{{ KEY }}"
|
||||||
|
DOC_KEY: "{{ DOC_KEY }}"
|
||||||
|
SECRETS_ARCHIVE_PASSPHRASE: "{{ lookup('env','SECRETS_ARCHIVE_PASSPHRASE') }}"
|
||||||
|
DUPLICITY_PASSPHRASE: "{{ DUPLICITY_PASSPHRASE }}"
|
||||||
|
remote_user: "{{ user }}"
|
||||||
|
delegate_to: 172.17.0.1
|
||||||
|
become: true
|
||||||
|
|
||||||
|
# docker_compose collection version will not work on Centos 7
|
||||||
|
#- name: Start duplicity stack
|
||||||
# community.docker.docker_compose:
|
# community.docker.docker_compose:
|
||||||
# project_src: /root/docker-duplicity-stack
|
# project_src: /home/{{ user }}/repository/docker-duplicity-stack
|
||||||
# docker_host: tcp://127.0.0.1:2375
|
# state: present
|
||||||
# state: absent
|
# remote_user: "{{ user }}"
|
||||||
#
|
# delegate_to: 172.17.0.1
|
||||||
|
# become: true
|
||||||
|
|
||||||
|
@ -2,4 +2,8 @@ user: centos
|
|||||||
CLOUD_SERVER: cloud.scimetis.net
|
CLOUD_SERVER: cloud.scimetis.net
|
||||||
GIT_SERVER: git.scimetis.net
|
GIT_SERVER: git.scimetis.net
|
||||||
KEY: "{{ lookup('env','KEY') }}"
|
KEY: "{{ lookup('env','KEY') }}"
|
||||||
|
DOC_KEY: "{{ lookup('env','DOC_KEY') }}"
|
||||||
|
DUPLICITY_PASSPHRASE: "{{ lookup('env','DUPLICITY_PASSPHRASE') }}"
|
||||||
|
SCRIPT: "{{ lookup('env','SCRIPT') }}"
|
||||||
|
OS_SWIFT_REGION_NAME: GRA
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user