Skip to main content

Authentik on GKE Autopilot

Authentik on GKE Autopilot

authentik (goauthentik.io) is an open-source (MIT, open-core) identity provider: single sign-on via OIDC and SAML, LDAP and SCIM, multi-factor authentication, and proxy authentication — a self-hosted alternative to Okta, Auth0, and Keycloak. This module deploys authentik on GKE Autopilot on top of the App_GKE foundation, which provisions and manages the shared Google Cloud and Kubernetes infrastructure.

This guide focuses on the cloud services authentik uses and how to explore and operate them from the Google Cloud Console and the command line. For the mechanics that are common to every GKE application — Workload Identity, ingress, autoscaling, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC Service Controls, backups, and the deployment lifecycle — refer to the App_GKE foundation guide rather than repeating them here.


1. Overview

authentik runs as a Python/Django Deployment on GKE Autopilot, with its background worker (ak worker) co-located in the same pod container. The deployment wires together a focused set of Google Cloud services:

CapabilityGoogle Cloud serviceNotes
ComputeGKE AutopilotDeployment, 2 vCPU / 4 GiB by default, 1–5 replicas
DatabaseCloud SQL for PostgreSQL 15Required — authentik needs PostgreSQL ≥ 14; MySQL is blocked
Cache & queueNone — no Redisauthentik ≥ 2025.10 moved cache, sessions, task queue, and the WebSocket channel layer into PostgreSQL
Media storageCloud Storage (GCS Fuse CSI)Bucket mounted at /media for uploaded icons and flow backgrounds
SecretsSecret ManagerStable AUTHENTIK_SECRET_KEY, akadmin bootstrap password, database password
ImageArtifact Registry + Cloud BuildThin custom build FROM ghcr.io/goauthentik/server (cloud entrypoint + worker launcher)
IngressCloud Load BalancingExternal LoadBalancer Service; optional custom domain + managed certificate

