File tree 6 files changed +12
-3
lines changed
deploy/helm/spark-k8s-operator/templates
docs/modules/spark-k8s/partials 6 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
7
7
### Added
8
8
9
9
- Generate OLM bundle for Release 23.4.0 ([ #238 ] ).
10
+ - Add support for Spark 3.4.0 ([ #243 ] )
10
11
11
12
### Changed
12
13
@@ -15,10 +16,15 @@ All notable changes to this project will be documented in this file.
15
16
- Use testing-tools 0.2.0 ([ #236 ] )
16
17
- Run as root group ([ #241 ] ).
17
18
19
+ ### Fixed
20
+
21
+ - Fix quoting issues when spark config values contain spaces ([ #243 ] )
22
+
18
23
[ #235 ] : https://github.com/stackabletech/spark-k8s-operator/pull/235
19
24
[ #236 ] : https://github.com/stackabletech/spark-k8s-operator/pull/236
20
25
[ #238 ] : https://github.com/stackabletech/spark-k8s-operator/pull/238
21
26
[ #241 ] : https://github.com/stackabletech/spark-k8s-operator/pull/241
27
+ [ #243 ] : https://github.com/stackabletech/spark-k8s-operator/pull/243
22
28
23
29
## [ 23.4.0] - 2023-04-17
24
30
Original file line number Diff line number Diff line change 29
29
verbs :
30
30
- create
31
31
- delete
32
+ - deletecollection
32
33
- get
33
34
- list
34
35
- patch
Original file line number Diff line number Diff line change 5
5
- 3.2.1-hadoop3.2
6
6
- 3.2.1-hadoop3.2-python39
7
7
- 3.3.0-hadoop3
8
+ - 3.4.0-hadoop3
Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ impl SparkApplication {
618
618
}
619
619
// ...before being added to the command collection
620
620
for ( key, value) in submit_conf {
621
- submit_cmd. push ( format ! ( "--conf {key}={value}" ) ) ;
621
+ submit_cmd. push ( format ! ( "--conf \" {key}={value}\" " ) ) ;
622
622
}
623
623
624
624
submit_cmd. extend (
Original file line number Diff line number Diff line change @@ -536,9 +536,9 @@ fn command_args(s3logdir: &S3LogDir) -> Vec<String> {
536
536
537
537
if let Some ( secret_dir) = s3logdir. credentials_mount_path ( ) {
538
538
command. extend ( vec ! [
539
- format!( "export AWS_ACCESS_KEY_ID=$(cat {secret_dir}/{ACCESS_KEY_ID})" ) ,
539
+ format!( "export AWS_ACCESS_KEY_ID=\" $(cat {secret_dir}/{ACCESS_KEY_ID})\" " ) ,
540
540
"&&" . to_string( ) ,
541
- format!( "export AWS_SECRET_ACCESS_KEY=$(cat {secret_dir}/{SECRET_ACCESS_KEY})" ) ,
541
+ format!( "export AWS_SECRET_ACCESS_KEY=\" $(cat {secret_dir}/{SECRET_ACCESS_KEY})\" " ) ,
542
542
"&&" . to_string( ) ,
543
543
] ) ;
544
544
}
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ dimensions:
10
10
- name : spark
11
11
values :
12
12
- 3.3.0-stackable0.0.0-dev
13
+ - 3.4.0-stackable0.0.0-dev
13
14
- name : ny-tlc-report
14
15
values :
15
16
- 0.1.0
You can’t perform that action at this time.
0 commit comments