Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 883 Bytes

CONTRIB.md

File metadata and controls

56 lines (43 loc) · 883 Bytes

Build docker image

docker build --name analytics/zeppelin:1.0 .

Run Container with docker compose:

docker-compose up

Notebooks are saved into ./notebooks Data can be loaded form ./data

Open browser at:

localhost:8080

Login with usernames:

giorgio = distilled123!
martin = distilled123!
john = distilled123!
david = distilled123!
priyanka = distilled123!
rory = distilled123!

Minishift Deployment

Start minishift with some extra memory

minishift start --memory 5GB

load template

oc process -f ./templates/minishifrt.yml | oc create -f -

build image

oc start-build bc/zeppelin --from-dir .

Delete existing instances/services

oc delete scv --all oc delete svc --all oc delete dc --all oc delete bc --all oc delete routes --all oc delete is --all

OpenShift Deployment

WIP