This commit is contained in:
ION606
2025-09-13 22:31:18 -04:00
parent bf98e2055e
commit b4f2ec3ce4
24 changed files with 111 additions and 117 deletions
+1 -2
View File
@@ -2,7 +2,7 @@ apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-browser-ingress
namespace: ai
namespace: argocd
spec:
podSelector:
matchLabels:
@@ -14,4 +14,3 @@ spec:
cidr: 0.0.0.0/0
ports:
- { protocol: TCP, port: 7788 }
+1 -2
View File
@@ -2,7 +2,7 @@ apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-common-egress
namespace: ai
namespace: argocd
spec:
podSelector: {}
policyTypes: ["Egress"]
@@ -23,4 +23,3 @@ spec:
kubernetes.io/metadata.name: ai
ports:
- { protocol: TCP, port: 5432 }
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-https-egress
namespace: ai
namespace: argocd
spec:
podSelector: {}
policyTypes: ["Egress"]
@@ -2,7 +2,7 @@ apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-openwebui-ingress
namespace: ai
namespace: argocd
spec:
# Select the Open WebUI pods deployed by the Helm release "openwebui"
podSelector:
@@ -17,4 +17,3 @@ spec:
# Open WebUI typically listens on 8080 (chart default), sometimes 80
- { protocol: TCP, port: 8080 }
- { protocol: TCP, port: 80 }
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: default-deny-all
namespace: ai
namespace: argocd
spec:
podSelector: {} # die
policyTypes: ["Ingress", "Egress"]