blob: 99b4d3f1b4e4f112417c186b6efdb99739cc7b8d (
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
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: hbase
spec:
selector:
matchLabels:
app: hbase
template:
metadata:
labels:
app: hbase
name: hbase
spec:
hostname: hbase
volumes:
- name: aai-hbase-opt
hostPath:
path: /dockerdata-nfs/onapdemo/aai/hbase/opt/data
containers:
- name: hbase
image: aaidocker/aai-hbase-1.2.3:latest
ports:
- containerPort: 8020
readinessProbe:
tcpSocket:
port: 8020
initialDelaySeconds: 5
periodSeconds: 10
|