12 lines
191 B
YAML
12 lines
191 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: postgres-client
|
|
spec:
|
|
containers:
|
|
- name: postgres
|
|
image: postgres:18
|
|
command: ["/bin/sh"]
|
|
args:
|
|
- -c
|
|
- "sleep 1000000"
|