-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Separate control and data planes #292
Labels
Comments
f5yacobucci
changed the title
WIP: Separate control and data planes
Separate control and data planes
Nov 3, 2022
3 tasks
This was referenced Jan 17, 2023
Closed
I think before we pick this back up, we may want do two things:
|
Mistakenly marked as complete. Moving this functionality to a new epic. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
As a route to efficacy and quickly understanding the Gateway API; its implementation and alignment to NGINX as a data plane, we decided on a simplified, but rigid, deployment pattern. To improve our security posture and installation flexibility the control and data planes should be separated as semi-autonomous, distributed components.
Problem
Control plane containers and data plane containers compose into a single Kubernetes Pod.
Control plane containers use OS signals and file system sharing to exchange data.
Control plane and data plane are governed by the same RBAC policies as they reside in one Pod and ServiceAccount.
Control plane and data plane must scale dependently and cannot scale on independent axis.
Compromise of the control plane may impact customer traffic in the data plane.
Compromise of the data plane may expose Kubernetes API server and impact the cluster and allow horizontal movement in the network.
Kubernetes secrets and sensitive data will be shared across containers unnecessarily.
Violation of a basic zero-trust tenet: "The data plane and control plane are logically separated." NIST SP 800-207
Solution
Separate control and data planes across independent Pods and Deployments.
A/C:
Create design document outlining new architecture and deployment pattern. Should cover communication channels between control and data planes, authentication and authorization, interfaces, and data plane agent options. Both planes should eventually scale, only data plane is required for the first iteration.
Out of scope:
Aha! Link: https://nginx.aha.io/features/NKG-72
The text was updated successfully, but these errors were encountered: