0

我在我的后端启用了 tls。所以每一次流量都需要经过“https://.....”。我可以在本地访问它,也可以使用 Kubernetes 中的端口转发。但我无法通过 DNS 访问它(例如https://hostname.net/backend/....)。

我得到答案:

Bad Request
This combination of host and port requires TLS.

我读到证书可能是错误的,但是通过端口转发一切正常,所以我认为这不是问题。证书是自签名的。我只有我的服务器证书。

在我添加 tls 之前,everythinkg 工作正常。

这是我的服务和入口:

apiVersion: v1
kind: Service
metadata:
  name: app-Core
  namespace: namespace
spec:
  clusterIP: xxx.xxx.xxx.xxx
  ports:
  - name: http
    port: 8080
    protocol: TCP
    targetPort: 8080
  selector:
    app.kubernetes.io/instance: core
    app.kubernetes.io/name: app
  sessionAffinity: None
  type: ClusterIP
status:
  loadBalancer: {}
----------------------------------
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  annotations:
    nginx.ingress.kubernetes.io/rewrite-target: /$2
  name: core-app-core
  namespace: namespace
spec:
  rules:
  - host: hostname
    http:
      paths:
      - backend:
          serviceName: app-Core
          servicePort: 8080
        path: /backend(/|$)(.*)
      - backend:
          serviceName: app-Core
          servicePort: 8080
        path: /camunda(/|$)(.*)
status:
  loadBalancer:
    ingress:
    - ip: xxx.xxx.xxx.xxx


4

1 回答 1

1

尝试在nginx.ingress.kubernetes.io/backend-protocol: https入口定义中添加注释。

使用 backend-protocol 注释可以指示 NGINX 应该如何与后端服务通信。默认情况下,NGINX 使用 HTTP.

看一下:ingress-tlsbackend-protocol

于 2020-09-02T10:34:30.447 回答