├── .github └── FUNDING.yml ├── .gitmodules ├── Makefile ├── _redirects ├── archetypes └── default.md ├── config.toml ├── content ├── IPv6 │ └── _index.md ├── _index.md ├── arch │ └── _index.md ├── cni │ ├── _index.md │ ├── calico.md │ ├── cilium.md │ ├── flannel.md │ ├── iaas │ │ └── _index.md │ ├── kindnet.md │ └── weave.md ├── credits.md ├── dns │ └── _index.md ├── ingress │ ├── _index.md │ ├── egress │ │ └── _index.md │ ├── gateway │ │ └── _index.md │ └── ingress │ │ └── _index.md ├── lab │ └── _index.md ├── security │ └── _index.md └── services │ ├── Headless │ └── _index.md │ ├── Optimisations │ └── _index.md │ ├── _index.md │ ├── clusterIP │ ├── _index.md │ ├── control-plane.md │ └── dataplane │ │ ├── IPVS.md │ │ ├── eBPF.md │ │ └── iptables.md │ ├── loadBalancer │ └── _index.md │ ├── mesh │ └── _index.md │ └── nodeport │ └── _index.md ├── layouts ├── partials │ ├── favicon.html │ ├── logo.html │ └── menu-footer.html └── shortcodes │ ├── div.html │ └── iframe.html ├── license.md ├── netlify.toml └── static └── images ├── favicon.png └── k8s-guide-logo.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/Makefile -------------------------------------------------------------------------------- /_redirects : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/_redirects -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/config.toml -------------------------------------------------------------------------------- /content/IPv6/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/IPv6/_index.md -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/arch/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/arch/_index.md -------------------------------------------------------------------------------- /content/cni/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/cni/_index.md -------------------------------------------------------------------------------- /content/cni/calico.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/cni/calico.md -------------------------------------------------------------------------------- /content/cni/cilium.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/cni/cilium.md -------------------------------------------------------------------------------- /content/cni/flannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/cni/flannel.md -------------------------------------------------------------------------------- /content/cni/iaas/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/cni/iaas/_index.md -------------------------------------------------------------------------------- /content/cni/kindnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/cni/kindnet.md -------------------------------------------------------------------------------- /content/cni/weave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/cni/weave.md -------------------------------------------------------------------------------- /content/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/credits.md -------------------------------------------------------------------------------- /content/dns/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/dns/_index.md -------------------------------------------------------------------------------- /content/ingress/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/ingress/_index.md -------------------------------------------------------------------------------- /content/ingress/egress/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/ingress/egress/_index.md -------------------------------------------------------------------------------- /content/ingress/gateway/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/ingress/gateway/_index.md -------------------------------------------------------------------------------- /content/ingress/ingress/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/ingress/ingress/_index.md -------------------------------------------------------------------------------- /content/lab/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/lab/_index.md -------------------------------------------------------------------------------- /content/security/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/security/_index.md -------------------------------------------------------------------------------- /content/services/Headless/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/Headless/_index.md -------------------------------------------------------------------------------- /content/services/Optimisations/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/Optimisations/_index.md -------------------------------------------------------------------------------- /content/services/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/_index.md -------------------------------------------------------------------------------- /content/services/clusterIP/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/clusterIP/_index.md -------------------------------------------------------------------------------- /content/services/clusterIP/control-plane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/clusterIP/control-plane.md -------------------------------------------------------------------------------- /content/services/clusterIP/dataplane/IPVS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/clusterIP/dataplane/IPVS.md -------------------------------------------------------------------------------- /content/services/clusterIP/dataplane/eBPF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/clusterIP/dataplane/eBPF.md -------------------------------------------------------------------------------- /content/services/clusterIP/dataplane/iptables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/clusterIP/dataplane/iptables.md -------------------------------------------------------------------------------- /content/services/loadBalancer/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/loadBalancer/_index.md -------------------------------------------------------------------------------- /content/services/mesh/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/mesh/_index.md -------------------------------------------------------------------------------- /content/services/nodeport/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/content/services/nodeport/_index.md -------------------------------------------------------------------------------- /layouts/partials/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/layouts/partials/favicon.html -------------------------------------------------------------------------------- /layouts/partials/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/layouts/partials/logo.html -------------------------------------------------------------------------------- /layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/layouts/partials/menu-footer.html -------------------------------------------------------------------------------- /layouts/shortcodes/div.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/shortcodes/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/layouts/shortcodes/iframe.html -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/license.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/netlify.toml -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/k8s-guide-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkop/tkng/HEAD/static/images/k8s-guide-logo.png --------------------------------------------------------------------------------