File tree Expand file tree Collapse file tree 5 files changed +29
-12
lines changed
charts/spark-operator-chart/crds Expand file tree Collapse file tree 5 files changed +29
-12
lines changed Original file line number Diff line number Diff line change 38
38
false
39
39
fi
40
40
41
+ - name : Generate code
42
+ run : |
43
+ make generate
44
+ if ! git diff --quiet; then
45
+ echo "Need to re-run 'make generate' and commit the changes."
46
+ git diff
47
+ false
48
+ fi
49
+
41
50
- name : Run go fmt check
42
51
run : |
43
52
make go-fmt
@@ -145,6 +154,18 @@ jobs:
145
154
- name : Set up chart-testing
146
155
147
156
157
+ - name : Generate manifests
158
+ run : |
159
+ make manifests
160
+ if ! git diff --quiet; then
161
+ echo "Need to re-run 'make manifests' and commit the changes."
162
+ git diff
163
+ false
164
+ fi
165
+
166
+ - name : Detect CRDs drift between chart and manifest
167
+ run : make detect-crds-drift
168
+
148
169
- name : Run chart-testing (list-changed)
149
170
id : list-changed
150
171
env :
@@ -161,10 +182,6 @@ jobs:
161
182
BRANCH : ${{ steps.get_branch.outputs.BRANCH }}
162
183
run : ct lint --check-version-increment=false --target-branch $BRANCH
163
184
164
- - name : Detect CRDs drift between chart and manifest
165
- if : steps.list-changed.outputs.changed == 'true'
166
- run : make detect-crds-drift
167
-
168
185
- name : Produce the helm documentation
169
186
if : steps.list-changed.outputs.changed == 'true'
170
187
run : |
Original file line number Diff line number Diff line change @@ -9605,8 +9605,8 @@ spec:
9605
9605
additionalProperties:
9606
9606
type: string
9607
9607
description: |-
9608
- HadoopConf carries user-specified Hadoop configuration properties as they would use the the "--conf" option
9609
- in spark-submit. The SparkApplication controller automatically adds prefix "spark.hadoop." to Hadoop
9608
+ HadoopConf carries user-specified Hadoop configuration properties as they would use the "--conf" option
9609
+ in spark-submit. The SparkApplication controller automatically adds prefix "spark.hadoop." to Hadoop
9610
9610
configuration properties.
9611
9611
type: object
9612
9612
hadoopConfigMap:
Original file line number Diff line number Diff line change @@ -9514,8 +9514,8 @@ spec:
9514
9514
additionalProperties:
9515
9515
type: string
9516
9516
description: |-
9517
- HadoopConf carries user-specified Hadoop configuration properties as they would use the the "--conf" option
9518
- in spark-submit. The SparkApplication controller automatically adds prefix "spark.hadoop." to Hadoop
9517
+ HadoopConf carries user-specified Hadoop configuration properties as they would use the "--conf" option
9518
+ in spark-submit. The SparkApplication controller automatically adds prefix "spark.hadoop." to Hadoop
9519
9519
configuration properties.
9520
9520
type: object
9521
9521
hadoopConfigMap:
Original file line number Diff line number Diff line change @@ -9605,8 +9605,8 @@ spec:
9605
9605
additionalProperties:
9606
9606
type: string
9607
9607
description: |-
9608
- HadoopConf carries user-specified Hadoop configuration properties as they would use the the "--conf" option
9609
- in spark-submit. The SparkApplication controller automatically adds prefix "spark.hadoop." to Hadoop
9608
+ HadoopConf carries user-specified Hadoop configuration properties as they would use the "--conf" option
9609
+ in spark-submit. The SparkApplication controller automatically adds prefix "spark.hadoop." to Hadoop
9610
9610
configuration properties.
9611
9611
type: object
9612
9612
hadoopConfigMap:
Original file line number Diff line number Diff line change @@ -9514,8 +9514,8 @@ spec:
9514
9514
additionalProperties:
9515
9515
type: string
9516
9516
description: |-
9517
- HadoopConf carries user-specified Hadoop configuration properties as they would use the the "--conf" option
9518
- in spark-submit. The SparkApplication controller automatically adds prefix "spark.hadoop." to Hadoop
9517
+ HadoopConf carries user-specified Hadoop configuration properties as they would use the "--conf" option
9518
+ in spark-submit. The SparkApplication controller automatically adds prefix "spark.hadoop." to Hadoop
9519
9519
configuration properties.
9520
9520
type: object
9521
9521
hadoopConfigMap:
You can’t perform that action at this time.
0 commit comments