Last active
July 25, 2023 10:28
-
-
Save initcron/954a91fcb49915cbbc56e395758d3469 to your computer and use it in GitHub Desktop.
Simple Service Spec for Vote App
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: vote | |
name: vote | |
spec: | |
ports: | |
- name: "80" | |
nodePort: 30000 | |
port: 80 | |
protocol: TCP | |
targetPort: 80 | |
selector: | |
app: vote | |
type: NodePort | |
status: | |
loadBalancer: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment