Smart Learning/Kubernetes Learning Journey/Ingress and Gateway Routing

Apps / Part Inventory Service

TrackKubernetes Learning Journey
Current SectionIngress and Gateway Routing
Progress72 of 271
apiVersion: v1
kind: Service
metadata:
  name: part-inventory-service
  annotations:
    cloud.google.com/neg: '{"ingress": true}'
spec:
  selector:
    app: part-inventory-service
  type: ClusterIP
  ports:
    - port: 80
      targetPort: 8080