You create a Service with the following manifest. What is the effect? service.yaml: apiVersion: v1 kind: Service metadata: name: ext-svc spec: type: ExternalName externalName: db.example.com
ExternalName maps the service DNS name to the external DNS name.
Why this answer
ExternalName services return a CNAME record for the external name, not a ClusterIP.