RoadieHQ / helm-charts

Helm charts for RoadieHQ tools
https://charts.roadie.io
Apache License 2.0
2 stars 9 forks source link

Fix proxy config for lighthouse #48

Closed martina-if closed 3 years ago

martina-if commented 3 years ago

Before

    proxy:
      '/lighthouse': http://default-backstage-lighthouse
        null
      '/jira/api':
        target:
          $env:
            JIRA_API_URL
        headers:
          Authorization:
            $env:
              JIRA_API_TOKEN
          Accept: 'application/json'
          Content-Type: 'application/json'
          X-Atlassian-Token: 'no-check'
          User-Agent: "Roadie-Backstage"

After

    proxy:
      '/lighthouse':
        target: http://default-backstage-lighthouse
      '/jira/api':
        target:
          $env:
            JIRA_API_URL
        headers:
          Authorization:
            $env:
              JIRA_API_TOKEN
          Accept: 'application/json'
          Content-Type: 'application/json'
          X-Atlassian-Token: 'no-check'
          User-Agent: "Roadie-Backstage"