# deployment/manifests/service.yaml apiVersion: v1 kind: Service metadata: name: restaurant-api-service labels: app: restaurant-api spec: type: ClusterIP ports: - port: 80 targetPort: 18000 protocol: TCP name: http selector: app: restaurant-api