i use zeppelin-0.7.1,kubernet 1.6.4,here is my deploy file
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: zeppelin-controller
namespace: dp
spec:
replicas: 1
template:
metadata:
labels:
app: zeppelin
component: zeppelin
spec:
containers:
- name: zeppelin
image: immortalhuang/zhiweicloud-zeppelin
ports:
- containerPort: 8080
resources:
requests:
cpu: 100m
command:
["/opt/zeppelin/bin/zeppelin.sh","--config","/opt/zeppelin/conf"]
volumeMounts:
- mountPath: "/opt/zeppelin"
name: code
subPath: zeppelin
ports:
- containerPort: 8080
volumes:
- name: code
persistentVolumeClaim:
claimName: dp-nas
---
kind: Service
apiVersion: v1
metadata:
name: zeppelin
namespace: dp
spec:
ports:
- port: 8090
targetPort: 8080
nodePort: 30090
selector:
component: zeppelin
type: NodePort
------------------ ???????? ------------------
??????: "Park Hoon";<[email protected]>;
????????: 2017??8??5??(??????) ????2:08
??????: "users"<[email protected]>;
????: Re: cannot use zeppelin in the kubernetes
Hi, could you describe more? For example,
which binary did you used
what is the option (env?) starts with tcp://
processes what u did to reproduce
and so on..
It definitely helps to figure out the problem for others
Regard,
On Sat, 5 Aug 2017 at 11:17 ???? <[email protected]> wrote:
zeppelin cannot start sucessful when i deploy it in the kubernetes. i try to
delete the servie and restart pod,it can start successful,what is whrong?