Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions k8s/zeppelin-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ data:
# Default value is 'local.zeppelin-project.org' while it points 127.0.0.1 and `kubectl port-forward zeppelin-server` will give localhost to connects.
# If you have your ingress controller configured to connect to `zeppelin-server` service and have a domain name for it (with wildcard subdomain point the same address), you can replace serviceDomain field with your own domain.
serviceDomain: local.zeppelin-project.org:8080
sparkContainerImage: spark:2.4.0
sparkContainerImage: spark:2.4.5
nginx.conf: |
daemon off;
worker_processes auto;
Expand Down Expand Up @@ -118,8 +118,10 @@ spec:
configMapKeyRef:
name: zeppelin-server-conf
key: serviceDomain
- name: MASTER # default value of master property for spark interpreter.
- name: MASTER # default value of 'master' property for spark interpreter.
value: k8s://https://kubernetes.default.svc
- name: SPARK_HOME # default value of 'SPARK_HOME' property for spark interpreter.
value: /spark
# volumeMounts:
# - name: zeppelin-server-notebook-volume # configure this to persist notebook
# mountPath: /zeppelin/notebook
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"type": "string"
},
"master": {
"envName": "",
"envName": "MASTER",
"propertyName": "spark.master",
"defaultValue": "local[*]",
"description": "Spark master uri. ex) spark://master_host:7077",
Expand Down