Create Istio ingressgateway successful, but cann't find the gateway

117 Views Asked by At

I create a private k8s cluster, 1.24.8

then I install istio 1.17.2 by these commands:

curl -L https://istio.io/downloadIstio | sh -
cd istio-1.17.2
export PATH=$PWD/bin:$PATH
istioctl install --set profile=demo -y

here is istio install result: istio install result

then I want to create a ingressgateway, here is config yaml:

apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
  name: seldon-gateway
  namespace: istio-system
spec:
  selector:
    istio: ingressgateway # use istio default controller
  servers:
  - port:
      number: 80
      name: http
      protocol: HTTP
      targetPort: 80
    hosts:
    - "*"

apply result:

result

as you can see, I can't find the gateway in any namespaces.

Anyone can help me?

1

There are 1 best solutions below

2
On

because there is same prefix gateways crd. enter image description here