Contact Us 1-800-596-4880

Getting Started with Flex Gateway in a Kubernetes Cluster

Get started with Anypoint Flex Gateway in a Kubernetes cluster or an OpenShift cluster, which is based on Kubernetes. Set up a Flex Gateway deployment that connects to Anypoint Platform, and use the deployment to route traffic to your API. This guide covers the following high-level tasks:

  • Downloading, registering, and deploying Flex Gateway in Connected Mode with a token

  • Creating a simple API in Anypoint API Manager that runs on your gateway

  • Protecting the API with a basic authentication policy that you configure in API Manager

The Flex Gateway deployment process requires a working Kubernetes cluster that you create or that is provisioned for you by a Kubernetes professional.

Setting up a Kubernetes cluster requires a level of skill and expertise that is beyond the scope of this guide to provide. Cluster configuration in Kubernetes differs significantly by service provider and platform. For cluster configuration questions, consult documentation from your Kubernetes service provider or use the Kubernetes documentation.

If you lack a Kubernetes cluster but want to try out Flex Gateway quickly, without creating a cluster, see Getting Started with Flex Gateway (on Docker). That guide uses Docker exclusively and does not require you to perform any cluster configuration.

Before You Begin

Before starting the procedures in this guide, ensure that the following prerequisites are in place:

  • A username and password for your Anypoint Platform organization. If you do not have an Anypoint Platform account, create a Trial organization on Anypoint Platform.

  • A Docker installation.

    Run docker --version from a terminal window to determine if this tool is installed. If you need to install Docker, try Docker Desktop.

  • A minimum Helm version of 3.0.0 is required.

    Run helm version from a terminal window to determine if this tool is installed and check the version. To install or upgrade, use the Helm website.

  • The Kubernetes kubectl command-line tool.

    Run kubectl version --output=yaml from a terminal window to determine if this tool is installed. If not, find kubectl among the installation tools available through the Kubernetes documentation.

  • The curl command-line tool.

    Run curl --version from a terminal window to determine if this tool is installed. If not, you can download it with a package manager for your machine.

Cluster Requirements

The host for your Kubernetes cluster can be any supported Kubernetes provider, including common cloud-based services, such as Amazon Elastic Kubernetes Service (EKS), Azure Kubernetes Service (AKS), or Google Kubernetes Engine (GKE).

When deploying Flex Gateway to a Kubernetes cluster that enables role-based access control (RBAC), you must have cluster-level permissions to permit installation of custom resource definitions (CRDs) used by Flex Gateway. In OpenShift, the cluster-admin role provides this level of access.

To complete the procedures in this guide, you must create a Kubernetes cluster or use an existing one for your Flex Gateway deployment. In this guide, you use Helm to deploy Flex Gateway to a Kubernetes cluster and connect it to Anypoint Platform.

The following minimum requirements apply to a small Kubernetes cluster used for demonstration purposes in this guide and do not apply to requirements of a production environment:

  • At least one node.

  • Support for the creation of a Service resource of the LoadBalancer type.

    This requirement avoids deployment errors when you use this guide. However, it is possible to customize the Service type when deploying a gateway. Flex Gateway supports the following services: ClusterIP, NodePort, LoadBalancer (default), ExternalName. See the service.type key in the Helm chart for Flex Gateway.

  • Compute resources needed for the deployment procedure are very unlikely to exceed the following values (equivalent to the EKS t3.micro instance type):

    • vCPU: 2 vCPUs

    • Memory: 1 GiB

    • Network: Up to 5 Gigabit

    • Max ENI: 2

    • Max IPs: 4

To determine whether your cluster is ready for the deployment procedure, review Check Your Cluster before starting the deployment. The checks require you to run a set of kubectl commands.

Step 1: Download the Flex Gateway Image

Use Docker to download the Flex Gateway image from the Docker Hub registry.

This procedure is a prerequisite to registering the Flex Gateway with Anypoint Platform in Step 2: Register Flex Gateway. Registration is required during the gateway deployment through Helm in Step 4: Deploy and Connect Flex Gateway.

  1. Check that Docker is running by executing the following command in a terminal window:

    docker info

    If you receive an error after executing this command, see the information about Docker troubleshooting.

  2. Run the following command in a terminal window:

    docker pull mulesoft/flex-gateway:1.4.0

    When successful, this command prints a message similar to the following one in your terminal window:

    latest: Pulling from mulesoft/flex-gateway
    Digest: sha256:e55555abcdefg1234567zxynwo33333fadjf
    Status: Image is up to date for mulesoft/flex-gateway:latest
    docker.io/mulesoft/flex-gateway:latest

    Use sudo if you encounter permission issues when running this command.

