Convertx manifests

This commit is contained in:
2025-12-22 10:23:13 +01:00
parent 118422cfab
commit 4a274f4e41
4 changed files with 135 additions and 0 deletions

33
ConvertX/netPolicy.yaml Normal file
View File

@@ -0,0 +1,33 @@
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: convertxthing-networkpolicy
labels:
project: convertx
spec:
podSelector:
matchLabels:
pod-project: convertx
egress:
ingress:
# Example for how to only allow connections from
# a namespace with a reverse proxy and specific pods
# - from:
# - namespaceSelector:
# matchLabels:
# ns-name: <MyReverseProxyNS>
# podSelector:
# matchLabels:
# podDomain: <MyPodLabel>
# ports:
# - protocol: TCP
# port: 3000
policyTypes:
- Ingress
- Egress