我正在尝试为我的微服务研究配置 api-gateway。我创建了一个 pod 作为该 pod 的 auth-depl 和 auth-src 服务。我还有另一个 pod&service 作为 links-depl 和 links-serv。我想为它制作一个 api-gateway。这些服务。
“ kubeectl get pods”的输出:
NAME READY STATUS RESTARTS AGE
api-gateway-depl-88b4c8b77-zdgjw 1/1 Running 0 10m
auth-depl-7cb78c4dcf-wxrwd 1/1 Running 0 10m
links-depl-69d749955d-5xf9b 1/1 Running 0 6m3s
“ kubectl get services ”的输出:
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
api-gateway-srv NodePort 10.98.213.62 <none> 8080:30623/TCP 12m
auth-srv ClusterIP 10.98.214.62 <none> 3000/TCP 12m
kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 25h
links-srv ClusterIP 10.99.37.46 <none> 3001/TCP 12m
我的 express-gateway 配置文件是这样的:
http:
port: 8080
admin:
port: 9876
host: localhost
apiEndpoints:
api:
host: localhost
paths: '/ip'
user:
host: localhost
paths: '/user/signup'
serviceEndpoints:
httpbin:
url: 'https://httpbin.org'
usersrv:
url: 'http://auth-srv:3000/user/signup'
policies:
- basic-auth
- cors
- expression
- key-auth
- log
- oauth2
- proxy
- rate-limit
pipelines:
default:
apiEndpoints:
- api
policies:
- proxy:
- action:
serviceEndpoint: httpbin
changeOrigin: true
我只是尝试使用 api-gateway 访问身份验证服务,但我不能这样做。为此,我发送此请求:
POST http://localhost:30623/user/signup
我得到“无法发布/用户/注册错误
但是当我向我发送请求时,
GET http://localhost:30624/ip
我可以收到响应。
如何配置此 gateway.config.yaml 文件来解决我的问题。