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
@@ -1839,7 +1853,7 @@ This is a rerelease of 0.25.1 which some last-minute incompatible API changes to
1839
1853
1840
1854
### Changed
1841
1855
1842
-
- BREAKING: Removed `commons::s3::S3ConnectionImplementation`. `commons::s3::InlinedBucketSpec::endpoint()` doesn't take arguments since the protocol decision is now based on the existance of TLS configuration ([#390]).
1856
+
- BREAKING: Removed `commons::s3::S3ConnectionImplementation`. `commons::s3::InlinedBucketSpec::endpoint()` doesn't take arguments since the protocol decision is now based on the existence of TLS configuration ([#390]).
1843
1857
- BREAKING: Changes to resource requirements structs to enable deep merging ([#392])
1844
1858
- Changed fields in `Resources` to no longer be optional
1845
1859
- Changed atomic fields in `MemoryLimits`, `JvmHeapLimits`, `CpuLimits` and `PvcConfig` to be optional
@@ -1875,7 +1889,7 @@ This is a rerelease of 0.25.1 which some last-minute incompatible API changes to
1875
1889
### Added
1876
1890
1877
1891
- Export logs to Jaeger ([#360]).
1878
-
- Added common datastructures shared between all operators like `Tls` oder `AuthenticationClass` ([#366]).
1892
+
- Added common datastructures shared between all operators like `Tls` or `AuthenticationClass` ([#366]).
1879
1893
- Added helpers for env variables from Secrets or ConfigMaps ([#370]).
1880
1894
1881
1895
### Changed
@@ -2089,7 +2103,7 @@ This is a rerelease of 0.25.1 which some last-minute incompatible API changes to
2089
2103
### Changed
2090
2104
2091
2105
- BREAKING: In builder: `add_stackable_agent_tolerations` to `add_tolerations` ([#255]).
2092
-
- Generic `VALUE` paramters to `impl Into<_>` arguments for consistency ([#253]).
2106
+
- Generic `VALUE` parameters to `impl Into<_>` arguments for consistency ([#253]).
Copy file name to clipboardExpand all lines: crates/stackable-operator/crds/DummyCluster.yaml
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,16 @@ spec:
30
30
description: This field contains OIDC-specific configuration. It is only required in case OIDC is used.
31
31
nullable: true
32
32
properties:
33
+
clientAuthenticationMethod:
34
+
default: client_secret_basic
35
+
description: 'The client authentication method used when communicating with the token endpoint. Defaults to `client_secret_basic`. The required contents of `clientCredentialsSecret` depend on the chosen method: secret-based methods (`client_secret_basic`, `client_secret_post`, `client_secret_jwt`) expect a client secret, while `private_key_jwt` expects a private key.'
36
+
enum:
37
+
- client_secret_basic
38
+
- client_secret_post
39
+
- client_secret_jwt
40
+
- private_key_jwt
41
+
- none
42
+
type: string
33
43
clientCredentialsSecret:
34
44
description: |-
35
45
A reference to the OIDC client credentials secret. The secret contains
@@ -587,7 +597,7 @@ spec:
587
597
type: object
588
598
type: object
589
599
enableVectorAgent:
590
-
description: Wether or not to deploy a container with the Vector log agent.
600
+
description: Whether or not to deploy a container with the Vector log agent.
591
601
nullable: true
592
602
type: boolean
593
603
type: object
@@ -1199,7 +1209,7 @@ spec:
1199
1209
type: object
1200
1210
type: object
1201
1211
enableVectorAgent:
1202
-
description: Wether or not to deploy a container with the Vector log agent.
1212
+
description: Whether or not to deploy a container with the Vector log agent.
0 commit comments