Skip to content

Commit

Permalink
add docs on readme and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelm41 committed Dec 15, 2023
1 parent 5498507 commit 09d5039
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

All notable changes to this project will be documented here.

### v2.3.0
- Feature: allow multiple provided text types on secret creation: stringData, data and encodedData [PR-282](https://github.com/stakater/application/pull/282)

### v2.2.6
- fix: allow multiple cronjobs [PR-271](https://github.com/stakater/application/pull/271)

Expand Down
27 changes: 15 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,21 +269,24 @@ Stakater [Forecastle](https://github.com/stakater/Forecastle) parameters

### ConfigMap Paramaters

| Name | Description | Value |
| ------------------------ | -------------------------------------------------------------------------------------------- | --------------- |
| configMap.enabled | Enable configMaps | `false` |
| configMap.additionalLabels | Labels for configMaps | `{}` |
| configMap.annotations | Annotations for configMaps | `{}` |
| configMap.files | Map of configMap files with suffixes and data contained in those files | `{}` |
| Name | Description | Value |
|----------------------------|------------------------------------------------------------------------------------|----------------|
| configMap.enabled | Enable configMaps | `false` |
| configMap.additionalLabels | Labels for configMaps | `{}` |
| configMap.annotations | Annotations for configMaps | `{}` |
| configMap.files | Map of configMap files with suffixes and data contained in those files | `{}` |

### Secret Paramaters

| Name | Description | Value |
| ------------------------ | -------------------------------------------------------------------------------------------- | --------------- |
| secret.enabled | Enable secret | `false` |
| secret.additionalLabels | Labels for secret | `{}` |
| secret.annotations | Annotations for secret | `{}` |
| secret.files | Map of secret files with suffixes and data contained in those files | `{}` |
| Name | Description | Value |
|---------------------------------|---------------------------------------------------------------------------------|------------------------|
| secret.enabled | Enable secret | `false` |
| secret.additionalLabels | Labels for secret | `{}` |
| secret.annotations | Annotations for secret | `{}` |
| secret.files | Map of secret files with suffixes and data contained in those files | `{}` |
| secret.files.[name].stringData | Allow to provide the clear text content inside the secret | `{}` |
| secret.files.[name].data | Allow to provide the text content inside the secret that will be base64 encoded | `{}` |
| secret.files.[name].encodedData | Allow to provide the text content inside the secret already base64 encoded | `{}` |

### ServiceMonitor Paramaters

Expand Down

0 comments on commit 09d5039

Please sign in to comment.