Kustomize Example / Qa / Spring Boot Service

TrackKubernetes Learning Journey
Current SectionKustomize
Progress132 of 271
apiVersion: v1
kind: Service
metadata:
    name: spring-boot-service
spec:
    selector:
        app: spring-boot
    type: NodePort
    ports:
        - port: 80
          targetPort: 5000
          nodePort: 30005