Which two Kubernetes Service types are fulfilled natively by Kubernetes without requiring external integrations? (Choose two.)
Which two Kubernetes Service types are fulfilled natively by Kubernetes without requiring external integrations? (Choose two.)
In Kubernetes, ClusterIP and NodePort are service types that are natively supported without requiring any external integrations. ClusterIP exposes the service on an internal IP in the cluster, making it accessible only within the cluster. NodePort exposes the service on each Node's IP at a static port, allowing access from outside the cluster. These functionalities are built into Kubernetes and do not depend on any external resources or integrations.
D. NodePort E. ClusterIP