write-ups-challenges-2022-2023/k8s_easter_eggs/part3/postgres.yaml

20 lines
391 B
YAML
Raw Normal View History

2022-11-24 21:59:22 +00:00
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"