Skip to content

Instantly share code, notes, and snippets.

@talonx
Forked from matthewpalmer/service.yaml
Created December 2, 2019 05:35
Show Gist options
  • Save talonx/888a65b8f32066a1d789ad48b07c4bd7 to your computer and use it in GitHub Desktop.
Save talonx/888a65b8f32066a1d789ad48b07c4bd7 to your computer and use it in GitHub Desktop.
overview of kubernetes port definitions
kind: Service
apiVersion: v1
metadata:
name: port-example-svc
spec:
# Make the service externally visible via the node
type: NodePort
ports:
# Which port on the node is the service available through?
- nodePort: 31234
# Inside the cluster, what port does the service expose?
- port: 8080
# Which port do pods selected by this service expose?
- targetPort:
selector:
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment