Skip to content

Commit 9889fb5

Browse files
committed
doc: mention cluster_config usage status
1 parent 2355ded commit 9889fb5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

deploy/helm/spark-k8s-operator/crds/crds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ spec:
11191119
properties:
11201120
clusterConfig:
11211121
default: {}
1122-
description: Global Spark history server configuration that applies to all roles and role groups.
1122+
description: Global Spark history server configuration that applies to all roles and role groups. Currently not in use.
11231123
type: object
11241124
image:
11251125
anyOf:
@@ -1867,7 +1867,7 @@ spec:
18671867
type: array
18681868
clusterConfig:
18691869
default: {}
1870-
description: Global Spark Connect server configuration that applies to all roles.
1870+
description: Global Spark Connect server configuration that applies to all roles. Currently not in use.
18711871
type: object
18721872
clusterOperation:
18731873
default:

rust/operator-binary/src/connect/crd.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ pub mod versioned {
7979
pub image: ProductImage,
8080

8181
/// Global Spark Connect server configuration that applies to all roles.
82+
/// Currently not in use.
8283
#[serde(default)]
8384
pub cluster_config: v1alpha1::SparkConnectServerClusterConfig,
8485

rust/operator-binary/src/crd/history.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ pub mod versioned {
8282
pub image: ProductImage,
8383

8484
/// Global Spark history server configuration that applies to all roles and role groups.
85+
/// Currently not in use.
8586
#[serde(default)]
8687
pub cluster_config: v1alpha1::SparkHistoryServerClusterConfig,
8788

0 commit comments

Comments
 (0)