Smart Learning/Kubernetes Learning Journey/Ingress and Gateway Routing

Apps / Part Gateway Service

TrackKubernetes Learning Journey
Current SectionIngress and Gateway Routing
Progress70 of 271
apiVersion: v1
kind: Service
metadata:
  name: part-gateway-service
  labels:
    app: part-gateway
spec:
  selector:
    app: part-gateway
  ports:
    - name: http
      port: 80
      targetPort: 8080
  type: NodePort