forked from LandmarkTechnology/spring-boot-mongo-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
springBootMongo-PrivateRepo.yml
81 lines (80 loc) · 1.39 KB
/
springBootMongo-PrivateRepo.yml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
apiVersion: v1
kind: ReplicationController
metadata:
labels:
name: springboot
name: spring-controller
spec:
replicas: 1
template:
metadata:
labels:
name: springboot
spec:
imagePullSecrets:
- name: dockerreposecret
containers:
- image: 172.31.43.54:8083/spring-boot-mongo
name: springboot
ports:
- name: springboot
containerPort: 8080
---
# Node Port Service
apiVersion: v1
kind: Service
metadata:
labels:
name: springboot
name: springboot
spec:
type: NodePort
ports:
- port: 8080
targetPort: 8080
selector:
name: springboot
---
# Mongo host path rc
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
volumes:
- name: mongo-persistent-storage
hostPath:
path: /tmp/dbbackup
---
# Mongo Node Port RC
apiVersion: v1
kind: Service
metadata:
labels:
name: mongo
name: mongo
spec:
type: ClusterIP
ports:
- port: 27017
targetPort: 27017
selector:
name: mongo