Compare commits

...

9 Commits

Author SHA1 Message Date
3wc
e6e13eb1c7 chore: publish 6.3.1+2024.6.2 release 2024-08-01 13:21:39 -04:00
3bc925d3fa fix app icon paths 2024-07-17 14:42:25 +02:00
f322f6a09e fix monitoring blueprint pk 2024-07-17 14:27:34 +02:00
24ff7ee444 fix alaconnect.yml for monitoring-ng 2024-07-17 13:43:12 +02:00
38911193db better healthchecks 2024-07-17 12:53:15 +02:00
3b9bea3681 chore: publish 6.3.0+2024.6.1 release 2024-07-16 19:15:33 +02:00
e8016868fe possible fix for coop-cloud/authentik#6 2024-07-11 00:14:30 +02:00
a00c7deb2c chore: publish 6.2.0+2024.4.2 release 2024-06-10 14:31:56 +02:00
c1f0358f29 add admin mail env 2024-06-10 14:23:11 +02:00
5 changed files with 21 additions and 14 deletions

View File

@ -17,6 +17,9 @@ AUTHENTIK_LOG_LEVEL=info
## Outpost Integration ## Outpost Integration
# COMPOSE_FILE="$COMPOSE_FILE:compose.outposts.yml" # COMPOSE_FILE="$COMPOSE_FILE:compose.outposts.yml"
## ADMIN
AUTHENTIK_BOOTSTRAP_EMAIL=admin@example.com
## EMAIL ## EMAIL
AUTHENTIK_EMAIL__HOST=smtp AUTHENTIK_EMAIL__HOST=smtp
AUTHENTIK_EMAIL__PORT=587 AUTHENTIK_EMAIL__PORT=587
@ -93,13 +96,13 @@ AUTHENTIK_COLOR_BACKGROUND_LIGHT=#1c1e21
# KIMAI_DOMAIN=kimai.example.com # KIMAI_DOMAIN=kimai.example.com
# SECRET_KIMAI_ID_VERSION=v1 # SECRET_KIMAI_ID_VERSION=v1
# SECRET_KIMAI_SECRET_VERSION=v1 # SECRET_KIMAI_SECRET_VERSION=v1
# APP_ICONS="$APP_ICONS kimai:~/.abra/recipes/authentik/icons/kimai.png" # APP_ICONS="$APP_ICONS kimai:~/.abra/recipes/authentik/icons/kimai_logo.png"
# COMPOSE_FILE="$COMPOSE_FILE:compose.monitoring.yml" # COMPOSE_FILE="$COMPOSE_FILE:compose.monitoring.yml"
# MONITORING_DOMAIN=monitoring.example.com # MONITORING_DOMAIN=monitoring.example.com
# SECRET_MONITORING_ID_VERSION=v1 # SECRET_MONITORING_ID_VERSION=v1
# SECRET_MONITORING_SECRET_VERSION=v1 # SECRET_MONITORING_SECRET_VERSION=v1
# APP_ICONS="$APP_ICONS monitoring:~/.abra/recipes/authentik/icons/monitoring.png" # APP_ICONS="$APP_ICONS monitoring:~/.abra/recipes/authentik/icons/monitoring.svg"
# COMPOSE_FILE="$COMPOSE_FILE:compose.rallly.yml" # COMPOSE_FILE="$COMPOSE_FILE:compose.rallly.yml"
# RALLLY_DOMAIN=rallly.example.com # RALLLY_DOMAIN=rallly.example.com

View File

