Skip to content

Commit

Permalink
Merge pull request #783 from ncaak/CCXDEV-10420/monitoring-pv-gathere…
Browse files Browse the repository at this point in the history
…r-update-versions

Update documentation
  • Loading branch information
tremes committed Jun 6, 2023
2 parents ae59d49 + c389817 commit 49a6adf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
11 changes: 1 addition & 10 deletions CHANGELOG.md
@@ -1,14 +1,5 @@
# Note: This CHANGELOG is only for the changes in insights operator.
Please see OpenShift release notes for official changes\n<!--Latest hash: e761abf647746c56fb8c2a59fb683984795a0624-->
## 4.14

### Data Enhancement
- [#741](https://github.com/openshift/insights-operator/pull/685) Gather openshift-monitoring persistent volumes

### Others

- [#756](https://github.com/openshift/insights-operator/pull/756) add unit tests for cluster proxy gatherer

Please see OpenShift release notes for official changes\n<!--Latest hash: 08b4171784b8debe038e912ecd8bcab511cf7aa3-->
## 4.13

### Data Enhancement
Expand Down
3 changes: 2 additions & 1 deletion cmd/changelog/main.go
Expand Up @@ -362,7 +362,8 @@ func sinceHashReverseGitLog(hash string) []string {
"--reverse",
fmt.Sprintf("%s..HEAD", hash)).CombinedOutput()
if err != nil {
log.Fatal(err)
// CombinedOutput sends stderr to the 'out' variable
log.Fatalf("%s: %s", err.Error(), string(out))
}
return strings.Split(string(out), "\n")
}
Expand Down
5 changes: 5 additions & 0 deletions docs/gathered-data.md
Expand Up @@ -1085,6 +1085,11 @@ which matches with ConfigMap configuration yaml
### Released version
- 4.14

### Backported versions
- 4.13.0
- 4.12.17
- 4.11.41

### Changes
None

Expand Down
5 changes: 5 additions & 0 deletions pkg/gatherers/clusterconfig/gather_monitoring_pvs.go
Expand Up @@ -30,6 +30,11 @@ import (
// ### Released version
// - 4.14
//
// ### Backported versions
// - 4.13.0
// - 4.12.17
// - 4.11.41
//
// ### Changes
// None
func (g *Gatherer) GatherMonitoringPVs(ctx context.Context) ([]record.Record, []error) {
Expand Down

0 comments on commit 49a6adf

Please sign in to comment.