Compare commits

..

No commits in common. "4aca41125ec29085cbce0600f9dd4b86b2186a5b" and "63e2fd5a52054eee6fe1542b00788b38ca1d527a" have entirely different histories.

2 changed files with 6 additions and 8 deletions

View file

@ -1,8 +1,9 @@
--- ---
- name: Create authentik network - name: Create authentik networks
become: true become: true
community.docker.docker_network: community.docker.docker_network:
name: authentik name: "{{ item }}"
loop: ["authentik", "authentik-redis"]
- name: Create authnetik docker volumes - name: Create authnetik docker volumes
become: true become: true
community.docker.docker_volume: community.docker.docker_volume:
@ -15,7 +16,7 @@
image: redis:7.4-bookworm image: redis:7.4-bookworm
command: ["redis-server", "--save", "60", "1", "--loglevel", "warning"] command: ["redis-server", "--save", "60", "1", "--loglevel", "warning"]
networks: networks:
- name: authentik - name: authentik-redis
volumes: volumes:
- authentik-redis:/data - authentik-redis:/data
restart_policy: unless-stopped restart_policy: unless-stopped
@ -39,9 +40,9 @@
command: ["server"] command: ["server"]
networks: networks:
- name: authentik - name: authentik
- name: authentik-redis
- name: postgresql - name: postgresql
- name: haproxy - name: haproxy
- name: monitoring
user: root user: root
volumes: volumes:
- authentik-media:/media - authentik-media:/media
@ -68,6 +69,7 @@
command: ["worker"] command: ["worker"]
networks: networks:
- name: authentik - name: authentik
- name: authentik-redis
- name: postgresql - name: postgresql
volumes: volumes:
- authentik-media:/media - authentik-media:/media
@ -91,7 +93,6 @@
networks: networks:
- name: authentik - name: authentik
- name: haproxy - name: haproxy
- name: monitoring
volumes: volumes:
- authentik-certs:/certs - authentik-certs:/certs
- /etc/letsencrypt/live/comfycamp.space/fullchain.pem:/certs/comfycamp.space/fullchain.pem:ro - /etc/letsencrypt/live/comfycamp.space/fullchain.pem:/certs/comfycamp.space/fullchain.pem:ro

View file

@ -14,6 +14,3 @@ scrape_configs:
scheme: http scheme: http
static_configs: static_configs:
- targets: ["minio:9000"] - targets: ["minio:9000"]
- job_name: authentik
static_configs:
- targets: ["authentik-1:9300"]