When trying out Steadybit you may want to start easy instead of directly using your fully fledged system. Therefore, we have a small example application called which you can easily deploy on a local minikube or AWS EKS using this guide.
Simply follow these two steps:
Prerequisites
You have already signed up for an account
You are able to log in to the
You have installed
You have installed
Step 1 - Have a look a the example application
In order to give you a quick and easy start, we have developed a small demo application. Our shopping demo is a small product catalog provided by seven distributed backend services and a simple UI.
Step 2 - Deploy the example application
Step 2a) Deploy on Minikube
Prerequisite
Start your minikube cluster
From a terminal, run:
minikube start
You can access your cluster with:
kubectl get po -A
Deploy the example application
Now we use helm to deploy the demo by running the following command:
NAME STATUS ROLES AGE VERSION
ip-192-168-53-195.us-west-2.compute.internal Ready <none> 113s v1.17.12-eks-7684af
ip-192-168-68-23.us-west-2.compute.internal Ready <none> 118s v1.17.12-eks-7684af
Deploy the Shopping Demo
Now we use kubectl to deploy the demo by running the following command:
If you want to learn more about our demo, please take a look at our GitHub repository:
The example application is already pre-configured to be deployed into a Kubernetes cluster. You can choose whether to deploy it into or .
, also known as k8s, is an open source system for automating the deployment, scaling, and management of containerized applications. You can use to set up a local Kubernetes cluster on macOS, Linux or Windows. As an alternative choose to set up a Kubernetes cluster in the cloud.
Make sure to afterwards into the same environment.
You have a running installation
Create your Amazon EKS cluster and containing 2 nodes by running the following command. More details are available at
Now, make sure to into the same environment (minikube or AWS EKS).