mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-12 22:24:56 +03:00
c21af3347e
- Add scripts/agent.py and references/api-reference.md to all remaining skills - Update all 648 LICENSE files: copyright now reads 'Mahipal' - Add implementing-security-monitoring-with-datadog (new skill with full anatomy) - All 649 skills now have: SKILL.md, LICENSE, scripts/agent.py, references/api-reference.md
62 lines
1.4 KiB
Markdown
62 lines
1.4 KiB
Markdown
# API Reference: Implementing Network Policies for Kubernetes
|
|
|
|
## Default Deny-All Policy
|
|
|
|
```yaml
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: default-deny
|
|
namespace: production
|
|
spec:
|
|
podSelector: {}
|
|
policyTypes: [Ingress, Egress]
|
|
```
|
|
|
|
## Allow Specific Ingress
|
|
|
|
```yaml
|
|
spec:
|
|
podSelector:
|
|
matchLabels: { app: backend }
|
|
ingress:
|
|
- from:
|
|
- podSelector: { matchLabels: { app: frontend } }
|
|
ports:
|
|
- port: 8080
|
|
```
|
|
|
|
## kubectl Commands
|
|
|
|
```bash
|
|
# List all network policies
|
|
kubectl get networkpolicy --all-namespaces
|
|
# Describe policy
|
|
kubectl describe networkpolicy default-deny -n production
|
|
# Apply policy
|
|
kubectl apply -f netpol.yaml
|
|
```
|
|
|
|
## Policy Types
|
|
|
|
| Type | Behavior when present |
|
|
|------|-----------------------|
|
|
| Ingress | Restrict inbound traffic |
|
|
| Egress | Restrict outbound traffic |
|
|
| Both empty | Default deny all |
|
|
|
|
## Common Patterns
|
|
|
|
| Pattern | Description |
|
|
|---------|-------------|
|
|
| Default deny | Empty podSelector, no rules |
|
|
| Allow DNS | Egress to kube-system:53 |
|
|
| Allow same namespace | namespaceSelector match |
|
|
| Allow from ingress controller | Label-based ingress |
|
|
|
|
### References
|
|
|
|
- K8s NetworkPolicy: https://kubernetes.io/docs/concepts/services-networking/network-policies/
|
|
- Network Policy Editor: https://editor.networkpolicy.io/
|
|
- CNI Comparison: https://kubernetes.io/docs/concepts/cluster-administration/networking/
|