-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
springBootMongo.yml
108 lines (108 loc) · 2.19 KB
/
springBootMongo.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Config Map
kind: ConfigMap
apiVersion: v1
metadata:
name: springapp-configmap
data:
# Configuration values can be set as key-value properties
username: springapp
password: mongodb@123
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: springbootdeployment
spec:
replicas: 2
selector:
matchLabels:
app: springboot
template:
metadata:
name: springapppod
labels:
app: springboot
spec:
containers:
- image: mylandmarktech/springapp
name: springboot
ports:
- containerPort: 8080
env:
- name: MONGO_DB_HOSTNAME
value: mongo
- name: MONGO_INITDB_ROOT_USERNAME
valueFrom:
configMapKeyRef:
name: springapp-configmap
key: username
- name: MONGO_INITDB_ROOT_PASSWORD
valueFrom:
configMapKeyRef:
name: springapp-configmap
key: password
---
# Node Port Service For SpringApp
apiVersion: v1
kind: Service
metadata:
name: springboot
spec:
type: NodePort
ports:
- port: 8080
targetPort: 8080
nodePort: 30300
selector:
app: springboot
---
# Mongo RC with host path Volume
apiVersion: v1
kind: ReplicationController
metadata:
name: mongo-controller
spec:
replicas: 1
selector:
app: mongo
template:
metadata:
labels:
app: mongo
spec:
containers:
- image: mongo
name: mongo
env:
- name: MONGO_INITDB_ROOT_USERNAME
valueFrom:
configMapKeyRef:
name: springapp-configmap
key: username
- name: MONGO_INITDB_ROOT_PASSWORD
valueFrom:
configMapKeyRef:
name: springapp-configmap
key: password
ports:
- containerPort: 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:
name: mongo
spec:
type: ClusterIP
ports:
- port: 27017
targetPort: 27017
selector:
app: mongo