Skip to content

Commit e78b508

Browse files
authored
chore: simplify path and config update (#14)
1 parent 456e63a commit e78b508

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ VOLUME ["/certs", "/etc/agent"]
3838

3939
# Healthcheck for orchestrators
4040
HEALTHCHECK --interval=30s --timeout=5s \
41-
CMD ["/usr/local/bin/radar-agent", "--health"] || exit 1
41+
CMD ["radar-agent", "--health"] || exit 1
4242

43-
ENTRYPOINT ["/usr/local/bin/radar-agent"]
43+
ENTRYPOINT ["radar-agent"]
4444
CMD ["--config", "/etc/agent/config.yaml"]

docker/Dockerfile.alpine

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ VOLUME ["/certs", "/etc/agent"]
3333

3434
# Healthcheck for orchestrators
3535
HEALTHCHECK --interval=30s --timeout=5s \
36-
CMD ["/usr/local/bin/radar-agent", "--health"] || exit 1
36+
CMD ["radar-agent", "--health"] || exit 1
3737

38-
ENTRYPOINT ["/usr/local/bin/radar-agent"]
38+
ENTRYPOINT ["radar-agent"]
3939
CMD ["--config", "/etc/agent/config.yaml"]

radar-agent-config-sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ agent:
3131
# -----------------------------------------------------------------------------
3232
server:
3333
# URL of the Radar server's gRPC endpoint
34-
grpc_url: "https://radar.example.com:50051"
34+
grpc_url: "https://grpc.radar.redis.io:443"
3535

3636
# API key for authenticating with the Radar server
3737
api_key: "your-api-key-here"

0 commit comments

Comments
 (0)