mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-02-14 18:29:51 +00:00
16 lines
191 B
YAML
16 lines
191 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: db
|
|
name: db
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- name: "db-service"
|
|
port: 5432
|
|
targetPort: 5432
|
|
selector:
|
|
app: db
|
|
|