diff --git a/inventories/vagrant/host_vars/backend/traefik.yml b/inventories/vagrant/host_vars/backend/traefik.yml index 5aa720e..9f93d46 100644 --- a/inventories/vagrant/host_vars/backend/traefik.yml +++ b/inventories/vagrant/host_vars/backend/traefik.yml @@ -24,6 +24,10 @@ traefik_dmz_exposed_services: domain: authentik.local.test port: 443 protocol: https + - name: opencloud + domain: opencloud.local.test + port: 443 + protocol: https # Example: Add more services as you deploy them # - name: forgejo # domain: git.example.com diff --git a/inventories/vagrant/hosts.yml b/inventories/vagrant/hosts.yml index e3bf998..dd0bb12 100644 --- a/inventories/vagrant/hosts.yml +++ b/inventories/vagrant/hosts.yml @@ -58,5 +58,9 @@ all: backend: nextcloud_servers: + hosts: + backend: + + opencloud_servers: hosts: backend: \ No newline at end of file diff --git a/playbooks/site.yml b/playbooks/site.yml index 99773a1..67b417c 100644 --- a/playbooks/site.yml +++ b/playbooks/site.yml @@ -39,4 +39,10 @@ hosts: authentik_servers become: yes roles: - - digitalboard.core.authentik \ No newline at end of file + - digitalboard.core.authentik + +- name: Deploy opencloud service + hosts: opencloud_servers + become: yes + roles: + - digitalboard.core.opencloud \ No newline at end of file