KrakenD入门

xzlaal3s  于 2022-11-02  发布在  Kubernetes
关注(0)|答案(1)|浏览(226)

我需要一些初学者帮助KrakenD。我正在Ubuntu上运行它。配置如下。
我可以毫无问题地访问/healthz API。
我的挑战是/hello路径返回错误500。我希望此路径重定向到运行在http://getting-started36-getting-going.apps.bamboutos.hostname.us/的Quarkus应用程序。
为什么这不起作用?如果我修改/hello后端并使用一个假主机,我得到的结果完全相同。这表明KrakendD甚至没有试图连接到后端。
在日志中,KrakendD说:
Error #01: invalid character 'H' looking for beginning of value
kraken.json:

{
      "version": 2,
      "port": 9080,
      "extra_config": {
          "github_com/devopsfaith/krakend-gologging": {
              "level": "DEBUG",
              "prefix": "[KRAKEND]",
              "syslog": false,
              "stdout": true,
              "format": "default"
          }
      },
      "timeout": "3000ms",
      "cache_ttl": "300s",
      "output_encoding": "json",
      "name": "KrakenD API Gateway Service",
      "endpoints": [
          {
              "endpoint": "/healthz",
              "extra_config": {
                  "github.com/devopsfaith/krakend/proxy": {
                      "static": {
                          "data": {       "status": "OK"},
                          "strategy": "always"
                      }
                  }
              },
              "backend": [
                  {
                      "url_pattern": "/",
                      "host": ["http://fake-backend"]
                  }
              ]
          },
          {
              "endpoint": "/hello",
              "extra_config": {},
              "backend": [
                  {
                      "url_pattern": "/hello",
                      "method": "GET",
                      "host": [
                          "http://getting-started36-getting-going.apps.bamboutos.hostname.us/"
                      ]
                  }
              ]
          }
      ]
    }

我错过了什么?

jv2fixgn

jv2fixgn1#

添加“编码”:将“string”添加到后端部分。

"backend": [
                  {
                      "url_pattern": "/hello",
                      "method": "GET",
                      "encoding": "string" ,
                      "host": [
                          "http://getting-started36-getting-going.apps.bamboutos.hostname.us/"
                      ]
                  }
              ]

相关问题