From 9ada885a1e314d984f0a220d9a31a1a32ad7c092 Mon Sep 17 00:00:00 2001 From: dariuszSki Date: Fri, 30 Jun 2023 09:14:56 -0400 Subject: [PATCH 1/2] fixed file ext in the release workflow --- .github/workflows/release.yml | 2 +- README.md | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5488796..afaacd5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: cp src/* erhchecker/ python3 -m pip install -r files/requirements.txt --target erhchecker --upgrade python3 -m zipapp -p "/usr/bin/python3" --compress --output erhchecker.pyz erhchecker - tar -cvzf erhchecker_${{matrix.goos}}_${{matrix.goarch}}.gz erhchecker.pyz + tar -cvzf erhchecker_${{matrix.goos}}_${{matrix.goarch}}.tar.gz erhchecker.pyz - name: get version id: version diff --git a/README.md b/README.md index b578d7b..660aaa3 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,19 @@ The `controllerPing` is False and `link.health` is True. Return state is 1. In t } ``` +Example: + +```yaml +routerIds: +- falWSf-KgH +- UcLWVFsrx +- wgLwaF-KDH +``` + 1. In CloudZiti networks, there is a fabric only router deployed on the controller to allow for the managment channel to flow through to reach the salt master that is configured on the controller. The link from this router is ignored by the decision alrgorithm even if it is reported as being healthy. To find this link, the ip address of the controller is compared to the destination ip address of each link reported by the `link.health` check until match is made. +***Example Usage*** + Here is the link to the vrrp keepalived setup guide that goes through the configration set up steps. The section pertaining to configuration steps of the script is at the end of the article, i.e. `Ability to track loss of controller and/or fabric to trigger local switchover` [On-Prem HA](https://support.netfoundry.io/hc/en-us/articles/9962679994381-On-Prem-Ingress-High-Availability) From d8d0b0286018e531753857d0853fdc6ccbdd9b32 Mon Sep 17 00:00:00 2001 From: dariuszSki Date: Fri, 30 Jun 2023 09:40:24 -0400 Subject: [PATCH 2/2] fixed typos in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 660aaa3..1052a40 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ routerIds: - wgLwaF-KDH ``` -1. In CloudZiti networks, there is a fabric only router deployed on the controller to allow for the managment channel to flow through to reach the salt master that is configured on the controller. The link from this router is ignored by the decision alrgorithm even if it is reported as being healthy. To find this link, the ip address of the controller is compared to the destination ip address of each link reported by the `link.health` check until match is made. +1. In CloudZiti networks, a fabric only router is deployed on the controller host to allow for the management channel to flow through to reach the salt master that runs on that host. The link from this router is ignored by the decision algorithm even if it is reported as being healthy. To find this link, the ip address of the controller is compared to the destination ip address of each link reported by the `link.health` check until match is made. ***Example Usage***