1
Set up minikube
If you already have a Kubernetes cluster available, you can skip this step. Otherwise, install a single node cluster using minikube to set up a testing environment.Follow the minikube get started guide to deploy a cluster, install kubectl, and test that everything is working. The instructions are platform-specific and provided for Windows, MacOS, and Linux.
2
Fetch the example Kubernetes YAML configuration files
The configurations are based on our general NGINX guide. To simplify the process we provide example configuration files in our GitHub repo.Save the example yaml files to your project folder:
3
Create cluster secret
To avoid using a Minimus token in plaintext, we will create a Kubernetes Secret containing the credentials needed to pull images from the Minimus registry.
- Copy a token from your Minimus console.
-
Create a Docker auth JSON by executing the following command. Add the token from the previous step as your password:
-
Check that the secret with the name
my-registry-secret
was successfully created:
4
Deploy Istio
Run the following command from the project directory to deploy your NGINX container:
5
Deploy application
Run the following command from the project directory to deploy the frontend and backend apps. The period at the end of the command applies all YAML files in the current directory:
6
Check the logs
Run the following command to check the logs:Look for the string below to make sure that the two endpoints were created: You should see calls to the backend pod:
XDS: Pushing Services:19 ConnectedEndpoints:2 Version:2025-08-10T07:38:55Z/6
Check the frontend logs: