-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues-scenario-jupyter-connect-k8s.yaml
More file actions
98 lines (87 loc) · 1.69 KB
/
values-scenario-jupyter-connect-k8s.yaml
File metadata and controls
98 lines (87 loc) · 1.69 KB
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
93
94
95
96
97
98
# Preset: Jupyter + Spark Connect + K8s backend
# Source: scripts/test-e2e-jupyter-connect.sh (Spark 4.1, BACKEND_MODE=k8s)
# Components: Connect + Jupyter + MinIO
global:
s3:
endpoint: "http://minio:9000"
accessKey: "minioadmin"
secretKey: "minioadmin"
pathStyleAccess: true
sslEnabled: false
spark-base:
enabled: true
minio:
enabled: true
resources:
requests:
cpu: "0"
memory: "128Mi"
limits:
cpu: "200m"
memory: "512Mi"
persistence:
enabled: false
postgresql:
enabled: false
rbac:
create: true
serviceAccountName: "spark-41"
connect:
enabled: true
replicas: 1
backendMode: k8s
image:
repository: ghcr.io/fall-out-bug/spark-k8s-spark-custom
tag: "4.1.0"
pullPolicy: IfNotPresent
resources:
requests:
cpu: "0"
memory: "512Mi"
limits:
cpu: "500m"
memory: "2Gi"
driver:
host: ""
port: 7078
eventLog:
enabled: true
dir: "s3a://spark-logs/events"
dynamicAllocation:
enabled: true
minExecutors: 0
maxExecutors: 10
sparkConf: {}
jupyter:
enabled: true
image:
repository: ghcr.io/fall-out-bug/spark-k8s-jupyter-spark
tag: "4.1.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 8888
env:
SPARK_CONNECT_URL: "sc://spark-connect:15002"
resources:
requests:
cpu: "0"
memory: "256Mi"
limits:
cpu: "500m"
memory: "1Gi"
persistence:
enabled: false
hiveMetastore:
enabled: false
historyServer:
enabled: false
ingress:
enabled: false
security:
podSecurityStandards: false
# Disable optional components
sparkOperator:
enabled: false
celeborn:
enabled: false