gpt4 book ai didi

ssl - openssl 提供 Kubernetes 入口 Controller 假证书

转载 作者:行者123 更新时间:2023-12-04 01:12:00 25 4
gpt4 key购买 nike

我已经配置了ssl证书,如果我访问https://<domain>.com , 我看到我的证书配置成功但是当我尝试通过以下命令检查证书时

openssl s_client -connect <domain>.com:443 | openssl x509 -noout -subject -issuer
我收到 Kubernetes Ingress Controller Fake Certificate我的入口配置是:
  annotations:
nginx.ingress.kubernetes.io/ssl-redirect: 'true'
nginx.ingress.kubernetes.io/from-to-www-redirect: 'true'
name: nginx-echo
spec:
tls:
- hosts:
- domain.com
secretName: domain.com
rules:
- host: domain.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: website-lorem
port:
number: 80
with 命令给出相同的假证书: openssl s_client -connect <domain>.com:443 -servername <domain> | openssl x509 -noout -subject -issuer日志:
 6 flags.go:205] Watching for Ingress class: nginx
W1029 22:02:36.331841 6 flags.go:210] Ingresses with an empty class will also be processed by this Ingress controllernginx
W1029 22:02:36.332409 6 flags.go:252] SSL certificate chain completion is disabled (--enable-ssl-chain-completion=false)
W1029 22:02:36.332525 6 client_config.go:552] Neither --kubeconfig nor --master was specified. Using the inClusterConfig. This might not work.
I1029 22:02:36.332855 6 main.go:231] Creating API client for https://<ip>:443
I1029 22:02:36.342532 6 main.go:275] Running in Kubernetes cluster version v1.19 (v1.19.2) - git (clean) commit f57430*** - platform linux/amd64
I1029 22:02:36.470142 6 main.go:105] SSL fake certificate created /etc/ingress-controller/ssl/default-fake-certificate.pem
I1029 22:02:36.472357 6 main.go:113] Enabling new Ingress features available since Kubernetes v1.18
W1029 22:02:36.476751 6 main.go:125] No IngressClass resource with name nginx found. Only annotation will be used.
I1029 22:02:36.485119 6 ssl.go:528] loading tls certificate from certificate path /usr/local/certificates/cert and key path /usr/local/certificates/key
I1029 22:02:36.544518 6 nginx.go:263] Starting NGINX Ingress controller

最佳答案

问题是

  • --default-ssl-certificate未设置标志。更多详情请见here
  • Intermediate certificate没有设置。请查收 this thread更多细节。

  • 现在它的工作。
    还有一个 Github thread有了这个问题。

    关于ssl - openssl 提供 Kubernetes 入口 Controller 假证书,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64605121/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com