Skip to content

Instantly share code, notes, and snippets.

@henryeleonu
Created December 19, 2022 08:44
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
postgres service
apiVersion: v1
kind: Service # Create service
metadata:
name: postgres # Sets the service name
namespace: default
labels:
app: postgres # Defines app to create service for
spec:
#type: # Sets the service type
ports:
- protocol: TCP
port: 31653
targetPort: 5432
selector:
app: postgres
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment