-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(openapi): don't expose private fields in OpenAPI spec
Signed-off-by: Marc Nuri <[email protected]>
- Loading branch information
Showing
22 changed files
with
102 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Starting from the xxxx version, the default values for the Kubernetes Client extension configuration have changed. | ||
In the past, Quarkus had explicit values for some of the Kubernetes Client configuration options. | ||
This was not ideal since some of these default settings were different to those provided by the client library which led to some confusion. | ||
To address this, we have removed the explicit default values from the Kubernetes Client extension configuration and now rely on the client library defaults. | ||
|
||
The following table contains all the configuration option entries, the previous default value, and the new default value (note that many of the values remain unchanged and others don't have a default value): | ||
|
||
| Configuration Option | Previous Default Value | New Default Value | | ||
|-------------------------------|------------------------|-------------------| | ||
| `watchReconnectInterval` | `PT1S` | `PT1S` | | ||
| `watchReconnectLimit` | `-1` (no limit) | `-1` (no limit) | | ||
| `connectionTimeout` | `PT10S` | `PT10S` | | ||
| `requestTimeout` | `PT10S` | `PT10S` | | ||
| `requestRetryBackoffLimit` | `0` (no retry) | `10` | | ||
| `requestRetryBackoffInterval` | `PT1S` | `PT0.1S` | | ||
| `trustCerts` | n/a | `false` | | ||
| `apiServerUrl` | n/a | n/a | | ||
| `namespace` | n/a | n/a | | ||
| `caCertFile` | n/a | n/a | | ||
| `caCertData` | n/a | n/a | | ||
| `clientCertFile` | n/a | n/a | | ||
| `clientCertData` | n/a | n/a | | ||
| `clientKeyFile` | n/a | n/a | | ||
| `clientKeyData` | n/a | n/a | | ||
| `clientKeyAlgo` | n/a | `RSA` | | ||
| `clientKeyPassphrase` | n/a | n/a | | ||
| `username` | n/a | n/a | | ||
| `password` | n/a | n/a | | ||
| `token` | n/a | n/a | | ||
| `httpProxy` | n/a | n/a | | ||
| `httpsProxy` | n/a | n/a | | ||
| `proxyUsername` | n/a | n/a | | ||
| `proxyPassword` | n/a | n/a | | ||
| `noProxy` | n/a | n/a | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.