Skip to content

Commit cc2ab03

Browse files
committed
Expose PCP ports; correct firewall files
1 parent de3e664 commit cc2ab03

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<service>
3-
<short>pbench-tool-data-sink</short>
4-
<description>Pbench Agent Tool Data Sink</description>
5-
<port protocol="tcp" port="8080"/>
3+
<short>pbench-redis</short>
4+
<description>Pbench Agent Redis Server</description>
5+
<port protocol="tcp" port="17001"/>
66
</service>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<service>
3-
<short>pbench-redis</short>
4-
<description>Pbench Agent Redis Server</description>
5-
<port protocol="tcp" port="17001"/>
3+
<short>pbench-tool-data-sink</short>
4+
<description>Pbench Agent Tool Data Sink</description>
5+
<port protocol="tcp" port="8080"/>
66
</service>

agent/containers/images/Dockerfile.tds.j2

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ FROM pbench-agent-tools-{{ distro }}:{{ tag }}
33

44
VOLUME /var/lib/pbench-agent
55

6-
# Port 8080 should be Bottle server, 9090 optional Prometheus server
7-
EXPOSE 8080 9090
6+
# Port 8080 should be Bottle server, 9090 optional Prometheus server, and 44566
7+
# the optional pmproxy server.
8+
EXPOSE 8080 9090 44566
89
ENTRYPOINT [ "/opt/pbench-agent/util-scripts/tool-meister/tool-data-sink-ep" ]
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# {{ distro }} pbench-agent-tool-meister image
22
FROM pbench-agent-tools-{{ distro }}:{{ tag }}
33

4-
# Port 8000 should be the optional dcgm tool, and 9100 the optional node_exporter tool.
5-
EXPOSE 8000 9100
4+
# Port 8000 should be the optional dcgm tool, 9100 the optional node_exporter
5+
# tool, and 55677 the pcp (pmcd) tool.
6+
EXPOSE 8000 9100 55677
67
ENTRYPOINT [ "/opt/pbench-agent/util-scripts/tool-meister/tool-meister-ep" ]

0 commit comments

Comments
 (0)