├── .github └── ISSUE_TEMPLATE.txt ├── 00-create-cluster.md ├── 01-deny-all-traffic-to-an-application.md ├── 02-limit-traffic-to-an-application.md ├── 02a-allow-all-traffic-to-an-application.md ├── 03-deny-all-non-whitelisted-traffic-in-the-namespace.md ├── 04-deny-traffic-from-other-namespaces.md ├── 05-allow-traffic-from-all-namespaces.md ├── 06-allow-traffic-from-a-namespace.md ├── 07-allow-traffic-from-some-pods-in-another-namespace.md ├── 08-allow-external-traffic.md ├── 09-allow-traffic-only-to-a-port.md ├── 10-allowing-traffic-with-multiple-selectors.md ├── 11-deny-egress-traffic-from-an-application.md ├── 12-deny-all-non-whitelisted-traffic-from-the-namespace.md ├── 14-deny-external-egress-traffic.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── img ├── 1.gif ├── 2.gif ├── 3.gif ├── 4.gif ├── 5.gif ├── 6.gif ├── 8.gif └── 9.gif /.github/ISSUE_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/.github/ISSUE_TEMPLATE.txt -------------------------------------------------------------------------------- /00-create-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/00-create-cluster.md -------------------------------------------------------------------------------- /01-deny-all-traffic-to-an-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/01-deny-all-traffic-to-an-application.md -------------------------------------------------------------------------------- /02-limit-traffic-to-an-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/02-limit-traffic-to-an-application.md -------------------------------------------------------------------------------- /02a-allow-all-traffic-to-an-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/02a-allow-all-traffic-to-an-application.md -------------------------------------------------------------------------------- /03-deny-all-non-whitelisted-traffic-in-the-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/03-deny-all-non-whitelisted-traffic-in-the-namespace.md -------------------------------------------------------------------------------- /04-deny-traffic-from-other-namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/04-deny-traffic-from-other-namespaces.md -------------------------------------------------------------------------------- /05-allow-traffic-from-all-namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/05-allow-traffic-from-all-namespaces.md -------------------------------------------------------------------------------- /06-allow-traffic-from-a-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/06-allow-traffic-from-a-namespace.md -------------------------------------------------------------------------------- /07-allow-traffic-from-some-pods-in-another-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/07-allow-traffic-from-some-pods-in-another-namespace.md -------------------------------------------------------------------------------- /08-allow-external-traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/08-allow-external-traffic.md -------------------------------------------------------------------------------- /09-allow-traffic-only-to-a-port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/09-allow-traffic-only-to-a-port.md -------------------------------------------------------------------------------- /10-allowing-traffic-with-multiple-selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/10-allowing-traffic-with-multiple-selectors.md -------------------------------------------------------------------------------- /11-deny-egress-traffic-from-an-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/11-deny-egress-traffic-from-an-application.md -------------------------------------------------------------------------------- /12-deny-all-non-whitelisted-traffic-from-the-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/12-deny-all-non-whitelisted-traffic-from-the-namespace.md -------------------------------------------------------------------------------- /14-deny-external-egress-traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/14-deny-external-egress-traffic.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/README.md -------------------------------------------------------------------------------- /img/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/img/1.gif -------------------------------------------------------------------------------- /img/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/img/2.gif -------------------------------------------------------------------------------- /img/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/img/3.gif -------------------------------------------------------------------------------- /img/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/img/4.gif -------------------------------------------------------------------------------- /img/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/img/5.gif -------------------------------------------------------------------------------- /img/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/img/6.gif -------------------------------------------------------------------------------- /img/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/img/8.gif -------------------------------------------------------------------------------- /img/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmetb/kubernetes-network-policy-recipes/HEAD/img/9.gif --------------------------------------------------------------------------------