-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit adds a CHANGELOG.md file. Rather than automatically constructing release notes from the git commit log using semantic commits, we've opted to have dev's add notes about user facing changes to this log as they commit them. This commit also slightly expands CONTRIBUTING.md and removes the, now very, outdated notes. Closes #1406
- Loading branch information
1 parent
cadc029
commit 43cfb87
Showing
2 changed files
with
93 additions
and
93 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,85 @@ | ||
# Change Log | ||
|
||
## Redpanda Chart | ||
|
||
### [Unreleased](https://github.com/redpanda-data/helm-charts/releases/tag/redpanda-FILLMEIN) - YYYY-MM-DD | ||
|
||
#### Added | ||
|
||
#### Changed | ||
* `image.repository` longer needs to be the default value of | ||
`"docker.redpanda.com/redpandadata/redpanda"` to respect version checks of | ||
`image.tag` | ||
([#1334](https://github.com/redpanda-data/helm-charts/issues/1334)). | ||
* `post_upgrade_job.extraEnv` and `post_upgrade_job.extraEnvFrom` no longer accept string inputs. | ||
|
||
Previously, they accepted either strings or structured fields. As the types | ||
of this chart are reflected in the operator's CRD, we are bound by the | ||
constraints of Kubernetes' CRDs, which do not support fields with multiple | ||
types. We also noticed that the [CRD requires these fields to be structured | ||
types](https://github.com/redpanda-data/redpanda-operator/blob/9fa7a7848a22ece215be36dd17f0e4c2ba0002f7/src/go/k8s/api/redpanda/v1alpha2/redpanda_clusterspec_types.go#L597-L600) | ||
rather than strings. Too minimize the divergences between the two, we've | ||
opted to drop support for string inputs here but preserve them elsewhere. | ||
|
||
Updating these fields, if they are strings, is typically a case of needing | ||
to remove `|-`'s from one's values file. | ||
|
||
Before: | ||
```yaml | ||
post_upgrade_job: | ||
extraEnv: |- | ||
- name: SPECIAL_LEVEL_KEY | ||
valueFrom: | ||
configMapKeyRef: | ||
name: special-config | ||
key: special.how | ||
``` | ||
After: | ||
```yaml | ||
post_upgrade_job: | ||
extraEnv: | ||
- name: SPECIAL_LEVEL_KEY | ||
valueFrom: | ||
configMapKeyRef: | ||
name: special-config | ||
key: special.how | ||
``` | ||
If you were using a templated value and would like to see it added back, | ||
please [file us an | ||
issue](https://github.com/redpanda-data/helm-charts/issues/new/choose) and | ||
tell us about your use case! | ||
#### Fixed | ||
* Numeric node/broker configurations are now properly transcoded as numerics. | ||
#### Removed | ||
## Redpanda Operator Chart | ||
### [Unreleased](https://github.com/redpanda-data/helm-charts/releases/tag/operator-FILLMEIN) - YYYY-MM-DD | ||
#### Added | ||
#### Changed | ||
#### Fixed | ||
#### Removed | ||
## Connectors Chart | ||
### [Unreleased](https://github.com/redpanda-data/helm-charts/releases/tag/connectors-FILLMEIN) - YYYY-MM-DD | ||
#### Added | ||
#### Changed | ||
#### Fixed | ||
#### Removed | ||
## Console Chart | ||
### [Unreleased](https://github.com/redpanda-data/helm-charts/releases/tag/console-FILLMEIN) - YYYY-MM-DD | ||
#### Added | ||
#### Changed | ||
#### Fixed | ||
#### Removed | ||
## Kminion Chart | ||
### [Unreleased](https://github.com/redpanda-data/helm-charts/releases/tag/console-FILLMEIN) - YYYY-MM-DD | ||
#### Added | ||
#### Changed | ||
#### Fixed | ||
#### Removed |
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