Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion docs/versioned/serving/deploying-from-private-registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,19 @@ You can configure your Knative cluster to deploy images from a private registry
env:
- name: TARGET
value: "World"
```
```
## Air-gapped environments

In air-gapped environments, the Kubernetes cluster does not have outbound
internet access. Before deploying Knative Serving workloads, ensure that all
required container images are available in an internal or private registry.

When operating in an air-gapped setup:

- Mirror all required Knative Serving and application images to a private registry.
- Ensure Kubernetes nodes can authenticate to and pull images from the private registry.
- Make sure installation manifests and YAML files are available locally.

After completing these steps, follow the same procedure described above to
configure imagePullSecrets so that Knative Services and Revisions can pull
images from the private registry.
Loading