website/docs/install-config/air-gapped.mdx
import TabItem from "@theme/TabItem"; import Tabs from "@theme/Tabs";
By default, authentik creates outbound connections to the following URLs:
To disable these outbound connections, adjust the following settings:
<Tabs defaultValue="docker-compose" values={[ {label: 'Docker Compose', value: 'docker-compose'}, {label: 'Kubernetes', value: 'kubernetes'}, ]}> <TabItem value="docker-compose">
Add the following block to your .env file:
AUTHENTIK_DISABLE_STARTUP_ANALYTICS=true
AUTHENTIK_DISABLE_UPDATE_CHECK=true
AUTHENTIK_ERROR_REPORTING__ENABLED=false
Afterwards, run the upgrade commands from the latest release notes.
</TabItem> <TabItem value="kubernetes">Add the following block to your values.yml file:
authentik:
error_reporting:
enabled: false
disable_update_check: true
disable_startup_analytics: true
Afterwards, run the upgrade commands from the latest release notes.
</TabItem> </Tabs>Additionally, adjust the following System settings:
initials.authentik deployments require access to the following container images. In an air-gapped environment, this can be achieved by mirroring the images to an internal registry, or using other methods appropriate for your environment.
ghcr.io/goauthentik/server or authentik/serverghcr.io/goauthentik/ldap or authentik/ldapghcr.io/goauthentik/proxy or authentik/proxyghcr.io/goauthentik/rac or authentik/racghcr.io/goauthentik/radius or authentik/radiusFor Helm deployments, ensure access to the following repository. In an air-gapped environment, this can be achieved by mirroring the chart to an internal registry, or using other methods appropriate for your environment.
Each outpost container, in order to communicate with authentik, requires access to the authentik server via whichever protocol is specified in the URL set in the AUTHENTIK_HOST environment variable (preferably HTTPS).
The outpost containers also need certain ports exposed:
For more detailed information about outpost configuration in air-gapped environments, see the Outposts documentation.