Compare commits
32 Commits
d8d0b5c9e5
...
0.1.11
Author | SHA1 | Date | |
---|---|---|---|
a278d5a438
|
|||
6ff3590514
|
|||
801b4b2cbf
|
|||
5ea018e04c
|
|||
842492c30d
|
|||
249f2e8926
|
|||
0f75b2a4aa
|
|||
d934993817
|
|||
4c65b70f97
|
|||
fe5ebb9531
|
|||
2d5b6a9357
|
|||
563e261ef3
|
|||
51a466a150
|
|||
7b9fed4a11
|
|||
25be7155e0
|
|||
950d017889
|
|||
31639291f1
|
|||
127a128a73
|
|||
6bf38f8273
|
|||
266057d11c
|
|||
afa91a622b
|
|||
d92262798a
|
|||
4b13c448d0
|
|||
a9a988ec69
|
|||
d9de07c8f8
|
|||
c51dd4c142
|
|||
bfd6449a71
|
|||
7ebde915db
|
|||
a18c8c3355
|
|||
5a6ffc6991
|
|||
e7ea03c00e
|
|||
c7040c96f8
|
@ -1,6 +1,6 @@
|
|||||||
namespace: finallycoffee
|
namespace: finallycoffee
|
||||||
name: services
|
name: services
|
||||||
version: 0.1.7
|
version: "0.1.11"
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- transcaffeine <transcaffeine@finally.coffee>
|
- transcaffeine <transcaffeine@finally.coffee>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
authelia_version: "4.38.16"
|
authelia_version: "4.38.18"
|
||||||
authelia_user: authelia
|
authelia_user: authelia
|
||||||
authelia_base_dir: /opt/authelia
|
authelia_base_dir: /opt/authelia
|
||||||
authelia_domain: authelia.example.org
|
authelia_domain: authelia.example.org
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
ghost_domain: ~
|
ghost_domain: ~
|
||||||
ghost_version: "5.96.0"
|
ghost_version: "5.107.2"
|
||||||
ghost_user: ghost
|
ghost_user: ghost
|
||||||
ghost_user_group: ghost
|
ghost_user_group: ghost
|
||||||
ghost_base_path: /opt/ghost
|
ghost_base_path: /opt/ghost
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
gitea_version: "1.22.3"
|
gitea_version: "1.23.1"
|
||||||
gitea_user: git
|
gitea_user: git
|
||||||
gitea_run_user: "{{ gitea_user }}"
|
gitea_run_user: "{{ gitea_user }}"
|
||||||
gitea_base_path: "/opt/gitea"
|
gitea_base_path: "/opt/gitea"
|
||||||
|
@ -53,5 +53,5 @@ hedgedoc_container_all_labels: >-2
|
|||||||
{{ hedgedoc_container_base_labels | default({}, true)
|
{{ hedgedoc_container_base_labels | default({}, true)
|
||||||
| combine(hedgedoc_container_labels | default({}, true)) }}
|
| combine(hedgedoc_container_labels | default({}, true)) }}
|
||||||
hedgedoc_container_restart_policy: >-2
|
hedgedoc_container_restart_policy: >-2
|
||||||
{{ (hedgedoc_deployment_method === 'docker')
|
{{ (hedgedoc_deployment_method == 'docker')
|
||||||
| ternary('unless-stopped', 'on-failure') }}
|
| ternary('unless-stopped', 'on-failure') }}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
jellyfin_user: jellyfin
|
jellyfin_user: jellyfin
|
||||||
jellyfin_version: "10.10.0"
|
jellyfin_version: "10.10.5"
|
||||||
jellyfin_state: present
|
jellyfin_state: present
|
||||||
|
|
||||||
jellyfin_base_path: /opt/jellyfin
|
jellyfin_base_path: /opt/jellyfin
|
||||||
|
@ -3,3 +3,14 @@
|
|||||||
Ansible role for deploying keycloak, currently only supports docker.
|
Ansible role for deploying keycloak, currently only supports docker.
|
||||||
|
|
||||||
Migrated from `entropia.sso.keycloak`.
|
Migrated from `entropia.sso.keycloak`.
|
||||||
|
|
||||||
|
## Required variables
|
||||||
|
|
||||||
|
- `keycloak_database_password` - password for the database user
|
||||||
|
- `keycloak_config_hostname` - public domain of the keycloak server
|
||||||
|
|
||||||
|
## Database configuration
|
||||||
|
|
||||||
|
- `keycloak_database_hostname` - hostname of the database server, defaults to `localhost`
|
||||||
|
- `keycloak_database_username` - username to use when connecting to the database server, defaults to `keycloak`
|
||||||
|
- `keycloak_database_database` - name of the database to use, defaults to `keycloak`
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
keycloak_version: 26.0.5
|
keycloak_version: "26.1.0"
|
||||||
keycloak_container_name: keycloak
|
keycloak_container_name: keycloak
|
||||||
|
|
||||||
keycloak_container_image_upstream_registry: quay.io
|
keycloak_container_image_upstream_registry: quay.io
|
||||||
@ -37,7 +37,10 @@ keycloak_container_command: >-2
|
|||||||
start
|
start
|
||||||
--db-username {{ keycloak_database_username }}
|
--db-username {{ keycloak_database_username }}
|
||||||
--db-password {{ keycloak_database_password }}
|
--db-password {{ keycloak_database_password }}
|
||||||
--db-url jdbc:postgresql://{{ keycloak_database_hostname }}:{{ keycloak_database_port }}/{{ keycloak_database_database }}
|
--db-url jdbc:postgresql://{{ keycloak_database_hostname }}{{ keycloak_database_port | ternary(':' ~ keycloak_database_port, '') }}/{{ keycloak_database_database }}
|
||||||
|
{{ keycloak_container_extra_start_flags | default([]) | join(' ') }}
|
||||||
|
--proxy-headers=xforwarded
|
||||||
|
--hostname {{ keycloak_config_hostname }}
|
||||||
--optimized
|
--optimized
|
||||||
|
|
||||||
keycloak_config_health_enabled: true
|
keycloak_config_health_enabled: true
|
||||||
|
@ -67,12 +67,6 @@
|
|||||||
recreate: "{{ keycloak_container_force_recreate | default(false) or (keycloak_container_image_status.changed if keycloak_container_image_status is defined else false) }}"
|
recreate: "{{ keycloak_container_force_recreate | default(false) or (keycloak_container_image_status.changed if keycloak_container_image_status is defined else false) }}"
|
||||||
etc_hosts: "{{ keycloak_container_etc_hosts | default(omit) }}"
|
etc_hosts: "{{ keycloak_container_etc_hosts | default(omit) }}"
|
||||||
state: started
|
state: started
|
||||||
command: >-2
|
command: "{{ keycloak_container_command }}"
|
||||||
start
|
|
||||||
--db-username {{ keycloak_database_username }}
|
|
||||||
--db-password {{ keycloak_database_password }}
|
|
||||||
--db-url jdbc:postgresql://{{ keycloak_database_hostname }}{{ keycloak_database_port | ternary(':' ~ keycloak_database_port, '') }}/{{ keycloak_database_database }}
|
|
||||||
{{ keycloak_container_extra_start_flags | default([]) | join(' ') }}
|
|
||||||
--optimized
|
|
||||||
tags:
|
tags:
|
||||||
- keycloak-container
|
- keycloak-container
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
snipe_it_user: snipeit
|
snipe_it_user: snipeit
|
||||||
snipe_it_version: "7.0.13"
|
snipe_it_version: "7.1.15"
|
||||||
snipe_it_domain: ~
|
snipe_it_domain: ~
|
||||||
snipe_it_state: present
|
snipe_it_state: present
|
||||||
snipe_it_deployment_method: docker
|
snipe_it_deployment_method: docker
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
vaultwarden_user: vaultwarden
|
vaultwarden_user: vaultwarden
|
||||||
vaultwarden_version: "1.32.3"
|
vaultwarden_version: "1.33.0"
|
||||||
|
|
||||||
vaultwarden_config_file: "/etc/vaultwarden/config.json"
|
vaultwarden_config_file: "/etc/vaultwarden/config.json"
|
||||||
vaultwarden_config_directory: "{{ vaultwarden_config_file | dirname }}"
|
vaultwarden_config_directory: "{{ vaultwarden_config_file | dirname }}"
|
||||||
|
Reference in New Issue
Block a user