feat(common)!: Release v3.0.0-beta4 (#282)

This commit is contained in:
Bernd Schorgers 2024-03-10 17:08:43 +01:00 committed by GitHub
parent ea9484a7fd
commit a27c4f6124
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 283 additions and 157 deletions

View file

@ -10,10 +10,13 @@ In order to mount a configMap to a mount point within the Pod you can use the
| Field | Mandatory | Docs / Description |
| ------------- | --------- | -------------------------------------------------------------------------- |
| `name` | Yes | Which configMap should be mounted. Supports Helm templating. |
| `name` | No | Which configMap should be mounted. Supports Helm templating. |
| `identifier` | No | Reference a configMap from the `configMaps` key by its identifier. |
| `defaultMode` | No | The default file access permission bit. |
| `items` | No | Specify item-specific configuration. Will be passed 1:1 to the volumeSpec. |
Either `name` or `identifier` is required.
!!! note
Even if not specified, the configMap will be read-only.

View file

@ -10,10 +10,13 @@ In order to mount a Secret to a mount point within the Pod you can use the
| Field | Mandatory | Docs / Description |
| ------------- | --------- | -------------------------------------------------------------------------- |
| `name` | Yes | Which Secret should be mounted. Supports Helm templating. |
| `name` | No | Which Secret should be mounted. Supports Helm templating. |
| `identifier` | No | Reference a Secret from the `secrets` key by its identifier. |
| `defaultMode` | No | The default file access permission bit. |
| `items` | No | Specify item-specific configuration. Will be passed 1:1 to the volumeSpec. |
Either `name` or `identifier` is required.
!!! note
Even if not specified, the Secret will be read-only.