provisioning-code/workspace/wuji/postgresdb/srvc-postgresdb.yaml

24 lines
466 B
YAML

apiVersion: v1
# Kind for service
kind: Service
metadata:
# Name your service
name: postgresdb
namespace: kore
labels:
app: postgresdb
component: dply
tier: data-db
group: core
spec:
# Choose how to expose your service
#type: NodePort
ports:
# The port number to expose the service
- port: 5432
# Pod to route service traffic
selector:
app: postgresdb
component: dply
tier: data-db
group: core