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

docs: [Policy Assistant] walkthrough demo with use cases and example files #269

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
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
264 changes: 264 additions & 0 deletions cmd/policy-assistant/examples/demos/walkthrough/README.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: demo
labels:
pod: a
name: a
spec:
replicas: 1
selector:
matchLabels:
pod: a
template:
metadata:
labels:
pod: a
spec:
containers:
- command:
- /agnhost
- serve-hostname
- --tcp
- --http=false
- --port
- "80"
image: registry.k8s.io/e2e-test-images/agnhost:2.43
imagePullPolicy: IfNotPresent
name: cont-80-tcp
ports:
- containerPort: 80
name: serve-80-tcp
protocol: TCP
- command:
- /agnhost
- serve-hostname
- --tcp
- --http=false
- --port
- "81"
image: registry.k8s.io/e2e-test-images/agnhost:2.43
imagePullPolicy: IfNotPresent
name: cont-81-tcp
ports:
- containerPort: 81
name: serve-81-tcp
protocol: TCP
37 changes: 37 additions & 0 deletions cmd/policy-assistant/examples/demos/walkthrough/demo-pod-b.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
apiVersion: v1
kind: Pod
metadata:
namespace: demo
labels:
pod: b
name: b
spec:
containers:
- command:
- /agnhost
- serve-hostname
- --tcp
- --http=false
- --port
- "80"
image: registry.k8s.io/e2e-test-images/agnhost:2.43
imagePullPolicy: IfNotPresent
name: cont-80-tcp
ports:
- containerPort: 80
name: serve-80-tcp
protocol: TCP
- command:
- /agnhost
- serve-hostname
- --tcp
- --http=false
- --port
- "81"
image: registry.k8s.io/e2e-test-images/agnhost:2.43
imagePullPolicy: IfNotPresent
name: cont-81-tcp
ports:
- containerPort: 81
name: serve-81-tcp
protocol: TCP
18 changes: 18 additions & 0 deletions cmd/policy-assistant/examples/demos/walkthrough/policies/anp1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apiVersion: policy.networking.k8s.io/v1alpha1
kind: AdminNetworkPolicy
metadata:
name: anp1
spec:
priority: 1
subject:
namespaces: {}
ingress:
- name: "allow-80"
action: "Allow"
from:
- namespaces:
namespaceSelector: {}
ports:
- portNumber:
protocol: TCP
port: 80
16 changes: 16 additions & 0 deletions cmd/policy-assistant/examples/demos/walkthrough/policies/anp2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: policy.networking.k8s.io/v1alpha1
kind: AdminNetworkPolicy
metadata:
name: anp2
spec:
priority: 2
subject:
namespaces: {}
ingress:
- name: "development-ns"
action: "Pass"
from:
- namespaces:
namespaceSelector:
matchLabels:
development: "true"
13 changes: 13 additions & 0 deletions cmd/policy-assistant/examples/demos/walkthrough/policies/banp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: policy.networking.k8s.io/v1alpha1
kind: BaselineAdminNetworkPolicy
metadata:
name: default
spec:
subject:
namespaces: {}
ingress:
- name: "baseline-deny"
action: "Deny"
from:
- namespaces:
namespaceSelector: {}
12 changes: 12 additions & 0 deletions cmd/policy-assistant/examples/demos/walkthrough/policies/npv1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
namespace: demo
name: deny-anything-to-pod-a
spec:
policyTypes:
- Ingress
podSelector:
matchLabels:
pod: a
ingress: []
49 changes: 49 additions & 0 deletions cmd/policy-assistant/examples/demos/walkthrough/traffic.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[
{
"Source": {
"Internal": {
"Workload": "demo/deployment/a"
}
},
"Destination": {
"Internal": {
"Workload": "demo/pod/b"
}
},
"Protocol": "TCP",
"ResolvedPort": 80,
"ResolvedPortName": "serve-80-tcp"
},
{
"Source": {
"Internal": {
"Workload": "demo/deployment/a"
}
},
"Destination": {
"Internal": {
"Workload": "demo/pod/b"
}
},
"Protocol": "TCP",
"ResolvedPort": 81,
"ResolvedPortName": "serve-81-tcp"
},
{
"Source": {
"Internal": {
"PodLabels": {"app": "nginx"},
"NamespaceLabels": {"development": "true"},
"Namespace": "demo2"
}
},
"Destination": {
"Internal": {
"Workload": "demo/deployment/a"
}
},
"Protocol": "TCP",
"ResolvedPort": 81,
"ResolvedPortName": "serve-81-tcp"
}
]
Loading