Compare commits

...

14 Commits

9 changed files with 12 additions and 9 deletions

View File

@ -1,13 +1,13 @@
namespace: finallycoffee
name: services
version: 0.1.10
version: "0.1.12"
readme: README.md
authors:
- transcaffeine <transcaffeine@finally.coffee>
description: Various ansible roles useful for automating infrastructure
dependencies:
"community.crypto": "^2.0.0"
"community.docker": "^3.0.0"
"community.crypto": "^2.22.0"
"community.docker": "^4.0.0"
license_file: LICENSE.md
build_ignore:
- '*.tar.gz'

View File

@ -1,6 +1,6 @@
---
ghost_domain: ~
ghost_version: "5.105.0"
ghost_version: "5.109.0"
ghost_user: ghost
ghost_user_group: ghost
ghost_base_path: /opt/ghost

View File

@ -32,6 +32,7 @@ gitea_container_extra_labels: {}
gitea_container_extra_ports: []
gitea_container_extra_volumes: []
gitea_container_state: started
gitea_container_user: ~
# container defaults
gitea_container_base_volumes:

View File

@ -1,5 +1,4 @@
---
- name: Ensure gitea user '{{ gitea_user }}' is present
ansible.builtin.user:
name: "{{ gitea_user }}"
@ -75,6 +74,7 @@
published_ports: "{{ gitea_container_ports }}"
restart_policy: "{{ gitea_container_restart_policy }}"
state: "{{ gitea_container_state }}"
user: "{{ gitea_container_user | default(omit, true) }}"
- name: Ensure given configuration is set in the config file
ansible.builtin.ini_file:

View File

@ -1,6 +1,6 @@
---
hedgedoc_user: hedgedoc
hedgedoc_version: "1.10.0"
hedgedoc_version: "1.10.1"
hedgedoc_state: present
hedgedoc_deployment_method: docker

View File

@ -1,6 +1,6 @@
---
jellyfin_user: jellyfin
jellyfin_version: "10.10.3"
jellyfin_version: "10.10.5"
jellyfin_state: present
jellyfin_base_path: /opt/jellyfin

View File

@ -1,5 +1,5 @@
---
keycloak_version: 26.0.7
keycloak_version: "26.1.0"
keycloak_container_name: keycloak
keycloak_container_image_upstream_registry: quay.io

View File

@ -10,7 +10,9 @@ ENV KC_DB=$DB_VENDOR
WORKDIR {{ keycloak_container_working_directory }}
{% if keycloak_container_image_add_local_providers | default(true) %}
ADD ./providers/* providers/
{% endif %}
# Workaround to set correct mode on jar files
USER root
RUN chmod -R 0770 providers/*

View File

@ -1,6 +1,6 @@
---
vaultwarden_user: vaultwarden
vaultwarden_version: "1.32.7"
vaultwarden_version: "1.33.1"
vaultwarden_config_file: "/etc/vaultwarden/config.json"
vaultwarden_config_directory: "{{ vaultwarden_config_file | dirname }}"