20 lines
391 B
YAML
20 lines
391 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: postgres
|
|
namespace: my-first-project
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: postgres
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: postgres
|
|
spec:
|
|
containers:
|
|
- name: postgres
|
|
image: us-docker.pkg.dev/capturetheklarrioflag/gcr.io/pg-container
|
|
imagePullPolicy: "Always"
|