how do I specify the redis address for launcher? I...
# kolide
a
how do I specify the redis address for launcher? It's currently trying to go to an internal ip:53 - pretty sure it's exposed on fleet-cache-redis:6379
z
Are you talking about Fleet? Launcher does not make any Redis connections.
a
yes sorry, I'm getting the following when I send a query down from kolide,
Copy code
PUBLISH failed to channel results_2: dial tcp: lookup fleet-cache-redis on 10.0.0.10:53: no such host","errcode"
a
z
Cool, configuring that value ought to fix it for ya.
a
which value sorry?
z
redis_address
a
thanks, but shouldn't it pick it up from the service which
Copy code
helm install \
  --name fleet-cache \
  --set persistence.enabled=false \
  stable/redis
sets up exposing it on fleet-cache-redis:6379?
s
:53 is a dns port. I wonder if somethjing else is amiss?
z
You're showing a command for installing Redis. Did you configure fleet with the appropriate address for Redis?
g
you’re also several layers of abstraction above fleet itself (helm, kubernetes) Make sure you understand these components well
a
been a numpty, exposed it on the service fleet-cache-redis-master:6379 ...
thanks for the help all