From 5d508003b13bc87177d3f18e8e99468670373b68 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Mon, 7 Feb 2022 03:37:44 +0100 Subject: [PATCH] fix(cert-manager): Fix default deny policy Since it's the only egress policy in the namespace, it breaks cert-manager in general. This patch removes the egress coverage of the policy and by that unblocks the namespace. --- infrastructure/cert-manager/networkpolicy.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/infrastructure/cert-manager/networkpolicy.yaml b/infrastructure/cert-manager/networkpolicy.yaml index aaeb77ac9..4a8f138c9 100644 --- a/infrastructure/cert-manager/networkpolicy.yaml +++ b/infrastructure/cert-manager/networkpolicy.yaml @@ -7,7 +7,6 @@ metadata: spec: podSelector: {} policyTypes: - - Egress - Ingress --- apiVersion: networking.k8s.io/v1 -- GitLab