gcloud-lab/apps/base/osint-dashboard/templates/security/redis-netpol.yaml
Sirius Devops 5e477492e6 feat: add OSINT Dashboard Kubernetes infrastructure
- Helm chart scaffold (Chart.yaml, values.yaml, _helpers.tpl)
- Namespace + RBAC manifests
- PostgreSQL (CNPG, 3 replicas, PostGIS + TimescaleDB)
- NATS JetStream (3 replicas, persistent, custom subjects)
- Redis Sentinel (1 primary + 2 replicas, HA)
- MinIO distributed (4 replicas, bucket init job)
- Gateway API HTTPRoute + cert-manager TLS certificates
- Monitoring stack (Prometheus, Grafana, Alertmanager, exporters)
- NetworkPolicies (default deny + per-component policies)
- GitHub Actions CI/CD pipeline (lint, template, security scan)
- Flux CD staging overlay
2026-05-21 04:15:55 +00:00

58 lines
1.5 KiB
YAML

{{- if .Values.networkPolicies.enabled }}
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: redis-netpol
namespace: {{ .Values.namespace }}
labels:
{{- include "osint-dashboard.labels" . | nindent 4 }}
app.kubernetes.io/component: security
spec:
podSelector:
matchLabels:
app.kubernetes.io/name: osint-dashboard
app.kubernetes.io/component: cache
policyTypes:
- Ingress
- Egress
ingress:
# Allow from dashboard services
- from:
- podSelector:
matchLabels:
app.kubernetes.io/name: osint-dashboard
ports:
- protocol: TCP
port: {{ .Values.redis.ports.redis }}
# Allow sentinel from dashboard + other sentinels
- from:
- podSelector:
matchLabels:
app.kubernetes.io/name: osint-dashboard
ports:
- protocol: TCP
port: {{ .Values.redis.ports.sentinel }}
egress:
# Allow DNS
- to:
- namespaceSelector: {}
podSelector:
matchLabels:
k8s-app: kube-dns
ports:
- protocol: UDP
port: 53
- protocol: TCP
port: 53
# Allow to other Redis pods (replication)
- to:
- podSelector:
matchLabels:
app.kubernetes.io/name: osint-dashboard
app.kubernetes.io/component: cache
ports:
- protocol: TCP
port: {{ .Values.redis.ports.redis }}
- protocol: TCP
port: {{ .Values.redis.ports.sentinel }}
{{- end }}