oiricaud / config-server

This is a repository that version controls a configuration server.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to notify Instana on a new release

Integrate Instana with your Github Repository

You will need to create a secret variable on your repository.

  1. To get the INSTANA_BASE, INSTANA_TOKEN alt tag
  2. Enable the following fields alt tag
  3. On github go to your repository and click on Settings alt tag
  4. Go to Secrets and Variables and click on actions alt tag
  5. Click on New Repository Secret alt tag
  6. Fill in the values for GH_TOKEN, INSTANA_BASE, INSTANA_TOKEN alt tag
  7. Your result should look like alt tag
  8. The INSTANA_BASE is your instana url. i.e https://mysandboxenv.instana.io
  9. Your GH_TOKEN can be generated by accessing https://github.com/settings/profile -> clicking on developer settings -> personal access tokens -> tokens (classic) alt tag
  10. Enable Read and Write permissions for workflow alt tag
  11. Identify which application perspective you want to target. This step is important because you must update the .github/workflows/create-release.yml file and update the following code snippet
          {
            "applications": [
              {
                "name": "All Services",
                "services": [
                  { "name": "zabbix-06-PHP" }
                ]
              }
            ]
          }

alt tag 11) Go to actions -> release new version alt tag 12) Run workflow specify version of release alt tag 13) Wait for job to finish alt tag 14) You should get a green checkmark that the job is done. alt tag 15) Verify you are able to view release on instana alt tag 16) Done alt tag

About

This is a repository that version controls a configuration server.


Languages

Language:Shell 63.8%Language:Dockerfile 36.2%