Merge pull request #13 from instana/renovate/instana-agent-updates-20… #13
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
### Instana GitHub action for GitOps update sample workflow | |
### This GitHub action workflow configures the Instana GitHub action for GitOps update | |
### that remotely triggers the update of the configuration of Instana host agents that | |
### are configured to use the Git-based Configuration Management capability. The selection | |
### of which agents to update is based on a combination of agent zone and tags. | |
### Installation: refer to https://github.com/instana/github-action-update-agent-configurations#setup | |
### For more information on the Instana GitHub action for GitOps update, refer to: | |
### https://github.com/instana/github-action-update-agent-configurations | |
name: Instana GitOps update - Test | |
on: | |
push: | |
paths-ignore: | |
- 'renovate.json' | |
- 'README.md' | |
branches: [ test ] | |
jobs: | |
push-gitops-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: instana/[email protected] | |
with: | |
# At least one of 'agent_zone' and 'agent_tags' should be set | |
agent_zone: gitops-demo | |
agent_tags: gitops_environment=test | |
env: | |
INSTANA_API_ENDPOINT: ${{ secrets.INSTANA_API_ENDPOINT }} | |
INSTANA_API_TOKEN: ${{ secrets.INSTANA_API_TOKEN }} |