-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongo.yaml
More file actions
43 lines (41 loc) · 952 Bytes
/
mongo.yaml
File metadata and controls
43 lines (41 loc) · 952 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
apiVersion: v1
kind: ReplicationController
metadata:
labels:
name: mongo
name: mongo-controller
spec:
replicas: 1
template:
metadata:
labels:
name: mongo
spec:
containers:
- image: mongo
name: mongo
ports:
- name: mongo
containerPort: 27017
hostPort: 27017
volumeMounts:
- name: mongo-persistent-storage
mountPath: /data/db
#In the above example, it is using a "gcePersistentDisk" to back the storage. This is only applicable if you are running your Kubernetes cluster in Google Cloud Platform.
#For other storage options (iSCSI, NFS, OpenStack), please follow the documentation.
volumes:
- name: mongo-persistent-storage
emptyDir: {}
---
apiVersion: v1
kind: Service
metadata:
labels:
name: mongo
name: mongo-service
spec:
ports:
- port: 27017
targetPort: 27017
selector:
name: mongo