cloud-ark / kubeplus

Kubernetes Operator for multi-instance multi-tenancy
https://cloudark.io/
Apache License 2.0
654 stars 78 forks source link

Support for Cross Namespace Network traffic #1274

Open devdattakulkarni opened 4 months ago

devdattakulkarni commented 4 months ago

In certain situations, there might be a need to break the Namespace boundary that KubePlus enforces on service instances. For example, consider a setup where there is a database that needs to be used by two application instances. The database will be registered as its own KubePlus service with its own Helm chart. The application will be packaged as a separate Helm chart. KubePlus will create an instance of the database in its namespace. The two application instances will be created in their own namespaces. But KubePlus will prevent communication between the application instances and the database instance because of the Network Policy that KubePlus by default sets up for each application instance.

Selectively allowing cross Namespace traffic will allow KubePlus to handle this scenario.