Mtce: Add two new port definitions to mtc.ini for SM communications

In support of the HA Improvements feature maintenance is required to,
upon request, send SM a summary of maintenance's heartbeat responsiveness
during the last 20 heartbeat periods.

This update adds the required port assignments to the mtc.ini file
in support of said communications.

With this update the mtc.ini file will be updated to contain the
following entries.

  ; Communication ports between SM and maintenance
  sm_server_port = 2124 ; port sm receives mtce commands from
  sm_client_port = 2224 ; port mtce receives sm commands from

Change-Id: I05c022f7e4dcdeaea71bc0020641baa331daae57
Story: 2003576
Task: 26837
Signed-off-by: Eric MacDonald <eric.macdonald@windriver.com>
This commit is contained in:
Eric MacDonald 2018-10-02 08:03:01 -04:00
parent f8c7b2d830
commit f5d212010b
6 changed files with 11 additions and 3 deletions

View File

@ -1,2 +1,2 @@
SRC_DIR="src"
TIS_PATCH_VER=64
TIS_PATCH_VER=65

View File

@ -54,6 +54,8 @@ platform::mtce::agent::params::heartbeat_failure_threshold: 10
platform::mtce::agent::params::heartbeat_degrade_threshold: 6
platform::mtce::agent::params::mnfa_threshold: 2
platform::mtce::agent::params::mnfa_timeout: 0
platform::mtce::params::sm_server_port: 2124
platform::mtce::params::sm_client_port: 2224
# influxdb configuration for collectd
platform::influxdb::params::bind_address: ':25826'

View File

@ -17,6 +17,8 @@ class platform::mtce::params (
$mtce_multicast = undef,
$mnfa_threshold = undef,
$mnfa_timeout = undef,
$sm_client_port = undef,
$sm_server_port = undef,
) { }

View File

@ -1,3 +1,3 @@
SRC_DIR="src"
COPY_LIST="$SRC_DIR/LICENSE"
TIS_PATCH_VER=8
TIS_PATCH_VER=9

View File

@ -16,6 +16,10 @@ heartbeat_period = <%= @heartbeat_period %> ; Heartbeat period in milliseconds
heartbeat_failure_threshold = <%= @heartbeat_failure_threshold %> ; Heartbeat failure threshold count.
heartbeat_degrade_threshold = <%= @heartbeat_degrade_threshold %> ; Heartbeat degrade threshold count.
; Communication ports between SM and maintenance
sm_server_port = <%= @sm_server_port %> ; port sm receives mtce commands from
sm_client_port = <%= @sm_client_port %> ; port mtce receives sm commands from
; Heartbeat Loss / Failure Action Selection.
; The action to take on host heartbeat failure.
; Supported actions are

View File

@ -1,2 +1,2 @@
SRC_DIR="sysinv"
TIS_PATCH_VER=282
TIS_PATCH_VER=283