InterviewSolution
Saved Bookmarks
| 1. |
Complete the following configurationspec file to make it Ingress |
|
Answer» metadata: NAME: someapp-ingressspec: One of the several ways to ANSWER this question. apiVersion: networking.k8s.io/v1kind: Ingressmetadata: name: someapp-ingressspec: rules: - host: my.host http: paths: - backend: serviceName: someapp-internal-service servicePort: 8080 |
|