Step 2: Register Flex Gateway

Register the Flex Gateway image from a terminal window using a temporary token generated by Anypoint Runtime Manager. This procedure produces a local registration.yaml file that contains registration properties for a named gateway. These properties are incorporated into a Helm chart in Step 4: Deploy and Connect Flex Gateway.

  1. From a terminal window, prepare a directory for a Flex Gateway registration file (registration.yaml).

    1. Create a directory:

      mkdir flex-registration
    2. Navigate to the new directory:

      cd flex-registration
  2. Log in to Anypoint Platform and select Runtime Manager.

  3. From Runtime Manager, locate the procedure for registering Flex Gateway:

    1. Click Flex Gateways in the side navigation panel.

    2. Click Add Gateway.

    3. Select one of the following environments:

      • Kubernetes

      • OpenShift

    4. In the page that opens, locate the command in the Register your gateway section.

      Kubernetes Example:

      Add registration code block from Add a Flex Gateway page

      The highlighted command block includes your unique organization ID and a temporary token.

  4. In your terminal window, copy the command block from Runtime Manager to your ./flex-registration directory.

    Notice that Runtime Manager provides the required organization and token values.

  5. Before running the command, replace <gateway-name> at the end of the command block with a unique name for your gateway, such as my-gateway.

    The name that you provide for your gateway must be unique within the scope of your Anypoint Platform organization and environment. Completing this registration step is required once and allowed no more than once per named gateway and organization.

  6. Run the edited command from your terminal window.

    When successful, the command produces a registration.yaml in your ./flex-registration directory and displays the following message in your terminal window:

    Starting registration, please be patient.
    Registration completed, the configuration files were written
    in directory "/registration". For security, modify the file permissions
    to restrict production scenario access to the user running flex.

    Note that the message in the terminal window refers to a /registration directory that resides within the Docker container.

    Use sudo if you encounter file permission issues when running this command. If your token expires before you run the command, a 400 Bad Request error occurs. In this case, you must refresh the Runtime Manager page to generate a new token and run the modified command that appears on the page.

Step 3: Add a Repository for the Helm Chart

Add the Flex Gateway chart repository. Note that you can get more information about the properties of the Helm chart for Flex Gateway in ArtifactHUB.

  1. Add a Helm repository named flex-gateway for your Helm chart:

    helm repo add flex-gateway https://flex-packages.anypoint.mulesoft.com/helm

    The command either adds the repository or skips this process if a Helm repository with that name already exists on your machine:

    • If the repository is new, the command returns the following message:

      "flex-gateway" has been added to your repositories
    • If the repository already exists, the command returns the following message:

      "flex-gateway" already exists with the same configuration, skipping
  2. Run helm repo up.

    The command returns the following message:

    Hang tight while we grab the latest from your chart repositories...
    ...Successfully got an update from the "flex-gateway" chart repository
    Update Complete. ⎈Happy Helming!⎈

    If you have more than one Helm repository on your machine, the message in your terminal window lists all of the repositories.

Step 4: Deploy and Connect Flex Gateway

Use Helm to deploy Flex Gateway to a node in your cluster and connect it to Anypoint Platform. After deploying, use Runtime Manager to verify that the gateway is present and connected to Anypoint Platform.

Before you begin:

Confirm that your Kubernetes cluster is available by following the steps in Check Your Cluster. Review Cluster Requirements if you have not done so already. These prerequisites help avoid deployment errors.

After confirming that your Kubernetes cluster is ready, deploy and connect your gateway:

  1. Run the Helm command for deploying your gateway in Connected Mode:

    helm -n gateway upgrade -i --create-namespace \
    --wait ingress flex-gateway/flex-gateway \
    --set gateway.mode=connected \
    --set-file registration.content=registration.yaml

    This command creates the gateway namespace and ingress release if they do not exist. The command syntax for the Helm repository and chart names is <helm-repo-name>/<helm-chart-name>.

    The command uses --set gateway.mode=connected because the default for the Helm chart is Local Mode.

    When successful, the command prints a message indicating an upgrade to your ingress release:

    Release "ingress" does not exist. Installing it now.
    NAME: ingress
    LAST DEPLOYED: Mon Mar 20 21:36:19 2023
    NAMESPACE: gateway
    STATUS: deployed
    REVISION: 1
    TEST SUITE: None

    The REVISION value increments the ingress release by 1 each time you run this command with the same namespace, repository, and chart names. For example, if you run the command a second time, you find a new revision number (REVISION: 2). The LAST DEPLOYED date reflects the date of that revision.

    If you receive an UPGRADE FAILED response, see troubleshooting information about this issue.

  2. If you want to check the status of the Pod that runs your gateway, execute the following kubectl command:

    kubectl get pods -n gateway

    The output indicates whether the pod is running successfully in the gateway namespace:

    NAME                       READY   STATUS        RESTARTS   AGE
    ingress-57bc75cb46-dmkdq   1/1     Running       0          35s
  3. Return to Runtime Manager:

    1. Select ← Flex Gateways from the side navigation panel of the Add a Flex Gateway page.

      Return to Flex Gateway list in Runtime Manager
    2. Navigate to your registered gateway in the Flex Gateways page:

      Flex Gateway my-gateway in Runtime Manager

      You can use the search field in the page to narrow the list of gateways.

    3. Make sure that the status of your gateway is Connected.

      If the status is Disconnected, it is likely that the cluster configuration is incorrect or a network issue occurred. Check Troubleshooting for more information.

