AWS EKS上的JupyterHub-在ELB上配置SSL不起作用

时间:2019-03-06 00:40:01

标签: amazon-web-services kubernetes jupyterhub eks

问题:

根据Off-loading SSL to a Load Balancer,在jupyterhub掌舵表中配置SSL无效 将图表安装到群集上时,ELB只有一个侦听器:HTTP(端口80)。

它应该具有一个HTTPS侦听器(端口443),该侦听器使用我在舵表中指定的证书。

我的头盔图表配置如下:

proxy:
  secretToken: "<redacted>"
  https:
    enabled: true
    type: offload
  service:
    annotations:
      # Certificate ARN
      service.beta.kubernetes.io/aws-load-balancer-ssl-cert: "<redacted>"
      # The protocol to use on the backend, we use TCP since we're using websockets
      service.beta.kubernetes.io/aws-load-balancer-backend-protocol: "tcp"
      # Which ports should use SSL
      service.beta.kubernetes.io/aws-load-balancer-ssl-ports: "443"
      service.beta.kubernetes.io/aws-load-balancer-connection-idle-timeout: '1800'

我想念什么?

0 个答案:

没有答案