【发布时间】:2020-12-01 07:32:51
【问题描述】:
我正在Kubernetes env (AKS) 中运行一个带有istio gateway 的反应容器
在本地环境中,使用docker build && docker run 一切正常
在 Kubernetes 中,对于每个 npm 包,我得到的响应是 status code: 200, response content-type: text/html,响应内容是 index.html,这就是我假设未找到包的原因?
- 检查 docker dist 内容时,我可以断言该包存在(例如
/dist/npm.babel.4fca54....chunk.js存在 - docker 镜像是使用基本上下文构建的:
docker build -t imagename --build-arg PUBLIC_URL=/base-app . - index.html 有效并且包含有效的脚本声明。例如
<script type="text/javascript" src="/base-app/npm.babel.743f....chunk.js"></script>
Istio 网关
spec:
selector:
istio: ingressgateway
servers:
- hosts:
- dev.myDomain.com
port:
name: https
number: 443
protocol: HTTPS
tls:
credentialName: someCreds
mode: SIMPLE
Istio VS
- match:
- uri:
prefix: /base-app
route:
- destination:
host: svc-app
port:
number: 8000
请求 + 标头的示例
Request URL: https://dev.myDomain.com/base-app/npm.babel.4fca5....chunk.js
Request Method: GET
Status Code: 200
Remote Address: xxx.xxx.xxx:443
Referrer Policy: no-referrer-when-downgrade
响应标头
accept-ranges: bytes
content-length: 11920 ---> length of index.html
content-type: text/html --> bad needs to be text/javascript
date: Tue, 11 Aug 2020 21:30:07 GMT
etag: "5f32aff9-2e90"
last-modified: Tue, 11 Aug 2020 14:49:29 GMT
server: istio-envoy
status: 200
x-envoy-upstream-service-time: 4
【问题讨论】:
标签: reactjs docker webpack kubernetes istio