We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10d764 commit 26e036cCopy full SHA for 26e036c
1 file changed
k8s/portfolio/postgres/deployment.yaml
@@ -0,0 +1,24 @@
1
+apiVersion: apps/v1
2
+kind: Deployment
3
+metadata:
4
+ name: postgres
5
+ labels:
6
+ app: postgres
7
+spec:
8
+ replicas: 1
9
+ selector:
10
+ matchLabels:
11
12
+ template:
13
+ metadata:
14
15
16
+ spec:
17
+ containers:
18
+ - name: postgres
19
+ image: postgres:17
20
+ ports:
21
+ - containerPort: 5432
22
+ envFrom:
23
+ - secretRef:
24
+ name: postgres-secret
0 commit comments