As Higress Enterprise Edition gateways, Microservices Engine (MSE) Ingress gateways are compatible with NGINX Ingress gateways. Compared with the performance of open source self-managed Ingress gateways, the performance of MSE Ingress gateways is doubled. MSE Ingress gateways are certified as industry-leading Ingress gateways by the China Academy of Information and Communications Technology (CAICT) based on security maturity. MSE Ingress gateways provide the advantages of low cost, security protection, high integration, and high availability. This topic describes how to use MSE Ingress gateways to access services in Container Service for Kubernetes (ACK) clusters and Container Compute Service (ACS) clusters.
For security purposes, MSE Ingress gateways cannot expose services in the kube-system namespace.
Prerequisites
MSE Ingress Controller is installed in an ACK managed cluster, an ACK Serverless cluster, or an ACS cluster.
You are granted permissions to MSE Ingress Controller in your cluster. If your cluster is an ACK managed cluster or ACK Serverless cluster, click the link to grant permissions. If your cluster is an ACS cluster, click the link to grant permissions.
A cluster of version V1.18 or later is created. For more information about how to create a cluster, see Create an ACK managed cluster, Create an ACK Serverless cluster, or Create an ACS cluster.
NoteIf the version of your cluster is earlier than V1.18, upgrade the cluster. For more information about upgrade operations, see Manually upgrade ACK clusters.
Step 1: Install MSE Ingress Controller
ACK managed clusters or ACK Serverless clusters
Log on to the ACK console. In the left-side navigation pane, click Clusters.
On the Clusters page, find the one you want to manage and click its name. In the left-side navigation pane, click Add-ons.
ACS clusters
Log on to the ACS console. In the left-side navigation pane, click Clusters.
On the Clusters page, find the cluster that you want to manage and click its ID. In the left-side navigation pane of the cluster details page, choose Operations > Add-ons.
On the Add-ons page, enter
msein the search box, and click Install in the MSE Ingress Controller resource card.
In the Install MSE Ingress Controller dialog box, configure the parameters and click OK.
ACK managed clusters or ACK Serverless clusters
You can create a cloud-native gateway or use an existing cloud-native gateway.
Create a cloud-native gateway
A pay-as-you-go Professional Edition cloud-native gateway is automatically created. The gateway has two nodes, each of which has 2 CPU cores and 4 GB of memory. You can change the preceding default specifications after the gateway is created.

Use an existing cloud-native gateway: In the gateway list, select an existing pay-as-you-go Professional Edition cloud-native gateway that is deployed in the same VPC as the cluster. The selected gateway is not associated with other clusters.
ACS clusters
You can create a cloud-native gateway or use an existing cloud-native gateway.
Create a cloud-native gateway
A pay-as-you-go Professional Edition cloud-native gateway is automatically created. The gateway has two nodes, each of which has 2 CPU cores and 4 GB of memory. A Network Load Balancer (NLB) instance is created based on the specified network type.

Use an existing cloud-native gateway
In the gateway list, select an existing pay-as-you-go Professional Edition cloud-native gateway that is deployed in the same VPC as the cluster. The selected gateway is not associated with other clusters.
If the error message Failed to pass the precheck. appears when you install MSE Ingress Controller, grant permissions to MSE Ingress Controller. If your cluster is an ACK managed cluster or ACK Serverless cluster, click the link to grant permissions. If your cluster is an ACS cluster, click the link to grant permissions.

