- TechOps Examples
- Posts
- How To Run Kubernetes in Air Gapped Networks
How To Run Kubernetes in Air Gapped Networks
TechOps Examples
Hey — It's Govardhana MK 👋
Welcome to another technical edition.
Every Tuesday – You’ll receive a free edition with a byte-size use case, remote job opportunities, top news, tools, and articles.
Every Thursday and Saturday – You’ll receive a special edition with a deep dive use case, remote job opportunities and articles.
👋 Before we begin... a big thank you to today's sponsor HUBSPOT
How can AI power your income?
Ready to transform artificial intelligence from a buzzword into your personal revenue generator
HubSpot’s groundbreaking guide "200+ AI-Powered Income Ideas" is your gateway to financial innovation in the digital age.
Inside you'll discover:
A curated collection of 200+ profitable opportunities spanning content creation, e-commerce, gaming, and emerging digital markets—each vetted for real-world potential
Step-by-step implementation guides designed for beginners, making AI accessible regardless of your technical background
Cutting-edge strategies aligned with current market trends, ensuring your ventures stay ahead of the curve
Download your guide today and unlock a future where artificial intelligence powers your success. Your next income stream is waiting.
If you’re not a subscriber, here’s what you missed last week.
To receive all the full articles and support TechOps Examples, consider subscribing:
IN TODAY'S EDITION
🧠 Use Case
How To Run Kubernetes in Air Gapped Networks
🚀 Top News
👀 Remote Jobs
Arize AI is hiring a Infrastructure Engineer
Remote Location: Worldwide
Celara is hiring a DevOps Engineer
Remote Location: Worldwide
📚️ Resources
🛠️ TOOL OF THE DAY
s3grep - CLI tool for searching logs and unstructured content in Amazon S3 buckets.
🧠 USE CASE
How To Run Kubernetes in Air Gapped Networks
For someone who is new to air gap environments, it is a security measure where a network or system is physically isolated from other networks, including the internet, to prevent unauthorized access.

In air gapped environments, you cannot pull container images on demand or reach public Helm repositories. Every artifact must be explicitly packaged, shipped, and verified. The best combination for this is Talos OS and Zarf.
Talos OS is a minimal, immutable OS for Kubernetes with no shell or SSH.
Zarf packages container images, charts, and files into air gap-ready bundles.
Implementation Architecture

1. Package Creation:
In a network connected setting, 𝘻𝘢𝘳𝘧 𝘱𝘢𝘤𝘬𝘢𝘨𝘦 𝘤𝘳𝘦𝘢𝘵𝘦
is used to assemble Zarf packages, bundling all essential deployment artifacts.
2. Secure Transfer:
These Zarf packages (.tar.zst) are then securely conveyed to the air gapped zone utilizing secure transfer methods, ensuring the environment where Talos operates is safeguarded.
3. Deployment by Talos:
Use
zarf package deploy
from a Talos compatible host.Talos API unpacks the package, loads images via containerd, and starts kubelet to create pods.
Why This Works?
Talos ensures immutable, locked down nodes.
Zarf solves dependency and packaging challenges.
No internet needed at runtime.