Disable monitoring on the Pi 5 as fluentbit is currently unable to de… #128
This file contains 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: update fleet | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out the fleet management playbook | |
uses: actions/checkout@v3 | |
- name: Install jmespath into venv of ansible-core | |
run: | | |
source /opt/pipx/venvs/ansible-core/bin/activate | |
python3 -m pip install jmespath | |
- name: Run the fleet management playbook | |
uses: dawidd6/action-ansible-playbook@v2 | |
with: | |
playbook: manage-fleet.yml | |
options: --inventory inventory.yml | |
env: | |
MENDER_ACCESS_TOKEN: ${{ secrets.MENDER_ACCESS_TOKEN }} | |
RUNNER_ACCESS_TOKEN: ${{ secrets.RUNNER_ACCESS_TOKEN }} | |
INFLUXDB_HTTP_TOKEN: ${{ secrets.INFLUXDB_HTTP_TOKEN }} | |
PLAYBOOK_MODE: run |