@ -14,7 +14,7 @@ export OUTLINE_CONFIG_VERSION=v2
export KIMAI_CONFIG_VERSION=v1 export KIMAI_CONFIG_VERSION=v1
export RALLLY_CONFIG_VERSION=v2 export RALLLY_CONFIG_VERSION=v2
export HEDGEDOC_CONFIG_VERSION=v1 export HEDGEDOC_CONFIG_VERSION=v1
export MONITORING_CONFIG_VERSION=v1 export MONITORING_CONFIG_VERSION=v2
export DB_ENTRYPOINT_VERSION=v1 export DB_ENTRYPOINT_VERSION=v1
customize() { customize() {

View File

@ -40,7 +40,7 @@ vikunja:
- vikunja.svg - vikunja.svg
secrets: secrets:
vikunja_id: vikunja vikunja_id: vikunja
monitoring: monitoring-ng:
uncomment: uncomment:
- compose.monitoring.yml - compose.monitoring.yml
- MONITORING_DOMAIN - MONITORING_DOMAIN

View File

@ -21,6 +21,7 @@ x-env: &env
- AUTHENTIK_COLOR_BACKGROUND_LIGHT - AUTHENTIK_COLOR_BACKGROUND_LIGHT
- AUTHENTIK_FOOTER_LINKS - AUTHENTIK_FOOTER_LINKS
- AUTHENTIK_IMPERSONATION - AUTHENTIK_IMPERSONATION
- AUTHENTIK_BOOTSTRAP_EMAIL
- WELCOME_MESSAGE - WELCOME_MESSAGE
- DEFAULT_LANGUAGE - DEFAULT_LANGUAGE
- EMAIL_SUBJECT - EMAIL_SUBJECT
@ -32,7 +33,7 @@ x-env: &env
version: '3.8' version: '3.8'
services: services:
app: app:
image: ghcr.io/goauthentik/server:2024.4.2 image: ghcr.io/goauthentik/server:2024.6.2
command: server command: server
depends_on: depends_on:
- db - db
@ -51,16 +52,13 @@ services:
- internal - internal
- proxy - proxy
healthcheck: healthcheck:
test: "bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/9000; exit $$?;'" test: "ak healthcheck"
interval: 30s interval: 30s
timeout: 10s timeout: 30s
retries: 10 retries: 10
start_period: 5m start_period: 5m
environment: *env environment: *env
deploy: deploy:
update_config:
failure_action: rollback
order: start-first
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.docker.network=proxy" - "traefik.docker.network=proxy"
@ -73,11 +71,11 @@ services:
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" - "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "traefik.http.middlewares.${STACK_NAME}-frameOptions.headers.customFrameOptionsValue=SAMEORIGIN" - "traefik.http.middlewares.${STACK_NAME}-frameOptions.headers.customFrameOptionsValue=SAMEORIGIN"
- "traefik.http.middlewares.${STACK_NAME}-frameOptions.headers.contentSecurityPolicy=frame-ancestors ${X_FRAME_OPTIONS_ALLOW_FROM}" - "traefik.http.middlewares.${STACK_NAME}-frameOptions.headers.contentSecurityPolicy=frame-ancestors ${X_FRAME_OPTIONS_ALLOW_FROM}"
- "coop-cloud.${STACK_NAME}.version=6.1.1+2024.4.2" - "coop-cloud.${STACK_NAME}.version=6.3.1+2024.6.2"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}" - "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
worker: worker:
image: ghcr.io/goauthentik/server:2024.4.2 image: ghcr.io/goauthentik/server:2024.6.2
command: worker command: worker
depends_on: depends_on:
- db - db
@ -110,6 +108,12 @@ services:
- source: flow_invalidation - source: flow_invalidation
target: /blueprints/6_flow_invalidation.yaml target: /blueprints/6_flow_invalidation.yaml
environment: *env environment: *env
healthcheck:
test: "ak healthcheck"
interval: 30s
timeout: 30s
retries: 10
start_period: 5m
db: db:
image: postgres:15.7 image: postgres:15.7
@ -143,7 +147,7 @@ services:
backupbot.backup.path: "/var/lib/postgresql/data" backupbot.backup.path: "/var/lib/postgresql/data"
redis: redis:
image: redis:7.2.4-alpine image: redis:7.4.0-alpine
networks: networks:
- internal - internal
healthcheck: healthcheck:

View File

@ -25,7 +25,7 @@ entries:
conditions: [] conditions: []
id: monitoring_provider id: monitoring_provider
identifiers: identifiers:
pk: 9994 pk: 9990
model: authentik_providers_oauth2.oauth2provider model: authentik_providers_oauth2.oauth2provider
state: present state: present