aboutsummaryrefslogtreecommitdiffstats
path: root/templates/hbase-deployment.yaml
diff options
context:
space:
mode:
authorkerenj <keren.joseph@amdocs.com>2017-08-24 11:32:22 +0000
committerkerenj <keren.joseph@amdocs.com>2017-08-24 11:32:59 +0000
commit3db4be5f8b13ec9eebfb54cf894d95e336d09e6b (patch)
treee6cdef5da3695fbac19e907cc8079a751981d5cb /templates/hbase-deployment.yaml
parentc8a5139e58bb07f1a0f4ed1224b0e5fa047e86ec (diff)
aai K8S-Helm Parameterization
changed aai k8s deployment to support helm parameterization. Issue-ID: OOM-52 Change-Id: Ifffdb4204a3fdb2c7be62063134c489f8123012d Signed-off-by: kerenj <keren.joseph@amdocs.com>
Diffstat (limited to 'templates/hbase-deployment.yaml')
-rw-r--r--templates/hbase-deployment.yaml36
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/hbase-deployment.yaml b/templates/hbase-deployment.yaml
new file mode 100644
index 0000000..5de7b98
--- /dev/null
+++ b/templates/hbase-deployment.yaml
@@ -0,0 +1,36 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+ name: hbase
+ namespace: {{ .Values.NS }}
+spec:
+ selector:
+ matchLabels:
+ app: hbase
+ template:
+ metadata:
+ labels:
+ app: hbase
+ name: hbase
+ spec:
+ hostname: hbase
+ volumes:
+ - name: hbase-opt-data
+ hostPath:
+ path: /dockerdata-nfs/onap/aai/hbase/opt/data
+ containers:
+ - name: hbase
+ image: {{ .Values.image.aaiHbase }}
+ imagePullPolicy: {{ .Values.pullPolicy }}
+ volumeMounts:
+ - mountPath: /opt/data/
+ name: hbase-opt-data
+ ports:
+ - containerPort: 8020
+ readinessProbe:
+ tcpSocket:
+ port: 8020
+ initialDelaySeconds: 5
+ periodSeconds: 10
+ imagePullSecrets:
+ - name: onap-docker-registry-key