You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add field to CRD
* Impl history server
* Add test
* cargo fmt
* Implement stuff for SparkApplication
* fix: Use spaces
* Fix tests
* Fix endless reconcile loop
* changelog
* docs
* Remove unused import
* Update error message
* Update ring because of RUSTSEC-2025-0009
Copy file name to clipboardExpand all lines: deploy/helm/spark-k8s-operator/crds/crds.yaml
+130Lines changed: 130 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -256,6 +256,32 @@ spec:
256
256
default: {}
257
257
description: '`envOverrides` configure environment variables to be set in the Pods. It is a map from strings to strings - environment variables and the value to set. Read the [environment variable overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#env-overrides) for more information and consult the operator specific usage guide to find out about the product specific environment variables that are available.'
258
258
type: object
259
+
jvmArgumentOverrides:
260
+
default:
261
+
add: []
262
+
remove: []
263
+
removeRegex: []
264
+
description: Allows overriding JVM arguments. Please read on the [JVM argument overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#jvm-argument-overrides) for details on the usage.
265
+
properties:
266
+
add:
267
+
default: []
268
+
description: JVM arguments to be added
269
+
items:
270
+
type: string
271
+
type: array
272
+
remove:
273
+
default: []
274
+
description: JVM arguments to be removed by exact match
275
+
items:
276
+
type: string
277
+
type: array
278
+
removeRegex:
279
+
default: []
280
+
description: JVM arguments matching any of this regexes will be removed
281
+
items:
282
+
type: string
283
+
type: array
284
+
type: object
259
285
podOverrides:
260
286
default: {}
261
287
description: In the `podOverrides` property you can define a [PodTemplateSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#podtemplatespec-v1-core) to override any property that can be set on a Kubernetes Pod. Read the [Pod overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#pod-overrides) for more information.
@@ -530,6 +556,32 @@ spec:
530
556
default: {}
531
557
description: '`envOverrides` configure environment variables to be set in the Pods. It is a map from strings to strings - environment variables and the value to set. Read the [environment variable overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#env-overrides) for more information and consult the operator specific usage guide to find out about the product specific environment variables that are available.'
532
558
type: object
559
+
jvmArgumentOverrides:
560
+
default:
561
+
add: []
562
+
remove: []
563
+
removeRegex: []
564
+
description: Allows overriding JVM arguments. Please read on the [JVM argument overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#jvm-argument-overrides) for details on the usage.
565
+
properties:
566
+
add:
567
+
default: []
568
+
description: JVM arguments to be added
569
+
items:
570
+
type: string
571
+
type: array
572
+
remove:
573
+
default: []
574
+
description: JVM arguments to be removed by exact match
575
+
items:
576
+
type: string
577
+
type: array
578
+
removeRegex:
579
+
default: []
580
+
description: JVM arguments matching any of this regexes will be removed
581
+
items:
582
+
type: string
583
+
type: array
584
+
type: object
533
585
podOverrides:
534
586
default: {}
535
587
description: In the `podOverrides` property you can define a [PodTemplateSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#podtemplatespec-v1-core) to override any property that can be set on a Kubernetes Pod. Read the [Pod overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#pod-overrides) for more information.
@@ -620,6 +672,32 @@ spec:
620
672
default: {}
621
673
description: '`envOverrides` configure environment variables to be set in the Pods. It is a map from strings to strings - environment variables and the value to set. Read the [environment variable overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#env-overrides) for more information and consult the operator specific usage guide to find out about the product specific environment variables that are available.'
622
674
type: object
675
+
jvmArgumentOverrides:
676
+
default:
677
+
add: []
678
+
remove: []
679
+
removeRegex: []
680
+
description: Allows overriding JVM arguments. Please read on the [JVM argument overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#jvm-argument-overrides) for details on the usage.
681
+
properties:
682
+
add:
683
+
default: []
684
+
description: JVM arguments to be added
685
+
items:
686
+
type: string
687
+
type: array
688
+
remove:
689
+
default: []
690
+
description: JVM arguments to be removed by exact match
691
+
items:
692
+
type: string
693
+
type: array
694
+
removeRegex:
695
+
default: []
696
+
description: JVM arguments matching any of this regexes will be removed
697
+
items:
698
+
type: string
699
+
type: array
700
+
type: object
623
701
podOverrides:
624
702
default: {}
625
703
description: In the `podOverrides` property you can define a [PodTemplateSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#podtemplatespec-v1-core) to override any property that can be set on a Kubernetes Pod. Read the [Pod overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#pod-overrides) for more information.
@@ -1416,6 +1494,32 @@ spec:
1416
1494
default: {}
1417
1495
description: '`envOverrides` configure environment variables to be set in the Pods. It is a map from strings to strings - environment variables and the value to set. Read the [environment variable overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#env-overrides) for more information and consult the operator specific usage guide to find out about the product specific environment variables that are available.'
1418
1496
type: object
1497
+
jvmArgumentOverrides:
1498
+
default:
1499
+
add: []
1500
+
remove: []
1501
+
removeRegex: []
1502
+
description: Allows overriding JVM arguments. Please read on the [JVM argument overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#jvm-argument-overrides) for details on the usage.
1503
+
properties:
1504
+
add:
1505
+
default: []
1506
+
description: JVM arguments to be added
1507
+
items:
1508
+
type: string
1509
+
type: array
1510
+
remove:
1511
+
default: []
1512
+
description: JVM arguments to be removed by exact match
1513
+
items:
1514
+
type: string
1515
+
type: array
1516
+
removeRegex:
1517
+
default: []
1518
+
description: JVM arguments matching any of this regexes will be removed
1519
+
items:
1520
+
type: string
1521
+
type: array
1522
+
type: object
1419
1523
podOverrides:
1420
1524
default: {}
1421
1525
description: In the `podOverrides` property you can define a [PodTemplateSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#podtemplatespec-v1-core) to override any property that can be set on a Kubernetes Pod. Read the [Pod overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#pod-overrides) for more information.
@@ -1636,6 +1740,32 @@ spec:
1636
1740
default: {}
1637
1741
description: '`envOverrides` configure environment variables to be set in the Pods. It is a map from strings to strings - environment variables and the value to set. Read the [environment variable overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#env-overrides) for more information and consult the operator specific usage guide to find out about the product specific environment variables that are available.'
1638
1742
type: object
1743
+
jvmArgumentOverrides:
1744
+
default:
1745
+
add: []
1746
+
remove: []
1747
+
removeRegex: []
1748
+
description: Allows overriding JVM arguments. Please read on the [JVM argument overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#jvm-argument-overrides) for details on the usage.
1749
+
properties:
1750
+
add:
1751
+
default: []
1752
+
description: JVM arguments to be added
1753
+
items:
1754
+
type: string
1755
+
type: array
1756
+
remove:
1757
+
default: []
1758
+
description: JVM arguments to be removed by exact match
1759
+
items:
1760
+
type: string
1761
+
type: array
1762
+
removeRegex:
1763
+
default: []
1764
+
description: JVM arguments matching any of this regexes will be removed
1765
+
items:
1766
+
type: string
1767
+
type: array
1768
+
type: object
1639
1769
podOverrides:
1640
1770
default: {}
1641
1771
description: In the `podOverrides` property you can define a [PodTemplateSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#podtemplatespec-v1-core) to override any property that can be set on a Kubernetes Pod. Read the [Pod overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#pod-overrides) for more information.
0 commit comments