我有一个很大的进步,现在我正在通过此入口生成证书(使用certmanager.k8s.io):
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
certmanager.k8s.io/acme-http01-edit-in-place: "true"
certmanager.k8s.io/cluster-issuer: letsencrypt-prod
configuration.konghq.com: sample-kong-ingress
kubectl.kubernetes.io/last-applied-configuration: |
{"a big json"}
kubernetes.io/ingress.class: nginx
kubernetes.io/ingress.global-static-ip-name: name-public-ip
generation: 14
name: name-ingress
namespace: default
resourceVersion: "11158958"
selfLink: /apis/extensions/v1beta1/namespaces/default/ingresses/name-ingress
spec:
backend:
serviceName: kong-proxy
servicePort: 8080
tls:
- hosts:
- www.a.host.com
secretName: a-name-to-secret-tls
status:
loadBalancer:
ingress:
- ip: XX.XXX.XXX.XXX
但是,现在我收到此错误:
原因:入口默认值/名称入口使用不受支持的LBType 云提供商的LoadBalancer
也许使用GKE的人有一些想法? 谢谢您的时间。