-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy path01-cncc-namespace.yaml
More file actions
29 lines (29 loc) · 1009 Bytes
/
01-cncc-namespace.yaml
File metadata and controls
29 lines (29 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This is the namespace for the Cloud Network Controller
# Although this is really an operand of the CNO, we create this now
# because CredentialsRequests must be created at install time.
apiVersion: v1
kind: Namespace
metadata:
name: openshift-cloud-network-config-controller
labels:
openshift.io/cluster-monitoring: "true"
annotations:
include.release.openshift.io/self-managed-high-availability: "true"
include.release.openshift.io/ibm-cloud-managed: "true"
include.release.openshift.io/single-node-developer: "true"
openshift.io/node-selector: ""
openshift.io/description: "OpenShift cloud network config controller namespace - a controller used to manage cloud-level network configuration"
workload.openshift.io/allowed: "management"
---
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: default-deny
namespace: openshift-cloud-network-config-controller
spec:
podSelector: {}
policyTypes:
- Ingress
- Egress
ingress: []
egress: []