Skip to content

Commit 8d4bdda

Browse files
committed
remove unused SparkConnectServerClusterConfig
1 parent a3212bb commit 8d4bdda

File tree

2 files changed

+0
-18
lines changed
  • deploy/helm/spark-k8s-operator/crds
  • rust/operator-binary/src/connect

2 files changed

+0
-18
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1867,13 +1867,6 @@ spec:
18671867
items:
18681868
type: string
18691869
type: array
1870-
clusterConfig:
1871-
default: {}
1872-
description: |-
1873-
Global Spark Connect server configuration that applies to all roles.
1874-
1875-
This was previously used to hold the listener configuration, which has since moved to the server configuration.
1876-
type: object
18771870
clusterOperation:
18781871
default:
18791872
reconciliationPaused: false

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

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,6 @@ pub mod versioned {
7979
pub struct SparkConnectServerSpec {
8080
pub image: ProductImage,
8181

82-
/// Global Spark Connect server configuration that applies to all roles.
83-
///
84-
/// This was previously used to hold the listener configuration, which has since moved
85-
/// to the server configuration.
86-
#[serde(default)]
87-
pub cluster_config: v1alpha1::SparkConnectServerClusterConfig,
88-
8982
// no doc string - See ClusterOperation struct
9083
#[serde(default)]
9184
pub cluster_operation: ClusterOperation,
@@ -108,10 +101,6 @@ pub mod versioned {
108101
pub executor: Option<CommonConfiguration<ExecutorConfigFragment, JavaCommonConfig>>,
109102
}
110103

111-
#[derive(Clone, Deserialize, Debug, Default, Eq, JsonSchema, PartialEq, Serialize)]
112-
#[serde(rename_all = "camelCase")]
113-
pub struct SparkConnectServerClusterConfig {}
114-
115104
#[derive(Clone, Debug, Default, JsonSchema, PartialEq, Fragment)]
116105
#[fragment_attrs(
117106
derive(

0 commit comments

Comments
 (0)