Skip to content

Commit

Permalink
Rename caFile to caPem in values schema (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchcrab authored Aug 23, 2024
1 parent ef9579f commit 5d7c8c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Rename caFile to caPem in values schema.

## [0.60.0] - 2024-08-22

### **Breaking change**.
Expand Down
2 changes: 1 addition & 1 deletion helm/cluster-vsphere/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Properties within the `.global.controlPlane` object
| `global.controlPlane.machineTemplate.resourcePool` | **VSphere resource pool name**|**Type:** `string`<br/>**Default:** `"*/Resources"`|
| `global.controlPlane.machineTemplate.template` | **VM template**|**Type:** `string`<br/>**Default:** `"flatcar-stable-3815.2.2-kube-v1.27.14-gs"`|
| `global.controlPlane.oidc` | **OIDC authentication**|**Type:** `object`<br/>|
| `global.controlPlane.oidc.caFile` | **Certificate authority file** - Path to identity provider's CA certificate in PEM format.|**Type:** `string`<br/>|
| `global.controlPlane.oidc.caPem` | **Certificate authority file** - Path to identity provider's CA certificate in PEM format.|**Type:** `string`<br/>|
| `global.controlPlane.oidc.clientId` | **Client ID** - OIDC client identifier to identify with.|**Type:** `string`<br/>|
| `global.controlPlane.oidc.groupsClaim` | **Groups claim** - Name of the identity token claim bearing the user's group memberships.|**Type:** `string`<br/>|
| `global.controlPlane.oidc.issuerUrl` | **Issuer URL** - URL of the provider which allows the API server to discover public signing keys, not including any path. Discovery URL without the '/.well-known/openid-configuration' part.|**Type:** `string`<br/>|
Expand Down
2 changes: 1 addition & 1 deletion helm/cluster-vsphere/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@
"title": "OIDC authentication",
"additionalProperties": false,
"properties": {
"caFile": {
"caPem": {
"type": "string",
"title": "Certificate authority file",
"description": "Path to identity provider's CA certificate in PEM format."
Expand Down

0 comments on commit 5d7c8c5

Please sign in to comment.