* Feat: update Kubernetes manifests for Krawl deployment and improve resource labels * Feat: update version to 1.0.0 in Helm chart and related files; add timezone to README * Feat: enhance configuration options for handling malicious IPs and update dashboard secret path * Fix: standardize boolean value handling in environment configuration
36 lines
756 B
YAML
36 lines
756 B
YAML
# Source: krawl-chart/templates/network-policy.yaml
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: krawl
|
|
namespace: krawl-system
|
|
labels:
|
|
app.kubernetes.io/name: krawl
|
|
app.kubernetes.io/instance: krawl
|
|
app.kubernetes.io/version: "1.0.0"
|
|
spec:
|
|
podSelector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: krawl
|
|
app.kubernetes.io/instance: krawl
|
|
policyTypes:
|
|
- Ingress
|
|
- Egress
|
|
ingress:
|
|
- from:
|
|
- podSelector: {}
|
|
- namespaceSelector: {}
|
|
- ipBlock:
|
|
cidr: 0.0.0.0/0
|
|
ports:
|
|
- port: 5000
|
|
protocol: TCP
|
|
egress:
|
|
- ports:
|
|
- protocol: TCP
|
|
- protocol: UDP
|
|
to:
|
|
- namespaceSelector: {}
|
|
- ipBlock:
|
|
cidr: 0.0.0.0/0
|