Skip to content

Commit 5d3901b

Browse files
authored
change hashringConfigmapName to hashringConfigMapName (#279)
Signed-off-by: Michael Burt <[email protected]>
1 parent fd637a4 commit 5d3901b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ We use *breaking* word for marking changes that are not backward compatible (rel
1717

1818
### Changed
1919

20+
- [#279](https://github.com/thanos-io/kube-thanos/pull/279) Change `hashringConfigmapName` to `hashringConfigMapName` in Receive configuration.
21+
2022
### Added
2123

2224
### Fixed

jsonnet/kube-thanos/kube-thanos-receive-ingestor.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local defaults = receiveConfigDefaults {
66
hashring: 'default',
77
tenants: [],
88
}],
9-
hashringConfigmapName: 'hashring-config',
9+
hashringConfigMapName: 'hashring-config',
1010
routerReplicas: 1,
1111
};
1212

jsonnet/kube-thanos/kube-thanos-receive-router.libsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local defaults = receiveConfigDefaults {
55
hashring: 'default',
66
tenants: [],
77
}],
8-
hashringConfigmapName: 'hashring-config',
8+
hashringConfigMapName: 'hashring-config',
99
routerReplicas: 1,
1010
endpoints: error 'must provide ingestor endpoints object',
1111
};
@@ -46,7 +46,7 @@ function(params) {
4646
apiVersion: 'v1',
4747
kind: 'ConfigMap',
4848
metadata: {
49-
name: tr.config.hashringConfigmapName,
49+
name: tr.config.hashringConfigMapName,
5050
namespace: tr.config.namespace,
5151
},
5252
data: {

0 commit comments

Comments
 (0)