blob: c5982041859b9279cd43fc7f6bdffacc3a8684e5 (
plain)
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
|
# Resources to create Databases used by ONAP4K8s v2 Microservices
---
#Etcd Service
apiVersion: v1
kind: Service
metadata:
labels:
app: etcd
name: etcd
spec:
ports:
- name: "2379"
port: 2379
targetPort: 2379
- name: "2380"
port: 2380
targetPort: 2380
selector:
app: etcd
---
#Mongo Service
apiVersion: v1
kind: Service
metadata:
labels:
app: mongo
name: mongo
spec:
ports:
- name: "27017"
port: 27017
targetPort: 27017
selector:
app: mongo
---
#Etcd Deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: etcd
spec:
replicas: 1
selector:
matchLabels:
app: etcd
template:
metadata:
labels:
app: etcd
spec:
containers:
- image: bitnami/etcd:3
imagePullPolicy: IfNotPresent
name: etcd
env:
- name: "ALLOW_NONE_AUTHENTICATION"
value: "yes"
ports:
- containerPort: 2379
- containerPort: 2380
---
#Mongo Deployment
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: mongo
name: mongo
spec:
replicas: 1
selector:
matchLabels:
app: mongo
template:
metadata:
labels:
app: mongo
spec:
containers:
- image: mongo
imagePullPolicy: IfNotPresent
name: mongo
ports:
- containerPort: 27017
|