Kubernetes - Services
Given this NodePort service YAML, what port will you use to access the app externally?
apiVersion: v1
kind: Service
metadata:
name: example-service
spec:
type: NodePort
selector:
app: example
ports:
- port: 80
targetPort: 8080
nodePort: 31000
