Skip to content

Commit

Permalink
Merge pull request #2 from netfoundry/release-workflow-patch
Browse files Browse the repository at this point in the history
fixed file ext in the release workflow
  • Loading branch information
dariuszSki authored Jun 30, 2023
2 parents 67ce47a + d8d0b02 commit 692a115
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,18 @@ The `controllerPing` is False and `link.health` is True. Return state is 1. In t
}
```

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:

```yaml
routerIds:
- falWSf-KgH
- UcLWVFsrx
- wgLwaF-KDH
```
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***

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`

Expand Down

0 comments on commit 692a115

Please sign in to comment.