From 8876300dc4dbe06e01d12da33ba2fbde704aba7f Mon Sep 17 00:00:00 2001 From: rasmus Date: Sat, 3 Aug 2024 04:48:51 +0300 Subject: [PATCH] argo config drift: camtiler --- camtiler/mongodb.yml | 2 +- camtiler/network-policies.yml | 41 +++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) diff --git a/camtiler/mongodb.yml b/camtiler/mongodb.yml index 707d939..591ed13 100644 --- a/camtiler/mongodb.yml +++ b/camtiler/mongodb.yml @@ -85,7 +85,7 @@ spec: - ReadWriteOnce resources: requests: - storage: 200Mi + storage: 100Mi - metadata: name: journal-volume labels: diff --git a/camtiler/network-policies.yml b/camtiler/network-policies.yml index c1fd633..1bae6c7 100644 --- a/camtiler/network-policies.yml +++ b/camtiler/network-policies.yml @@ -152,3 +152,44 @@ spec: podSelector: matchLabels: app.kubernetes.io/name: traefik +--- +# Config drift: Added by ArgoCD +apiVersion: networking.k8s.io/v1 +kind: NetworkPolicy +metadata: + name: minio +spec: + egress: + - ports: + - port: http + protocol: TCP + to: + - podSelector: + matchLabels: + app.kubernetes.io/name: minio + ingress: + - from: + - podSelector: {} + ports: + - port: http + protocol: TCP + - from: + - namespaceSelector: + matchLabels: + kubernetes.io/metadata.name: traefik + podSelector: + matchLabels: + app.kubernetes.io/name: traefik + - from: + - namespaceSelector: + matchLabels: + kubernetes.io/metadata.name: monitoring + podSelector: + matchLabels: + app.kubernetes.io/name: prometheus + podSelector: + matchLabels: + app.kubernetes.io/name: minio + policyTypes: + - Ingress + - Egress