Compare commits

...

2 Commits

Author SHA1 Message Date
uumas
f989c204d1 service: fix conditional 2025-10-06 16:13:35 +03:00
uumas
69eca0189e authentik: update image 2025-10-06 16:12:53 +03:00
3 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
name: service
vars:
docker_service: authentik
docker_image: "beryju/authentik:{{ authentik_tag }}"
docker_image: "ghcr.io/goauthentik/server:{{ authentik_tag }}"
docker_command:
- server
docker_image_http_port: 9000
@@ -20,7 +20,7 @@
vars:
docker_namespace: authentik
docker_service: worker
docker_image: "beryju/authentik:{{ authentik_tag }}"
docker_image: "ghcr.io/goauthentik/server:{{ authentik_tag }}"
docker_command:
- worker
reverse_proxy_type: none

View File

@@ -4,7 +4,7 @@
name: service
vars:
docker_service: authentik-ldap
docker_image: beryju/authentik-ldap:{{ authentik_ldap_tag }}
docker_image: ghcr.io/goauthentik/ldap:{{ authentik_ldap_tag }}
reverse_proxy_type: none
docker_env:
AUTHENTIK_HOST: "{{ authentik_ldap_authentik_address }}"

View File

@@ -68,4 +68,4 @@
image_user: "{{ container_image.Config.User }}"
when:
- not ansible_check_mode
- container_image.Config.User | int
- container_image.Config.User | int != 0