Istio tls端口443提供503服务不可用

问题描述 投票:0回答:1

我正在kubernetes Azure AKS群集上运行服务。

Istio-version: 1.3.2

我的服务正在同时监听端口80和443:

NAME               TYPE        CLUSTER-IP    EXTERNAL-IP   PORT(S)          AGE
hello-kubernetes   ClusterIP   10.0.43.233   <none>        80/TCP,443/TCP   28h

也istio-gateway.yaml文件如下所示:

apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
  name: my-gateway
spec:
  selector:
    istio: ingressgateway 
  servers:
  - port:
      number: 80
      name: http
      protocol: HTTP
    hosts:
    - "*"
    #tls:
      #httpsRedirect: true
  - port:
      number: 443
      name: https
      protocol: HTTPS
    hosts:
    - "*"
    tls:
      mode: SIMPLE
      credentialName: "mycert" # must be the same as secret
      privateKey: sds
      serverCertificate: sds
      #serverCertificate: /etc/istio/ingressgateway-certs/tls.crt
      #privateKey: /etc/istio/ingressgateway-certs/tls.key

秘密是通过以下命令创建的-我有一个自定义证书,该证书已在集群上上传:

kubectl create -n istio-system secret generic mycert \
  --from-file=key=/home/user/istio-1.3.2/ssl/myprivate.key \
  --from-file=cert=/home/user/istio-1.3.2/ssl/mycert.pem

mycert.pem文件同时包含证书密钥和中间密钥。

VirtualService文件类似于:

apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: hello-kubernetes
spec:
  hosts:
  - "mydomain.com"
  gateways:
  - my-gateway
  http:
  - match:
    - uri:
        prefix: /hello-k8s
    route:
    - destination:
        host: hello-kubernetes

如果我使用http卷曲它,它给我200 OK响应,但是当我使用https端口卷曲它时,它给出了HTTP / 1.1 503服务不可用。

浏览器上的错误消息是:NET :: ERR_CERT_AUTHORITY_INVALID

是否知道缺少什么?

kubernetes https istio azure-aks
1个回答
0
投票

错误通过添加来解决:

port:
   number: 80

在虚拟服务文件的目标部分。

© www.soinside.com 2019 - 2024. All rights reserved.