-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path05_postgres_deploy.yml
More file actions
49 lines (48 loc) · 961 Bytes
/
Copy path05_postgres_deploy.yml
File metadata and controls
49 lines (48 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#apiVersion: v1
#kind: Service
#metadata:
# name: postgres
# namespace: tagger
#spec:
# selector:
# app: postgres
# ports:
# - protocol: TCP
# port: 5432
# targetPort: 5432
---
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: postgres
namespace: tagger
spec:
serviceName: postgres
replicas: 1
template:
metadata:
labels:
app: postgres
spec:
terminationGracePeriodSeconds: 10
containers:
- name: postgres
image: postgres
ports:
- containerPort: 5432
env:
- name: POSTGRES_PASSWORD
value: postgres
- name: PGDATA
value: /var/lib/postgresql/data/db
volumeMounts:
- name: datadir
mountPath: /var/lib/postgresql/data
volumeClaimTemplates:
- metadata:
name: datadir
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 10Gi