Sensible defaults worth knowing up front:

  • PostgreSQL 15 is mandatory and is the only datastore. No Redis, no search backend — sessions, cache, and the task queue all live in Cloud SQL.
  • The worker is co-located. The container entrypoint starts ak worker in the background next to the server (the same pattern as Chatwoot's Sidekiq worker) — no separate worker Deployment. Keep min_instance_count ≥ 1 so the worker is always processing.
  • max_instance_count = 5. authentik is stateless across pods — all state is in PostgreSQL — so multiple replicas (each with its own worker) are safe.
  • AUTHENTIK_SECRET_KEY is generated automatically and stored in Secret Manager. It must remain stable — rotating it invalidates all sessions and makes encrypted fields unreadable. Both secret names are simple (__-free), so they pass the GKE SecretSync targetKey validation; the AUTHENTIK_POSTGRESQL__* mapping happens inside the entrypoint from the injected DB_* variables.
  • The akadmin admin account is bootstrapped on first boot with bootstrap_email (default admin@techequity.cloud) and a Secret Manager-backed password. Bootstrap variables apply on the first boot only.
  • application_version = "latest" is pinned. authentik publishes no latest tag on GHCR; the build pins latest to a known-good release (2026.5.4) via the app-specific AUTHENTIK_VERSION build ARG.
  • Migrations run automatically at startup, guarded by a PostgreSQL advisory lock so concurrent pods don't collide — no separate migrate job.
  • Health endpoints are unauthenticated: startup GET /-/health/ready/, liveness GET /-/health/live/.

2. Google Cloud Services & How to Explore Them

All commands assume you have run gcloud container clusters get-credentials <cluster> --region <region> --project <project> and that PROJECT, REGION, and NAMESPACE are set. The namespace and other identifiers are reported in the deployment Outputs.

A. GKE Autopilot — the authentik workload

authentik pods are scheduled on Autopilot, which bills for the CPU/memory the pods request. Horizontal Pod Autoscaling sizes the Deployment between the minimum and maximum replica counts. Each pod runs the server, the background worker, and the Cloud SQL Auth Proxy sidecar.

  • Console: Kubernetes Engine → Workloads → select the authentik workload for pods, revisions, and events. Kubernetes Engine → Services & Ingress shows the external IP.
  • CLI:
    kubectl get pods,svc,hpa -n "$NAMESPACE"
    kubectl logs -n "$NAMESPACE" deploy/<service-name> -c <app-container> --tail=100
    kubectl describe hpa -n "$NAMESPACE"

See App_GKE for Autopilot, scaling, and workload-type management.

B. Cloud SQL for PostgreSQL 15

authentik stores everything here — users, groups, flows, providers, sessions, cache, and the background task queue. Pods reach the instance privately through the Cloud SQL Auth Proxy sidecar; the container entrypoint maps the injected DB_* variables onto authentik's AUTHENTIK_POSTGRESQL__* convention and sets the SSL mode by connection type — disable for the proxy sidecar's loopback TCP (127.0.0.1 / localhost; the proxy is TLS-terminated but does not speak SSL itself, so requiring SSL there fails with "server does not support SSL, but SSL was required"), require only for direct TCP to any other host. On first deploy a single db-init Job creates the tenant-scoped database and role.

  • Console: SQL → select the instance for connections, backups, flags, metrics.
  • CLI:
    gcloud sql instances list --project "$PROJECT"
    gcloud sql instances describe <instance-name> --project "$PROJECT"
    gcloud sql connect <instance-name> --user=<db-user> --database=<db-name> --project "$PROJECT"

The instance name, database, user, and password secret are in the Outputs (database and user names are tenant-prefixed). See App_GKE for the connection model, backups, and password rotation.

C. Cloud Storage — media

A dedicated bucket is mounted at /media via the GCS Fuse CSI driver for uploaded media (application icons, flow backgrounds), so uploads survive pod replacement and scaling.

  • Console: Cloud Storage → Buckets.
  • CLI:
    gcloud storage buckets list --project "$PROJECT"
    gcloud storage ls gs://<media-bucket>/ # bucket name is in the Outputs

D. Secret Manager

Two authentik secrets are generated automatically:

  • AUTHENTIK_SECRET_KEY — signs sessions/cookies and derives internal encryption. Never rotate it.

  • AUTHENTIK_BOOTSTRAP_PASSWORD — the initial akadmin password, applied on first boot only.

  • Console: Security → Secret Manager.

  • CLI:

    gcloud secrets list --project "$PROJECT" --filter="name~authentik"
    gcloud secrets versions access latest --secret=<secret-name> --project "$PROJECT"

See Authentik_Common for the full secret model and App_GKE for SecretSync details.

E. Networking & ingress

By default the workload is exposed through an external LoadBalancer IP; a custom domain with a Google-managed certificate can be enabled, and a static IP is reserved by default so the address survives redeploys. For an IdP a stable, TLS-fronted hostname matters — the OIDC/SAML redirect URIs you register in client applications must match the URL users reach authentik on.

  • Console: Network services → Load balancing; VPC network → IP addresses.
  • CLI:
    kubectl get ingress,svc -n "$NAMESPACE"
    gcloud compute addresses list --project "$PROJECT"

F. Cloud Logging & Monitoring

Server and worker logs both flow to Cloud Logging (they share the container's stdout/stderr). GKE and Cloud SQL metrics flow to Cloud Monitoring.

  • Console: Logging → Logs Explorer; Monitoring → Dashboards / Alerting.
  • CLI:
    gcloud logging read 'resource.type="k8s_container" AND resource.labels.namespace_name="'"$NAMESPACE"'"' \
    --project "$PROJECT" --limit 50

3. authentik Application Behaviour

  • First-deploy database setup. A single initialization Job runs db-init.sh using postgres:15-alpine: it waits for PostgreSQL, creates the tenant-scoped role and database, grants privileges, defensively grants cloudsqlsuperuser, and signals the proxy sidecar to shut down so the Job completes. Idempotent and safe to re-run.
  • Self-migrating startup. authentik's server runs its own Django migrations on every startup, guarded by a PostgreSQL advisory lock so concurrent pods don't collide. There is no separate migrate job. The first boot runs the full suite — expect several minutes before /-/health/ready/ returns 200; the startup probe allows ~11 minutes.
  • First login. Sign in as akadmin using the bootstrap_email value and the password in the ...-bootstrap-password secret. If the bootstrap variables were absent on the first boot, complete setup at <service-url>/if/flow/initial-setup/ instead.
  • Applications and providers are configured in-app after deploy. OIDC/SAML providers, applications, outposts, and flows are authentik configuration, not Terraform inputs — create them in the Admin interface (<service-url>/if/admin/) once the workload is ready.
  • Worker co-location. ak worker runs in the same container as the server; its log lines are interleaved in the pod logs (kubectl logs ... | grep -i worker). Keep min_instance_count ≥ 1 so scheduled tasks and outpost sync keep processing.
  • Health endpoints.
    curl -s "$SERVICE_URL/-/health/ready/" -o /dev/null -w '%{http_code}\n'   # 200 = migrated + DB reachable
    curl -s "$SERVICE_URL/-/health/live/" -o /dev/null -w '%{http_code}\n' # 200 = process alive
  • Inspect job execution:
    kubectl get jobs -n "$NAMESPACE"
    kubectl logs -n "$NAMESPACE" job/<job-name>

4. Configuration Variables

Variables are grouped exactly as they appear on the deployment platform. Only settings specific to or notable for authentik are listed; every other input is inherited from App_GKE with its standard behaviour and defaults.

Group 1 — Project & Identity

VariableDefaultDescription
project_id(required)Target Google Cloud project.
regionus-central1Region for the workload and regional resources.
bootstrap_emailadmin@techequity.cloudEmail of the built-in akadmin account, set on first boot.
bootstrap_password"" (auto-generated)Initial akadmin password. First boot only; stored in Secret Manager.

Group 2 — Deployment Environment

VariableDefaultDescription
tenant_deployment_iddemoShort suffix that makes resource names unique per environment.
support_users[]Emails granted project access and monitoring alerts.
resource_labels{}Labels applied to all resources.

Group 3 — Application Identity

VariableDefaultDescription
application_nameauthentikBase name for resources (namespace, secrets, buckets). Do not change after first deploy.
application_display_nameauthentik Identity ProviderHuman-readable name.
application_versionlatestauthentik version tag; latest is pinned to 2026.5.4 at build time (no upstream latest tag). Pin explicitly in production.

Group 4 — Runtime & Scaling

VariableDefaultDescription
deploy_applicationtrueSet false to provision infrastructure only.
container_image_sourcecustomThin wrapper image built via Cloud Build (adds the cloud entrypoint + worker launcher).
min_instance_count1Keep ≥ 1 so the co-located worker keeps processing.
max_instance_count5Safe to raise — authentik is stateless across pods.
container_port9000authentik's HTTP port (Service exposes 80).
container_resources2000m / 4GiShared by server + worker; the Autopilot default gives migration headroom.
enable_cloudsql_volumetrueAuth Proxy sidecar — keep true on GKE.
enable_image_mirroringtrueGHCR base image is mirrored into Artifact Registry.

Group 5 — Environment Variables & Secrets

VariableDefaultDescription
environment_variables{}Extra AUTHENTIK_* settings (e.g. email/SMTP: AUTHENTIK_EMAIL__HOST, …). Do not set AUTHENTIK_SECRET_KEY or AUTHENTIK_POSTGRESQL__* here.
secret_environment_variables{}Map of env var → Secret Manager secret name. Keys must be __-free (SecretSync CRD).

Group 6 — GKE Backend & Cluster

VariableDefaultDescription
service_typeLoadBalancerExternal IP for browser SSO and OAuth callbacks.
workload_typeDeployment (auto)authentik is stateless; StatefulSet is unnecessary.
session_affinityClientIPSticky routing helps the admin UI's WebSocket connections.
termination_grace_period_seconds60Grace for in-flight worker tasks on shutdown.

Group 8 — Resource Quota

VariableDefaultDescription
enable_resource_quotafalseWhen enabling, size requests ≥ 2× one pod and use binary memory suffixes ("8Gi").

Group 9 — Reliability Policies

VariableDefaultDescription
enable_pod_disruption_budgettrueProtects login availability during node upgrades.
pdb_min_available1Minimum pods during voluntary disruptions.

Group 10 — Observability & Health

VariableDefaultDescription
startup_probeHTTP /-/health/ready/, 60s delay, 40×15sUnauthenticated. Generous threshold for first-boot migrations (~11 min budget).
liveness_probeHTTP /-/health/live/, 60s delay, 3×30sUnauthenticated process-alive check.
uptime_check_configdisabledOptional Cloud Monitoring uptime check (point it at /-/health/live/).

Group 11 — Jobs & Scheduled Tasks

VariableDefaultDescription
initialization_jobs[]Leave empty to use the built-in single db-init job.
cron_jobs[]Not needed — the co-located worker runs authentik's scheduled tasks.
additional_services[]Use for extra outposts (e.g. LDAP/RADIUS) if required.

Group 12 — CI/CD & GitHub Integration

Standard App_GKE Cloud Build / Cloud Deploy integration — see App_GKE. Key inputs: enable_cicd_trigger, github_repository_url, github_token, enable_cloud_deploy, enable_binary_authorization.

Group 13 — Filesystem (NFS)

VariableDefaultDescription
enable_nfstrueOptional; authentik keeps media on GCS, not NFS.
nfs_mount_path/opt/authentik/storageMount path inside the container.

Group 14 — Cloud Storage & Artifact Registry

VariableDefaultDescription
create_cloud_storagetrueThe /media bucket is declared by Authentik_Common.
gcs_volumes[]Extra GCS Fuse mounts; /media is added automatically.
max_images_to_retain / delete_untagged_images / image_retention_days(set)Artifact Registry cleanup policy.

Group 15 — Redis

VariableDefaultDescription
enable_redisfalseInert. authentik ≥ 2025.10 removed Redis entirely; main.tf pins enable_redis = false.

Group 16 — Database Backend

VariableDefaultDescription
database_typePOSTGRES_15authentik requires PostgreSQL — MySQL values are rejected by validation.
application_database_nameauthentikDatabase base name (tenant-prefixed at deploy). Immutable after first deploy.
application_database_userauthentikApplication DB user base name (tenant-prefixed).
database_password_length32Generated password length (16–64).

Group 17 — Backup & Maintenance

VariableDefaultDescription
backup_schedule0 2 * * *Automated backup cron (UTC).
backup_retention_days7Retention; raise for production/compliance.
enable_backup_import / backup_source / backup_uri / backup_formatrestore optionsRestore from a backup on deploy.

Group 19 — Custom Domain, Static IP & Networking

VariableDefaultDescription
enable_custom_domaintrueIngress + managed certificate for custom hostnames.
application_domains[]Hostname(s) to serve. Register OIDC redirect URIs against the domain users actually reach.
reserve_static_iptrueStable external IP across redeploys — important for DNS-pinned IdP hostnames.

Group 20 — Identity-Aware Proxy (IAP)

VariableDefaultDescription
enable_iapfalseIAP in front of an IdP double-gates every login and breaks OAuth/SAML callbacks — leave off unless you know you need it.

Group 21 — Cloud Armor

VariableDefaultDescription
enable_cloud_armorfalseWAF policy on the Ingress backend — recommended for a public IdP.
admin_ip_ranges[]CIDRs allowed privileged access.

Group 22 — VPC Service Controls & Audit Logging

VariableDefaultDescription
enable_vpc_scfalseEnforce a VPC-SC perimeter (requires organization_id).
enable_audit_loggingfalseDetailed Cloud Audit Logs.

5. Outputs

These values are returned on a successful deployment and are the quickest way to locate and explore the running resources.

OutputDescription
service_nameKubernetes Service name.
namespaceNamespace the workload runs in.
service_cluster_ipIn-cluster ClusterIP.
stage_service_cluster_ipsMap of ClusterIPs for stage-specific services.
service_external_ipExternal LoadBalancer IP.
service_urlURL to reach authentik.
database_instance_nameCloud SQL instance name.
database_name / database_userApplication database name / user (tenant-prefixed).
database_password_secretSecret Manager secret holding the DB password.
database_host / database_portDB endpoint / port.
storage_bucketsCreated Cloud Storage buckets (includes the /media bucket).
network_name / network_exists / regionsVPC network, presence, regions.
container_image / container_registryDeployed image and Artifact Registry repo.
monitoring_enabled / monitoring_notification_channelsMonitoring status and channels.
initialization_jobs / db_import_jobNames of the setup and (optional) import jobs.
deployment_id / tenant_id / resource_prefixNaming identifiers.
project_id / project_numberProject identifiers.
cicd_enabled / cicd_configuration / github_repository_*CI/CD status and details.
artifact_registry_repository / cloudbuild_trigger_name / cloudbuild_trigger_idRegistry and build trigger.
kubernetes_readyWhether the cluster/workload is ready.
vpc_sc_enabled / vpc_sc_perimeter_name / vpc_sc_dry_run_modeVPC-SC status.
audit_logging_enabled / artifact_registry_cmek_enabledAudit logging and CMEK status.

6. Configuration Pitfalls & Sensible Defaults

Risk: Critical (data loss / outage / security) — High (service degraded) — Medium (cost or partial degradation) — Low (minor).

Inherited plan-time validation. This module passes its configuration through the App_GKE foundation engine, which validates values and combinations at plan time — invalid configuration fails the plan with a clear, named error before any resource is created, so most mistakes below are caught up front rather than at apply or runtime.

SettingSensible valueRiskConsequence if wrong
AUTHENTIK_SECRET_KEY (auto-generated)Never rotateCriticalRotating it invalidates all active sessions and makes encrypted fields (stored credentials, tokens) unreadable.
database_typePOSTGRES_15CriticalMySQL is blocked by validation — authentik requires PostgreSQL ≥ 14.
application_database_name / application_database_userSet onceCriticalImmutable after first deploy; renaming recreates the DB/user and destroys all identity data.
Worker listen ports (entrypoint-managed)Leave the entrypoint's AUTHENTIK_LISTEN__* loopback defaultsCriticalThe co-located ak worker also starts an HTTP listener and inherits the server's default 0.0.0.0:9000; if it wins the bind race it answers every route — health endpoints included — with empty 200s: a blank UI while the kubelet probes look green. The entrypoint pins the worker to loopback ports (127.0.0.1:9001/9444/9301) so the server owns :9000 — a 200 with an empty body means the wrong process answered.
min_instance_count≥ 1High0 is invalid semantics for the co-located worker — background tasks and outpost sync stop; outpost WebSockets disconnect.
secret_environment_variables keysSimple, __-free namesHighThe SecretSync CRD rejects keys with __ (e.g. AUTHENTIK_POSTGRESQL__PASSWORD) at apply time — that mapping belongs in the entrypoint, not a synced secret.
startup_probe.path/-/health/ready/ (unauthenticated)MediumPointing the probe at an authenticated page returns 401/403 to the kubelet — the pod never becomes ready even though authentik booted fine.
bootstrap_password / bootstrap_emailSet before first deployMediumApplied on the first boot only. Changing them later has no effect — manage akadmin in-app, or use /if/flow/initial-setup/ if bootstrap vars were absent on first boot.
application_versionPin a releaseMediumlatest is silently pinned to 2026.5.4; an explicit pin makes upgrades deliberate. Nonexistent tags fail the Cloud Build with MANIFEST_UNKNOWN.
quota_memory_requests / _limitsBinary units (8Gi), ≥ 2× one podCriticalBare integers are bytes and block all pod scheduling; quota sized to one pod deadlocks rolling updates.
environment_variablesAUTHENTIK_POSTGRESQL__*Leave unsetMediumThe entrypoint maps the injected DB_* values; hardcoding short DB names authenticates as a non-existent role (names are tenant-prefixed).
enable_iapfalseMediumIAP double-gates every login and breaks OAuth/SAML callbacks from external parties.
enable_pod_disruption_budgettrueMediumDisabling allows GKE to evict all pods simultaneously during maintenance — a full login outage.

For the foundation behaviour referenced throughout — IAM and Workload Identity, autoscaling, ingress and certificates, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC-SC, backups, and image mirroring — see App_GKE. authentik-specific application configuration shared with the Cloud Run variant is described in Authentik_Common.