Skip to content

Commit 8112601

Browse files
committed
removed redundant element
1 parent 90b20fd commit 8112601

File tree

4 files changed

+0
-41
lines changed

4 files changed

+0
-41
lines changed

deploy/crd/sparkapplication.crd.yaml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,6 @@ spec:
5151
nullable: true
5252
type: string
5353
type: object
54-
configMapMounts:
55-
items:
56-
properties:
57-
configMapName:
58-
type: string
59-
path:
60-
type: string
61-
required:
62-
- configMapName
63-
- path
64-
type: object
65-
nullable: true
66-
type: array
6754
configOverrides:
6855
additionalProperties:
6956
additionalProperties:

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,6 @@ spec:
5353
nullable: true
5454
type: string
5555
type: object
56-
configMapMounts:
57-
items:
58-
properties:
59-
configMapName:
60-
type: string
61-
path:
62-
type: string
63-
required:
64-
- configMapName
65-
- path
66-
type: object
67-
nullable: true
68-
type: array
6956
configOverrides:
7057
additionalProperties:
7158
additionalProperties:

deploy/manifests/crds.yaml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,6 @@ spec:
5454
nullable: true
5555
type: string
5656
type: object
57-
configMapMounts:
58-
items:
59-
properties:
60-
configMapName:
61-
type: string
62-
path:
63-
type: string
64-
required:
65-
- configMapName
66-
- path
67-
type: object
68-
nullable: true
69-
type: array
7057
configOverrides:
7158
additionalProperties:
7259
additionalProperties:

rust/crd/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ pub struct SparkApplicationSpec {
8686
pub volumes: Option<Vec<Volume>>,
8787
#[serde(default, skip_serializing_if = "Option::is_none")]
8888
pub env: Option<Vec<EnvVar>>,
89-
#[serde(default, skip_serializing_if = "Option::is_none")]
90-
pub config_map_mounts: Option<Vec<ConfigMapMount>>,
9189
}
9290

9391
#[derive(Clone, Debug, Default, Deserialize, JsonSchema, PartialEq, Serialize)]

0 commit comments

Comments
 (0)