alias k=kubectl
# Add microsoft charts to heml
helm repo add msftcharts http://microsoft.github.io/charts/repo
helm repo update
# Launch spark cluster with custom config
helm install --name my-first-spark-cluster -f values.yml microsoft/spark
# To make if a Pod instance is correctly loaded
k get pods
k describe pod original-peacock-master-768b7fbd65-bcnwd
Created
October 7, 2019 05:46
-
-
Save datlife/650ca7b702243fdb3ce9dd59a8f6cce2 to your computer and use it in GitHub Desktop.
Spark on K8s using helm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: 3 | |
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: false | |
## 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: "-" | |
## 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment