-
Notifications
You must be signed in to change notification settings - Fork 80
CORTX-33705: confd and ios ports are not aligned with cluster #2149
Conversation
@pavankrishnat can you add problem statement in the commit message? |
@pavankrishnat, I am not exactly able to understand what was the problem looking at the commit message and changes. |
Updated |
1292f44
to
5f3a30a
Compare
b7c0e36
to
c21ddc1
Compare
retest this please |
@mssawant could you please review this and merge if all looks good? |
@pavankrishnat, PR description looks good, please also update the commit message accordingly, I don't see commit message aligned with the PR description. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update the commit message to align with the PR description. Thank you.
Problem: The confd and ios Port information in hctl status is not matching with cluster.conf in both Both basic Linux and K8s In basic Linux, ios Port in hctl status is 21003 instead of 21001 (as per cluster.conf). And in K8s, both confd and ios Port are not matching with cluster.conf Solution: Modified ios and confd port info to fetch default port. For K8s, just by changing order in m0serverT list fixes this issue. But to fix in basic Linux, updated the default ports and avoid rounding off to fetch actual ports from cluster.conf. Signed-off-by: pavankrishnat <pavan.k.thunuguntla@seagate.com>
c21ddc1
to
41575f3
Compare
Updated the commit message. |
Problem:
The confd and ios Port information in hctl status is not matching with
cluster.conf in both Both basic Linux and K8s
in basic Linux:
ios Port in hctl status is 21003 instead of 21001 (as per cluster.conf):
In K8s:
both confd and ios Port are not matching with cluster.conf
Solution:
Modified ios and confd port info to fetch default port.
For K8s, just by changing order in list fixes this issue.
provisioning\miniprov\hare_mp\cdf.py
m0serverT = ['confd', 'ios']
but to fix in basic Linux, updated the default ports and avoid rounding off to fetch actual ports from cluster.conf.
After changes:
on basic Linux:
On K8s
Signed-off-by: pavankrishnat pavan.k.thunuguntla@seagate.com