-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
what can i replace here "dnssrv+_client._tcp.<MEMCACHED_SERVICE>.thanos.svc.cluster.local" #267
Comments
This is most likely an issue with configured address. Did you start pods running memcached? Do you have Kubernetes Service for these that you can point this address to? |
yes, thano-store, thano-store-0, thano-store-1, thano-store-2 these are all running as statefulset and its has svc also created. i just replaced MEMCHACHED_SERVICE block to svc name, then only initial mentioned came
|
Can you somehow exec into the container and check if |
Hi @hareeshrao4839 I think the issue here is that the manifests under |
Hi @hareeshrao4839 as squat mentioned above, you need to create memcached service manually,please refer to below yaml for reference: apiVersion: v1
kind: Service
metadata:
name: memcached-service
spec:
selector:
app: memcached
ports:
- protocol: TCP
port: 11211
targetPort: 11211
name: client
type: ClusterIP suppose memcached service is running in thanos namespace.the config arg should be confiured as below: "addresses":
- "dnssrv+_client._tcp.memcached-service.thanos.svc.cluster.local" |
i had to tryed
thano-store, thano-store-0, thano-store-1, thano-store-2 but pod not started. could you advise
The text was updated successfully, but these errors were encountered: