-
Notifications
You must be signed in to change notification settings - Fork 16
/
database12c.yaml
99 lines (99 loc) · 2.67 KB
/
database12c.yaml
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: oracle12c
namespace: oracle-namespace
labels:
app: database
version: 12.2.0.1
spec:
replicas: 1
selector:
matchLabels:
app: database
version: 12.2.0.1
template:
metadata:
name: oracle12c
labels:
app: database
version: 12.2.0.1
spec:
securityContext:
fsGroup: 54321
volumes:
- name: dshm
emptyDir:
medium: Memory
- name: ora-orcl
persistentVolumeClaim:
claimName: ora-orcl
containers:
- name: oracle12c
image: store/oracle/database-enterprise:12.2.0.1
command:
- /home/oracle/setup/dockerInit.sh
imagePullPolicy: IfNotPresent
resources:
requests:
memory: 8Gi
ports:
- containerPort: 1521
hostPort: 1521
volumeMounts:
- name: dshm
mountPath: "/dev/shm"
- name: ora-orcl
mountPath: "/ORCL"
env:
- name: DB_SID
valueFrom:
configMapKeyRef:
name: oradb #Read from a configmap called oradb
key: DB_SID #Read the key call DB_SID
- name: DB_PDB
valueFrom:
configMapKeyRef:
name: oradb #Read from a configmap called oradb
key: DB_PDB #Read the key call DB_PDB
- name: DB_PASSWD
valueFrom:
configMapKeyRef:
name: oradb #Read from a configmap called oradb
key: DB_PASSWD #Read the key call DB_PASSWD
- name: DB_DOMAIN
valueFrom:
configMapKeyRef:
name: oradb #Read from a configmap called oradb
key: DB_DOMAIN #Read the key call DB_DOMAIN
- name: DB_BUNDLE
valueFrom:
configMapKeyRef:
name: oradb #Read from a configmap called oradb
key: DB_BUNDLE #Read the key call DB_BUNDLE
- name: DB_MEMORY
valueFrom:
configMapKeyRef:
name: oradb #Read from a configmap called oradb
key: DB_MEMORY #Read the key call DB_MEMORY
imagePullSecrets:
- name: oracle
---
apiVersion: v1
kind: Service
metadata:
name: oracle12c
namespace: oracle-namespace
labels:
app: database
version: 12.2.0.1
spec:
selector:
app: database
version: 12.2.0.1
type: NodePort
ports:
- protocol: TCP
name: listener
port: 1521
targetPort: 1521