2018-03-05 12:57:48 +01:00
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: db
|
2018-10-09 21:51:59 +02:00
|
|
|
namespace: vote
|
2018-03-05 12:57:48 +01:00
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: db
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- image: postgres:9.4
|
|
|
|
name: db
|
|
|
|
volumeMounts:
|
|
|
|
- mountPath: /var/lib/postgresql/data
|
|
|
|
name: db-data
|
|
|
|
volumes:
|
|
|
|
- name: db-data
|
|
|
|
emptyDir: {}
|