Step 5: Publish and Deploy a Simple API to Flex Gateway

Create and deploy a simple API to your gateway in Anypoint API Manager:

  1. In Runtime Manager, click the View APIs menu option for your gateway to navigate to its View APIs page.

    View APIs menu item for Flex Gateway

    Alternatively, you can navigate to API Manager from the Anypoint Platform menu.

  2. From the page that opens, click Add API (and if present, Add new API) to navigate to the APIs / Add API page in API Manager.

  3. From APIs / Add API, configure an API by working through the API configuration pages, starting with the Runtime configuration:

    Add API page with Flex Gateway Runtime and my-gateway selected
    1. From the Runtime configuration page, select Flex Gateway as your runtime.

    2. Find and select your gateway in the Select a gateway area of the page.

      Use the search field to locate it, if necessary.

    3. Click Next to open the API page.

  4. In the API configuration page associated with APIs / Add API, provide an API name and asset type:

    Screenshot of 'API' page
    1. Click Create new API.

      The remaining procedures walk you through steps for creating and testing a new HTTP API in Anypoint Exchange. Notice, however, that it is also possible to select an existing API from Exchange from this page. That process is described in the Add a New API in the API Manager documentation.

    2. Provide an API name, such as my-api.

    3. Select HTTP API as the asset type.

    4. Click Next to open the Endpoint configuration page.

  5. In the Endpoint page associated with APIs / Add API, set up an endpoint for your API:

    Screenshot of 'Endpoint' page
    1. For the Scheme, use the default, HTTP setting.

      This guide focuses on a simple HTTP API. For HTTPS configuration details, see Configuring TLS Context for Flex Gateway in Connected Mode.

    2. Copy the following URI into the Implementation URI field:

      https://jsonplaceholder.typicode.com/
    3. Type 80 in the Port field.

      The example in this guide uses HTTP port 80 instead of the API Manager default port, 8081, because the created Service maps incoming port 80 to target port 80 on the Pod. See the service.http.port key in the Helm chart for Flex Gateway.

    4. Click Next to open the Review page.

  6. In the Review page associated with APIs / Add API:

    1. Review your API configuration.

    2. If necessary, use Edit to revise any configurations.

    3. When your configuration is correct, click Save & Deploy.

      Inside the gateway, all incoming HTTP requests on port 80 are proxied to the jsonplaceholder service.

  7. From a terminal window, test the API instance:

    1. Get your external IP address and use it to check that your IP redirects to the Implementation URI:

      kubectl -n gateway get services

      The command returns a result that looks similar to this example:

      NAME    TYPE         CLUSTER-IP     EXTERNAL-IP       PORT(S)                    AGE
      ingress LoadBalancer 10.100.145.109 <123456.aws.com>  80:30524/TCP,443:31710/TCP 7d7h

      The EXTERNAL-IP value <123456.aws.com> is an example and not an actual value.

    2. Run the following curl command, replacing <your_external_ip> with your EXTERNAL-IP from the preceding step:

      curl -s -o /dev/null -w "%{http_code}\n" --request GET 'http://<your_external_ip>:80/users'

      The command executes a GET request to the API and prints a success code:

      200

      You can also run a simpler curl command to return an array of JSON objects from the service’s /users endpoint, for example:

      $ curl http://<your_external_ip>:80/users

Step 6: Secure Your API Using the Basic Authentication Policy