After MSE Ingress Controller is installed, the system automatically creates an MseIngressConfig resource named
mse-ingress-premium-{clusterid}and a cloud-native gateway namedmse-ingress-premium-{clusterid}.You can go to the ACK console, and click the name of the cluster. In the left-side navigation pane, choose Workloads > Deployments > Custom Resources. On the Resource Objects tab of the Custom Resources page, enter
msein the search box in the API Group section, and click the search icon to query the gateway status in theMseIngressConfigresource description. If thephasechanges to Listening after 3 to 5 minutes, the cloud-native gateway is created and is in the Running state. The gateway automatically listens to the Ingress resources whose IngressClass is mse in the cluster.
In normal cases, the gateway status in MseIngressConfig changes in the following order: Pending > Running > Listening. Status description:
Pending: The cloud-native gateway is being created. You must wait about 3 minutes.
Running: The cloud-native gateway is created and is running.
Listening: The cloud-native gateway is running and listens to Ingress resources in the cluster.
Failed: The cloud-native gateway is in the invalid state. You can view Message in the Status field to identify the cause.
ImportantWhen you create a cluster, an MseIngressConfig resource is automatically created during the installation of MSE Ingress Controller. The lifecycle of the MseIngressConfig resource is associated with the lifecycle of the MSE cloud-native gateway. If you delete an MseIngressConfig resource, the associated MSE cloud-native gateway instance is also deleted. Do not delete MseIngressConfig resources unless otherwise specified.
If the IngressClass resource named mse already exists in the cluster before you install MSE Ingress Controller, an MSE cloud-native gateway and the associated MseIngressConfig resource are not automatically created during the installation of MSE Ingress Controller.
Log on to the MSE console. Check that a cloud-native gateway named
mse-ingress-premium-{clusterid}is created in the region.
Step 2: Deploy a backend service
ACK managed clusters or ACK Serverless clusters
Log on to the ACK console. In the left-side navigation pane, click Clusters.
On the Clusters page, find the cluster you want to manage and click its name. In the left-side pane, choose .
ACS clusters
Log on to the ACS console. In the left-side navigation pane, click Clusters.
On the Clusters page, find the cluster that you want to manage and click its ID. In the left-side navigation pane of the cluster details page, choose .
On the Deployments page, click Create from YAML. For example, use the following YAML code to deploy a deployment named
httpbinand a service namedhttpbin.apiVersion: apps/v1 kind: Deployment metadata: name: httpbin namespace: default spec: replicas: 1 selector: matchLabels: app: httpbin template: metadata: labels: app: httpbin version: v1 spec: containers: - image: registry.cn-hangzhou.aliyuncs.com/mse-ingress/go-httpbin args: - "--version=v1" imagePullPolicy: Always name: httpbin --- apiVersion: v1 kind: Service metadata: name: httpbin namespace: default spec: ports: - port: 8080 protocol: TCP selector: app: httpbinConfirm that the deployment and service are created.
In the left-side navigation pane, choose . In the list, a deployment named
httpbinis displayed and1/1is displayed in thePodscolumn of the deployment. This indicates that the deployment is created.
In the left-side navigation pane, choose . In the list, a service named
httpbinis displayed. This indicates that the service is created.
Step 3: Configure an MSE Ingress gateway
ACK managed clusters or ACK Serverless clusters
Log on to the ACK console. In the left-side navigation pane, click Clusters.
On the Clusters page, find the cluster you want and click its name. In the left-side pane, choose .
ACS clusters
Log on to the ACS console. In the left-side navigation pane, click Clusters.
On the Clusters page, find the cluster that you want to manage and click its ID. In the left-side navigation pane of the cluster details page, choose Network > Ingresses.
On the Ingresses page, click Create Ingress.
In the Create Ingress dialog box, select MSE Ingress for Gateway Type, configure the associated backend services and annotations, and then click OK.
Set Ingress Class to mse. To configure a route, select Prefix (Prefix-based Match) from the Rule drop-down list, enter
/in the Path field, and then selecthttpbinfrom the Service drop-down list.
Log on to the MSE console. Check that a route is configured for the cloud-native gateway and the route name contains httpbin.

Step 4: Access the service
Use an Ingress endpoint to obtain the NLB domain name or obtain the public IP addresses of the gateway.
Method 1: View the Ingress endpoint on the Ingresses page in the ACK or ACS console.
ACK managed clusters or ACK Serverless clusters
Log on to the ACK console. In the left-side navigation pane, click Clusters.
On the Clusters page, find the cluster you want and click its name. In the left-side pane, choose .
On the Ingresses page, view the Ingress endpoint.

ACS clusters
Log on to the ACS console. In the left-side navigation pane, click Clusters.
On the Clusters page, find the cluster that you want to manage and click its ID. In the left-side navigation pane of the cluster details page, choose Network > Ingresses.
On the Ingresses page, view the Ingress endpoint.

Method 2: View the public IP addresses of the gateway in the MSE console.
Log on to the MSE console. In the left-side navigation pane, choose Cloud-native Gateway > Gateways. On the Gateways page, click the name of the gateway. On the Overview page of the cloud-native gateway, view the public IP addresses of the gateway on the Endpoint tab.

Use web browsers, cmd, or other command-line tools to access the path in the format of
NLB domain name/versionorPublic IP address of the gateway/versionand test services. For example, enternlb-b4ewsj2******.cn-hangzhou.nlb.aliyuncsslb.com/versionin the address bar of your web browser to access the service.
References
For more information about MSE Ingress gateways and how MSE Ingress gateways work, see MSE Ingress management.