Can i know the right procedure of installing Apache Zeppelin on Kubernetes cluster

8/27/2017

I am trying to install Apache Zeppelin on Kubernetes and its shows running but unable to host the Zeppelin on the port.

i used the reference :http://blog.kubernetes.io/2016/03/using-Spark-and-Zeppelin-to-process-Big-Data-on-Kubernetes.html

-- Dev-Ops User
apache-zeppelin
kubernetes

1 Answer

8/28/2017

To access zeppelin on kubernetes you need to create a service, by default all the ports are closed and you even don't know where zeppelin is installed(if you use multiple servers cluster). use this service for creating a zeppelin service; https://github.com/2dmitrypavlov/spark4kube/blob/master/spark-zeppelin.yaml and then got to:

Zeppelin - you can access spark cluster with zeppelin notebooks:

http://server-ip:8080/api/v1/proxy/namespaces/default/services/spark-zeppelin/

If you would like to install Spark and Zeppelin follow this guid; https://github.com/2dmitrypavlov/spark4kube

-- Dmitry
Source: StackOverflow