Use API Manager to add a basic authentication policy to your API.

  1. In API Manager, select API Administration from the side navigation panel.

  2. Find and click the name of the API that you created in Step 5: Publish and Deploy a Simple API to Flex Gateway, such as my-api.

  3. Navigate to the Policies page for your API:

    1. Select Policies from the side navigation panel.

    2. On the Policies page, click Add policy.

      Add Policy page with Add policy button
  4. In the page that opens, find the Security policy called Basic Authentication - Simple policy.

    Add a policy page

    Be careful to avoid selecting the similarly named policy for LDAP.

  5. Click Next.

  6. Configure a Basic Authentication policy:

    Screenshot of 'Configure Basic Authentication - Simple policy' page
    1. For User Name, enter user instead of your real user name.

      If the field is pre-populated with a value, you can keep the value or change it to the suggested value.

    2. For User Password, enter pw.

      If the field is pre-populated with a value, you can keep the value or change it to the suggested value.

    3. Click Apply.

  7. Test the API instance:

    1. Use kubectl to get your external IP address again so that you can use it in the next step:

      kubectl -n gateway get services
    2. Run the following curl a command without authentication parameters, replacing <your_external_ip> with the EXTERNAL-IP returned by preceding step:

      curl -s -o /dev/null -w "%{http_code}\n" --request GET 'http://<your_external_ip>:80/users'

      The command returns a 401 because the URI lacks authentication parameters:

      401
    3. Run the following curl a command with authentication parameters, replacing <your_external_ip> with your EXTERNAL-IP from the preceding step:

      curl -s -o /dev/null -w "%{http_code}\n" --request GET 'http://<your_external_ip>:80/users' -u user:pw

      The command prints the resulting 200 status code, indicating success:

      200

      The user and password parameters (user:pw) must match the values you specified when you applied the policy. If you enter incorrect authentication parameters, the following error occurs:

      401

      To address the error, run the command with the correct authentication parameters, or return to the policy configuration page for your API in API Gateway, edit the policy configuration, and rerun the curl commands.

      Screenshot of 'Configure Basic Authentication - Simple policy' edit dialogue

      The page for editing the credentials looks similar to this one:

      Screenshot of 'Configure Basic Authentication - Simple policy' configuration page

Troubleshooting

If you encounter an error when running a command, check for troubleshooting information:

Docker Command Issues

Troubleshoot errors returned by a docker command:

Docker Daemon Error

If Docker is not started, a docker command returns an error message similar to the following ones:

  • Error response from daemon: Bad response from Docker engine
  • ERROR: Cannot connect to the Docker daemon at unix:///var/run/docker.sock.
           Is the docker daemon running?

If you get this error, start Docker.

Reg Facade Error (400 Bad Request)

The following error can occur when you use docker run to register your gateway:

[flexctl][error] reg facade call returned error response:
HTTP/1.1 400 Bad Request

The reason for this error is available within the error message. Common causes include:

  • an active target with the same name already exists in this organization and environment

    To avoid this issue, provide a unique name for your gateway when running the registration command. Note that you cannot reuse the same name even if a previous registration with that name was successful. When this error occurs, the command generates an empty registration.yaml, which prevents re-registration and produces an error when you try to use the file when deploying the gateway to your cluster.

  • no valid registration token was found

    To avoid this issue, generate a new token for the command by refreshing the Add a Flex Gateway page for Kubernetes and rerun the registration command.

Helm Command Issues

Troubleshoot errors returned by a helm command for Kubernetes and OpenShift clusters:

Upgrade Failed: Execution Error

If the registration.yaml file is invalid when you pass it to the Helm command during deployment of Flex Gateway, the following error results:

Error: UPGRADE FAILED: execution error at (flex-gateway/templates/deployment.yaml:4:10):
registerSecretName, registration.content or registration.secretName is required!

When this error occurs, make sure that the registration.yaml file is not empty. If the file is empty, reregister your gateway with a new, unique name to generate a new registration.yaml and rerun the procedures that follow the registration step. See Register Flex Gateway for an example of the registration command.

Upgrade Failed: Timed Out

Some issues can cause the Helm upgrade command to hang for up to 5 minutes (due to the --wait flag in the command) before producing the following timeout error:

Error: UPGRADE FAILED: timed out waiting for the condition

This error typically means that your cluster configuration is incorrect or that your cluster configuration tool does not support this process. One potential cause is the failure to generate a Service resource of the LoadBalancer type. You can troubleshoot further by running the following commands:

  • kubectl -n gateway describe deployment
  • kubectl -n gateway describe service

Kubernetes Cluster Unreachable

If your Kubernetes cluster is not running when you attempt to deploy Flex Gateway using helm, the following error might occur:

Error: Kubernetes cluster unreachable:
the server could not find the requested resource

Start the service that runs your cluster.

Check that your Kubernetes cluster host is running your cluster, for example:

