24 lines
411 B
YAML
24 lines
411 B
YAML
|
|
apiVersion: v1
|
||
|
|
kind: Service
|
||
|
|
metadata:
|
||
|
|
name: db
|
||
|
|
namespace: jam-cloud-infra
|
||
|
|
annotations:
|
||
|
|
external-dns.alpha.kubernetes.io/hostname: db.staging.video.jamkazam.com
|
||
|
|
spec:
|
||
|
|
ports:
|
||
|
|
- protocol: TCP
|
||
|
|
port: 5432
|
||
|
|
targetPort: 5432
|
||
|
|
---
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Endpoints
|
||
|
|
metadata:
|
||
|
|
name: db
|
||
|
|
namespace: jam-cloud-infra
|
||
|
|
subsets:
|
||
|
|
- addresses:
|
||
|
|
- ip: 72.14.176.182
|
||
|
|
ports:
|
||
|
|
- port: 5432
|