summaryrefslogtreecommitdiff
path: root/yaml/policies/network.yaml
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-18 11:20:04 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-18 11:20:04 +0200
commit9e3aff2e2a88f7b95b4c785a1af6084c09621d53 (patch)
tree56330c2110a23c7b01233025b58c668f9e243bf1 /yaml/policies/network.yaml
parent64a6d5dd87f892536d9b52350fd30e66c722ed8a (diff)
Reorganize files in folders
Diffstat (limited to 'yaml/policies/network.yaml')
-rw-r--r--yaml/policies/network.yaml18
1 files changed, 18 insertions, 0 deletions
diff --git a/yaml/policies/network.yaml b/yaml/policies/network.yaml
new file mode 100644
index 0000000..2af8a27
--- /dev/null
+++ b/yaml/policies/network.yaml
@@ -0,0 +1,18 @@
+apiVersion: networking.k8s.io/v1
+kind: NetworkPolicy
+metadata:
+ name: allow-cas-postgres
+spec:
+ podSelector:
+ matchLabels:
+ app: cas
+ policyTypes:
+ - Ingress
+ ingress:
+ - from:
+ - podSelector:
+ matchLabels:
+ app: postgres
+ ports:
+ - protocol: TCP
+ port: 5432