kubectl cluster-info
  • If the cluster is running, the command returns a result similar to this one:

    Kubernetes control plane is running at https://34.30.50.119
    GLBCDefaultBackend is running at https://34.30.50.119/api/v1/namespaces/kube-system/services/default-http-backend:http/proxy
    KubeDNS is running at https://34.30.50.119/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy
    Metrics-server is running at https://34.30.50.119/api/v1/namespaces/kube-system/services/https:metrics-server:/proxy
  • If the cluster is not up, the command can return a result similar to this one:

    To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.
    error: the server doesn't have a resource type "services"

See Cluster Requirements for additional information.

Failed to Install CRD

When deploying Flex Gateway to a Kubernetes cluster that enables role-based access control (RBAC), you must have cluster-level permissions to permit installation of custom resource definitions (CRDs) used by Flex Gateway. In OpenShift, the cluster-admin role provides this level of access.

Without the required access, you receive an error similar to the following one:

Error: failed to install CRD crds/apiinstance.yaml:
customresourcedefinitions.apiextensions.k8s.io is forbidden:
User "user1" cannot create resource "customresourcedefinitions"
in API group "apiextensions.k8s.io" at the cluster scope

See Cluster Requirements for additional information.

Check Your Cluster

Before deploying Flex Gateway to your Kubernetes cluster in Step 4: Deploy and Connect Flex Gateway, ensure that your cluster is ready. Use kubectl to list and select (use) a cluster and to get a list of nodes that the cluster uses. If any steps in this section fail, the deployment process is likely to produce errors.

To prevent potential timeout and connectivity errors when running procedures in this guide, your cluster must meet the Cluster Requirements.

  1. Run kubectl config get-contexts to list the clusters, for example:

    kubectl config get-contexts

    This command is particularly helpful if you have multiple Kubernetes clusters. You can use the command to get the name of the the correct cluster. For example, assume that you have a variety of clusters (my-cluster, my-aks, my-gke, my-eks). The command prints a list of your clusters.

    The following example shows a list of clusters produced by the command:

    CURRENT   NAME          CLUSTER       AUTHINFO    NAMESPACE
              my-cluster    my-cluster                my-cluster1
              my-aks        my-aks                    my-aks
              my-gke        my-gke                    my-gke
              my-eks        my-eks                    my-eks

    If your cluster is not listed and you are using a custom cluster context file on your machine to connect to your cluster, you might need to add its path to a KUBECONFIG environment variable that points to that file. By default, kubectl searches for a file named config in the $HOME/.kube directory. That file lists each context, which provides properties such as the cluster name, user, and certificate authority data.

    You can check by running echo $KUBECONFIG from your terminal window, which prints a environment variable’s value, similar to this example:

    {KUBECONFIG}:/Users/me/.kube/config:/Users/me/.kube/additional-clusters/my-gke:/Users/me/.kube/additional-clusters/my-aks:/Users/me/.kube/additional-clusters/my-eks

    Adding the path to any additional cluster context files on your machine enables the kubectl config get-contexts command to list the cluster contexts and for you to use them.

    For more detail, see the Kubernetes documentation about the kubeconfig file.

  2. Provide the name of a cluster into which you plan to deploy your gateway.

    The following example uses the cluster my-eks, identified in the cluster list example:

    kubectl config use-context my-eks

    The command switches to the selected cluster context and prints a message similar to this one:

    Switched to context "my-eks".

    If you receive an error that begins error: no context exists with the name, ensure you are using the NAME value of the cluster listed by kubectl config get-contexts and not the CLUSTER value.

  3. Check that your cluster has one or more nodes:

    kubectl get nodes

    The command returns a output similar to this example:

    NAME                STATUS   ROLES    AGE   VERSION
    ip-192-168-70-170   Ready    <none>   17h   v1.x.x
    ip-192-168-9-230    Ready    <none>   17h   v1.x.x

    Make sure that at least one node is in the Ready status.

  4. If your cluster is not ready, correct the cluster configuration.

    Alternatively, try the Docker-only guide, Getting Started with Flex Gateway, which does not use a Kubernetes cluster, and skip the next steps.

  5. If you have not started the Flex Gateway setup procedures yet, review Cluster Requirements before proceeding to Step 1: Download the Flex Gateway Image.

  6. If you have successfully completed all the procedures for downloading and registering your gateway with Docker and adding a repository for your Helm chart, and you are ready to begin the deployment procedure, go to Step 4: Deploy and Connect Flex Gateway.

Next Steps

Learn other ways to set up and configure Flex Gateway for a Kubernetes cluster, and review other policy configuration options.