anushiya-thevapalan / kubernetes-performance

Application to deploy and test performance of an application on Kubernetes platform

Home Page:https://dzone.com/articles/performance-testing-in-kubernetes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Performance Testing in Kubernetes

Deploy the Spring-boot application in Kubernetes

Build the Docker image

$ cd springboot-app/
$ docker build --no-cache -t anushiya/app:latest .
$ docker build --no-cache -t [dockerhub account name]/[name of the application]:[version number]

Push the Docker image to DockerHub

Note that the name of the application and the version number should be same as the one used to build the image above

$ docker push anushiya/app:latest
$ docker push [dockerhub account name]/[name of the application]:[version number]

Deploy the the application

cd deployment/app
kubectl apply -f app.yaml
kubectl apply -f [name of the deployment yaml]

About

Application to deploy and test performance of an application on Kubernetes platform

https://dzone.com/articles/performance-testing-in-kubernetes


Languages

Language:Python 82.0%Language:Shell 14.2%Language:Dockerfile 3.8%