mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-12 16:26:40 +00:00
bb5f10fc16
Kubernetes is currently *not* functional, but it will be, soon!
27 lines
562 B
YAML
27 lines
562 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: mongodb
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: mongodb
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mongodb
|
|
spec:
|
|
containers:
|
|
- name: mongodb
|
|
image: mongo:3.2.16
|
|
command: ["mongod", "--smallfiles", "--nojournal", "--storageEngine", "wiredTiger"]
|
|
ports:
|
|
- containerPort: 27017
|
|
volumeMounts:
|
|
- mountPath: /data/db
|
|
name: data
|
|
volumes:
|
|
- name: data
|
|
emptyDir: {}
|