35 lines
504 B
YAML
35 lines
504 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: pg16
|
|
namespace: infrastructure
|
|
labels:
|
|
app: pg16
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 5432
|
|
targetPort: 5432
|
|
protocol: TCP
|
|
name: postgres
|
|
selector:
|
|
app: pg16
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: pg16-nodeport
|
|
namespace: infrastructure
|
|
labels:
|
|
app: pg16
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 5432
|
|
targetPort: 5432
|
|
nodePort: 30432
|
|
protocol: TCP
|
|
name: postgres
|
|
selector:
|
|
app: pg16
|