mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-30 15:28:12 +02:00
Introduced a new Ansible role for deploying Atlassian Confluence within the Infinito.Nexus ecosystem. The role follows the same structure as web-app-pretix and includes: - : Core variables, database config, OIDC integration. - : Docker service definitions, features (Matomo, CSS, OIDC, logout, central DB). - : Loads docker, db and proxy stack. - : Placeholder for schema definitions. - : - (base for OIDC plugins/extensions), - (service orchestration), - (environment configuration). - : Metadata, license, company, logo (Font Awesome book-open icon). Canonical domain is set to `confluence.{{ PRIMARY_DOMAIN }}`. This role ensures Confluence integrates seamlessly with Keycloak OIDC and the Infinito.Nexus service stack. Conversation: https://chatgpt.com/share/68b1d006-bbd4-800f-9d2e-9c8a8af2c00f
28 lines
527 B
YAML
28 lines
527 B
YAML
credentials: {}
|
|
docker:
|
|
services:
|
|
database:
|
|
enabled: true
|
|
application:
|
|
image: atlassian/confluence
|
|
version: latest
|
|
name: confluence
|
|
volumes:
|
|
data: "confluence_data"
|
|
features:
|
|
matomo: true
|
|
css: true
|
|
desktop: true
|
|
central_database: true
|
|
logout: true
|
|
oidc: true
|
|
server:
|
|
csp:
|
|
whitelist: {}
|
|
flags: {}
|
|
domains:
|
|
canonical:
|
|
- "confluence.{{ PRIMARY_DOMAIN }}"
|
|
rbac:
|
|
roles: {}
|