diff --git a/nextcloud/ansible/resources/README.md b/nextcloud/ansible/resources/README.md deleted file mode 100644 index ae3ad3c..0000000 --- a/nextcloud/ansible/resources/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# Resources - -These are just additional deploys and inventories one can use to deploy individual services. For now, they're useful when developing -individual roles so that one can iterate faster. diff --git a/nextcloud/ansible/resources/deploy-example-with_talk.yaml b/nextcloud/ansible/resources/deploy-example-with_talk.yaml deleted file mode 100644 index 176ad01..0000000 --- a/nextcloud/ansible/resources/deploy-example-with_talk.yaml +++ /dev/null @@ -1,60 +0,0 @@ -- hosts: localhost - vars_files: - - "vars/{{ ansible_facts['os_family'] }}.yaml" - - vars/main.example.yaml - vars: - services: - - nginx - - postgresql - - redis - roles: - - name: certificates - -- hosts: all - serial: 1 - vars_files: - - "vars/{{ ansible_facts['os_family'] }}.yaml" - - vars/main.example.yaml - roles: - - name: common - -- hosts: postgresql - vars_files: - - "vars/{{ ansible_facts['os_family'] }}.yaml" - - vars/main.example.yaml - roles: - - name: postgresql - -- hosts: redis - vars_files: - - "vars/{{ ansible_facts['os_family'] }}.yaml" - - vars/main.example.yaml - roles: - - name: redis - -- hosts: coolwsd - vars_files: - - "vars/{{ ansible_facts['os_family'] }}.yaml" - - vars/main.example.yaml - roles: - - name: coolwsd - -- hosts: nextcloud - vars_files: - - "vars/{{ ansible_facts['os_family'] }}.yaml" - - vars/main.example.yaml - roles: - - name: nextcloud - - name: coolwsd-nginx - - name: nextcloud-spreed - -- hosts: turn - vars_files: - - "vars/{{ ansible_facts['os_family'] }}.yaml" - - vars/main.example.yaml - roles: - - name: turn - - name: nats-server - - name: signaling-server - - name: janus - diff --git a/nextcloud/ansible/resources/deploy-janus.yaml b/nextcloud/ansible/resources/deploy-janus.yaml deleted file mode 100644 index 02f849f..0000000 --- a/nextcloud/ansible/resources/deploy-janus.yaml +++ /dev/null @@ -1,6 +0,0 @@ -- hosts: janus* - vars_files: - - vars/main.test.yaml - - "vars/{{ ansible_facts['os_family'] }}.yaml" - roles: - - name: janus diff --git a/nextcloud/ansible/resources/deploy-nats.yaml b/nextcloud/ansible/resources/deploy-nats.yaml deleted file mode 100644 index 1e49cb7..0000000 --- a/nextcloud/ansible/resources/deploy-nats.yaml +++ /dev/null @@ -1,6 +0,0 @@ -- hosts: nats* - vars_files: - - vars/main.test.yaml - - "vars/{{ ansible_facts['os_family'] }}.yaml" - roles: - - name: nats-server diff --git a/nextcloud/ansible/resources/deploy-signaling.yaml b/nextcloud/ansible/resources/deploy-signaling.yaml deleted file mode 100644 index af25d86..0000000 --- a/nextcloud/ansible/resources/deploy-signaling.yaml +++ /dev/null @@ -1,6 +0,0 @@ -- hosts: signaling* - vars_files: - - vars/main.test.yaml - - "vars/{{ ansible_facts['os_family'] }}.yaml" - roles: - - name: signaling-server diff --git a/nextcloud/ansible/resources/deploy-spreed.yaml b/nextcloud/ansible/resources/deploy-spreed.yaml deleted file mode 100644 index 9aaa314..0000000 --- a/nextcloud/ansible/resources/deploy-spreed.yaml +++ /dev/null @@ -1,5 +0,0 @@ -- hosts: nextcloud - vars_files: - - "vars/{{ ansible_facts['os_family'] }}.yaml" - roles: - - name: nextcloud-spreed diff --git a/nextcloud/ansible/resources/deploy-turn.yaml b/nextcloud/ansible/resources/deploy-turn.yaml deleted file mode 100644 index 95e56cd..0000000 --- a/nextcloud/ansible/resources/deploy-turn.yaml +++ /dev/null @@ -1,7 +0,0 @@ -- hosts: turn - vars_files: - - vars/main.test.yaml - - "vars/{{ ansible_facts['os_family'] }}.yaml" - roles: - - name: turn - diff --git a/nextcloud/ansible/resources/inventory-example-with_talk b/nextcloud/ansible/resources/inventory-example-with_talk deleted file mode 100644 index cf6b5a5..0000000 --- a/nextcloud/ansible/resources/inventory-example-with_talk +++ /dev/null @@ -1,43 +0,0 @@ -# If your FQDNs are resolvable, then you don't need the ansible_host= part. If they're not, one can just use ansible_host= -# in order to make them resolvable. Alternatively, you can change the IPs and add all these entries to the /etc/hosts file of the -# deployment server (a.k.a. where the ansible-playbooks reside) and not use ansible_host=. -# -# For example: -# -# /etc/hosts: -# # Loopback entries; do not change. -# For historical reasons, localhost precedes localhost.localdomain: -# 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 -# ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 -# -# # my nextcloud -# 192.168.0.10 nx0.example.com nx0 -# 192.168.0.11 db0.example.com db0 -# 192.168.0.12 rds0.example.com rds0 -# 192.168.0.13 cl0.example.com cl0 -# 192.168.0.14 turn0.example.com turn0 - -[nextcloud] -nx0.example.com ansible_host=192.168.0.10 - -[postgresql] -db0.example.com ansible_host=192.168.0.11 - -[redis] -rds0.example.com ansible_host=192.168.0.12 - -[coolwsd] -cl0.example.com ansible_host=192.168.0.13 - -# Nextcloud Talk -[turn] -turn0.example.com ansible_host=192.168.0.14 - -[nats] -turn0.example.com ansible_host=192.168.0.14 - -[signaling] -turn0.example.com ansible_host=192.168.0.14 - -[janus] -turn0.example.com ansible_host=192.168.0.14 diff --git a/nextcloud/ansible/resources/inventory-janus b/nextcloud/ansible/resources/inventory-janus deleted file mode 100644 index ffaa90f..0000000 --- a/nextcloud/ansible/resources/inventory-janus +++ /dev/null @@ -1,2 +0,0 @@ -[janus] -jns0-softwarelibre-mx ansible_host=10.201.15.20 diff --git a/nextcloud/ansible/resources/inventory-nats b/nextcloud/ansible/resources/inventory-nats deleted file mode 100644 index 5bea3b8..0000000 --- a/nextcloud/ansible/resources/inventory-nats +++ /dev/null @@ -1,2 +0,0 @@ -[nats] -nats1.softwarelibre.mx ansible_host=10.201.15.20 diff --git a/nextcloud/ansible/resources/inventory-signaling b/nextcloud/ansible/resources/inventory-signaling deleted file mode 100644 index 923972f..0000000 --- a/nextcloud/ansible/resources/inventory-signaling +++ /dev/null @@ -1,2 +0,0 @@ -[nats] -signaling1.softwarelibre.mx ansible_host=10.201.15.20 diff --git a/nextcloud/ansible/resources/inventory-turn0 b/nextcloud/ansible/resources/inventory-turn0 deleted file mode 100644 index 472000c..0000000 --- a/nextcloud/ansible/resources/inventory-turn0 +++ /dev/null @@ -1,2 +0,0 @@ -[turn] -turn0-softwarelibre-mx ansible_host=10.201.15.43