-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspark_values.yaml
92 lines (87 loc) · 2.21 KB
/
spark_values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Default values for spark.
# This is a YAML-formatted file.
# Declare name/value pairs to be passed into your templates.
# name: value
Spark:
Path: "/opt/spark"
Master:
Name: master
Image: "k8s.gcr.io/spark"
ImageTag: "1.5.1_v3"
Replicas: 1
Component: "spark-master"
Cpu: "100m"
Memory: "512Mi"
ServicePort: 7077
ContainerPort: 7077
# Set Master JVM memory. Default 1g
# DaemonMemory: 1g
ServiceType: LoadBalancer
WebUi:
Name: webui
ServicePort: 8080
ContainerPort: 8080
Worker:
Name: worker
Image: "k8s.gcr.io/spark"
ImageTag: "1.5.1_v3"
Replicas: 1
Component: "spark-worker"
Cpu: "100m"
Memory: "512Mi"
ContainerPort: 8081
# Set Worker JVM memory. Default 1g
# DaemonMemory: 1g
# Set how much total memory workers have to give executors
# ExecutorMemory: 1g
Autoscaling:
Enabled: false
ReplicasMax: 10
CpuTargetPercentage: 50
Zeppelin:
Name: zeppelin
Image: "apache/zeppelin"
ImageTag: "0.7.3"
Replicas: 1
Component: "zeppelin"
Cpu: "100m"
ServicePort: 8080
ContainerPort: 8080
ServiceType: LoadBalancer
Ingress:
Enabled: false
Path: "/"
Tls: []
# - Hosts:
# SecretName: zeppelin
# Used to create an Ingress record.
# Hosts:
# - example.local
# Annotations:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# Tls:
# Enabled: true
# Secrets must be manually created in the namespace.
# SecretName: example-tls
# Hosts:
# - example.local
Persistence:
Config:
Enabled: true
## etcd data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
StorageClass: test_provisioner
## Set default PVC size
Size: 10G
## Set default PVC access mode: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes
AccessMode: ReadWriteOnce
Notebook:
Enabled: false
StorageClass: "-"
Size: 10G
AccessMode: ReadWriteOnce