Skip to content

Commit bc29458

Browse files
committed
Upstream: <carry>: Add allow-all networkpolicy for openshift-operators namespace
1 parent 39e7a70 commit bc29458

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
apiVersion: networking.k8s.io/v1
2+
kind: NetworkPolicy
3+
metadata:
4+
name: default-allow-all
5+
namespace: openshift-operators
6+
annotations:
7+
include.release.openshift.io/ibm-cloud-managed: "true"
8+
include.release.openshift.io/self-managed-high-availability: "true"
9+
spec:
10+
podSelector: {}
11+
policyTypes:
12+
- Ingress
13+
- Egress
14+
ingress:
15+
- {}
16+
egress:
17+
- {}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apiVersion: networking.k8s.io/v1
2+
kind: NetworkPolicy
3+
metadata:
4+
name: default-allow-all
5+
namespace: {{ .Values.operator_namespace }}
6+
spec:
7+
podSelector: {}
8+
policyTypes:
9+
- Ingress
10+
- Egress
11+
ingress:
12+
- {}
13+
egress:
14+
- {}

0 commit comments

Comments
 (0)