Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Network policy #9

Open
wants to merge 2 commits into
base: namespace-separation
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 25 additions & 0 deletions networkpolicy.yaml
@@ -0,0 +1,25 @@
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: default-deny-ingress
namespace: namespace-a
spec:
podSelector: {}
policyTypes:
- Ingress
---
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: allow-namespace-a
namespace: namespace-a
spec:
podSelector:
matchLabels:
app: k8s-security-demo
ingress:
- from:
- namespaceSelector:
matchLabels:
team: a
11 changes: 11 additions & 0 deletions testpod-namespace-separation.yaml
Expand Up @@ -9,3 +9,14 @@ spec:
- name: curl
image: curlimages/curl
command: [ "sleep", "600" ]
---
apiVersion: v1
kind: Pod
metadata:
name: testpod
namespace: namespace-a
spec:
containers:
- name: curl
image: curlimages/curl
command: [ "sleep", "600" ]