Skip to content

Commit 0e6301d

Browse files
authored
Merge pull request #216 from cten/main
fixed typo in placeholder variable
2 parents 24ddf6a + 95aa781 commit 0e6301d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

all.jsonnet

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,19 +179,19 @@ local strs = t.storeShards(commonConfig {
179179
bucketCache: {
180180
type: 'memcached',
181181
config+: {
182-
// NOTICE: <MEMCACHED_SERCIVE> is a placeholder to generate examples.
182+
// NOTICE: <MEMCACHED_SERVICE> is a placeholder to generate examples.
183183
// List of memcached addresses, that will get resolved with the DNS service discovery provider.
184184
// For DNS service discovery reference https://thanos.io/service-discovery.md/#dns-service-discovery
185-
addresses: ['dnssrv+_client._tcp.<MEMCACHED_SERCIVE>.%s.svc.cluster.local' % commonConfig.namespace],
185+
addresses: ['dnssrv+_client._tcp.<MEMCACHED_SERVICE>.%s.svc.cluster.local' % commonConfig.namespace],
186186
},
187187
},
188188
indexCache: {
189189
type: 'memcached',
190190
config+: {
191-
// NOTICE: <MEMCACHED_SERCIVE> is a placeholder to generate examples.
191+
// NOTICE: <MEMCACHED_SERVICE> is a placeholder to generate examples.
192192
// List of memcached addresses, that will get resolved with the DNS service discovery provider.
193193
// For DNS service discovery reference https://thanos.io/service-discovery.md/#dns-service-discovery
194-
addresses: ['dnssrv+_client._tcp.<MEMCACHED_SERCIVE>.%s.svc.cluster.local' % commonConfig.namespace],
194+
addresses: ['dnssrv+_client._tcp.<MEMCACHED_SERVICE>.%s.svc.cluster.local' % commonConfig.namespace],
195195
},
196196
},
197197
});

examples/all/manifests/store-shard0-statefulSet.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
- |-
5959
--index-cache.config="config":
6060
"addresses":
61-
- "dnssrv+_client._tcp.<MEMCACHED_SERCIVE>.thanos.svc.cluster.local"
61+
- "dnssrv+_client._tcp.<MEMCACHED_SERVICE>.thanos.svc.cluster.local"
6262
"dns_provider_update_interval": "10s"
6363
"max_async_buffer_size": 10000
6464
"max_async_concurrency": 20
@@ -75,7 +75,7 @@ spec:
7575
"chunk_subrange_ttl": "24h"
7676
"config":
7777
"addresses":
78-
- "dnssrv+_client._tcp.<MEMCACHED_SERCIVE>.thanos.svc.cluster.local"
78+
- "dnssrv+_client._tcp.<MEMCACHED_SERVICE>.thanos.svc.cluster.local"
7979
"dns_provider_update_interval": "10s"
8080
"max_async_buffer_size": 10000
8181
"max_async_concurrency": 20

examples/all/manifests/store-shard1-statefulSet.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
- |-
5959
--index-cache.config="config":
6060
"addresses":
61-
- "dnssrv+_client._tcp.<MEMCACHED_SERCIVE>.thanos.svc.cluster.local"
61+
- "dnssrv+_client._tcp.<MEMCACHED_SERVICE>.thanos.svc.cluster.local"
6262
"dns_provider_update_interval": "10s"
6363
"max_async_buffer_size": 10000
6464
"max_async_concurrency": 20
@@ -75,7 +75,7 @@ spec:
7575
"chunk_subrange_ttl": "24h"
7676
"config":
7777
"addresses":
78-
- "dnssrv+_client._tcp.<MEMCACHED_SERCIVE>.thanos.svc.cluster.local"
78+
- "dnssrv+_client._tcp.<MEMCACHED_SERVICE>.thanos.svc.cluster.local"
7979
"dns_provider_update_interval": "10s"
8080
"max_async_buffer_size": 10000
8181
"max_async_concurrency": 20

examples/all/manifests/store-shard2-statefulSet.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
- |-
5959
--index-cache.config="config":
6060
"addresses":
61-
- "dnssrv+_client._tcp.<MEMCACHED_SERCIVE>.thanos.svc.cluster.local"
61+
- "dnssrv+_client._tcp.<MEMCACHED_SERVICE>.thanos.svc.cluster.local"
6262
"dns_provider_update_interval": "10s"
6363
"max_async_buffer_size": 10000
6464
"max_async_concurrency": 20
@@ -75,7 +75,7 @@ spec:
7575
"chunk_subrange_ttl": "24h"
7676
"config":
7777
"addresses":
78-
- "dnssrv+_client._tcp.<MEMCACHED_SERCIVE>.thanos.svc.cluster.local"
78+
- "dnssrv+_client._tcp.<MEMCACHED_SERVICE>.thanos.svc.cluster.local"
7979
"dns_provider_update_interval": "10s"
8080
"max_async_buffer_size": 10000
8181
"max_async_concurrency": 20

0 commit comments

Comments
 (0)