You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by zr...@apache.org on 2021/09/27 18:03:47 UTC

[trafficcontrol] branch master updated (a4e91b1 -> 9b35c9a)

This is an automated email from the ASF dual-hosted git repository.

zrhoffman pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git.


    from a4e91b1  TR docs for migrating removed and one example added to Traffic Router (#6216)
     add 9b35c9a  Refactor the tm-health-client (#6221)

No new revisions were added by this update.

Summary of changes:
 .github/ISSUE_TEMPLATE/1-bug-report.md             |   1 +
 .github/ISSUE_TEMPLATE/2-feature-request.md        |   1 +
 .github/ISSUE_TEMPLATE/3-improvement-request.md    |   1 +
 CHANGELOG.md                                       |   1 +
 PULL_REQUEST_TEMPLATE.md                           |   1 +
 blueprints/distributed-traffic-monitor.md          |   4 +-
 cache-config/build/build_rpm.sh                    |   6 -
 .../build/trafficcontrol-cache-config.spec         |  24 ----
 ...le-cache-config => Dockerfile-tc-health-client} |   6 +-
 infrastructure/docker/build/docker-compose.yml     |  10 ++
 .../README.md                                      |  46 ++++---
 tc-health-client/build/build_rpm.sh                | 108 +++++++++++++++++
 .../build/tc-health-client.logrotate               |   2 +-
 .../build/trafficcontrol-health-client.spec        | 133 +++++++++++++++++++++
 .../config/config.go                               | 115 ++++++++++++------
 .../config/config_test.go                          |   6 +-
 .../config/test_files/credentials                  |   0
 .../config/test_files/tc-health-client.json        |   0
 .../tc-health-client.go                            |  15 ++-
 .../tc-health-client.json                          |   0
 .../tc-health-client.service                       |   2 +-
 .../tmagent/test_files/bin/traffic_ctl             |   0
 .../tmagent/test_files/etc/parent.config           |   0
 .../tmagent/test_files/etc/strategies.yaml         |   0
 .../tmagent/test_files/tc-health-client.json       |   0
 .../tmagent/tmagent.go                             |  32 +++--
 .../tmagent/tmagent_test.go                        |   6 +-
 .../util/util.go                                   |   0
 28 files changed, 399 insertions(+), 121 deletions(-)
 copy infrastructure/docker/build/{Dockerfile-cache-config => Dockerfile-tc-health-client} (93%)
 rename {cache-config/tm-health-client => tc-health-client}/README.md (82%)
 create mode 100755 tc-health-client/build/build_rpm.sh
 rename cache-config/tm-health-client/tm-health-client-logrotate => tc-health-client/build/tc-health-client.logrotate (93%)
 create mode 100644 tc-health-client/build/trafficcontrol-health-client.spec
 rename {cache-config/tm-health-client => tc-health-client}/config/config.go (72%)
 rename {cache-config/tm-health-client => tc-health-client}/config/config_test.go (94%)
 rename {cache-config/tm-health-client => tc-health-client}/config/test_files/credentials (100%)
 rename cache-config/tm-health-client/config/test_files/tm-health-client.json => tc-health-client/config/test_files/tc-health-client.json (100%)
 rename cache-config/tm-health-client/tm-health-client.go => tc-health-client/tc-health-client.go (72%)
 rename cache-config/tm-health-client/tm-health-client.json => tc-health-client/tc-health-client.json (100%)
 rename cache-config/tm-health-client/tm-health-client.service => tc-health-client/tc-health-client.service (96%)
 rename {cache-config/tm-health-client => tc-health-client}/tmagent/test_files/bin/traffic_ctl (100%)
 rename {cache-config/tm-health-client => tc-health-client}/tmagent/test_files/etc/parent.config (100%)
 rename {cache-config/tm-health-client => tc-health-client}/tmagent/test_files/etc/strategies.yaml (100%)
 rename cache-config/tm-health-client/tmagent/test_files/tm-health-client.json => tc-health-client/tmagent/test_files/tc-health-client.json (100%)
 rename {cache-config/tm-health-client => tc-health-client}/tmagent/tmagent.go (94%)
 rename {cache-config/tm-health-client => tc-health-client}/tmagent/tmagent_test.go (96%)
 rename {cache-config/tm-health-client => tc-health-client}/util/util.go (100%)