Service healthcheck #6903
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Service healthcheck | |
| # yamllint disable-line rule:truthy | |
| on: | |
| schedule: | |
| # Run every hour | |
| - cron: '0 * * * *' | |
| workflow_call: | |
| workflow_dispatch: | |
| jobs: | |
| ufl: | |
| name: eduroam visibility healthcheck | |
| runs-on: | |
| group: mala-lab-noble | |
| steps: | |
| - name: zobelisk | |
| run: | | |
| ping -c 1 zobelisk.mil.ufl.edu &> /dev/null | |
| # - name: workstation1 | |
| # run: | | |
| # ping -c 1 workstation1.mil.ufl.edu &> /dev/null | |
| - name: workstation2 | |
| run: | | |
| ping -c 1 workstation2.mil.ufl.edu &> /dev/null | |
| - name: nas | |
| run: | | |
| ping -c 1 nas.mil.ufl.edu &> /dev/null | |
| # TODO uf-mil/mil2#94 | |
| # milnet: | |
| # name: milnet visibility healthcheck | |
| # runs-on: | |
| # group: mala-lab-noble | |
| # steps: | |
| # - name: zobelisk | |
| # run: | | |
| # ping -c 1 192.168.37.23 &> /dev/null | |
| external: | |
| name: external visibility healthcheck | |
| runs-on: | |
| group: mala-lab-noble | |
| steps: | |
| - name: milwiki | |
| run: | | |
| wget milwiki.cbrxyz.com -O /dev/null &> /dev/null | |
| - name: mil website | |
| run: | | |
| ping -c 1 mil.ufl.edu &> /dev/null | |
| - name: navigator website | |
| run: | | |
| ping -c 1 navigatoruf.org &> /dev/null | |
| - name: subjugator website | |
| run: | | |
| ping -c 1 subjugator.org &> /dev/null | |
| internal: | |
| name: internal visibility healthcheck | |
| runs-on: | |
| group: mala-lab-noble | |
| steps: | |
| - name: zobelisk | |
| run: | | |
| ping -c 1 192.168.37.23 &> /dev/null |